Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 818 Bytes

File metadata and controls

19 lines (14 loc) · 818 Bytes
description Automatically generated file. DO NOT MODIFY
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
from msgraph.generated.models.voice_authentication_method_configuration import VoiceAuthenticationMethodConfiguration
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = VoiceAuthenticationMethodConfiguration(
	odata_type = "#microsoft.graph.voiceAuthenticationMethodConfiguration",
	is_office_phone_allowed = False,
)

result = await graph_client.policies.authentication_methods_policy.authentication_method_configurations.by_authentication_method_configuration_id('authenticationMethodConfiguration-id').patch(request_body)