Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 756 Bytes

File metadata and controls

21 lines (16 loc) · 756 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.feature_rollout_policy import FeatureRolloutPolicy
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = FeatureRolloutPolicy(
	display_name = "PasswordHashSync Rollout Policy",
	description = "PasswordHashSync Rollout Policy",
	is_enabled = True,
	is_applied_to_organization = False,
)

result = await graph_client.policies.feature_rollout_policies.by_feature_rollout_policy_id('featureRolloutPolicy-id').patch(request_body)