msgraph-sdk 1.52.0__py3-none-any.whl → 1.54.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/admin/teams/policy/microsoft_graph_teams_administration_get_policy_id_with_type_with_name/get_policy_id_with_type_with_name_get_response.py +58 -0
- msgraph/generated/admin/teams/policy/microsoft_graph_teams_administration_get_policy_id_with_type_with_name/microsoft_graph_teams_administration_get_policy_id_with_type_with_name_request_builder.py +143 -0
- msgraph/generated/admin/teams/policy/policy_request_builder.py +214 -0
- msgraph/generated/admin/teams/policy/user_assignments/count/count_request_builder.py +104 -0
- msgraph/generated/admin/teams/policy/user_assignments/item/teams_policy_user_assignment_item_request_builder.py +188 -0
- msgraph/generated/admin/teams/policy/user_assignments/microsoft_graph_teams_administration_assign/assign_post_request_body.py +57 -0
- msgraph/generated/admin/teams/policy/user_assignments/microsoft_graph_teams_administration_assign/microsoft_graph_teams_administration_assign_request_builder.py +87 -0
- msgraph/generated/admin/teams/policy/user_assignments/microsoft_graph_teams_administration_unassign/microsoft_graph_teams_administration_unassign_request_builder.py +87 -0
- msgraph/generated/admin/teams/policy/user_assignments/microsoft_graph_teams_administration_unassign/unassign_post_request_body.py +57 -0
- msgraph/generated/admin/teams/policy/user_assignments/user_assignments_request_builder.py +228 -0
- msgraph/generated/admin/teams/teams_request_builder.py +13 -3
- msgraph/generated/kiota-dom-export.txt +453 -25
- msgraph/generated/kiota-lock.json +2 -2
- msgraph/generated/models/admin.py +1 -1
- msgraph/generated/models/ai_agent_info.py +57 -0
- msgraph/generated/models/ai_interaction_entity.py +85 -0
- msgraph/generated/models/ai_interaction_plugin.py +14 -23
- msgraph/generated/models/authentication.py +7 -0
- msgraph/generated/models/authentication_method.py +12 -0
- msgraph/generated/models/cloud_pc_domain_join_configuration.py +1 -1
- msgraph/generated/models/cloud_pc_on_premises_connection_health_check.py +1 -1
- msgraph/generated/models/entity.py +35 -0
- msgraph/generated/models/external_authentication_method.py +61 -0
- msgraph/generated/models/external_authentication_method_collection_response.py +58 -0
- msgraph/generated/models/fido2_authentication_method.py +0 -5
- msgraph/generated/models/identity_provider_base.py +7 -0
- msgraph/generated/models/microsoft_authenticator_authentication_method.py +0 -5
- msgraph/generated/models/oidc_address_inbound_claims.py +70 -0
- msgraph/generated/models/oidc_client_authentication.py +73 -0
- msgraph/generated/models/oidc_client_secret_authentication.py +57 -0
- msgraph/generated/models/oidc_identity_provider.py +90 -0
- msgraph/generated/models/oidc_inbound_claim_mapping_override.py +93 -0
- msgraph/generated/models/oidc_private_jwt_key_client_authentication.py +53 -0
- msgraph/generated/models/oidc_response_type.py +8 -0
- msgraph/generated/models/password_authentication_method.py +0 -5
- msgraph/generated/models/platform_credential_authentication_method.py +0 -5
- msgraph/generated/models/process_conversation_metadata.py +14 -0
- msgraph/generated/models/protection_policy_artifact_count.py +66 -0
- msgraph/generated/models/protection_policy_base.py +11 -0
- msgraph/generated/models/resource_access_detail.py +92 -0
- msgraph/generated/models/resource_access_status.py +8 -0
- msgraph/generated/models/resource_access_type.py +9 -0
- msgraph/generated/models/security/alert.py +1 -1
- msgraph/generated/models/security/ediscovery_purge_data_operation.py +7 -0
- msgraph/generated/models/security/incident.py +4 -0
- msgraph/generated/models/security/sensor.py +7 -0
- msgraph/generated/models/security/sensor_candidate.py +4 -0
- msgraph/generated/models/security/service_status.py +11 -0
- msgraph/generated/models/service_principal.py +1 -1
- msgraph/generated/models/teams_administration/policy_identifier_detail.py +61 -0
- msgraph/generated/models/teams_administration/teams_admin_root.py +8 -1
- msgraph/generated/models/teams_administration/teams_policy_assignment.py +60 -0
- msgraph/generated/models/teams_administration/teams_policy_user_assignment.py +65 -0
- msgraph/generated/models/teams_administration/teams_policy_user_assignment_collection_response.py +58 -0
- msgraph/generated/models/temporary_access_pass_authentication_method.py +0 -4
- msgraph/generated/models/usage_rights.py +1 -0
- msgraph/generated/models/windows_hello_for_business_authentication_method.py +0 -5
- msgraph/generated/policies/authentication_methods_policy/authentication_method_configurations/authentication_method_configurations_request_builder.py +3 -3
- msgraph/generated/policies/authentication_methods_policy/authentication_method_configurations/item/authentication_method_configuration_item_request_builder.py +10 -7
- msgraph/generated/users/item/authentication/authentication_request_builder.py +10 -0
- msgraph/generated/users/item/authentication/external_authentication_methods/count/count_request_builder.py +104 -0
- msgraph/generated/users/item/authentication/external_authentication_methods/external_authentication_methods_request_builder.py +209 -0
- msgraph/generated/users/item/authentication/external_authentication_methods/item/external_authentication_method_item_request_builder.py +189 -0
- {msgraph_sdk-1.52.0.dist-info → msgraph_sdk-1.54.0.dist-info}/METADATA +1 -1
- {msgraph_sdk-1.52.0.dist-info → msgraph_sdk-1.54.0.dist-info}/RECORD +68 -35
- {msgraph_sdk-1.52.0.dist-info → msgraph_sdk-1.54.0.dist-info}/WHEEL +0 -0
- {msgraph_sdk-1.52.0.dist-info → msgraph_sdk-1.54.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from collections.abc import Callable
|
|
3
|
+
from dataclasses import dataclass, field
|
|
4
|
+
from kiota_abstractions.base_request_builder import BaseRequestBuilder
|
|
5
|
+
from kiota_abstractions.base_request_configuration import RequestConfiguration
|
|
6
|
+
from kiota_abstractions.default_query_parameters import QueryParameters
|
|
7
|
+
from kiota_abstractions.get_path_parameters import get_path_parameters
|
|
8
|
+
from kiota_abstractions.method import Method
|
|
9
|
+
from kiota_abstractions.request_adapter import RequestAdapter
|
|
10
|
+
from kiota_abstractions.request_information import RequestInformation
|
|
11
|
+
from kiota_abstractions.request_option import RequestOption
|
|
12
|
+
from kiota_abstractions.serialization import Parsable, ParsableFactory
|
|
13
|
+
from typing import Any, Optional, TYPE_CHECKING, Union
|
|
14
|
+
from warnings import warn
|
|
15
|
+
|
|
16
|
+
if TYPE_CHECKING:
|
|
17
|
+
from ......models.external_authentication_method import ExternalAuthenticationMethod
|
|
18
|
+
from ......models.o_data_errors.o_data_error import ODataError
|
|
19
|
+
|
|
20
|
+
class ExternalAuthenticationMethodItemRequestBuilder(BaseRequestBuilder):
|
|
21
|
+
"""
|
|
22
|
+
Provides operations to manage the externalAuthenticationMethods property of the microsoft.graph.authentication entity.
|
|
23
|
+
"""
|
|
24
|
+
def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None:
|
|
25
|
+
"""
|
|
26
|
+
Instantiates a new ExternalAuthenticationMethodItemRequestBuilder and sets the default values.
|
|
27
|
+
param path_parameters: The raw url or the url-template parameters for the request.
|
|
28
|
+
param request_adapter: The request adapter to use to execute the requests.
|
|
29
|
+
Returns: None
|
|
30
|
+
"""
|
|
31
|
+
super().__init__(request_adapter, "{+baseurl}/users/{user%2Did}/authentication/externalAuthenticationMethods/{externalAuthenticationMethod%2Did}{?%24expand,%24select}", path_parameters)
|
|
32
|
+
|
|
33
|
+
async def delete(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None:
|
|
34
|
+
"""
|
|
35
|
+
Delete an externalAuthenticationMethod object. This API doesn't support self-service operations.
|
|
36
|
+
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
|
+
Returns: None
|
|
38
|
+
Find more info here: https://learn.microsoft.com/graph/api/authentication-delete-externalauthenticationmethods?view=graph-rest-1.0
|
|
39
|
+
"""
|
|
40
|
+
request_info = self.to_delete_request_information(
|
|
41
|
+
request_configuration
|
|
42
|
+
)
|
|
43
|
+
from ......models.o_data_errors.o_data_error import ODataError
|
|
44
|
+
|
|
45
|
+
error_mapping: dict[str, type[ParsableFactory]] = {
|
|
46
|
+
"XXX": ODataError,
|
|
47
|
+
}
|
|
48
|
+
if not self.request_adapter:
|
|
49
|
+
raise Exception("Http core is null")
|
|
50
|
+
return await self.request_adapter.send_no_response_content_async(request_info, error_mapping)
|
|
51
|
+
|
|
52
|
+
async def get(self,request_configuration: Optional[RequestConfiguration[ExternalAuthenticationMethodItemRequestBuilderGetQueryParameters]] = None) -> Optional[ExternalAuthenticationMethod]:
|
|
53
|
+
"""
|
|
54
|
+
Represents the external authentication methods registered to a user for authentication using an external identity provider.
|
|
55
|
+
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
|
56
|
+
Returns: Optional[ExternalAuthenticationMethod]
|
|
57
|
+
"""
|
|
58
|
+
request_info = self.to_get_request_information(
|
|
59
|
+
request_configuration
|
|
60
|
+
)
|
|
61
|
+
from ......models.o_data_errors.o_data_error import ODataError
|
|
62
|
+
|
|
63
|
+
error_mapping: dict[str, type[ParsableFactory]] = {
|
|
64
|
+
"XXX": ODataError,
|
|
65
|
+
}
|
|
66
|
+
if not self.request_adapter:
|
|
67
|
+
raise Exception("Http core is null")
|
|
68
|
+
from ......models.external_authentication_method import ExternalAuthenticationMethod
|
|
69
|
+
|
|
70
|
+
return await self.request_adapter.send_async(request_info, ExternalAuthenticationMethod, error_mapping)
|
|
71
|
+
|
|
72
|
+
async def patch(self,body: ExternalAuthenticationMethod, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[ExternalAuthenticationMethod]:
|
|
73
|
+
"""
|
|
74
|
+
Update the navigation property externalAuthenticationMethods in users
|
|
75
|
+
param body: The request body
|
|
76
|
+
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
|
77
|
+
Returns: Optional[ExternalAuthenticationMethod]
|
|
78
|
+
"""
|
|
79
|
+
if body is None:
|
|
80
|
+
raise TypeError("body cannot be null.")
|
|
81
|
+
request_info = self.to_patch_request_information(
|
|
82
|
+
body, request_configuration
|
|
83
|
+
)
|
|
84
|
+
from ......models.o_data_errors.o_data_error import ODataError
|
|
85
|
+
|
|
86
|
+
error_mapping: dict[str, type[ParsableFactory]] = {
|
|
87
|
+
"XXX": ODataError,
|
|
88
|
+
}
|
|
89
|
+
if not self.request_adapter:
|
|
90
|
+
raise Exception("Http core is null")
|
|
91
|
+
from ......models.external_authentication_method import ExternalAuthenticationMethod
|
|
92
|
+
|
|
93
|
+
return await self.request_adapter.send_async(request_info, ExternalAuthenticationMethod, error_mapping)
|
|
94
|
+
|
|
95
|
+
def to_delete_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
|
|
96
|
+
"""
|
|
97
|
+
Delete an externalAuthenticationMethod object. This API doesn't support self-service operations.
|
|
98
|
+
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
|
99
|
+
Returns: RequestInformation
|
|
100
|
+
"""
|
|
101
|
+
request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters)
|
|
102
|
+
request_info.configure(request_configuration)
|
|
103
|
+
request_info.headers.try_add("Accept", "application/json")
|
|
104
|
+
return request_info
|
|
105
|
+
|
|
106
|
+
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ExternalAuthenticationMethodItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
|
|
107
|
+
"""
|
|
108
|
+
Represents the external authentication methods registered to a user for authentication using an external identity provider.
|
|
109
|
+
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
|
110
|
+
Returns: RequestInformation
|
|
111
|
+
"""
|
|
112
|
+
request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters)
|
|
113
|
+
request_info.configure(request_configuration)
|
|
114
|
+
request_info.headers.try_add("Accept", "application/json")
|
|
115
|
+
return request_info
|
|
116
|
+
|
|
117
|
+
def to_patch_request_information(self,body: ExternalAuthenticationMethod, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
|
|
118
|
+
"""
|
|
119
|
+
Update the navigation property externalAuthenticationMethods in users
|
|
120
|
+
param body: The request body
|
|
121
|
+
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
|
|
122
|
+
Returns: RequestInformation
|
|
123
|
+
"""
|
|
124
|
+
if body is None:
|
|
125
|
+
raise TypeError("body cannot be null.")
|
|
126
|
+
request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters)
|
|
127
|
+
request_info.configure(request_configuration)
|
|
128
|
+
request_info.headers.try_add("Accept", "application/json")
|
|
129
|
+
request_info.set_content_from_parsable(self.request_adapter, "application/json", body)
|
|
130
|
+
return request_info
|
|
131
|
+
|
|
132
|
+
def with_url(self,raw_url: str) -> ExternalAuthenticationMethodItemRequestBuilder:
|
|
133
|
+
"""
|
|
134
|
+
Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
|
|
135
|
+
param raw_url: The raw URL to use for the request builder.
|
|
136
|
+
Returns: ExternalAuthenticationMethodItemRequestBuilder
|
|
137
|
+
"""
|
|
138
|
+
if raw_url is None:
|
|
139
|
+
raise TypeError("raw_url cannot be null.")
|
|
140
|
+
return ExternalAuthenticationMethodItemRequestBuilder(self.request_adapter, raw_url)
|
|
141
|
+
|
|
142
|
+
@dataclass
|
|
143
|
+
class ExternalAuthenticationMethodItemRequestBuilderDeleteRequestConfiguration(RequestConfiguration[QueryParameters]):
|
|
144
|
+
"""
|
|
145
|
+
Configuration for the request such as headers, query parameters, and middleware options.
|
|
146
|
+
"""
|
|
147
|
+
warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning)
|
|
148
|
+
|
|
149
|
+
@dataclass
|
|
150
|
+
class ExternalAuthenticationMethodItemRequestBuilderGetQueryParameters():
|
|
151
|
+
"""
|
|
152
|
+
Represents the external authentication methods registered to a user for authentication using an external identity provider.
|
|
153
|
+
"""
|
|
154
|
+
def get_query_parameter(self,original_name: str) -> str:
|
|
155
|
+
"""
|
|
156
|
+
Maps the query parameters names to their encoded names for the URI template parsing.
|
|
157
|
+
param original_name: The original query parameter name in the class.
|
|
158
|
+
Returns: str
|
|
159
|
+
"""
|
|
160
|
+
if original_name is None:
|
|
161
|
+
raise TypeError("original_name cannot be null.")
|
|
162
|
+
if original_name == "expand":
|
|
163
|
+
return "%24expand"
|
|
164
|
+
if original_name == "select":
|
|
165
|
+
return "%24select"
|
|
166
|
+
return original_name
|
|
167
|
+
|
|
168
|
+
# Expand related entities
|
|
169
|
+
expand: Optional[list[str]] = None
|
|
170
|
+
|
|
171
|
+
# Select properties to be returned
|
|
172
|
+
select: Optional[list[str]] = None
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
@dataclass
|
|
176
|
+
class ExternalAuthenticationMethodItemRequestBuilderGetRequestConfiguration(RequestConfiguration[ExternalAuthenticationMethodItemRequestBuilderGetQueryParameters]):
|
|
177
|
+
"""
|
|
178
|
+
Configuration for the request such as headers, query parameters, and middleware options.
|
|
179
|
+
"""
|
|
180
|
+
warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning)
|
|
181
|
+
|
|
182
|
+
@dataclass
|
|
183
|
+
class ExternalAuthenticationMethodItemRequestBuilderPatchRequestConfiguration(RequestConfiguration[QueryParameters]):
|
|
184
|
+
"""
|
|
185
|
+
Configuration for the request such as headers, query parameters, and middleware options.
|
|
186
|
+
"""
|
|
187
|
+
warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning)
|
|
188
|
+
|
|
189
|
+
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
msgraph/__init__.py,sha256=z9y3uvhxSkYvEROUONqY_Lg8ORHRDI9mWdeqqPhSWEo,211
|
|
2
|
-
msgraph/_version.py,sha256=
|
|
2
|
+
msgraph/_version.py,sha256=WDWcBspIVD-cICzlQ530MRM7ouHXipE4m9XjiULPZRI,98
|
|
3
3
|
msgraph/graph_request_adapter.py,sha256=t4rnrAb-jWOOzFO2m8fDT9F7DiqSHMMX7CoEToxGNkY,1033
|
|
4
4
|
msgraph/graph_service_client.py,sha256=KoDB2xwNpbXk3sc1X34-4lFiztLJdqiC8Ku9zbihcsE,2904
|
|
5
5
|
msgraph/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
msgraph/generated/base_graph_service_client.py,sha256=zXv7Ej4zxRZqn9jkuzSTT63R4a1ubhg6TRlI9HW5-zs,39014
|
|
7
|
-
msgraph/generated/kiota-dom-export.txt,sha256=
|
|
8
|
-
msgraph/generated/kiota-lock.json,sha256=
|
|
7
|
+
msgraph/generated/kiota-dom-export.txt,sha256=5fPo5ElGol3iKcQiG4jA0F0-wkXKAf6YmoVCH9YP0UM,33017114
|
|
8
|
+
msgraph/generated/kiota-lock.json,sha256=W9d-onOIisAsXUQnvdIfYlLpC4Dd76bk1FerW_QX4aQ,1421
|
|
9
9
|
msgraph/generated/admin/admin_request_builder.py,sha256=JStkuG6-NtggbEDRZYeU_ULPIgYpIWRyWOVmyD7_LYY,10078
|
|
10
10
|
msgraph/generated/admin/edge/edge_request_builder.py,sha256=pw3s08tg9OakRr09USd6YdX1fTLomFuUxnLDmCCXazg,9487
|
|
11
11
|
msgraph/generated/admin/edge/internet_explorer_mode/internet_explorer_mode_request_builder.py,sha256=mU0u6DC0DxzxQMaHforG5HIoWNPkjYB88E12xRSw6W4,9908
|
|
@@ -69,7 +69,17 @@ msgraph/generated/admin/service_announcement/messages/unfavorite/unfavorite_post
|
|
|
69
69
|
msgraph/generated/admin/service_announcement/messages/unfavorite/unfavorite_request_builder.py,sha256=i0PFULd4rGyuq7wizRVO0eZghLLVkrj-yg3SItn9UCM,4694
|
|
70
70
|
msgraph/generated/admin/sharepoint/sharepoint_request_builder.py,sha256=LOFea5g1D7RacC14DGRlhrHT874VTcJ9ZZ_0MIKKAbk,9474
|
|
71
71
|
msgraph/generated/admin/sharepoint/settings/settings_request_builder.py,sha256=mqqDwpVBgfQ1Ct-6PYV86sWIdyHwXZLV6MjCDID8ARA,9510
|
|
72
|
-
msgraph/generated/admin/teams/teams_request_builder.py,sha256
|
|
72
|
+
msgraph/generated/admin/teams/teams_request_builder.py,sha256=-qHNqNAF0WtxeTlYtePx47KHi3YjFt1aLF2DEWFGN7w,10312
|
|
73
|
+
msgraph/generated/admin/teams/policy/policy_request_builder.py,sha256=GcZcJ-MFkOOPkqhplz3j3Qm3pEcR2teD61KkiR4xubo,11164
|
|
74
|
+
msgraph/generated/admin/teams/policy/microsoft_graph_teams_administration_get_policy_id_with_type_with_name/get_policy_id_with_type_with_name_get_response.py,sha256=dB9cLEfi3qLdKKiruEeg62nfyGJBto7NMBfHn3_f7rw,2690
|
|
75
|
+
msgraph/generated/admin/teams/policy/microsoft_graph_teams_administration_get_policy_id_with_type_with_name/microsoft_graph_teams_administration_get_policy_id_with_type_with_name_request_builder.py,sha256=J4GeVqDg_DzybmFDvPUlypnS-90TaKY8aLtylzeNfTE,7238
|
|
76
|
+
msgraph/generated/admin/teams/policy/user_assignments/user_assignments_request_builder.py,sha256=FrOJKDU3jrMeeSgiSouHGcVR3b_8Zn7K6B5cAxIEXjw,11725
|
|
77
|
+
msgraph/generated/admin/teams/policy/user_assignments/count/count_request_builder.py,sha256=NjGSRDuS2MF71wKdC2Syt0Kf2jTF3uQBLVCvc5IFHHw,4792
|
|
78
|
+
msgraph/generated/admin/teams/policy/user_assignments/item/teams_policy_user_assignment_item_request_builder.py,sha256=u8VAQ09UVKkSTwUSoCfC-iiNPPulA-EJF9p_2C7Wu8w,9738
|
|
79
|
+
msgraph/generated/admin/teams/policy/user_assignments/microsoft_graph_teams_administration_assign/assign_post_request_body.py,sha256=wLaEQyCpOkpGQHTbxl4pnkOa60YpBxTDcdCr2V6dEYQ,2667
|
|
80
|
+
msgraph/generated/admin/teams/policy/user_assignments/microsoft_graph_teams_administration_assign/microsoft_graph_teams_administration_assign_request_builder.py,sha256=D6NEV30jsGGIpVCy5PH2LSWqF1Q8Gba1M6KB59zERKw,4714
|
|
81
|
+
msgraph/generated/admin/teams/policy/user_assignments/microsoft_graph_teams_administration_unassign/microsoft_graph_teams_administration_unassign_request_builder.py,sha256=a4kcC05hwbVSL16anGwJKvEO75saonVXbgeM4um5hYs,4724
|
|
82
|
+
msgraph/generated/admin/teams/policy/user_assignments/microsoft_graph_teams_administration_unassign/unassign_post_request_body.py,sha256=ayKtqUmsjsJR-kZJ1E6deycfhuVFYmghrZ1001zj2m8,2675
|
|
73
83
|
msgraph/generated/admin/teams/user_configurations/user_configurations_request_builder.py,sha256=OvKo-6vgLIzTMoavgiGl19aMozm1I9YX_Ads65qOTRQ,10477
|
|
74
84
|
msgraph/generated/admin/teams/user_configurations/count/count_request_builder.py,sha256=P2z-3DLm81kELBi7cMBKmc4WPKsSS05lu-kGjNBUPPM,4786
|
|
75
85
|
msgraph/generated/admin/teams/user_configurations/item/teams_user_configuration_item_request_builder.py,sha256=r9ec6MxQIxM5aNHF0ABxT1NdBolKePKCk5P2Vtp4cfA,10363
|
|
@@ -6916,7 +6926,7 @@ msgraph/generated/models/add_large_gallery_view_operation.py,sha256=Xe_QwvyojlSd
|
|
|
6916
6926
|
msgraph/generated/models/address_book_account_target_content.py,sha256=N4kmzywLE4KqRn7E-EkoOMC7UEroSKduajjGAKL5Fkg,2368
|
|
6917
6927
|
msgraph/generated/models/adhoc_call.py,sha256=Okrc3pmkp-m5TuXtN8HiaTXJkpNtLDOKnDxdFpx0V_M,2625
|
|
6918
6928
|
msgraph/generated/models/adhoc_call_collection_response.py,sha256=3gMcLXyahcSYiXwVq_hw1vHpWaJkFzQfaxhKMeJBd58,2399
|
|
6919
|
-
msgraph/generated/models/admin.py,sha256=
|
|
6929
|
+
msgraph/generated/models/admin.py,sha256=OrlJ_5wbyS2kJv6foodufTniTDSGE8FhkoOXaXEtGGw,5436
|
|
6920
6930
|
msgraph/generated/models/admin_consent_request_policy.py,sha256=3P44-bVHHK4s9rlOyf4khxr65cNhl9bS7ljVhEi1j4k,3845
|
|
6921
6931
|
msgraph/generated/models/admin_microsoft365_apps.py,sha256=Jgalfs7M-29cv3diU8sAgXGKQ6naJLLREcbbMEbxrUs,2384
|
|
6922
6932
|
msgraph/generated/models/admin_report_settings.py,sha256=jJMTXElHWaWmimfT9kbnBmQjz9_S7YHL1J0K_dQgCtc,2253
|
|
@@ -6936,14 +6946,16 @@ msgraph/generated/models/agreement_file_localization_collection_response.py,sha2
|
|
|
6936
6946
|
msgraph/generated/models/agreement_file_properties.py,sha256=xJv89Rsic60WcctNmprosN1MEGzrNbgLpldQd1xg80A,6024
|
|
6937
6947
|
msgraph/generated/models/agreement_file_version.py,sha256=5iH47KfLU5c2vN6T1pGWwbjbYMDmuuI_nvRLR1Vy8Bs,1940
|
|
6938
6948
|
msgraph/generated/models/agreement_file_version_collection_response.py,sha256=AIrP-mkbh2NrCBIhJHx29FMuAA8cd7Hss8AR0-DpG1Y,2534
|
|
6949
|
+
msgraph/generated/models/ai_agent_info.py,sha256=M5pEgFFJM5RDtkKmoJn4soij3LMGdTp7ORx8f6EWcuc,2091
|
|
6939
6950
|
msgraph/generated/models/ai_interaction.py,sha256=u3GA5cD2Qm5WD616vN6gqNuItPEOSjGlpYMfrgbJrNI,6283
|
|
6940
6951
|
msgraph/generated/models/ai_interaction_attachment.py,sha256=xLI8z3KvCMtpViz64G8uEBbGt3l9mfvT8Q49UDUz0zw,3316
|
|
6941
6952
|
msgraph/generated/models/ai_interaction_context.py,sha256=Ts8NOMiPzsvZsFF0wQmwy2_koFdNyBX0MhQcibC9G4o,2960
|
|
6953
|
+
msgraph/generated/models/ai_interaction_entity.py,sha256=9zIkzTq2SfWO9I7N_cFOlN7HxYq1DHT1NvCFR5i8EzE,3812
|
|
6942
6954
|
msgraph/generated/models/ai_interaction_history.py,sha256=YkdliYzmBBuOi0k4ZI-XTv2YuHHS7GDZAVBb0-FZqiI,1779
|
|
6943
6955
|
msgraph/generated/models/ai_interaction_link.py,sha256=66JO9YpDB0bY4R1Iaog01QFc89k2WKqOC36s55xa_vw,2876
|
|
6944
6956
|
msgraph/generated/models/ai_interaction_mention.py,sha256=tCXBJGFLPNaTlth2TATk5jFzJXfRKR1nIbrO7hvxVW4,3268
|
|
6945
6957
|
msgraph/generated/models/ai_interaction_mentioned_identity_set.py,sha256=Ip2HUxYMnpUzdxWz0nbz_JgDBMQkYBDrIw4KkazbJ_U,2850
|
|
6946
|
-
msgraph/generated/models/ai_interaction_plugin.py,sha256=
|
|
6958
|
+
msgraph/generated/models/ai_interaction_plugin.py,sha256=Z0Ktz3V1wXnqdGeTDmtGzfTu1rbajtNQKef4D9vKR90,1900
|
|
6947
6959
|
msgraph/generated/models/ai_interaction_type.py,sha256=kyTZrQAbjtvMGeivXz17ZlQx_uyRU2WMWaWxrXqzq9w,169
|
|
6948
6960
|
msgraph/generated/models/ai_online_meeting.py,sha256=NLIM1IrwqyDdOmAFQfbIbigrzlt5uNTvg9Zc8L8EzJw,2190
|
|
6949
6961
|
msgraph/generated/models/ai_user.py,sha256=dflP0a9wobSzvhhSRSE2e2E0dMLqrWwNrKESf7Kuf_M,2693
|
|
@@ -7114,7 +7126,7 @@ msgraph/generated/models/audit_log_root.py,sha256=sh6WN75o2soaTK7S0kNR1-kDQd6_Om
|
|
|
7114
7126
|
msgraph/generated/models/audit_property.py,sha256=xPdsTwN8A0ce9XVSG2yefyPL9O73Y7n6d3MdXut6m6s,2907
|
|
7115
7127
|
msgraph/generated/models/audit_resource.py,sha256=gi-SsLDttXyQjqvjFtsX936cTITfowt9oc7vQ71ZWVI,3481
|
|
7116
7128
|
msgraph/generated/models/auth_context.py,sha256=p3mt0mZPLLBymkYg16mE3aFTuG2n6BvgHEjl9JcWbD0,2153
|
|
7117
|
-
msgraph/generated/models/authentication.py,sha256=
|
|
7129
|
+
msgraph/generated/models/authentication.py,sha256=0kdmDySjsHlEThBiXt-v071YQtsolwDBmgc4eF1YIu8,10007
|
|
7118
7130
|
msgraph/generated/models/authentication_attribute_collection_input_configuration.py,sha256=HJCi0IaUyRWXNFqE2vGywqLk8jJHm-5NSEvHQTWKR-o,6176
|
|
7119
7131
|
msgraph/generated/models/authentication_attribute_collection_input_type.py,sha256=lu6D-Lmag5ZnCgekWxqGxnSD_TVf_IS_fWV7MD4dcp8,270
|
|
7120
7132
|
msgraph/generated/models/authentication_attribute_collection_option_configuration.py,sha256=z4etVt1e1Z2JpISVpAFuywpRVyFM84KWpj4UVXJJ0z8,2839
|
|
@@ -7136,7 +7148,7 @@ msgraph/generated/models/authentication_events_flow.py,sha256=YzXC7lZgGcV9rFHU8i
|
|
|
7136
7148
|
msgraph/generated/models/authentication_events_flow_collection_response.py,sha256=JcCl-7PW6I-KloVyV8su5CbT4PLqhqXQRX4GXRW6heI,2582
|
|
7137
7149
|
msgraph/generated/models/authentication_flow.py,sha256=eOaEUCIKTYGgwdUEwL6u5jvu30tkoOozPkAzGnD-0ew,3002
|
|
7138
7150
|
msgraph/generated/models/authentication_flows_policy.py,sha256=zDel9qWR9Kl1pTRThW5HwkpntaAAU72lDbzg4nkEkgg,3199
|
|
7139
|
-
msgraph/generated/models/authentication_method.py,sha256=
|
|
7151
|
+
msgraph/generated/models/authentication_method.py,sha256=_KQy643fq5Afcjmqw1rkLa1agoriAFWoWOHi0M0UIic,7732
|
|
7140
7152
|
msgraph/generated/models/authentication_method_collection_response.py,sha256=O8VQo5xfNf0fnKUzhTI-YVJ9BSsAGWBEztH9gZ7qxTc,2531
|
|
7141
7153
|
msgraph/generated/models/authentication_method_configuration.py,sha256=C2O7YE9EZtVK1_LAiQTyIgQN1bDHu3NsRO1jCznQhHY,8278
|
|
7142
7154
|
msgraph/generated/models/authentication_method_configuration_collection_response.py,sha256=yoSJZLbacHp8k1QUVBnn9Y9yt1K_KcsqsbHfjCvo-ew,2690
|
|
@@ -7404,7 +7416,7 @@ msgraph/generated/models/cloud_pc_device_image_collection_response.py,sha256=onk
|
|
|
7404
7416
|
msgraph/generated/models/cloud_pc_device_image_error_code.py,sha256=5Zbw_9Wfep-tG17r-L12N_QPpknShifzwaQcpPvG6Go,650
|
|
7405
7417
|
msgraph/generated/models/cloud_pc_device_image_os_status.py,sha256=GamluVVMZDQa2F6jvqOJbSDowSzo6fKW1X98aJK_tio,221
|
|
7406
7418
|
msgraph/generated/models/cloud_pc_device_image_status.py,sha256=FFutmwl7nTjm0hSZn-Qf0NgQD-7E5a2dc_USYaYuxqE,183
|
|
7407
|
-
msgraph/generated/models/cloud_pc_domain_join_configuration.py,sha256=
|
|
7419
|
+
msgraph/generated/models/cloud_pc_domain_join_configuration.py,sha256=XE9509LtBSq6eGhhwda-en1862eAkvlVQ6b7IzMUVJI,5121
|
|
7408
7420
|
msgraph/generated/models/cloud_pc_domain_join_type.py,sha256=Cju7xVjRqmwolHI0ArHYaeZZ8DYeVHVrk4XUbbO3QPI,189
|
|
7409
7421
|
msgraph/generated/models/cloud_pc_gallery_image.py,sha256=495acYBnPNvf1riKJs0nf5luciSEStfplBo4lHPfj1U,5317
|
|
7410
7422
|
msgraph/generated/models/cloud_pc_gallery_image_collection_response.py,sha256=zMZaRXND1irnf5zx5jGSV0BIjidfltO6fCOyGiq6mmY,2525
|
|
@@ -7414,7 +7426,7 @@ msgraph/generated/models/cloud_pc_management_assignment_target.py,sha256=UpUiSbm
|
|
|
7414
7426
|
msgraph/generated/models/cloud_pc_management_group_assignment_target.py,sha256=PNVJfD2qpKvVkl1bkh9c2K2KDdO-Z65i1XhcpDM4YL0,2769
|
|
7415
7427
|
msgraph/generated/models/cloud_pc_on_premises_connection.py,sha256=XuEOGLJYSz7UdF5f-0YijSfaWqT-zVBigLExKz1SkxA,9769
|
|
7416
7428
|
msgraph/generated/models/cloud_pc_on_premises_connection_collection_response.py,sha256=KzVGlSTepMR4FI8TnauPsXj-_Io0xsDiRQniaXOSvF8,2624
|
|
7417
|
-
msgraph/generated/models/cloud_pc_on_premises_connection_health_check.py,sha256=
|
|
7429
|
+
msgraph/generated/models/cloud_pc_on_premises_connection_health_check.py,sha256=Rgamz9csa5qqISbzv8MxMfv_isVPck6wf8dQmiqUtz0,6128
|
|
7418
7430
|
msgraph/generated/models/cloud_pc_on_premises_connection_health_check_error_type.py,sha256=fz2mPFo7Hcg2k23w_WJFcrwN3__wqIwGU8ZFy75Ibp4,6254
|
|
7419
7431
|
msgraph/generated/models/cloud_pc_on_premises_connection_status.py,sha256=Vxu6rc4f1FKuANo3VFUwzo1_jwTfqU1R7NeTmEwUwFA,281
|
|
7420
7432
|
msgraph/generated/models/cloud_pc_on_premises_connection_status_detail.py,sha256=jtgUyzWAq2VWUlOPLQQWJTjaJHGr_o26qwvJxdi9p4g,3944
|
|
@@ -7955,7 +7967,7 @@ msgraph/generated/models/enterprise_code_signing_certificate.py,sha256=xqFodYOoY
|
|
|
7955
7967
|
msgraph/generated/models/entitlement_management.py,sha256=6sbH3L-WbhvaVosT2eBvsXwc3GVRIJAe7Uc8BO14rys,8979
|
|
7956
7968
|
msgraph/generated/models/entitlement_management_schedule.py,sha256=FNZzsE_Ihctc5j0Ex2HUFploQGbowkfdc8AWk9lfoEc,3647
|
|
7957
7969
|
msgraph/generated/models/entitlement_management_settings.py,sha256=0jFVjMDdsTiXYcosnYawF_0rbDGXFChSSdjUisVB6bw,3289
|
|
7958
|
-
msgraph/generated/models/entity.py,sha256=
|
|
7970
|
+
msgraph/generated/models/entity.py,sha256=gMIRg1HJJtx33QqynMgv1bMYNGxGq7_ZWjupMLrCfLQ,472314
|
|
7959
7971
|
msgraph/generated/models/entity_type.py,sha256=x-OHKPHHaonX4_78NrAl4GeoS3jrIIPiXD8Q3G7nCK0,405
|
|
7960
7972
|
msgraph/generated/models/enumerated_device_registration_membership.py,sha256=Axo1w41hitvUhAkXpM_tWjiQRf03IaJxCbzmIO4pQuk,2586
|
|
7961
7973
|
msgraph/generated/models/event.py,sha256=Yel_WUspoTeZpK25GsLW_oZqSMG7eYyl1Gsil2stuFY,21662
|
|
@@ -7982,6 +7994,8 @@ msgraph/generated/models/extension_property.py,sha256=6CW-UHJ4nXTMRTgBnQmntVFllw
|
|
|
7982
7994
|
msgraph/generated/models/extension_property_collection_response.py,sha256=MjPvlcRiTxf_JS5MfeyXqXcBzokpqh_uCMOcKhsBbjQ,2495
|
|
7983
7995
|
msgraph/generated/models/extension_schema_property.py,sha256=FkSQUgWv_NqVs8oj4_RGbI8VzmETQ8QFIb4AdXPJ86k,2868
|
|
7984
7996
|
msgraph/generated/models/external_audience_scope.py,sha256=sUI7EwdfC1Vy924F03An4vueV6s2RTI-dP1_u8K9PXQ,136
|
|
7997
|
+
msgraph/generated/models/external_authentication_method.py,sha256=J8xNeA4siOvWwXes7Y9FlyUVukWb39z_MXqWYdGYs4c,2555
|
|
7998
|
+
msgraph/generated/models/external_authentication_method_collection_response.py,sha256=UsFFemOKCfs2chXReoiF1NedGsiccuzEWvIeEpXm-wI,2630
|
|
7985
7999
|
msgraph/generated/models/external_domain_federation.py,sha256=M2hLvnvDc9JdTjyqVK4xwI5dj80yssyUSSljEXmcVX8,2646
|
|
7986
8000
|
msgraph/generated/models/external_domain_name.py,sha256=yQolsrZElyWrtT9xPLml1xt6CN5jaXcZuKXz6rJi8aw,1771
|
|
7987
8001
|
msgraph/generated/models/external_email_otp_state.py,sha256=TOrJakpR_vwwGbIuTQRHA7KCyfq8OJfL3DgP-ZMmd3s,188
|
|
@@ -7998,7 +8012,7 @@ msgraph/generated/models/feature_target_type.py,sha256=C0LtuDbDm6CrTLjv-fklrSy8t
|
|
|
7998
8012
|
msgraph/generated/models/federated_identity_credential.py,sha256=aDaxsnhW7kYvEF_Jtmle102091r121zaGHJGmcaQYNo,4416
|
|
7999
8013
|
msgraph/generated/models/federated_identity_credential_collection_response.py,sha256=3KNZylgrtFlm4Je9ezJQBBcWk_H1jwWNh0nZ7xPE4Bo,2618
|
|
8000
8014
|
msgraph/generated/models/federated_idp_mfa_behavior.py,sha256=ofneh50r2ogeVs1CcspJZYhoCt2B7CiaZSPFXYCZvrA,298
|
|
8001
|
-
msgraph/generated/models/fido2_authentication_method.py,sha256=
|
|
8015
|
+
msgraph/generated/models/fido2_authentication_method.py,sha256=5iX5x-PHl0kyDBcuJT2SPFhBYLZy2RWxkjuiI5QeBsY,3618
|
|
8002
8016
|
msgraph/generated/models/fido2_authentication_method_collection_response.py,sha256=i8bWIQa--8tOWUMKPFTfACdSLig1mhWsFjAifwMrj90,2594
|
|
8003
8017
|
msgraph/generated/models/fido2_authentication_method_configuration.py,sha256=Sde2mEj9QpzhKKgO8O_ZV-RihUHIwAWfpyC6dBOqrz4,4189
|
|
8004
8018
|
msgraph/generated/models/fido2_combination_configuration.py,sha256=oq6r7EtA-AtDIkBpeiD6lvAsUwa4xv56kwsJNsqS5b8,2532
|
|
@@ -8104,7 +8118,7 @@ msgraph/generated/models/identity_container.py,sha256=tRf1wlSm0spTsfu-eWG9q5SzKY
|
|
|
8104
8118
|
msgraph/generated/models/identity_custom_user_flow_attribute.py,sha256=A4fAuKS87fidQIScDFZ8HzrouQm8125qrmT1Qiq5rio,2052
|
|
8105
8119
|
msgraph/generated/models/identity_protection_root.py,sha256=rwZxTCBT1Tuy7fkMTPWHvj0nE6LHl2E4n7itoC5LInU,4579
|
|
8106
8120
|
msgraph/generated/models/identity_provider.py,sha256=kfXsmdoKyzyjZgnavGblwBirMGtb4i9nqvBV-vNSsnI,3102
|
|
8107
|
-
msgraph/generated/models/identity_provider_base.py,sha256=
|
|
8121
|
+
msgraph/generated/models/identity_provider_base.py,sha256=MsoQOiuC5u9kaDNU7uDuEzoIkIbkUCnKocvFSPk5Oag,5468
|
|
8108
8122
|
msgraph/generated/models/identity_provider_base_collection_response.py,sha256=n3ZpMJhBaPBFot_5FCTLPIcYVA4Dv9ai5bVrLuQ2jvY,2534
|
|
8109
8123
|
msgraph/generated/models/identity_provider_collection_response.py,sha256=BHRrWvhIjZraGGIp8QOEURml6rjUxtYuFFcL8IfHma8,2483
|
|
8110
8124
|
msgraph/generated/models/identity_security_defaults_enforcement_policy.py,sha256=uB4nocFMebl_q-cviTvgkReF9sY1PbqfCBCCZqJFWBc,2228
|
|
@@ -8430,7 +8444,7 @@ msgraph/generated/models/message_security_state.py,sha256=lik0_ZbOv9fN_oykP2aIDJ
|
|
|
8430
8444
|
msgraph/generated/models/message_unpinned_event_message_detail.py,sha256=-X8Ayfgs6I5YUxlwYsT1T1FcY2qnDn7IXjeABPcXglE,2653
|
|
8431
8445
|
msgraph/generated/models/meta_data_key_string_pair.py,sha256=DqyeMtWS3Za5BKRlrP8_vAKH-Ki5Ug1rX6tAcsRLTzQ,2631
|
|
8432
8446
|
msgraph/generated/models/microsoft_account_user_conversation_member.py,sha256=bGDz9jxUYQm0pJ-bZd5CqH13mctLyOutnqGJ1slYh58,2223
|
|
8433
|
-
msgraph/generated/models/microsoft_authenticator_authentication_method.py,sha256=
|
|
8447
|
+
msgraph/generated/models/microsoft_authenticator_authentication_method.py,sha256=JR2MAA632dm2nsLvC3QoZKXIAjIgr26ZHNULcB-oWiw,3243
|
|
8434
8448
|
msgraph/generated/models/microsoft_authenticator_authentication_method_collection_response.py,sha256=-gPB5mjk7pqBQm4enz8-8n-ILH6x3_anTgV3AIrk3_o,2801
|
|
8435
8449
|
msgraph/generated/models/microsoft_authenticator_authentication_method_configuration.py,sha256=FRsVq1jlCRWf0q1gcCJpqNI2IOp8yzSYvMAN9Z9X83s,4097
|
|
8436
8450
|
msgraph/generated/models/microsoft_authenticator_authentication_method_target.py,sha256=N1-02iqxgvJf1w2uCud0PbDDmUpkXBGmYNm4hCPahl4,2737
|
|
@@ -8523,6 +8537,13 @@ msgraph/generated/models/object_mapping_metadata_entry.py,sha256=tHYFcwbpAzTfiQ5
|
|
|
8523
8537
|
msgraph/generated/models/offer_shift_request.py,sha256=rNH69WytM7xNsKQqJZTn23FvHQRtg2O3P_LKrAEpP10,3682
|
|
8524
8538
|
msgraph/generated/models/offer_shift_request_collection_response.py,sha256=tfcJS6X5K6ugSIOttQUiF3yb1VHqAIgDOk6c58I6ab0,2498
|
|
8525
8539
|
msgraph/generated/models/office_graph_insights.py,sha256=70AxwKgltnOoByiNEQUGFJv1X7eYEnckvOktRxFt2Sg,4294
|
|
8540
|
+
msgraph/generated/models/oidc_address_inbound_claims.py,sha256=ZEGN3sF4s1aMlCl4erMSlczY5r1rVx3ILJwdrK773tw,3323
|
|
8541
|
+
msgraph/generated/models/oidc_client_authentication.py,sha256=NxVkr4OBmAZF_XIfKtHtJIGjSqnexyb3Qf0QxPgONFM,3630
|
|
8542
|
+
msgraph/generated/models/oidc_client_secret_authentication.py,sha256=apnq21jQ8ePMrUNmN-iPkf94KhR64HWuRc9-7dSVuyE,2263
|
|
8543
|
+
msgraph/generated/models/oidc_identity_provider.py,sha256=8WCEUq2OdsDE6jfUfTN8SnRLVtuH_qKsxttzq3qxqgk,4376
|
|
8544
|
+
msgraph/generated/models/oidc_inbound_claim_mapping_override.py,sha256=IYx7GvHYXvhA_E5f3CWKgfKz8wPplElqRvb8oKR0zbU,4503
|
|
8545
|
+
msgraph/generated/models/oidc_private_jwt_key_client_authentication.py,sha256=Mj5jFXrVMYQRxDBram9J14ajGXSxI4CXjsihi31pSjE,2069
|
|
8546
|
+
msgraph/generated/models/oidc_response_type.py,sha256=9osI_Mhg3lx0eudioH7KJkR0vMSYqaiESDxU279ZSAg,173
|
|
8526
8547
|
msgraph/generated/models/oma_setting.py,sha256=Mmy1ir-yS-GzOZpP6NxH7DfHvSlA92w-aS53frMyiWA,5863
|
|
8527
8548
|
msgraph/generated/models/oma_setting_base64.py,sha256=SfZysBLfLk6N9Vt6ZPHx1Z3V_H9zCSfD2qSQ7GhqOcA,2316
|
|
8528
8549
|
msgraph/generated/models/oma_setting_boolean.py,sha256=BO66Y2RI2vuwTdSzjL0dgNThk5PS34tZBEq4JWiAq88,2067
|
|
@@ -8656,7 +8677,7 @@ msgraph/generated/models/participant_info.py,sha256=NghQXpSoGXPgNjU9XxGt-EPppftl
|
|
|
8656
8677
|
msgraph/generated/models/participant_joining_notification.py,sha256=QIDDWZ3zkGTF1fitiA-iTsxEHPGn58IqfD-kwLuAQUo,2097
|
|
8657
8678
|
msgraph/generated/models/participant_left_notification.py,sha256=m5E5nDwEPZVdrFMRVojLQiO32sMfN1vZ851lC55rTfw,2358
|
|
8658
8679
|
msgraph/generated/models/partner_tenant_type.py,sha256=e4N87Q7mIjm6p0L4m8PzW92TfiXaLvhYwjNWpH_-Uxg,457
|
|
8659
|
-
msgraph/generated/models/password_authentication_method.py,sha256=
|
|
8680
|
+
msgraph/generated/models/password_authentication_method.py,sha256=kuCDZuMr2d_yUY6ugOWJpwUwBUf_zP8GFWZhsl4LXV4,2248
|
|
8660
8681
|
msgraph/generated/models/password_authentication_method_collection_response.py,sha256=Xks7HYASHPjgP8p1ClU7WkN2wsLSMc4BHHJVxXZ9e8c,2630
|
|
8661
8682
|
msgraph/generated/models/password_credential.py,sha256=pQq31X_PK3C1549pym-EHvYy7UaVrfK6oamHcezV__I,4560
|
|
8662
8683
|
msgraph/generated/models/password_credential_configuration.py,sha256=FltWB7l2SFSnXN5aupk1VsoiUVLxYRL2Is1VslAsE-c,4624
|
|
@@ -8729,7 +8750,7 @@ msgraph/generated/models/planner_task_collection_response.py,sha256=JZXb3DWv1T3U
|
|
|
8729
8750
|
msgraph/generated/models/planner_task_details.py,sha256=sZSU96-31TjVrO87lrQeSSW7tZjIjW5b3BT82XqFrlw,3605
|
|
8730
8751
|
msgraph/generated/models/planner_user.py,sha256=4FN8DqZfOo5meOEmZHBwmqifbRt7VrCS4fy0CKW7dmE,2599
|
|
8731
8752
|
msgraph/generated/models/planner_user_ids.py,sha256=UvcDy1wUXmlwVL7eeDGCaRC0H51uBfbpgNq8oGrzRos,2237
|
|
8732
|
-
msgraph/generated/models/platform_credential_authentication_method.py,sha256=
|
|
8753
|
+
msgraph/generated/models/platform_credential_authentication_method.py,sha256=c7pb1tjz9SWtZJWRqbQ4ck_FB7ylL8qgfrPG_baJ7kw,4166
|
|
8733
8754
|
msgraph/generated/models/platform_credential_authentication_method_collection_response.py,sha256=ecH-FTMhcPUurwSHjZT42Gs3mlv0CVhYG3LZoeSCkGo,2753
|
|
8734
8755
|
msgraph/generated/models/play_prompt_operation.py,sha256=8NO35p9C9UgeCScH3YxDxxFtaZ16QzUiAc44hNrSfDQ,1851
|
|
8735
8756
|
msgraph/generated/models/policy_base.py,sha256=U7Qv5UQ2nQCbDIM8HJs5YlZjAvmH_MLZYrvvKGv-Bk0,7743
|
|
@@ -8842,7 +8863,7 @@ msgraph/generated/models/process_content_metadata_base.py,sha256=7b0TRaaO0PjrxlB
|
|
|
8842
8863
|
msgraph/generated/models/process_content_request.py,sha256=DRLgMo88vA3E27-XleleUZb9ofF3n7dRPJTOH9g9QQs,5113
|
|
8843
8864
|
msgraph/generated/models/process_content_response.py,sha256=cy-XKmxl7X9J4IF8Ia6QNmaVmCfnLT8w4mEICZDjEWs,3919
|
|
8844
8865
|
msgraph/generated/models/process_content_responses.py,sha256=rZFwX-8YPQNb3oPUs6YEa88GZcve5XTctTrz1naedzw,3035
|
|
8845
|
-
msgraph/generated/models/process_conversation_metadata.py,sha256=
|
|
8866
|
+
msgraph/generated/models/process_conversation_metadata.py,sha256=ksgLFTkErYCn5ssPt2QJcH1VaEOrwn3v2rH7vIZ8dTs,4217
|
|
8846
8867
|
msgraph/generated/models/process_file_metadata.py,sha256=Zt1-7G_ydbEXCMmfghXzL5OYh4WEhQ2mU_NppQr6UIM,2868
|
|
8847
8868
|
msgraph/generated/models/process_integrity_level.py,sha256=S3EMSLZElyDXzv2lAa2JzWUzb5PcxPvGCbFuKNdX0HQ,247
|
|
8848
8869
|
msgraph/generated/models/processing_error.py,sha256=1kXsfpeyVRb8RUI2uWg3eEC0dp4Bw3qj1tiXa75fkyM,2372
|
|
@@ -8856,7 +8877,8 @@ msgraph/generated/models/prompt_login_behavior.py,sha256=WDTVuegLuIKUee_XNKWomQw
|
|
|
8856
8877
|
msgraph/generated/models/pronouns_settings.py,sha256=lz2Agzc35QMnCUH_aZYQxuGm-DZ-cEe8dY00Pl4eO40,2148
|
|
8857
8878
|
msgraph/generated/models/protected_application_metadata.py,sha256=WLz7zaac4NFSudHYdmazz82-QHgIjjxeb3DVDlxhY1A,2564
|
|
8858
8879
|
msgraph/generated/models/protected_content.py,sha256=b9XoaJck2PKSU9ROEFz4ObYaywgh3pEY7OphKfo-pAw,2855
|
|
8859
|
-
msgraph/generated/models/
|
|
8880
|
+
msgraph/generated/models/protection_policy_artifact_count.py,sha256=ytXhThti1DhyLbXofKaDoRF6y8KxwgIdUZnSQumjJnU,3096
|
|
8881
|
+
msgraph/generated/models/protection_policy_base.py,sha256=ERKxECuLxSk9M09VoRXnNp5YEnPe4rQojp0z07t_AU4,7014
|
|
8860
8882
|
msgraph/generated/models/protection_policy_base_collection_response.py,sha256=5svQLEz8yi-5TfLWZ8RyZbkbFWLT0dsR52obL1KMaBE,2534
|
|
8861
8883
|
msgraph/generated/models/protection_policy_status.py,sha256=ytr4ox8kSkEj6lrD5Rt_rafe-Fl1Ft5D33vgXBjkOkQ,232
|
|
8862
8884
|
msgraph/generated/models/protection_rule_base.py,sha256=ghQ6axkcFmTkBUJ2uqgxZuG_mSoVqtGs-vg-Z-B5X88,5967
|
|
@@ -8971,6 +8993,9 @@ msgraph/generated/models/reseller_delegated_admin_relationship.py,sha256=XCmHfse
|
|
|
8971
8993
|
msgraph/generated/models/reservable_place_mode.py,sha256=11CizYidzSb1YQ7Livt_dsjthuFJ0z__scdnsX15Mrk,1840
|
|
8972
8994
|
msgraph/generated/models/reset_passcode_action_result.py,sha256=MBw_jnE9z1d8TG1-toQ3aACrOjOiDIiJfk9SB2L0-sQ,2440
|
|
8973
8995
|
msgraph/generated/models/resource_access.py,sha256=zHbFMjqvWpDsTXenQMtdB1dVlWFKhovtlVYrCSmwFvE,3216
|
|
8996
|
+
msgraph/generated/models/resource_access_detail.py,sha256=s334BllJFu2ZPv5tR6fDvPWkaUFVr3voJsrhS2vpe4I,4471
|
|
8997
|
+
msgraph/generated/models/resource_access_status.py,sha256=vnZsPnXcQs0fhOaRnq2tcAWTMHEAUXd6e3OGGNAkYZk,180
|
|
8998
|
+
msgraph/generated/models/resource_access_type.py,sha256=jhPpA-HwN7RMWcUn6K3glyrRj_fVTZbAXt4SED1NoY0,191
|
|
8974
8999
|
msgraph/generated/models/resource_action.py,sha256=2ABKLBeqP_beTFubf61jXyiou74H2dqkWHVMXCF4PEM,2981
|
|
8975
9000
|
msgraph/generated/models/resource_link.py,sha256=Y2tTXeXC_ibIEwLxS3Xkio8TKXXWVwUFtMWrea-ABPU,3133
|
|
8976
9001
|
msgraph/generated/models/resource_link_type.py,sha256=mW3JTOMJZL6cgthyxPSgh-NbGBvtpvvfE6pyaNgFAQI,123
|
|
@@ -9133,7 +9158,7 @@ msgraph/generated/models/service_health_origin.py,sha256=nf73gpw3vGY6BPlzIAmYKtV
|
|
|
9133
9158
|
msgraph/generated/models/service_health_status.py,sha256=5OHfoGbqCdSKSOcXP298WRCp_OhGFI0dV7gFpg310P8,816
|
|
9134
9159
|
msgraph/generated/models/service_hosted_media_config.py,sha256=TomL__Z7B8xtc8IlNxIGcNSsJEIMK81RnFGqVqhdc58,2305
|
|
9135
9160
|
msgraph/generated/models/service_plan_info.py,sha256=hdKA3sC5n8ScxwGF8fT690OTxkH49uj-DccKO4z01SQ,3922
|
|
9136
|
-
msgraph/generated/models/service_principal.py,sha256=
|
|
9161
|
+
msgraph/generated/models/service_principal.py,sha256=RrbomZ6JX_0Vnn4haTZ942BwK0_JTJ2JlynE07qC9NE,31225
|
|
9137
9162
|
msgraph/generated/models/service_principal_collection_response.py,sha256=z6zVPjs-WFsVnic_F9gTqck_GJJwjU3bXlsmGyFsweA,2483
|
|
9138
9163
|
msgraph/generated/models/service_principal_identity.py,sha256=c0rr1XchnXVdpsBFL7QL96rHOEHgp-f4ZnFhJBnvEIE,2073
|
|
9139
9164
|
msgraph/generated/models/service_principal_lock_configuration.py,sha256=w3rFOCNEUG_KPA_36vdV03ObQflxiF46tefgzfro67c,4188
|
|
@@ -9431,7 +9456,7 @@ msgraph/generated/models/teleconference_device_screen_sharing_quality.py,sha256=
|
|
|
9431
9456
|
msgraph/generated/models/teleconference_device_video_quality.py,sha256=jGabuxZeQCNp4LrmiaWHfYRNZYW90eak5To9TvWXJiI,4254
|
|
9432
9457
|
msgraph/generated/models/template_application_level.py,sha256=VOoT0iNPdrGXejG6PUncA6hxaxER8ZLTgBNt_dknW-8,210
|
|
9433
9458
|
msgraph/generated/models/template_scenarios.py,sha256=c3vI0if1vpWradT04YaJmC6fDokDVsV4zNcrI-4tYjc,305
|
|
9434
|
-
msgraph/generated/models/temporary_access_pass_authentication_method.py,sha256=
|
|
9459
|
+
msgraph/generated/models/temporary_access_pass_authentication_method.py,sha256=ch6u1q-bQbLfNWEtKJbdG_RNMiaWZOlws5-cPxnS9UI,4281
|
|
9435
9460
|
msgraph/generated/models/temporary_access_pass_authentication_method_collection_response.py,sha256=zD0pJaCykz3dIWI_Vt2LBMwwf1ktOwnThPezx2VvczY,2768
|
|
9436
9461
|
msgraph/generated/models/temporary_access_pass_authentication_method_configuration.py,sha256=1d916FCdAD1Oo8rjfc24NJ_yqASDorTtRR4i81MsSHI,4759
|
|
9437
9462
|
msgraph/generated/models/tenant_app_management_policy.py,sha256=J77gFwt20Vgpsb7A3I0uX2e82-WzoiWkMrDT7sMLoH0,3626
|
|
@@ -9572,7 +9597,7 @@ msgraph/generated/models/upload_session.py,sha256=Kw5fkUCKWhtyuChlIOdp0hUtucrJPc
|
|
|
9572
9597
|
msgraph/generated/models/uri_click_security_state.py,sha256=mKPdoUFIwLu-LjbQa4STMaQO9TS3slpNC9mzAFZknvY,3544
|
|
9573
9598
|
msgraph/generated/models/url_assessment_request.py,sha256=fkLvTWNa6LIcCyQ4WMztexIblXOhOg4h2IcS4Qg18ZU,2146
|
|
9574
9599
|
msgraph/generated/models/usage_details.py,sha256=-YGDcy7iuJIqwF1nGNQgXmx6jOvGJuAr0ruaRfvb0Zk,3269
|
|
9575
|
-
msgraph/generated/models/usage_rights.py,sha256=
|
|
9600
|
+
msgraph/generated/models/usage_rights.py,sha256=m6qsqnrKBVCVFzaZs07wT02yujD1WU-qGlPjnN5BckU,900
|
|
9576
9601
|
msgraph/generated/models/usage_rights_included.py,sha256=8r2BcCAg2JOmhA4z9z5msCJ2uAS7qtkt_82RRK_zyxI,2585
|
|
9577
9602
|
msgraph/generated/models/used_insight.py,sha256=x7jmI4MF2zN-d0Voi3LluENgm9f9DjzND-HgS0yLfew,3449
|
|
9578
9603
|
msgraph/generated/models/used_insight_collection_response.py,sha256=uRTJqZfrJbOPXWVy5aE-iQ7Zu0M6-FYKjM8PCOMufmk,2423
|
|
@@ -9818,7 +9843,7 @@ msgraph/generated/models/windows_device_malware_state_collection_response.py,sha
|
|
|
9818
9843
|
msgraph/generated/models/windows_device_type.py,sha256=MCtBE2SKRymOOpqj89O9I_489TRsa7F8HdUZ17S_vi8,559
|
|
9819
9844
|
msgraph/generated/models/windows_device_usage_type.py,sha256=ZWo0NrQTXJ1ojCnPFVNQp0PtRod20Qhg59hKrx2yK-Y,340
|
|
9820
9845
|
msgraph/generated/models/windows_firewall_network_profile.py,sha256=kzzCEmYOep7KxjgZHwphnulbX0QvnPxsU42Imy2yt4E,9156
|
|
9821
|
-
msgraph/generated/models/windows_hello_for_business_authentication_method.py,sha256=
|
|
9846
|
+
msgraph/generated/models/windows_hello_for_business_authentication_method.py,sha256=pcKulrrJg8s5wtRg1qWzkTsUXsqOizyq4ppmaD78VFc,3611
|
|
9822
9847
|
msgraph/generated/models/windows_hello_for_business_authentication_method_collection_response.py,sha256=SQvYbAWUK9OqeF3Xzwm6FdhO21DZVOjbb3sc0L4N9BY,2819
|
|
9823
9848
|
msgraph/generated/models/windows_hello_for_business_pin_usage.py,sha256=I6FtHYXPaeH7x5IQBBmNkMkyhaa7UVLXA6-_Ex5P4Gs,288
|
|
9824
9849
|
msgraph/generated/models/windows_information_protection.py,sha256=nUPPdTOHUjrRPtOQMYgzM5jnDAysxLcCFMr6VMezIuA,18534
|
|
@@ -10159,7 +10184,7 @@ msgraph/generated/models/security/additional_data_options.py,sha256=q2SCm4Ji_vxe
|
|
|
10159
10184
|
msgraph/generated/models/security/additional_options.py,sha256=JkWtgBSkm9SV8QXVnPATTcQBz0GP_udzzrt_gUyUbiw,690
|
|
10160
10185
|
msgraph/generated/models/security/ai_agent_evidence.py,sha256=5iUYQxFmSYIoMhgXDNBGBR9bJocnL-jiZWd0UZrewJ8,3102
|
|
10161
10186
|
msgraph/generated/models/security/ai_agent_platform.py,sha256=MXz1chs9jXtYXXPigqsaQmgt9EMQgfzPnhiQ5GTnVA4,231
|
|
10162
|
-
msgraph/generated/models/security/alert.py,sha256=
|
|
10187
|
+
msgraph/generated/models/security/alert.py,sha256=k4vCbe2rA3TccRzDVfB3Oq7PdCYVoeEnB_Qx-SsfH34,13917
|
|
10163
10188
|
msgraph/generated/models/security/alert_classification.py,sha256=agQc-CsuyspKi9UyaZxZ8n8tO934fhYC_Jth1ySE_nc,275
|
|
10164
10189
|
msgraph/generated/models/security/alert_collection_response.py,sha256=IKr_j7Nt8LCejqrV6HZ_rfc_EhbCqNKDvX37fW5LzgA,2352
|
|
10165
10190
|
msgraph/generated/models/security/alert_comment.py,sha256=P7wWLupRfiY7YdWjKdLMb8RcHFqQJ5E7QrvpUPB0dd8,3024
|
|
@@ -10243,7 +10268,7 @@ msgraph/generated/models/security/ediscovery_hold_policy_sync_operation.py,sha25
|
|
|
10243
10268
|
msgraph/generated/models/security/ediscovery_index_operation.py,sha256=t2GL9wIKKV057hLVz4vMi63SbFXr7546IcyejHT724Y,1862
|
|
10244
10269
|
msgraph/generated/models/security/ediscovery_noncustodial_data_source.py,sha256=NDlZ1qT_BGtQI4xqMobtvHQBAXGaW4ek_3GMIcmAlW0,3013
|
|
10245
10270
|
msgraph/generated/models/security/ediscovery_noncustodial_data_source_collection_response.py,sha256=QxA81PkwOqxQqzNIqmG2S4PK_w_iiPVke3bsgRGlqKY,2685
|
|
10246
|
-
msgraph/generated/models/security/ediscovery_purge_data_operation.py,sha256=
|
|
10271
|
+
msgraph/generated/models/security/ediscovery_purge_data_operation.py,sha256=ygg776SsQVtwAdEk019cJ99FAdy-3JmxWvjX3-xqtjM,2500
|
|
10247
10272
|
msgraph/generated/models/security/ediscovery_review_set.py,sha256=e7x77MKrZC7jsU-r86OWd8prvHDncKuapOoK6t6g7QM,2353
|
|
10248
10273
|
msgraph/generated/models/security/ediscovery_review_set_collection_response.py,sha256=KHi0TOandBBX9iMjCPIMjWQ5cd9eOP9ZeY3IMXvtSwM,2526
|
|
10249
10274
|
msgraph/generated/models/security/ediscovery_review_set_query.py,sha256=pd-EG-vIDiVAVE8ranNdV3Jj57bqAF12ezk4pCWKcmw,1843
|
|
@@ -10328,7 +10353,7 @@ msgraph/generated/models/security/identity_accounts.py,sha256=GMEypFzZ9A_mFt9L5d
|
|
|
10328
10353
|
msgraph/generated/models/security/identity_accounts_collection_response.py,sha256=ArTOOZFkNNk0Qhojp-KGPPdqp3ttmXcLvY8ka4hZwpE,2487
|
|
10329
10354
|
msgraph/generated/models/security/identity_container.py,sha256=ZVZWGg3tkAhB112ZY1WF9g_Gjcq2ePCLrIMUGz_IANo,4549
|
|
10330
10355
|
msgraph/generated/models/security/identity_provider.py,sha256=CUY336MsAODi9OWAm1eegB_J8pPB4sevCM0OT_CVzO8,191
|
|
10331
|
-
msgraph/generated/models/security/incident.py,sha256=
|
|
10356
|
+
msgraph/generated/models/security/incident.py,sha256=YA9JSqpz7qojoyFzBjxpEHJgaY-udFeJF9-P-H4e7tI,9094
|
|
10332
10357
|
msgraph/generated/models/security/incident_collection_response.py,sha256=7TFkjMg3Ts5-8qPRjRukCtAQatEpeBzLs9TXTX6HyKc,2388
|
|
10333
10358
|
msgraph/generated/models/security/incident_status.py,sha256=U45Y8IRcgrWglkpbupwznWsT7BlBxNvNr9SRV00OSCU,255
|
|
10334
10359
|
msgraph/generated/models/security/indicator.py,sha256=nTAQJSN_2YHtrG9XX4ECNcVpOnvMj5A3KzJc4BVS6OI,3550
|
|
@@ -10398,8 +10423,8 @@ msgraph/generated/models/security/sas_token_evidence.py,sha256=KQr9MdE0ARBXAlotj
|
|
|
10398
10423
|
msgraph/generated/models/security/search.py,sha256=di0asMdyUd-hlZ_NoY_t2MrianFuCsyZJ7RKXQoEh9Y,4702
|
|
10399
10424
|
msgraph/generated/models/security/security.py,sha256=6URtwhsTeoyXl-ANMzfHPT5NCIsHK7cW5mLr33a2yWo,8105
|
|
10400
10425
|
msgraph/generated/models/security/security_group_evidence.py,sha256=w4bXG2ZvZtOTByQZH1AGcRDggpXNLQ7LYhKRCOpsaCA,3471
|
|
10401
|
-
msgraph/generated/models/security/sensor.py,sha256=
|
|
10402
|
-
msgraph/generated/models/security/sensor_candidate.py,sha256=
|
|
10426
|
+
msgraph/generated/models/security/sensor.py,sha256=DVTGjo6MWrf8WTamqeTMuBxMtk3pHb-djSras7wqFd4,5804
|
|
10427
|
+
msgraph/generated/models/security/sensor_candidate.py,sha256=ePmzeBeUViQbJ29F5QFkhur81Qmonx5LfTkU0E-uDys,2898
|
|
10403
10428
|
msgraph/generated/models/security/sensor_candidate_activation_configuration.py,sha256=raOEw8HkJmIDdlql_naSq6uhzb7k-3rWgxeMgUI18pc,2401
|
|
10404
10429
|
msgraph/generated/models/security/sensor_candidate_activation_mode.py,sha256=9Xt-V0UKogsEO2xQcgGtnoTUAMzf7am2UJ3xv_nyKWk,171
|
|
10405
10430
|
msgraph/generated/models/security/sensor_candidate_collection_response.py,sha256=9rqcKN7qZHCfS0KDknoh1tJUXpHFSKHQxAPKr6vJSkI,2475
|
|
@@ -10411,6 +10436,7 @@ msgraph/generated/models/security/sensor_type.py,sha256=SQHvz1Iwph_3-phVkpA15mvj
|
|
|
10411
10436
|
msgraph/generated/models/security/service_principal_evidence.py,sha256=A1dpOfHGeWDfhNLUH0ZdOfcElnoEitmIsRsK7WVNncE,3658
|
|
10412
10437
|
msgraph/generated/models/security/service_principal_type.py,sha256=LxviVLNih36-L9xxJqSwldKWippCTSDZUpzc2i-dwlY,232
|
|
10413
10438
|
msgraph/generated/models/security/service_source.py,sha256=sX-5A4rUpoFRFQd7abJIn1LpoAsQhujzGDw3lB4L73E,856
|
|
10439
|
+
msgraph/generated/models/security/service_status.py,sha256=rO4wXlWECVyuPpRZQeQx8TpvfjPvSde8IX0rZUP9rPk,263
|
|
10414
10440
|
msgraph/generated/models/security/single_property_schema.py,sha256=rOMGpBVuTbDiupXKiYKJwzyqBhdB6b0F2sJVgQaKJYg,2633
|
|
10415
10441
|
msgraph/generated/models/security/site_source.py,sha256=LBSuD7HN2VXDUcvBF2_xkOq0S--KvbKBuoRpbF4Q0ts,2094
|
|
10416
10442
|
msgraph/generated/models/security/site_source_collection_response.py,sha256=Opytf0MN-N0wv4tUZNzaoPQqL4aC7ie8w3zy_MpABNg,2415
|
|
@@ -10462,7 +10488,11 @@ msgraph/generated/models/teams_administration/assignment_category.py,sha256=SQaj
|
|
|
10462
10488
|
msgraph/generated/models/teams_administration/assignment_type.py,sha256=TAFHiMWCiLIK8ua6QKJtuFt5-8Fa7OvDLVSEktmy7gw,148
|
|
10463
10489
|
msgraph/generated/models/teams_administration/effective_policy_assignment.py,sha256=nMeGYfFoX1WWhMZHVkP4E40T3oEtyUaau9cic0O_-_E,3036
|
|
10464
10490
|
msgraph/generated/models/teams_administration/policy_assignment.py,sha256=FS4SqMukqiYrG8L18f99XYzZT37_KPIzSAofirl0_2A,3362
|
|
10465
|
-
msgraph/generated/models/teams_administration/
|
|
10491
|
+
msgraph/generated/models/teams_administration/policy_identifier_detail.py,sha256=MGmVYoNHET-BokJxvmtQujX4Ud3Tb7pgVpfzL6tH1cM,2226
|
|
10492
|
+
msgraph/generated/models/teams_administration/teams_admin_root.py,sha256=ae3xRmr2m4OXazi8_gIh1s7-RuxSL_2ue1m9pPkfQYE,2856
|
|
10493
|
+
msgraph/generated/models/teams_administration/teams_policy_assignment.py,sha256=4llorB6qGOcd8bco_7-V8VtksRqfoBtlvh3ni6liDIw,2361
|
|
10494
|
+
msgraph/generated/models/teams_administration/teams_policy_user_assignment.py,sha256=csPrHJ4d7d-MN_BdmlrhESgCgotxfMy4pXtuuh4sI_I,2557
|
|
10495
|
+
msgraph/generated/models/teams_administration/teams_policy_user_assignment_collection_response.py,sha256=_q9Oq_q1q7F33A_EWXoFY4tDUdoSU2-3cR96enrLzas,2601
|
|
10466
10496
|
msgraph/generated/models/teams_administration/teams_user_configuration.py,sha256=x6pf57-es_warg2rrCg2Kcec3NUvkoftem2knoTCm0o,6048
|
|
10467
10497
|
msgraph/generated/models/teams_administration/teams_user_configuration_collection_response.py,sha256=lGKZ9VlJqbtmevtTjQAMnPcUg9yY_dbO7L5NeiUG-qg,2562
|
|
10468
10498
|
msgraph/generated/models/term_store/group.py,sha256=qT_7h86wl0D13ZjsvHNPYP8mAOBhxWTciQwI-stbJqU,3508
|
|
@@ -10695,9 +10725,9 @@ msgraph/generated/policies/app_management_policies/item/applies_to/count/count_r
|
|
|
10695
10725
|
msgraph/generated/policies/app_management_policies/item/applies_to/item/directory_object_item_request_builder.py,sha256=NKfGGBay4kmr17XH-B7L_M4EkTVsOqbfd1cchq6RWlg,5335
|
|
10696
10726
|
msgraph/generated/policies/authentication_flows_policy/authentication_flows_policy_request_builder.py,sha256=hj9PWgH1OahOtiwu3yj6u8G4eFfZTXsphcyi31fX4Cs,10083
|
|
10697
10727
|
msgraph/generated/policies/authentication_methods_policy/authentication_methods_policy_request_builder.py,sha256=mgvvDCTkGE50OOpptAsFJzUmiFK808aG0a6MnaKy5yk,10720
|
|
10698
|
-
msgraph/generated/policies/authentication_methods_policy/authentication_method_configurations/authentication_method_configurations_request_builder.py,sha256=
|
|
10728
|
+
msgraph/generated/policies/authentication_methods_policy/authentication_method_configurations/authentication_method_configurations_request_builder.py,sha256=a543Tw7bArwvCXfCrhufVGtm-XKM8z3KTNKTi7WV1Tk,10939
|
|
10699
10729
|
msgraph/generated/policies/authentication_methods_policy/authentication_method_configurations/count/count_request_builder.py,sha256=CND5FsqL7pd7nVlUO9m24PNeSTimin_WPV8h8UQM8w4,4827
|
|
10700
|
-
msgraph/generated/policies/authentication_methods_policy/authentication_method_configurations/item/authentication_method_configuration_item_request_builder.py,sha256=
|
|
10730
|
+
msgraph/generated/policies/authentication_methods_policy/authentication_method_configurations/item/authentication_method_configuration_item_request_builder.py,sha256=BqoT3geDKvHuC8oPXCfX4hAH5cRnm4_PzX5WZnJjYFA,10539
|
|
10701
10731
|
msgraph/generated/policies/authentication_strength_policies/authentication_strength_policies_request_builder.py,sha256=aScgXY0a9FdGLBRn0-Huz0XuYsreqATL-RH1boaJgXE,10970
|
|
10702
10732
|
msgraph/generated/policies/authentication_strength_policies/count/count_request_builder.py,sha256=Uv1XSga2yT43AibCQIZk4HEOPUIIZ5dGnYobnPx-ITA,4793
|
|
10703
10733
|
msgraph/generated/policies/authentication_strength_policies/item/authentication_strength_policy_item_request_builder.py,sha256=ippgYutLFySkAib3IcTrhgE17uhHogWHc-V57i-IHEI,12034
|
|
@@ -13382,10 +13412,13 @@ msgraph/generated/users/item/app_role_assignments/count/count_request_builder.py
|
|
|
13382
13412
|
msgraph/generated/users/item/app_role_assignments/item/app_role_assignment_item_request_builder.py,sha256=E7QdWG4bKjHNWPzPpGtU2fFfNmpeKcdB3ZP0Kas_Gu4,9671
|
|
13383
13413
|
msgraph/generated/users/item/assign_license/assign_license_post_request_body.py,sha256=R1DRI1ifMBwNzSdtkV4YEArt4bMHH4Rj2vM989aXSqk,2895
|
|
13384
13414
|
msgraph/generated/users/item/assign_license/assign_license_request_builder.py,sha256=dSq7xOPZs4MwPFSI0qUvDd12oDltyzsDpYSM6K2ZvD0,5335
|
|
13385
|
-
msgraph/generated/users/item/authentication/authentication_request_builder.py,sha256=
|
|
13415
|
+
msgraph/generated/users/item/authentication/authentication_request_builder.py,sha256=wQTAuu4FqtXYE8KnqQMHqToyZND2VXrxZZS7-wq2fSA,15895
|
|
13386
13416
|
msgraph/generated/users/item/authentication/email_methods/email_methods_request_builder.py,sha256=y_qMxQy3xVe3ReKW6OUkv2ToV1aO1MqkFqfjOMeYZZ4,10621
|
|
13387
13417
|
msgraph/generated/users/item/authentication/email_methods/count/count_request_builder.py,sha256=W6YGx4A7WX3l8dE4f8-w4rIl1OfWwipGxqAWM_kBJ_c,4803
|
|
13388
13418
|
msgraph/generated/users/item/authentication/email_methods/item/email_authentication_method_item_request_builder.py,sha256=IT38VkRLUQ8if9cZteLJzBojIHCPwAQosRDA8004w3E,10073
|
|
13419
|
+
msgraph/generated/users/item/authentication/external_authentication_methods/external_authentication_methods_request_builder.py,sha256=aFIcJvwcKqof7O4LcShWy9FqqStPPoH__oTtOimYz5s,10954
|
|
13420
|
+
msgraph/generated/users/item/authentication/external_authentication_methods/count/count_request_builder.py,sha256=yGE39J2Pe0ENHCupu1FtpjBJYR_xuVVNbOrmnoBYPOI,4820
|
|
13421
|
+
msgraph/generated/users/item/authentication/external_authentication_methods/item/external_authentication_method_item_request_builder.py,sha256=I0SGi2xUEewXejmn1aMLBEydBMhDUf0n4Dyc8hNzEOU,10266
|
|
13389
13422
|
msgraph/generated/users/item/authentication/fido2_methods/fido2_methods_request_builder.py,sha256=6iTkFNFiojndv9oR9ufZ_igJC0nbieYQ7AToUDNB6YM,7781
|
|
13390
13423
|
msgraph/generated/users/item/authentication/fido2_methods/count/count_request_builder.py,sha256=nxAxrwY3WALJzPgRBb44UhZqp4pWsxw_XLeb7kHbag4,4803
|
|
13391
13424
|
msgraph/generated/users/item/authentication/fido2_methods/item/fido2_authentication_method_item_request_builder.py,sha256=gX2K3pWUNJ8xBcGyJhuvIhxUqFmx1Dcsh3EhWZ7AOWE,7483
|
|
@@ -14668,7 +14701,7 @@ msgraph/generated/users/item/wipe_managed_app_registrations_by_device_tag/wipe_m
|
|
|
14668
14701
|
msgraph/generated/users/validate_properties/validate_properties_post_request_body.py,sha256=d7byBhVBxhmN0jEHKTrPuu4enDvOYFq6ZD-NyoMHrdo,3054
|
|
14669
14702
|
msgraph/generated/users/validate_properties/validate_properties_request_builder.py,sha256=yha6wDN26GoeGwoxhFwW0WjPMeiYLCf8Latq-yAxy68,6370
|
|
14670
14703
|
msgraph/generated/users_with_user_principal_name/users_with_user_principal_name_request_builder.py,sha256=pZKcmsFGR3DlVagfIIi2F2j9Ft7KtA_OseRITV9ormY,12210
|
|
14671
|
-
msgraph_sdk-1.
|
|
14672
|
-
msgraph_sdk-1.
|
|
14673
|
-
msgraph_sdk-1.
|
|
14674
|
-
msgraph_sdk-1.
|
|
14704
|
+
msgraph_sdk-1.54.0.dist-info/licenses/LICENSE,sha256=ws_MuBL-SCEBqPBFl9_FqZkaaydIJmxHrJG2parhU4M,1141
|
|
14705
|
+
msgraph_sdk-1.54.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
14706
|
+
msgraph_sdk-1.54.0.dist-info/METADATA,sha256=l0KNQgIaZEqSuwXY58zX4HUxwulx0Rj4vKUM6zGkoFk,13330
|
|
14707
|
+
msgraph_sdk-1.54.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|