Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 721 Bytes

File metadata and controls

20 lines (15 loc) · 721 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.share_point_group import SharePointGroup
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = SharePointGroup(
	odata_type = "#microsoft.graph.sharePointGroup",
	title = "Sample Group",
	description = "This is a sample description",
)

result = await graph_client.storage.file_storage.containers.by_file_storage_container_id('fileStorageContainer-id').share_point_groups.post(request_body)