Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 796 Bytes

File metadata and controls

20 lines (15 loc) · 796 Bytes
description Automatically generated file. DO NOT MODIFY
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.models.connector_group import ConnectorGroup
from msgraph_beta.generated.models.connector_group_region import ConnectorGroupRegion
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = ConnectorGroup(
	name = "name-value",
	region = ConnectorGroupRegion.Nam,
)

result = await graph_client.on_premises_publishing_profiles.by_on_premises_publishing_profile_id('onPremisesPublishingProfile-id').connector_groups.by_connector_group_id('connectorGroup-id').patch(request_body)