msgraph-sdk 1.6.0__py3-none-any.whl → 1.7.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.
- msgraph/_version.py +1 -1
- msgraph/generated/communications/calls/item/participants/invite/invite_request_builder.py +3 -3
- msgraph/generated/device_app_management/device_app_management_request_builder.py +2 -2
- msgraph/generated/device_app_management/managed_app_policies/item/managed_app_policy_item_request_builder.py +4 -4
- msgraph/generated/device_app_management/managed_app_policies/item/target_apps/target_apps_request_builder.py +1 -1
- msgraph/generated/device_app_management/managed_app_policies/managed_app_policies_request_builder.py +4 -4
- msgraph/generated/device_app_management/managed_app_registrations/item/applied_policies/item/target_apps/target_apps_request_builder.py +1 -1
- msgraph/generated/device_app_management/managed_app_registrations/item/intended_policies/item/target_apps/target_apps_request_builder.py +1 -1
- msgraph/generated/device_app_management/managed_app_registrations/item/managed_app_registration_item_request_builder.py +4 -4
- msgraph/generated/device_app_management/managed_app_statuses/managed_app_statuses_request_builder.py +4 -4
- msgraph/generated/device_app_management/managed_e_books/item/assignments/item/managed_e_book_assignment_item_request_builder.py +7 -7
- msgraph/generated/device_app_management/managed_e_books/managed_e_books_request_builder.py +4 -4
- msgraph/generated/device_app_management/mobile_app_configurations/mobile_app_configurations_request_builder.py +4 -4
- msgraph/generated/device_app_management/mobile_apps/item/mobile_app_item_request_builder.py +10 -10
- msgraph/generated/device_app_management/mobile_apps/mobile_apps_request_builder.py +7 -7
- msgraph/generated/device_management/device_compliance_policies/device_compliance_policies_request_builder.py +7 -7
- msgraph/generated/device_management/device_compliance_policies/item/device_compliance_policy_item_request_builder.py +10 -10
- msgraph/generated/device_management/device_configurations/device_configurations_request_builder.py +7 -7
- msgraph/generated/device_management/device_configurations/item/device_configuration_item_request_builder.py +10 -10
- msgraph/generated/device_management/device_enrollment_configurations/device_enrollment_configurations_request_builder.py +7 -7
- msgraph/generated/device_management/device_enrollment_configurations/item/device_enrollment_configuration_item_request_builder.py +10 -10
- msgraph/generated/device_management/device_management_request_builder.py +2 -2
- msgraph/generated/device_management/role_definitions/item/role_definition_item_request_builder.py +4 -4
- msgraph/generated/device_management/role_definitions/role_definitions_request_builder.py +3 -3
- msgraph/generated/drives/item/items/item/workbook/tables/add/add_request_builder.py +3 -3
- msgraph/generated/drives/item/items/item/workbook/worksheets/item/tables/add/add_request_builder.py +3 -3
- msgraph/generated/external/connections/item/items/item/external_item_item_request_builder.py +3 -3
- msgraph/generated/groups/groups_request_builder.py +3 -3
- msgraph/generated/groups/item/conversations/conversations_request_builder.py +3 -3
- msgraph/generated/groups/item/conversations/item/conversation_item_request_builder.py +5 -5
- msgraph/generated/groups/item/threads/item/conversation_thread_item_request_builder.py +4 -4
- msgraph/generated/identity_governance/entitlement_management/access_packages/item/access_package_item_request_builder.py +4 -4
- msgraph/generated/identity_governance/terms_of_use/agreements/item/agreement_item_request_builder.py +4 -4
- msgraph/generated/kiota-lock.json +2 -2
- msgraph/generated/organization/item/branding/localizations/item/banner_logo/banner_logo_request_builder.py +3 -3
- msgraph/generated/organization/item/organization_item_request_builder.py +3 -3
- msgraph/generated/organization/organization_request_builder.py +4 -4
- msgraph/generated/sites/item/lists/item/list_item_request_builder.py +4 -4
- msgraph/generated/sites/sites_request_builder.py +4 -4
- msgraph/generated/teams/item/channels/item/members/item/conversation_member_item_request_builder.py +3 -3
- msgraph/generated/teams/item/channels/item/members/members_request_builder.py +3 -3
- msgraph/generated/users/item/presence/presence_request_builder.py +4 -4
- msgraph/generated/users/item/user_item_request_builder.py +5 -5
- msgraph/generated/users/users_request_builder.py +4 -4
- {msgraph_sdk-1.6.0.dist-info → msgraph_sdk-1.7.0.dist-info}/METADATA +2 -2
- {msgraph_sdk-1.6.0.dist-info → msgraph_sdk-1.7.0.dist-info}/RECORD +48 -48
- {msgraph_sdk-1.6.0.dist-info → msgraph_sdk-1.7.0.dist-info}/LICENSE +0 -0
- {msgraph_sdk-1.6.0.dist-info → msgraph_sdk-1.7.0.dist-info}/WHEEL +0 -0
msgraph/_version.py
CHANGED
@@ -32,11 +32,11 @@ class InviteRequestBuilder(BaseRequestBuilder):
|
|
32
32
|
|
33
33
|
async def post(self,body: InvitePostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[InviteParticipantsOperation]:
|
34
34
|
"""
|
35
|
-
|
35
|
+
Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
|
36
36
|
param body: The request body
|
37
37
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
38
38
|
Returns: Optional[InviteParticipantsOperation]
|
39
|
-
Find more info here: https://learn.microsoft.com/graph/api/participant-
|
39
|
+
Find more info here: https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0
|
40
40
|
"""
|
41
41
|
if body is None:
|
42
42
|
raise TypeError("body cannot be null.")
|
@@ -56,7 +56,7 @@ class InviteRequestBuilder(BaseRequestBuilder):
|
|
56
56
|
|
57
57
|
def to_post_request_information(self,body: InvitePostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
|
58
58
|
"""
|
59
|
-
|
59
|
+
Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
|
60
60
|
param body: The request body
|
61
61
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
62
62
|
Returns: RequestInformation
|
@@ -49,7 +49,7 @@ class DeviceAppManagementRequestBuilder(BaseRequestBuilder):
|
|
49
49
|
Read properties and relationships of the deviceAppManagement object.
|
50
50
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
51
51
|
Returns: Optional[DeviceAppManagement]
|
52
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-
|
52
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-partnerintegration-deviceappmanagement-get?view=graph-rest-1.0
|
53
53
|
"""
|
54
54
|
request_info = self.to_get_request_information(
|
55
55
|
request_configuration
|
@@ -71,7 +71,7 @@ class DeviceAppManagementRequestBuilder(BaseRequestBuilder):
|
|
71
71
|
param body: The request body
|
72
72
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
73
73
|
Returns: Optional[DeviceAppManagement]
|
74
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-
|
74
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-partnerintegration-deviceappmanagement-update?view=graph-rest-1.0
|
75
75
|
"""
|
76
76
|
if body is None:
|
77
77
|
raise TypeError("body cannot be null.")
|
@@ -50,10 +50,10 @@ class ManagedAppPolicyItemRequestBuilder(BaseRequestBuilder):
|
|
50
50
|
|
51
51
|
async def get(self,request_configuration: Optional[RequestConfiguration[ManagedAppPolicyItemRequestBuilderGetQueryParameters]] = None) -> Optional[ManagedAppPolicy]:
|
52
52
|
"""
|
53
|
-
Read properties and relationships of the
|
53
|
+
Read properties and relationships of the windowsInformationProtection object.
|
54
54
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
55
55
|
Returns: Optional[ManagedAppPolicy]
|
56
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-mam-
|
56
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-mam-windowsinformationprotection-get?view=graph-rest-1.0
|
57
57
|
"""
|
58
58
|
request_info = self.to_get_request_information(
|
59
59
|
request_configuration
|
@@ -105,7 +105,7 @@ class ManagedAppPolicyItemRequestBuilder(BaseRequestBuilder):
|
|
105
105
|
|
106
106
|
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ManagedAppPolicyItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
|
107
107
|
"""
|
108
|
-
Read properties and relationships of the
|
108
|
+
Read properties and relationships of the windowsInformationProtection object.
|
109
109
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
110
110
|
Returns: RequestInformation
|
111
111
|
"""
|
@@ -158,7 +158,7 @@ class ManagedAppPolicyItemRequestBuilder(BaseRequestBuilder):
|
|
158
158
|
@dataclass
|
159
159
|
class ManagedAppPolicyItemRequestBuilderGetQueryParameters():
|
160
160
|
"""
|
161
|
-
Read properties and relationships of the
|
161
|
+
Read properties and relationships of the windowsInformationProtection object.
|
162
162
|
"""
|
163
163
|
def get_query_parameter(self,original_name: str) -> str:
|
164
164
|
"""
|
@@ -35,7 +35,7 @@ class TargetAppsRequestBuilder(BaseRequestBuilder):
|
|
35
35
|
param body: The request body
|
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/intune-mam-
|
38
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0
|
39
39
|
"""
|
40
40
|
if body is None:
|
41
41
|
raise TypeError("body cannot be null.")
|
msgraph/generated/device_app_management/managed_app_policies/managed_app_policies_request_builder.py
CHANGED
@@ -48,10 +48,10 @@ class ManagedAppPoliciesRequestBuilder(BaseRequestBuilder):
|
|
48
48
|
|
49
49
|
async def get(self,request_configuration: Optional[RequestConfiguration[ManagedAppPoliciesRequestBuilderGetQueryParameters]] = None) -> Optional[ManagedAppPolicyCollectionResponse]:
|
50
50
|
"""
|
51
|
-
List properties and relationships of the
|
51
|
+
List properties and relationships of the managedAppPolicy objects.
|
52
52
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
53
53
|
Returns: Optional[ManagedAppPolicyCollectionResponse]
|
54
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-mam-
|
54
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-list?view=graph-rest-1.0
|
55
55
|
"""
|
56
56
|
request_info = self.to_get_request_information(
|
57
57
|
request_configuration
|
@@ -92,7 +92,7 @@ class ManagedAppPoliciesRequestBuilder(BaseRequestBuilder):
|
|
92
92
|
|
93
93
|
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ManagedAppPoliciesRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
|
94
94
|
"""
|
95
|
-
List properties and relationships of the
|
95
|
+
List properties and relationships of the managedAppPolicy objects.
|
96
96
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
97
97
|
Returns: RequestInformation
|
98
98
|
"""
|
@@ -138,7 +138,7 @@ class ManagedAppPoliciesRequestBuilder(BaseRequestBuilder):
|
|
138
138
|
@dataclass
|
139
139
|
class ManagedAppPoliciesRequestBuilderGetQueryParameters():
|
140
140
|
"""
|
141
|
-
List properties and relationships of the
|
141
|
+
List properties and relationships of the managedAppPolicy objects.
|
142
142
|
"""
|
143
143
|
def get_query_parameter(self,original_name: str) -> str:
|
144
144
|
"""
|
@@ -35,7 +35,7 @@ class TargetAppsRequestBuilder(BaseRequestBuilder):
|
|
35
35
|
param body: The request body
|
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/intune-mam-
|
38
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0
|
39
39
|
"""
|
40
40
|
if body is None:
|
41
41
|
raise TypeError("body cannot be null.")
|
@@ -35,7 +35,7 @@ class TargetAppsRequestBuilder(BaseRequestBuilder):
|
|
35
35
|
param body: The request body
|
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/intune-mam-
|
38
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0
|
39
39
|
"""
|
40
40
|
if body is None:
|
41
41
|
raise TypeError("body cannot be null.")
|
@@ -52,10 +52,10 @@ class ManagedAppRegistrationItemRequestBuilder(BaseRequestBuilder):
|
|
52
52
|
|
53
53
|
async def get(self,request_configuration: Optional[RequestConfiguration[ManagedAppRegistrationItemRequestBuilderGetQueryParameters]] = None) -> Optional[ManagedAppRegistration]:
|
54
54
|
"""
|
55
|
-
Read properties and relationships of the
|
55
|
+
Read properties and relationships of the iosManagedAppRegistration object.
|
56
56
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
57
57
|
Returns: Optional[ManagedAppRegistration]
|
58
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-mam-
|
58
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-mam-iosmanagedappregistration-get?view=graph-rest-1.0
|
59
59
|
"""
|
60
60
|
request_info = self.to_get_request_information(
|
61
61
|
request_configuration
|
@@ -107,7 +107,7 @@ class ManagedAppRegistrationItemRequestBuilder(BaseRequestBuilder):
|
|
107
107
|
|
108
108
|
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ManagedAppRegistrationItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
|
109
109
|
"""
|
110
|
-
Read properties and relationships of the
|
110
|
+
Read properties and relationships of the iosManagedAppRegistration object.
|
111
111
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
112
112
|
Returns: RequestInformation
|
113
113
|
"""
|
@@ -178,7 +178,7 @@ class ManagedAppRegistrationItemRequestBuilder(BaseRequestBuilder):
|
|
178
178
|
@dataclass
|
179
179
|
class ManagedAppRegistrationItemRequestBuilderGetQueryParameters():
|
180
180
|
"""
|
181
|
-
Read properties and relationships of the
|
181
|
+
Read properties and relationships of the iosManagedAppRegistration object.
|
182
182
|
"""
|
183
183
|
def get_query_parameter(self,original_name: str) -> str:
|
184
184
|
"""
|
msgraph/generated/device_app_management/managed_app_statuses/managed_app_statuses_request_builder.py
CHANGED
@@ -48,10 +48,10 @@ class ManagedAppStatusesRequestBuilder(BaseRequestBuilder):
|
|
48
48
|
|
49
49
|
async def get(self,request_configuration: Optional[RequestConfiguration[ManagedAppStatusesRequestBuilderGetQueryParameters]] = None) -> Optional[ManagedAppStatusCollectionResponse]:
|
50
50
|
"""
|
51
|
-
List properties and relationships of the
|
51
|
+
List properties and relationships of the managedAppStatusRaw objects.
|
52
52
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
53
53
|
Returns: Optional[ManagedAppStatusCollectionResponse]
|
54
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-mam-
|
54
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-mam-managedappstatusraw-list?view=graph-rest-1.0
|
55
55
|
"""
|
56
56
|
request_info = self.to_get_request_information(
|
57
57
|
request_configuration
|
@@ -92,7 +92,7 @@ class ManagedAppStatusesRequestBuilder(BaseRequestBuilder):
|
|
92
92
|
|
93
93
|
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ManagedAppStatusesRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
|
94
94
|
"""
|
95
|
-
List properties and relationships of the
|
95
|
+
List properties and relationships of the managedAppStatusRaw objects.
|
96
96
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
97
97
|
Returns: RequestInformation
|
98
98
|
"""
|
@@ -138,7 +138,7 @@ class ManagedAppStatusesRequestBuilder(BaseRequestBuilder):
|
|
138
138
|
@dataclass
|
139
139
|
class ManagedAppStatusesRequestBuilderGetQueryParameters():
|
140
140
|
"""
|
141
|
-
List properties and relationships of the
|
141
|
+
List properties and relationships of the managedAppStatusRaw objects.
|
142
142
|
"""
|
143
143
|
def get_query_parameter(self,original_name: str) -> str:
|
144
144
|
"""
|
@@ -31,10 +31,10 @@ class ManagedEBookAssignmentItemRequestBuilder(BaseRequestBuilder):
|
|
31
31
|
|
32
32
|
async def delete(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None:
|
33
33
|
"""
|
34
|
-
Deletes a
|
34
|
+
Deletes a iosVppEBookAssignment.
|
35
35
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
36
36
|
Returns: None
|
37
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-books-
|
37
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-books-iosvppebookassignment-delete?view=graph-rest-1.0
|
38
38
|
"""
|
39
39
|
request_info = self.to_delete_request_information(
|
40
40
|
request_configuration
|
@@ -50,10 +50,10 @@ class ManagedEBookAssignmentItemRequestBuilder(BaseRequestBuilder):
|
|
50
50
|
|
51
51
|
async def get(self,request_configuration: Optional[RequestConfiguration[ManagedEBookAssignmentItemRequestBuilderGetQueryParameters]] = None) -> Optional[ManagedEBookAssignment]:
|
52
52
|
"""
|
53
|
-
Read properties and relationships of the
|
53
|
+
Read properties and relationships of the managedEBookAssignment object.
|
54
54
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
55
55
|
Returns: Optional[ManagedEBookAssignment]
|
56
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-books-
|
56
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-get?view=graph-rest-1.0
|
57
57
|
"""
|
58
58
|
request_info = self.to_get_request_information(
|
59
59
|
request_configuration
|
@@ -95,7 +95,7 @@ class ManagedEBookAssignmentItemRequestBuilder(BaseRequestBuilder):
|
|
95
95
|
|
96
96
|
def to_delete_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
|
97
97
|
"""
|
98
|
-
Deletes a
|
98
|
+
Deletes a iosVppEBookAssignment.
|
99
99
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
100
100
|
Returns: RequestInformation
|
101
101
|
"""
|
@@ -106,7 +106,7 @@ class ManagedEBookAssignmentItemRequestBuilder(BaseRequestBuilder):
|
|
106
106
|
|
107
107
|
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ManagedEBookAssignmentItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
|
108
108
|
"""
|
109
|
-
Read properties and relationships of the
|
109
|
+
Read properties and relationships of the managedEBookAssignment object.
|
110
110
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
111
111
|
Returns: RequestInformation
|
112
112
|
"""
|
@@ -150,7 +150,7 @@ class ManagedEBookAssignmentItemRequestBuilder(BaseRequestBuilder):
|
|
150
150
|
@dataclass
|
151
151
|
class ManagedEBookAssignmentItemRequestBuilderGetQueryParameters():
|
152
152
|
"""
|
153
|
-
Read properties and relationships of the
|
153
|
+
Read properties and relationships of the managedEBookAssignment object.
|
154
154
|
"""
|
155
155
|
def get_query_parameter(self,original_name: str) -> str:
|
156
156
|
"""
|
@@ -48,10 +48,10 @@ class ManagedEBooksRequestBuilder(BaseRequestBuilder):
|
|
48
48
|
|
49
49
|
async def get(self,request_configuration: Optional[RequestConfiguration[ManagedEBooksRequestBuilderGetQueryParameters]] = None) -> Optional[ManagedEBookCollectionResponse]:
|
50
50
|
"""
|
51
|
-
List properties and relationships of the
|
51
|
+
List properties and relationships of the iosVppEBook objects.
|
52
52
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
53
53
|
Returns: Optional[ManagedEBookCollectionResponse]
|
54
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-books-
|
54
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-books-iosvppebook-list?view=graph-rest-1.0
|
55
55
|
"""
|
56
56
|
request_info = self.to_get_request_information(
|
57
57
|
request_configuration
|
@@ -93,7 +93,7 @@ class ManagedEBooksRequestBuilder(BaseRequestBuilder):
|
|
93
93
|
|
94
94
|
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ManagedEBooksRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
|
95
95
|
"""
|
96
|
-
List properties and relationships of the
|
96
|
+
List properties and relationships of the iosVppEBook objects.
|
97
97
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
98
98
|
Returns: RequestInformation
|
99
99
|
"""
|
@@ -139,7 +139,7 @@ class ManagedEBooksRequestBuilder(BaseRequestBuilder):
|
|
139
139
|
@dataclass
|
140
140
|
class ManagedEBooksRequestBuilderGetQueryParameters():
|
141
141
|
"""
|
142
|
-
List properties and relationships of the
|
142
|
+
List properties and relationships of the iosVppEBook objects.
|
143
143
|
"""
|
144
144
|
def get_query_parameter(self,original_name: str) -> str:
|
145
145
|
"""
|
@@ -48,10 +48,10 @@ class MobileAppConfigurationsRequestBuilder(BaseRequestBuilder):
|
|
48
48
|
|
49
49
|
async def get(self,request_configuration: Optional[RequestConfiguration[MobileAppConfigurationsRequestBuilderGetQueryParameters]] = None) -> Optional[ManagedDeviceMobileAppConfigurationCollectionResponse]:
|
50
50
|
"""
|
51
|
-
List properties and relationships of the
|
51
|
+
List properties and relationships of the iosMobileAppConfiguration objects.
|
52
52
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
53
53
|
Returns: Optional[ManagedDeviceMobileAppConfigurationCollectionResponse]
|
54
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-apps-
|
54
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-apps-iosmobileappconfiguration-list?view=graph-rest-1.0
|
55
55
|
"""
|
56
56
|
request_info = self.to_get_request_information(
|
57
57
|
request_configuration
|
@@ -93,7 +93,7 @@ class MobileAppConfigurationsRequestBuilder(BaseRequestBuilder):
|
|
93
93
|
|
94
94
|
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[MobileAppConfigurationsRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
|
95
95
|
"""
|
96
|
-
List properties and relationships of the
|
96
|
+
List properties and relationships of the iosMobileAppConfiguration objects.
|
97
97
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
98
98
|
Returns: RequestInformation
|
99
99
|
"""
|
@@ -139,7 +139,7 @@ class MobileAppConfigurationsRequestBuilder(BaseRequestBuilder):
|
|
139
139
|
@dataclass
|
140
140
|
class MobileAppConfigurationsRequestBuilderGetQueryParameters():
|
141
141
|
"""
|
142
|
-
List properties and relationships of the
|
142
|
+
List properties and relationships of the iosMobileAppConfiguration objects.
|
143
143
|
"""
|
144
144
|
def get_query_parameter(self,original_name: str) -> str:
|
145
145
|
"""
|
@@ -50,10 +50,10 @@ class MobileAppItemRequestBuilder(BaseRequestBuilder):
|
|
50
50
|
|
51
51
|
async def delete(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None:
|
52
52
|
"""
|
53
|
-
Deletes a
|
53
|
+
Deletes a microsoftStoreForBusinessApp.
|
54
54
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
55
55
|
Returns: None
|
56
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-apps-
|
56
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-apps-microsoftstoreforbusinessapp-delete?view=graph-rest-1.0
|
57
57
|
"""
|
58
58
|
request_info = self.to_delete_request_information(
|
59
59
|
request_configuration
|
@@ -69,10 +69,10 @@ class MobileAppItemRequestBuilder(BaseRequestBuilder):
|
|
69
69
|
|
70
70
|
async def get(self,request_configuration: Optional[RequestConfiguration[MobileAppItemRequestBuilderGetQueryParameters]] = None) -> Optional[MobileApp]:
|
71
71
|
"""
|
72
|
-
Read properties and relationships of the
|
72
|
+
Read properties and relationships of the macOSLobApp object.
|
73
73
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
74
74
|
Returns: Optional[MobileApp]
|
75
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-apps-
|
75
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-apps-macoslobapp-get?view=graph-rest-1.0
|
76
76
|
"""
|
77
77
|
request_info = self.to_get_request_information(
|
78
78
|
request_configuration
|
@@ -90,11 +90,11 @@ class MobileAppItemRequestBuilder(BaseRequestBuilder):
|
|
90
90
|
|
91
91
|
async def patch(self,body: MobileApp, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[MobileApp]:
|
92
92
|
"""
|
93
|
-
Update the properties of a
|
93
|
+
Update the properties of a androidLobApp object.
|
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: Optional[MobileApp]
|
97
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-apps-
|
97
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-apps-androidlobapp-update?view=graph-rest-1.0
|
98
98
|
"""
|
99
99
|
if body is None:
|
100
100
|
raise TypeError("body cannot be null.")
|
@@ -114,7 +114,7 @@ class MobileAppItemRequestBuilder(BaseRequestBuilder):
|
|
114
114
|
|
115
115
|
def to_delete_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
|
116
116
|
"""
|
117
|
-
Deletes a
|
117
|
+
Deletes a microsoftStoreForBusinessApp.
|
118
118
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
119
119
|
Returns: RequestInformation
|
120
120
|
"""
|
@@ -125,7 +125,7 @@ class MobileAppItemRequestBuilder(BaseRequestBuilder):
|
|
125
125
|
|
126
126
|
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[MobileAppItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
|
127
127
|
"""
|
128
|
-
Read properties and relationships of the
|
128
|
+
Read properties and relationships of the macOSLobApp object.
|
129
129
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
130
130
|
Returns: RequestInformation
|
131
131
|
"""
|
@@ -136,7 +136,7 @@ class MobileAppItemRequestBuilder(BaseRequestBuilder):
|
|
136
136
|
|
137
137
|
def to_patch_request_information(self,body: MobileApp, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
|
138
138
|
"""
|
139
|
-
Update the properties of a
|
139
|
+
Update the properties of a androidLobApp object.
|
140
140
|
param body: The request body
|
141
141
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
142
142
|
Returns: RequestInformation
|
@@ -340,7 +340,7 @@ class MobileAppItemRequestBuilder(BaseRequestBuilder):
|
|
340
340
|
@dataclass
|
341
341
|
class MobileAppItemRequestBuilderGetQueryParameters():
|
342
342
|
"""
|
343
|
-
Read properties and relationships of the
|
343
|
+
Read properties and relationships of the macOSLobApp object.
|
344
344
|
"""
|
345
345
|
def get_query_parameter(self,original_name: str) -> str:
|
346
346
|
"""
|
@@ -64,10 +64,10 @@ class MobileAppsRequestBuilder(BaseRequestBuilder):
|
|
64
64
|
|
65
65
|
async def get(self,request_configuration: Optional[RequestConfiguration[MobileAppsRequestBuilderGetQueryParameters]] = None) -> Optional[MobileAppCollectionResponse]:
|
66
66
|
"""
|
67
|
-
List properties and relationships of the
|
67
|
+
List properties and relationships of the webApp objects.
|
68
68
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
69
69
|
Returns: Optional[MobileAppCollectionResponse]
|
70
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-apps-
|
70
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-apps-webapp-list?view=graph-rest-1.0
|
71
71
|
"""
|
72
72
|
request_info = self.to_get_request_information(
|
73
73
|
request_configuration
|
@@ -85,11 +85,11 @@ class MobileAppsRequestBuilder(BaseRequestBuilder):
|
|
85
85
|
|
86
86
|
async def post(self,body: MobileApp, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[MobileApp]:
|
87
87
|
"""
|
88
|
-
Create a new
|
88
|
+
Create a new windowsMobileMSI object.
|
89
89
|
param body: The request body
|
90
90
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
91
91
|
Returns: Optional[MobileApp]
|
92
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-apps-
|
92
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-apps-windowsmobilemsi-create?view=graph-rest-1.0
|
93
93
|
"""
|
94
94
|
if body is None:
|
95
95
|
raise TypeError("body cannot be null.")
|
@@ -109,7 +109,7 @@ class MobileAppsRequestBuilder(BaseRequestBuilder):
|
|
109
109
|
|
110
110
|
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[MobileAppsRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
|
111
111
|
"""
|
112
|
-
List properties and relationships of the
|
112
|
+
List properties and relationships of the webApp objects.
|
113
113
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
114
114
|
Returns: RequestInformation
|
115
115
|
"""
|
@@ -120,7 +120,7 @@ class MobileAppsRequestBuilder(BaseRequestBuilder):
|
|
120
120
|
|
121
121
|
def to_post_request_information(self,body: MobileApp, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
|
122
122
|
"""
|
123
|
-
Create a new
|
123
|
+
Create a new windowsMobileMSI object.
|
124
124
|
param body: The request body
|
125
125
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
126
126
|
Returns: RequestInformation
|
@@ -299,7 +299,7 @@ class MobileAppsRequestBuilder(BaseRequestBuilder):
|
|
299
299
|
@dataclass
|
300
300
|
class MobileAppsRequestBuilderGetQueryParameters():
|
301
301
|
"""
|
302
|
-
List properties and relationships of the
|
302
|
+
List properties and relationships of the webApp objects.
|
303
303
|
"""
|
304
304
|
def get_query_parameter(self,original_name: str) -> str:
|
305
305
|
"""
|
@@ -48,10 +48,10 @@ class DeviceCompliancePoliciesRequestBuilder(BaseRequestBuilder):
|
|
48
48
|
|
49
49
|
async def get(self,request_configuration: Optional[RequestConfiguration[DeviceCompliancePoliciesRequestBuilderGetQueryParameters]] = None) -> Optional[DeviceCompliancePolicyCollectionResponse]:
|
50
50
|
"""
|
51
|
-
List properties and relationships of the
|
51
|
+
List properties and relationships of the windowsPhone81CompliancePolicy objects.
|
52
52
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
53
53
|
Returns: Optional[DeviceCompliancePolicyCollectionResponse]
|
54
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-deviceconfig-
|
54
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-deviceconfig-windowsphone81compliancepolicy-list?view=graph-rest-1.0
|
55
55
|
"""
|
56
56
|
request_info = self.to_get_request_information(
|
57
57
|
request_configuration
|
@@ -69,11 +69,11 @@ class DeviceCompliancePoliciesRequestBuilder(BaseRequestBuilder):
|
|
69
69
|
|
70
70
|
async def post(self,body: DeviceCompliancePolicy, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[DeviceCompliancePolicy]:
|
71
71
|
"""
|
72
|
-
Create a new
|
72
|
+
Create a new windows81CompliancePolicy object.
|
73
73
|
param body: The request body
|
74
74
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
75
75
|
Returns: Optional[DeviceCompliancePolicy]
|
76
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-deviceconfig-
|
76
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-deviceconfig-windows81compliancepolicy-create?view=graph-rest-1.0
|
77
77
|
"""
|
78
78
|
if body is None:
|
79
79
|
raise TypeError("body cannot be null.")
|
@@ -93,7 +93,7 @@ class DeviceCompliancePoliciesRequestBuilder(BaseRequestBuilder):
|
|
93
93
|
|
94
94
|
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[DeviceCompliancePoliciesRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
|
95
95
|
"""
|
96
|
-
List properties and relationships of the
|
96
|
+
List properties and relationships of the windowsPhone81CompliancePolicy objects.
|
97
97
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
98
98
|
Returns: RequestInformation
|
99
99
|
"""
|
@@ -104,7 +104,7 @@ class DeviceCompliancePoliciesRequestBuilder(BaseRequestBuilder):
|
|
104
104
|
|
105
105
|
def to_post_request_information(self,body: DeviceCompliancePolicy, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
|
106
106
|
"""
|
107
|
-
Create a new
|
107
|
+
Create a new windows81CompliancePolicy object.
|
108
108
|
param body: The request body
|
109
109
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
110
110
|
Returns: RequestInformation
|
@@ -139,7 +139,7 @@ class DeviceCompliancePoliciesRequestBuilder(BaseRequestBuilder):
|
|
139
139
|
@dataclass
|
140
140
|
class DeviceCompliancePoliciesRequestBuilderGetQueryParameters():
|
141
141
|
"""
|
142
|
-
List properties and relationships of the
|
142
|
+
List properties and relationships of the windowsPhone81CompliancePolicy objects.
|
143
143
|
"""
|
144
144
|
def get_query_parameter(self,original_name: str) -> str:
|
145
145
|
"""
|
@@ -40,10 +40,10 @@ class DeviceCompliancePolicyItemRequestBuilder(BaseRequestBuilder):
|
|
40
40
|
|
41
41
|
async def delete(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None:
|
42
42
|
"""
|
43
|
-
Deletes a
|
43
|
+
Deletes a iosCompliancePolicy.
|
44
44
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
45
45
|
Returns: None
|
46
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-deviceconfig-
|
46
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-deviceconfig-ioscompliancepolicy-delete?view=graph-rest-1.0
|
47
47
|
"""
|
48
48
|
request_info = self.to_delete_request_information(
|
49
49
|
request_configuration
|
@@ -59,10 +59,10 @@ class DeviceCompliancePolicyItemRequestBuilder(BaseRequestBuilder):
|
|
59
59
|
|
60
60
|
async def get(self,request_configuration: Optional[RequestConfiguration[DeviceCompliancePolicyItemRequestBuilderGetQueryParameters]] = None) -> Optional[DeviceCompliancePolicy]:
|
61
61
|
"""
|
62
|
-
Read properties and relationships of the
|
62
|
+
Read properties and relationships of the macOSCompliancePolicy object.
|
63
63
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
64
64
|
Returns: Optional[DeviceCompliancePolicy]
|
65
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-deviceconfig-
|
65
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-deviceconfig-macoscompliancepolicy-get?view=graph-rest-1.0
|
66
66
|
"""
|
67
67
|
request_info = self.to_get_request_information(
|
68
68
|
request_configuration
|
@@ -80,11 +80,11 @@ class DeviceCompliancePolicyItemRequestBuilder(BaseRequestBuilder):
|
|
80
80
|
|
81
81
|
async def patch(self,body: DeviceCompliancePolicy, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[DeviceCompliancePolicy]:
|
82
82
|
"""
|
83
|
-
Update the properties of a
|
83
|
+
Update the properties of a windowsPhone81CompliancePolicy object.
|
84
84
|
param body: The request body
|
85
85
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
86
86
|
Returns: Optional[DeviceCompliancePolicy]
|
87
|
-
Find more info here: https://learn.microsoft.com/graph/api/intune-deviceconfig-
|
87
|
+
Find more info here: https://learn.microsoft.com/graph/api/intune-deviceconfig-windowsphone81compliancepolicy-update?view=graph-rest-1.0
|
88
88
|
"""
|
89
89
|
if body is None:
|
90
90
|
raise TypeError("body cannot be null.")
|
@@ -104,7 +104,7 @@ class DeviceCompliancePolicyItemRequestBuilder(BaseRequestBuilder):
|
|
104
104
|
|
105
105
|
def to_delete_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
|
106
106
|
"""
|
107
|
-
Deletes a
|
107
|
+
Deletes a iosCompliancePolicy.
|
108
108
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
109
109
|
Returns: RequestInformation
|
110
110
|
"""
|
@@ -115,7 +115,7 @@ class DeviceCompliancePolicyItemRequestBuilder(BaseRequestBuilder):
|
|
115
115
|
|
116
116
|
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[DeviceCompliancePolicyItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
|
117
117
|
"""
|
118
|
-
Read properties and relationships of the
|
118
|
+
Read properties and relationships of the macOSCompliancePolicy object.
|
119
119
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
120
120
|
Returns: RequestInformation
|
121
121
|
"""
|
@@ -126,7 +126,7 @@ class DeviceCompliancePolicyItemRequestBuilder(BaseRequestBuilder):
|
|
126
126
|
|
127
127
|
def to_patch_request_information(self,body: DeviceCompliancePolicy, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
|
128
128
|
"""
|
129
|
-
Update the properties of a
|
129
|
+
Update the properties of a windowsPhone81CompliancePolicy object.
|
130
130
|
param body: The request body
|
131
131
|
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
132
132
|
Returns: RequestInformation
|
@@ -240,7 +240,7 @@ class DeviceCompliancePolicyItemRequestBuilder(BaseRequestBuilder):
|
|
240
240
|
@dataclass
|
241
241
|
class DeviceCompliancePolicyItemRequestBuilderGetQueryParameters():
|
242
242
|
"""
|
243
|
-
Read properties and relationships of the
|
243
|
+
Read properties and relationships of the macOSCompliancePolicy object.
|
244
244
|
"""
|
245
245
|
def get_query_parameter(self,original_name: str) -> str:
|
246
246
|
"""
|