msgraph-sdk 1.27.0__py3-none-any.whl → 1.28.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. msgraph/_version.py +1 -1
  2. msgraph/generated/chats/item/members/item/conversation_member_item_request_builder.py +4 -4
  3. msgraph/generated/device_app_management/device_app_management_request_builder.py +2 -2
  4. msgraph/generated/device_app_management/managed_app_policies/managed_app_policies_request_builder.py +4 -4
  5. msgraph/generated/device_app_management/managed_app_registrations/item/managed_app_registration_item_request_builder.py +4 -4
  6. msgraph/generated/device_app_management/managed_app_registrations/managed_app_registrations_request_builder.py +4 -4
  7. msgraph/generated/device_app_management/managed_e_books/item/assignments/assignments_request_builder.py +7 -7
  8. msgraph/generated/device_app_management/managed_e_books/item/assignments/item/managed_e_book_assignment_item_request_builder.py +3 -3
  9. msgraph/generated/device_app_management/mobile_app_configurations/item/managed_device_mobile_app_configuration_item_request_builder.py +4 -4
  10. msgraph/generated/device_app_management/mobile_apps/item/mobile_app_item_request_builder.py +10 -10
  11. msgraph/generated/device_app_management/mobile_apps/mobile_apps_request_builder.py +7 -7
  12. msgraph/generated/device_management/device_compliance_policies/device_compliance_policies_request_builder.py +3 -3
  13. msgraph/generated/device_management/device_compliance_policies/item/device_compliance_policy_item_request_builder.py +7 -7
  14. msgraph/generated/device_management/device_configurations/device_configurations_request_builder.py +7 -7
  15. msgraph/generated/device_management/device_configurations/item/device_configuration_item_request_builder.py +10 -10
  16. msgraph/generated/device_management/device_enrollment_configurations/device_enrollment_configurations_request_builder.py +3 -3
  17. msgraph/generated/device_management/device_enrollment_configurations/item/device_enrollment_configuration_item_request_builder.py +7 -7
  18. msgraph/generated/device_management/device_management_request_builder.py +2 -2
  19. msgraph/generated/device_management/role_definitions/item/role_definition_item_request_builder.py +3 -3
  20. msgraph/generated/device_management/role_definitions/role_definitions_request_builder.py +7 -7
  21. msgraph/generated/drives/item/items/item/retention_label/retention_label_request_builder.py +3 -3
  22. msgraph/generated/drives/item/items/item/workbook/names/item/range/range_request_builder.py +3 -3
  23. msgraph/generated/drives/item/items/item/workbook/tables/add/add_request_builder.py +3 -3
  24. msgraph/generated/drives/item/items/item/workbook/worksheets/item/names/item/range/range_request_builder.py +3 -3
  25. msgraph/generated/drives/item/items/item/workbook/worksheets/item/tables/add/add_request_builder.py +3 -3
  26. msgraph/generated/external/connections/item/items/item/external_item_item_request_builder.py +3 -3
  27. msgraph/generated/groups/item/conversations/item/conversation_item_request_builder.py +5 -5
  28. msgraph/generated/groups/item/threads/item/conversation_thread_item_request_builder.py +1 -1
  29. msgraph/generated/groups/item/threads/item/posts/posts_request_builder.py +4 -4
  30. msgraph/generated/identity/conditional_access/named_locations/item/named_location_item_request_builder.py +7 -7
  31. msgraph/generated/identity_governance/entitlement_management/access_packages/item/access_package_item_request_builder.py +4 -4
  32. msgraph/generated/identity_governance/entitlement_management/catalogs/item/custom_workflow_extensions/item/custom_callout_extension_item_request_builder.py +6 -6
  33. msgraph/generated/identity_governance/terms_of_use/agreements/item/agreement_item_request_builder.py +4 -4
  34. msgraph/generated/kiota-lock.json +1 -1
  35. msgraph/generated/models/call_records/network_info.py +1 -1
  36. msgraph/generated/models/workbook_worksheet_protection_options.py +11 -11
  37. msgraph/generated/organization/item/organization_item_request_builder.py +4 -4
  38. msgraph/generated/organization/organization_request_builder.py +4 -4
  39. msgraph/generated/sites/item/lists/item/list_item_request_builder.py +4 -4
  40. msgraph/generated/teams/item/channels/item/members/item/conversation_member_item_request_builder.py +3 -3
  41. msgraph/generated/tenant_relationships/multi_tenant_organization/multi_tenant_organization_request_builder.py +3 -3
  42. msgraph/generated/users/item/user_item_request_builder.py +4 -4
  43. msgraph/generated/users/users_request_builder.py +7 -7
  44. msgraph/generated/users_with_user_principal_name/users_with_user_principal_name_request_builder.py +4 -4
  45. {msgraph_sdk-1.27.0.dist-info → msgraph_sdk-1.28.0.dist-info}/METADATA +1 -1
  46. {msgraph_sdk-1.27.0.dist-info → msgraph_sdk-1.28.0.dist-info}/RECORD +48 -48
  47. {msgraph_sdk-1.27.0.dist-info → msgraph_sdk-1.28.0.dist-info}/WHEEL +0 -0
  48. {msgraph_sdk-1.27.0.dist-info → msgraph_sdk-1.28.0.dist-info}/licenses/LICENSE +0 -0
@@ -59,10 +59,10 @@ class OrganizationItemRequestBuilder(BaseRequestBuilder):
59
59
 
60
60
  async def get(self,request_configuration: Optional[RequestConfiguration[OrganizationItemRequestBuilderGetQueryParameters]] = None) -> Optional[Organization]:
61
61
  """
62
- Read properties and relationships of the organization object.
62
+ Get the properties and relationships of the currently authenticated organization. Since the organization resource supports extensions, you can also use the GET operation to get custom properties and extension data in an organization instance.
63
63
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
64
64
  Returns: Optional[Organization]
65
- Find more info here: https://learn.microsoft.com/graph/api/intune-onboarding-organization-get?view=graph-rest-1.0
65
+ Find more info here: https://learn.microsoft.com/graph/api/organization-get?view=graph-rest-1.0
66
66
  """
67
67
  request_info = self.to_get_request_information(
68
68
  request_configuration
@@ -114,7 +114,7 @@ class OrganizationItemRequestBuilder(BaseRequestBuilder):
114
114
 
115
115
  def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[OrganizationItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
116
116
  """
117
- Read properties and relationships of the organization object.
117
+ Get the properties and relationships of the currently authenticated organization. Since the organization resource supports extensions, you can also use the GET operation to get custom properties and extension data in an organization instance.
118
118
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
119
119
  Returns: RequestInformation
120
120
  """
@@ -239,7 +239,7 @@ class OrganizationItemRequestBuilder(BaseRequestBuilder):
239
239
  @dataclass
240
240
  class OrganizationItemRequestBuilderGetQueryParameters():
241
241
  """
242
- Read properties and relationships of the organization object.
242
+ Get the properties and relationships of the currently authenticated organization. Since the organization resource supports extensions, you can also use the GET operation to get custom properties and extension data in an organization instance.
243
243
  """
244
244
  def get_query_parameter(self,original_name: str) -> str:
245
245
  """
@@ -53,10 +53,10 @@ class OrganizationRequestBuilder(BaseRequestBuilder):
53
53
 
54
54
  async def get(self,request_configuration: Optional[RequestConfiguration[OrganizationRequestBuilderGetQueryParameters]] = None) -> Optional[OrganizationCollectionResponse]:
55
55
  """
56
- List properties and relationships of the organization objects.
56
+ Retrieve a list of organization objects. There's only one organization object in the collection.
57
57
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
58
58
  Returns: Optional[OrganizationCollectionResponse]
59
- Find more info here: https://learn.microsoft.com/graph/api/intune-onboarding-organization-list?view=graph-rest-1.0
59
+ Find more info here: https://learn.microsoft.com/graph/api/organization-list?view=graph-rest-1.0
60
60
  """
61
61
  request_info = self.to_get_request_information(
62
62
  request_configuration
@@ -97,7 +97,7 @@ class OrganizationRequestBuilder(BaseRequestBuilder):
97
97
 
98
98
  def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[OrganizationRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
99
99
  """
100
- List properties and relationships of the organization objects.
100
+ Retrieve a list of organization objects. There's only one organization object in the collection.
101
101
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
102
102
  Returns: RequestInformation
103
103
  """
@@ -179,7 +179,7 @@ class OrganizationRequestBuilder(BaseRequestBuilder):
179
179
  @dataclass
180
180
  class OrganizationRequestBuilderGetQueryParameters():
181
181
  """
182
- List properties and relationships of the organization objects.
182
+ Retrieve a list of organization objects. There's only one organization object in the collection.
183
183
  """
184
184
  def get_query_parameter(self,original_name: str) -> str:
185
185
  """
@@ -58,10 +58,10 @@ class ListItemRequestBuilder(BaseRequestBuilder):
58
58
 
59
59
  async def get(self,request_configuration: Optional[RequestConfiguration[ListItemRequestBuilderGetQueryParameters]] = None) -> Optional[List_]:
60
60
  """
61
- Returns the metadata for a list.
61
+ Get a list of rich long-running operations associated with a list.
62
62
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
63
63
  Returns: Optional[List_]
64
- Find more info here: https://learn.microsoft.com/graph/api/list-get?view=graph-rest-1.0
64
+ Find more info here: https://learn.microsoft.com/graph/api/list-list-operations?view=graph-rest-1.0
65
65
  """
66
66
  request_info = self.to_get_request_information(
67
67
  request_configuration
@@ -112,7 +112,7 @@ class ListItemRequestBuilder(BaseRequestBuilder):
112
112
 
113
113
  def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ListItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
114
114
  """
115
- Returns the metadata for a list.
115
+ Get a list of rich long-running operations associated with a list.
116
116
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
117
117
  Returns: RequestInformation
118
118
  """
@@ -228,7 +228,7 @@ class ListItemRequestBuilder(BaseRequestBuilder):
228
228
  @dataclass
229
229
  class ListItemRequestBuilderGetQueryParameters():
230
230
  """
231
- Returns the metadata for a list.
231
+ Get a list of rich long-running operations associated with a list.
232
232
  """
233
233
  def get_query_parameter(self,original_name: str) -> str:
234
234
  """
@@ -32,10 +32,10 @@ class ConversationMemberItemRequestBuilder(BaseRequestBuilder):
32
32
 
33
33
  async def delete(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None:
34
34
  """
35
- Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared.
35
+ Delete a conversationMember from a channel.
36
36
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
37
37
  Returns: None
38
- Find more info here: https://learn.microsoft.com/graph/api/channel-delete-members?view=graph-rest-1.0
38
+ Find more info here: https://learn.microsoft.com/graph/api/conversationmember-delete?view=graph-rest-1.0
39
39
  """
40
40
  request_info = self.to_delete_request_information(
41
41
  request_configuration
@@ -96,7 +96,7 @@ class ConversationMemberItemRequestBuilder(BaseRequestBuilder):
96
96
 
97
97
  def to_delete_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
98
98
  """
99
- Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared.
99
+ Delete a conversationMember from a channel.
100
100
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
101
101
  Returns: RequestInformation
102
102
  """
@@ -55,11 +55,11 @@ class MultiTenantOrganizationRequestBuilder(BaseRequestBuilder):
55
55
 
56
56
  async def patch(self,body: MultiTenantOrganization, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[MultiTenantOrganization]:
57
57
  """
58
- Update the properties of a multitenant organization.
58
+ Create a new multitenant organization. By default, the creator tenant becomes an owner tenant upon successful creation. Only owner tenants can manage a multitenant organization.
59
59
  param body: The request body
60
60
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
61
61
  Returns: Optional[MultiTenantOrganization]
62
- Find more info here: https://learn.microsoft.com/graph/api/multitenantorganization-update?view=graph-rest-1.0
62
+ Find more info here: https://learn.microsoft.com/graph/api/tenantrelationship-put-multitenantorganization?view=graph-rest-1.0
63
63
  """
64
64
  if body is None:
65
65
  raise TypeError("body cannot be null.")
@@ -90,7 +90,7 @@ class MultiTenantOrganizationRequestBuilder(BaseRequestBuilder):
90
90
 
91
91
  def to_patch_request_information(self,body: MultiTenantOrganization, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
92
92
  """
93
- Update the properties of a multitenant organization.
93
+ Create a new multitenant organization. By default, the creator tenant becomes an owner tenant upon successful creation. Only owner tenants can manage a multitenant organization.
94
94
  param body: The request body
95
95
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
96
96
  Returns: RequestInformation
@@ -142,10 +142,10 @@ class UserItemRequestBuilder(BaseRequestBuilder):
142
142
 
143
143
  async def get(self,request_configuration: Optional[RequestConfiguration[UserItemRequestBuilderGetQueryParameters]] = None) -> Optional[User]:
144
144
  """
145
- Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
145
+ Read properties and relationships of the user object.
146
146
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
147
147
  Returns: Optional[User]
148
- Find more info here: https://learn.microsoft.com/graph/api/user-get?view=graph-rest-1.0
148
+ Find more info here: https://learn.microsoft.com/graph/api/intune-onboarding-user-get?view=graph-rest-1.0
149
149
  """
150
150
  request_info = self.to_get_request_information(
151
151
  request_configuration
@@ -212,7 +212,7 @@ class UserItemRequestBuilder(BaseRequestBuilder):
212
212
 
213
213
  def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[UserItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
214
214
  """
215
- Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
215
+ Read properties and relationships of the user object.
216
216
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
217
217
  Returns: RequestInformation
218
218
  """
@@ -922,7 +922,7 @@ class UserItemRequestBuilder(BaseRequestBuilder):
922
922
  @dataclass
923
923
  class UserItemRequestBuilderGetQueryParameters():
924
924
  """
925
- Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
925
+ Read properties and relationships of the user object.
926
926
  """
927
927
  def get_query_parameter(self,original_name: str) -> str:
928
928
  """
@@ -53,10 +53,10 @@ class UsersRequestBuilder(BaseRequestBuilder):
53
53
 
54
54
  async def get(self,request_configuration: Optional[RequestConfiguration[UsersRequestBuilderGetQueryParameters]] = None) -> Optional[UserCollectionResponse]:
55
55
  """
56
- Retrieve a list of user objects.
56
+ List properties and relationships of the user objects.
57
57
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
58
58
  Returns: Optional[UserCollectionResponse]
59
- Find more info here: https://learn.microsoft.com/graph/api/user-list?view=graph-rest-1.0
59
+ Find more info here: https://learn.microsoft.com/graph/api/intune-onboarding-user-list?view=graph-rest-1.0
60
60
  """
61
61
  request_info = self.to_get_request_information(
62
62
  request_configuration
@@ -74,11 +74,11 @@ class UsersRequestBuilder(BaseRequestBuilder):
74
74
 
75
75
  async def post(self,body: User, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[User]:
76
76
  """
77
- Create a new user object.
77
+ Create a new user.The request body contains the user to create. At a minimum, you must specify the required properties for the user. You can optionally specify any other writable properties.
78
78
  param body: The request body
79
79
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
80
80
  Returns: Optional[User]
81
- Find more info here: https://learn.microsoft.com/graph/api/intune-mam-user-create?view=graph-rest-1.0
81
+ Find more info here: https://learn.microsoft.com/graph/api/user-post-users?view=graph-rest-1.0
82
82
  """
83
83
  if body is None:
84
84
  raise TypeError("body cannot be null.")
@@ -98,7 +98,7 @@ class UsersRequestBuilder(BaseRequestBuilder):
98
98
 
99
99
  def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[UsersRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
100
100
  """
101
- Retrieve a list of user objects.
101
+ List properties and relationships of the user objects.
102
102
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
103
103
  Returns: RequestInformation
104
104
  """
@@ -109,7 +109,7 @@ class UsersRequestBuilder(BaseRequestBuilder):
109
109
 
110
110
  def to_post_request_information(self,body: User, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
111
111
  """
112
- Create a new user object.
112
+ Create a new user.The request body contains the user to create. At a minimum, you must specify the required properties for the user. You can optionally specify any other writable properties.
113
113
  param body: The request body
114
114
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
115
115
  Returns: RequestInformation
@@ -180,7 +180,7 @@ class UsersRequestBuilder(BaseRequestBuilder):
180
180
  @dataclass
181
181
  class UsersRequestBuilderGetQueryParameters():
182
182
  """
183
- Retrieve a list of user objects.
183
+ List properties and relationships of the user objects.
184
184
  """
185
185
  def get_query_parameter(self,original_name: str) -> str:
186
186
  """
@@ -54,10 +54,10 @@ class UsersWithUserPrincipalNameRequestBuilder(BaseRequestBuilder):
54
54
 
55
55
  async def get(self,request_configuration: Optional[RequestConfiguration[UsersWithUserPrincipalNameRequestBuilderGetQueryParameters]] = None) -> Optional[User]:
56
56
  """
57
- Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
57
+ Read properties and relationships of the user object.
58
58
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
59
59
  Returns: Optional[User]
60
- Find more info here: https://learn.microsoft.com/graph/api/user-get?view=graph-rest-1.0
60
+ Find more info here: https://learn.microsoft.com/graph/api/intune-onboarding-user-get?view=graph-rest-1.0
61
61
  """
62
62
  request_info = self.to_get_request_information(
63
63
  request_configuration
@@ -109,7 +109,7 @@ class UsersWithUserPrincipalNameRequestBuilder(BaseRequestBuilder):
109
109
 
110
110
  def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[UsersWithUserPrincipalNameRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
111
111
  """
112
- Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
112
+ Read properties and relationships of the user object.
113
113
  param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
114
114
  Returns: RequestInformation
115
115
  """
@@ -153,7 +153,7 @@ class UsersWithUserPrincipalNameRequestBuilder(BaseRequestBuilder):
153
153
  @dataclass
154
154
  class UsersWithUserPrincipalNameRequestBuilderGetQueryParameters():
155
155
  """
156
- Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
156
+ Read properties and relationships of the user object.
157
157
  """
158
158
  def get_query_parameter(self,original_name: str) -> str:
159
159
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: msgraph-sdk
3
- Version: 1.27.0
3
+ Version: 1.28.0
4
4
  Summary: The Microsoft Graph Python SDK
5
5
  Keywords: msgraph,openAPI,Microsoft,Graph
6
6
  Author-email: Microsoft <graphtooling+python@microsoft.com>