@microsoft/msgraph-sdk 1.0.0-preview.77 → 1.0.0-preview.80

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.
package/models/index.d.ts CHANGED
@@ -1816,6 +1816,10 @@ export interface Admin extends AdditionalDataHolder, BackedModel, Parsable {
1816
1816
  * A container for Microsoft Edge resources. Read-only.
1817
1817
  */
1818
1818
  edge?: Edge | null;
1819
+ /**
1820
+ * A container for the Exchange admin functionality. Read-only.
1821
+ */
1822
+ exchange?: ExchangeAdmin | null;
1819
1823
  /**
1820
1824
  * A container for the Microsoft 365 apps admin functionality.
1821
1825
  */
@@ -1841,7 +1845,7 @@ export interface Admin extends AdditionalDataHolder, BackedModel, Parsable {
1841
1845
  */
1842
1846
  sharepoint?: Sharepoint | null;
1843
1847
  /**
1844
- * Represents a collection of user configurations.
1848
+ * A container for Teams administration functionalities, such as user configurations and policy assignments.
1845
1849
  */
1846
1850
  teams?: TeamsAdminRoot | null;
1847
1851
  }
@@ -2125,6 +2129,12 @@ export interface AgreementFileVersionCollectionResponse extends BaseCollectionPa
2125
2129
  */
2126
2130
  value?: AgreementFileVersion[] | null;
2127
2131
  }
2132
+ export interface AiAgentInfo extends AiInteractionEntity, Parsable {
2133
+ /**
2134
+ * The unique identifier of the parent agent blueprint that defines the identity and configuration of this agent instance.
2135
+ */
2136
+ blueprintId?: string | null;
2137
+ }
2128
2138
  export interface AiInteraction extends Entity, Parsable {
2129
2139
  /**
2130
2140
  * The appClass property
@@ -2235,6 +2245,28 @@ export interface AiInteractionContext extends AdditionalDataHolder, BackedModel,
2235
2245
  */
2236
2246
  odataType?: string | null;
2237
2247
  }
2248
+ export interface AiInteractionEntity extends AdditionalDataHolder, BackedModel, Parsable {
2249
+ /**
2250
+ * Stores model information.
2251
+ */
2252
+ backingStoreEnabled?: boolean | null;
2253
+ /**
2254
+ * The unique identifier of the AI entity.
2255
+ */
2256
+ identifier?: string | null;
2257
+ /**
2258
+ * The display name of the AI entity.
2259
+ */
2260
+ name?: string | null;
2261
+ /**
2262
+ * The OdataType property
2263
+ */
2264
+ odataType?: string | null;
2265
+ /**
2266
+ * The version of the AI entity used.
2267
+ */
2268
+ version?: string | null;
2269
+ }
2238
2270
  export interface AiInteractionHistory extends Entity, Parsable {
2239
2271
  }
2240
2272
  export interface AiInteractionLink extends AdditionalDataHolder, BackedModel, Parsable {
@@ -2291,27 +2323,7 @@ export interface AiInteractionMentionedIdentitySet extends IdentitySet, Parsable
2291
2323
  */
2292
2324
  tag?: TeamworkTagIdentity | null;
2293
2325
  }
2294
- export interface AiInteractionPlugin extends AdditionalDataHolder, BackedModel, Parsable {
2295
- /**
2296
- * Stores model information.
2297
- */
2298
- backingStoreEnabled?: boolean | null;
2299
- /**
2300
- * The unique identifier of the plugin.
2301
- */
2302
- identifier?: string | null;
2303
- /**
2304
- * The display name of the plugin.
2305
- */
2306
- name?: string | null;
2307
- /**
2308
- * The OdataType property
2309
- */
2310
- odataType?: string | null;
2311
- /**
2312
- * The version of the plugin used.
2313
- */
2314
- version?: string | null;
2326
+ export interface AiInteractionPlugin extends AiInteractionEntity, Parsable {
2315
2327
  }
2316
2328
  export type AiInteractionType = (typeof AiInteractionTypeObject)[keyof typeof AiInteractionTypeObject];
2317
2329
  export interface AiOnlineMeeting extends Entity, Parsable {
@@ -5503,6 +5515,10 @@ export interface Authentication extends Entity, Parsable {
5503
5515
  * The email address registered to a user for authentication.
5504
5516
  */
5505
5517
  emailMethods?: EmailAuthenticationMethod[] | null;
5518
+ /**
5519
+ * Represents the external authentication methods registered to a user for authentication using an external identity provider.
5520
+ */
5521
+ externalAuthenticationMethods?: ExternalAuthenticationMethod[] | null;
5506
5522
  /**
5507
5523
  * Represents the FIDO2 security keys registered to a user for authentication.
5508
5524
  */
@@ -5838,6 +5854,10 @@ export interface AuthenticationFlowsPolicy extends Entity, Parsable {
5838
5854
  selfServiceSignUp?: SelfServiceSignUpAuthenticationFlowConfiguration | null;
5839
5855
  }
5840
5856
  export interface AuthenticationMethod extends Entity, Parsable {
5857
+ /**
5858
+ * Represents the date and time when an entity was created. Read-only.
5859
+ */
5860
+ createdDateTime?: Date | null;
5841
5861
  }
5842
5862
  export interface AuthenticationMethodCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
5843
5863
  /**
@@ -9997,7 +10017,7 @@ export interface CloudPcDomainJoinConfiguration extends AdditionalDataHolder, Ba
9997
10017
  */
9998
10018
  onPremisesConnectionId?: string | null;
9999
10019
  /**
10000
- * The logical geographic group this region belongs to. Multiple regions can belong to one region group. A customer can select a regionGroup when they provision a Cloud PC, and the Cloud PC is put in one of the regions in the group based on resource status. For example, the Europe region group contains the Northern Europe and Western Europe regions. The possible values are: default, australia, canada, usCentral, usEast, usWest, france, germany, europeUnion, unitedKingdom, japan, asia, india, southAmerica, euap, usGovernment, usGovernmentDOD, unknownFutureValue, norway, switzerland, southKorea. Use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: norway, switzerland, southKorea. Read-only.
10020
+ * The logical geographic group this region belongs to. Multiple regions can belong to one region group. A customer can select a regionGroup when they provision a Cloud PC, and the Cloud PC is put in one of the regions in the group based on resource status. For example, the Europe region group contains the Northern Europe and Western Europe regions. Read-only.
10001
10021
  */
10002
10022
  regionGroup?: CloudPcRegionGroup | null;
10003
10023
  /**
@@ -10191,7 +10211,7 @@ export interface CloudPcOnPremisesConnectionHealthCheck extends AdditionalDataHo
10191
10211
  */
10192
10212
  endDateTime?: Date | null;
10193
10213
  /**
10194
- * The type of error that occurred during this health check. The possible values are: endpointConnectivityCheckCloudPcUrlNotAllowListed, endpointConnectivityCheckWVDUrlNotAllowListed, etc. (The all possible values can refer to cloudPcOnPremisesConnectionHealthCheckErrorType) Read-Only.
10214
+ * The type of error that occurred during this health check. Read-only.
10195
10215
  */
10196
10216
  errorType?: CloudPcOnPremisesConnectionHealthCheckErrorType | null;
10197
10217
  /**
@@ -12956,6 +12976,12 @@ export declare function createAgreementFileVersionFromDiscriminatorValue(parseNo
12956
12976
  * @returns {Agreement}
12957
12977
  */
12958
12978
  export declare function createAgreementFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12979
+ /**
12980
+ * Creates a new instance of the appropriate class based on discriminator value
12981
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12982
+ * @returns {AiAgentInfo}
12983
+ */
12984
+ export declare function createAiAgentInfoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12959
12985
  /**
12960
12986
  * Creates a new instance of the appropriate class based on discriminator value
12961
12987
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -12968,6 +12994,12 @@ export declare function createAiInteractionAttachmentFromDiscriminatorValue(pars
12968
12994
  * @returns {AiInteractionContext}
12969
12995
  */
12970
12996
  export declare function createAiInteractionContextFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12997
+ /**
12998
+ * Creates a new instance of the appropriate class based on discriminator value
12999
+ * @param parseNode The parse node to use to read the discriminator value and create the object
13000
+ * @returns {AiInteractionEntity}
13001
+ */
13002
+ export declare function createAiInteractionEntityFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12971
13003
  /**
12972
13004
  * Creates a new instance of the appropriate class based on discriminator value
12973
13005
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -17870,6 +17902,30 @@ export declare function createEventMessageRequestFromDiscriminatorValue(parseNod
17870
17902
  * @returns {EventMessageResponse}
17871
17903
  */
17872
17904
  export declare function createEventMessageResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17905
+ /**
17906
+ * Creates a new instance of the appropriate class based on discriminator value
17907
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17908
+ * @returns {ExchangeAdmin}
17909
+ */
17910
+ export declare function createExchangeAdminFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17911
+ /**
17912
+ * Creates a new instance of the appropriate class based on discriminator value
17913
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17914
+ * @returns {ExchangeMessageTraceCollectionResponse}
17915
+ */
17916
+ export declare function createExchangeMessageTraceCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17917
+ /**
17918
+ * Creates a new instance of the appropriate class based on discriminator value
17919
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17920
+ * @returns {ExchangeMessageTraceDetail}
17921
+ */
17922
+ export declare function createExchangeMessageTraceDetailFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17923
+ /**
17924
+ * Creates a new instance of the appropriate class based on discriminator value
17925
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17926
+ * @returns {ExchangeMessageTrace}
17927
+ */
17928
+ export declare function createExchangeMessageTraceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17873
17929
  /**
17874
17930
  * Creates a new instance of the appropriate class based on discriminator value
17875
17931
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -17948,6 +18004,24 @@ export declare function createExtensionPropertyFromDiscriminatorValue(parseNode:
17948
18004
  * @returns {ExtensionSchemaProperty}
17949
18005
  */
17950
18006
  export declare function createExtensionSchemaPropertyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18007
+ /**
18008
+ * Creates a new instance of the appropriate class based on discriminator value
18009
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18010
+ * @returns {ExternalAuthenticationMethodCollectionResponse}
18011
+ */
18012
+ export declare function createExternalAuthenticationMethodCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18013
+ /**
18014
+ * Creates a new instance of the appropriate class based on discriminator value
18015
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18016
+ * @returns {ExternalAuthenticationMethodConfiguration}
18017
+ */
18018
+ export declare function createExternalAuthenticationMethodConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18019
+ /**
18020
+ * Creates a new instance of the appropriate class based on discriminator value
18021
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18022
+ * @returns {ExternalAuthenticationMethod}
18023
+ */
18024
+ export declare function createExternalAuthenticationMethodFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17951
18025
  /**
17952
18026
  * Creates a new instance of the appropriate class based on discriminator value
17953
18027
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -20192,6 +20266,12 @@ export declare function createMessageRulePredicatesFromDiscriminatorValue(parseN
20192
20266
  * @returns {MessageSecurityState}
20193
20267
  */
20194
20268
  export declare function createMessageSecurityStateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20269
+ /**
20270
+ * Creates a new instance of the appropriate class based on discriminator value
20271
+ * @param parseNode The parse node to use to read the discriminator value and create the object
20272
+ * @returns {MessageTracingRoot}
20273
+ */
20274
+ export declare function createMessageTracingRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20195
20275
  /**
20196
20276
  * Creates a new instance of the appropriate class based on discriminator value
20197
20277
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -20624,6 +20704,42 @@ export declare function createOfferShiftRequestFromDiscriminatorValue(parseNode:
20624
20704
  * @returns {OfficeGraphInsights}
20625
20705
  */
20626
20706
  export declare function createOfficeGraphInsightsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20707
+ /**
20708
+ * Creates a new instance of the appropriate class based on discriminator value
20709
+ * @param parseNode The parse node to use to read the discriminator value and create the object
20710
+ * @returns {OidcAddressInboundClaims}
20711
+ */
20712
+ export declare function createOidcAddressInboundClaimsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20713
+ /**
20714
+ * Creates a new instance of the appropriate class based on discriminator value
20715
+ * @param parseNode The parse node to use to read the discriminator value and create the object
20716
+ * @returns {OidcClientAuthentication}
20717
+ */
20718
+ export declare function createOidcClientAuthenticationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20719
+ /**
20720
+ * Creates a new instance of the appropriate class based on discriminator value
20721
+ * @param parseNode The parse node to use to read the discriminator value and create the object
20722
+ * @returns {OidcClientSecretAuthentication}
20723
+ */
20724
+ export declare function createOidcClientSecretAuthenticationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20725
+ /**
20726
+ * Creates a new instance of the appropriate class based on discriminator value
20727
+ * @param parseNode The parse node to use to read the discriminator value and create the object
20728
+ * @returns {OidcIdentityProvider}
20729
+ */
20730
+ export declare function createOidcIdentityProviderFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20731
+ /**
20732
+ * Creates a new instance of the appropriate class based on discriminator value
20733
+ * @param parseNode The parse node to use to read the discriminator value and create the object
20734
+ * @returns {OidcInboundClaimMappingOverride}
20735
+ */
20736
+ export declare function createOidcInboundClaimMappingOverrideFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20737
+ /**
20738
+ * Creates a new instance of the appropriate class based on discriminator value
20739
+ * @param parseNode The parse node to use to read the discriminator value and create the object
20740
+ * @returns {OidcPrivateJwtKeyClientAuthentication}
20741
+ */
20742
+ export declare function createOidcPrivateJwtKeyClientAuthenticationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20627
20743
  /**
20628
20744
  * Creates a new instance of the appropriate class based on discriminator value
20629
20745
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -21086,6 +21202,12 @@ export declare function createOnUserCreateStartHandlerFromDiscriminatorValue(par
21086
21202
  * @returns {OnUserCreateStartListener}
21087
21203
  */
21088
21204
  export declare function createOnUserCreateStartListenerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21205
+ /**
21206
+ * Creates a new instance of the appropriate class based on discriminator value
21207
+ * @param parseNode The parse node to use to read the discriminator value and create the object
21208
+ * @returns {OpenIdConnectSetting}
21209
+ */
21210
+ export declare function createOpenIdConnectSettingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21089
21211
  /**
21090
21212
  * Creates a new instance of the appropriate class based on discriminator value
21091
21213
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -22304,6 +22426,12 @@ export declare function createProtectedApplicationMetadataFromDiscriminatorValue
22304
22426
  * @returns {ProtectedContent}
22305
22427
  */
22306
22428
  export declare function createProtectedContentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22429
+ /**
22430
+ * Creates a new instance of the appropriate class based on discriminator value
22431
+ * @param parseNode The parse node to use to read the discriminator value and create the object
22432
+ * @returns {ProtectionPolicyArtifactCount}
22433
+ */
22434
+ export declare function createProtectionPolicyArtifactCountFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22307
22435
  /**
22308
22436
  * Creates a new instance of the appropriate class based on discriminator value
22309
22437
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -22736,6 +22864,12 @@ export declare function createReservablePlaceModeFromDiscriminatorValue(parseNod
22736
22864
  * @returns {ResetPasscodeActionResult}
22737
22865
  */
22738
22866
  export declare function createResetPasscodeActionResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22867
+ /**
22868
+ * Creates a new instance of the appropriate class based on discriminator value
22869
+ * @param parseNode The parse node to use to read the discriminator value and create the object
22870
+ * @returns {ResourceAccessDetail}
22871
+ */
22872
+ export declare function createResourceAccessDetailFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22739
22873
  /**
22740
22874
  * Creates a new instance of the appropriate class based on discriminator value
22741
22875
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -29409,6 +29543,12 @@ export declare function deserializeIntoAgreementFileVersion(agreementFileVersion
29409
29543
  * @returns {Record<string, (node: ParseNode) => void>}
29410
29544
  */
29411
29545
  export declare function deserializeIntoAgreementFileVersionCollectionResponse(agreementFileVersionCollectionResponse?: Partial<AgreementFileVersionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
29546
+ /**
29547
+ * The deserialization information for the current model
29548
+ * @param AiAgentInfo The instance to deserialize into.
29549
+ * @returns {Record<string, (node: ParseNode) => void>}
29550
+ */
29551
+ export declare function deserializeIntoAiAgentInfo(aiAgentInfo?: Partial<AiAgentInfo> | undefined): Record<string, (node: ParseNode) => void>;
29412
29552
  /**
29413
29553
  * The deserialization information for the current model
29414
29554
  * @param AiInteraction The instance to deserialize into.
@@ -29427,6 +29567,12 @@ export declare function deserializeIntoAiInteractionAttachment(aiInteractionAtta
29427
29567
  * @returns {Record<string, (node: ParseNode) => void>}
29428
29568
  */
29429
29569
  export declare function deserializeIntoAiInteractionContext(aiInteractionContext?: Partial<AiInteractionContext> | undefined): Record<string, (node: ParseNode) => void>;
29570
+ /**
29571
+ * The deserialization information for the current model
29572
+ * @param AiInteractionEntity The instance to deserialize into.
29573
+ * @returns {Record<string, (node: ParseNode) => void>}
29574
+ */
29575
+ export declare function deserializeIntoAiInteractionEntity(aiInteractionEntity?: Partial<AiInteractionEntity> | undefined): Record<string, (node: ParseNode) => void>;
29430
29576
  /**
29431
29577
  * The deserialization information for the current model
29432
29578
  * @param AiInteractionHistory The instance to deserialize into.
@@ -34323,6 +34469,30 @@ export declare function deserializeIntoEventMessageRequest(eventMessageRequest?:
34323
34469
  * @returns {Record<string, (node: ParseNode) => void>}
34324
34470
  */
34325
34471
  export declare function deserializeIntoEventMessageResponse(eventMessageResponse?: Partial<EventMessageResponse> | undefined): Record<string, (node: ParseNode) => void>;
34472
+ /**
34473
+ * The deserialization information for the current model
34474
+ * @param ExchangeAdmin The instance to deserialize into.
34475
+ * @returns {Record<string, (node: ParseNode) => void>}
34476
+ */
34477
+ export declare function deserializeIntoExchangeAdmin(exchangeAdmin?: Partial<ExchangeAdmin> | undefined): Record<string, (node: ParseNode) => void>;
34478
+ /**
34479
+ * The deserialization information for the current model
34480
+ * @param ExchangeMessageTrace The instance to deserialize into.
34481
+ * @returns {Record<string, (node: ParseNode) => void>}
34482
+ */
34483
+ export declare function deserializeIntoExchangeMessageTrace(exchangeMessageTrace?: Partial<ExchangeMessageTrace> | undefined): Record<string, (node: ParseNode) => void>;
34484
+ /**
34485
+ * The deserialization information for the current model
34486
+ * @param ExchangeMessageTraceCollectionResponse The instance to deserialize into.
34487
+ * @returns {Record<string, (node: ParseNode) => void>}
34488
+ */
34489
+ export declare function deserializeIntoExchangeMessageTraceCollectionResponse(exchangeMessageTraceCollectionResponse?: Partial<ExchangeMessageTraceCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
34490
+ /**
34491
+ * The deserialization information for the current model
34492
+ * @param ExchangeMessageTraceDetail The instance to deserialize into.
34493
+ * @returns {Record<string, (node: ParseNode) => void>}
34494
+ */
34495
+ export declare function deserializeIntoExchangeMessageTraceDetail(exchangeMessageTraceDetail?: Partial<ExchangeMessageTraceDetail> | undefined): Record<string, (node: ParseNode) => void>;
34326
34496
  /**
34327
34497
  * The deserialization information for the current model
34328
34498
  * @param ExchangeProtectionPolicy The instance to deserialize into.
@@ -34401,6 +34571,24 @@ export declare function deserializeIntoExtensionPropertyCollectionResponse(exten
34401
34571
  * @returns {Record<string, (node: ParseNode) => void>}
34402
34572
  */
34403
34573
  export declare function deserializeIntoExtensionSchemaProperty(extensionSchemaProperty?: Partial<ExtensionSchemaProperty> | undefined): Record<string, (node: ParseNode) => void>;
34574
+ /**
34575
+ * The deserialization information for the current model
34576
+ * @param ExternalAuthenticationMethod The instance to deserialize into.
34577
+ * @returns {Record<string, (node: ParseNode) => void>}
34578
+ */
34579
+ export declare function deserializeIntoExternalAuthenticationMethod(externalAuthenticationMethod?: Partial<ExternalAuthenticationMethod> | undefined): Record<string, (node: ParseNode) => void>;
34580
+ /**
34581
+ * The deserialization information for the current model
34582
+ * @param ExternalAuthenticationMethodCollectionResponse The instance to deserialize into.
34583
+ * @returns {Record<string, (node: ParseNode) => void>}
34584
+ */
34585
+ export declare function deserializeIntoExternalAuthenticationMethodCollectionResponse(externalAuthenticationMethodCollectionResponse?: Partial<ExternalAuthenticationMethodCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
34586
+ /**
34587
+ * The deserialization information for the current model
34588
+ * @param ExternalAuthenticationMethodConfiguration The instance to deserialize into.
34589
+ * @returns {Record<string, (node: ParseNode) => void>}
34590
+ */
34591
+ export declare function deserializeIntoExternalAuthenticationMethodConfiguration(externalAuthenticationMethodConfiguration?: Partial<ExternalAuthenticationMethodConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
34404
34592
  /**
34405
34593
  * The deserialization information for the current model
34406
34594
  * @param ExternalDomainFederation The instance to deserialize into.
@@ -36645,6 +36833,12 @@ export declare function deserializeIntoMessageRulePredicates(messageRulePredicat
36645
36833
  * @returns {Record<string, (node: ParseNode) => void>}
36646
36834
  */
36647
36835
  export declare function deserializeIntoMessageSecurityState(messageSecurityState?: Partial<MessageSecurityState> | undefined): Record<string, (node: ParseNode) => void>;
36836
+ /**
36837
+ * The deserialization information for the current model
36838
+ * @param MessageTracingRoot The instance to deserialize into.
36839
+ * @returns {Record<string, (node: ParseNode) => void>}
36840
+ */
36841
+ export declare function deserializeIntoMessageTracingRoot(messageTracingRoot?: Partial<MessageTracingRoot> | undefined): Record<string, (node: ParseNode) => void>;
36648
36842
  /**
36649
36843
  * The deserialization information for the current model
36650
36844
  * @param MessageUnpinnedEventMessageDetail The instance to deserialize into.
@@ -37077,6 +37271,42 @@ export declare function deserializeIntoOfferShiftRequestCollectionResponse(offer
37077
37271
  * @returns {Record<string, (node: ParseNode) => void>}
37078
37272
  */
37079
37273
  export declare function deserializeIntoOfficeGraphInsights(officeGraphInsights?: Partial<OfficeGraphInsights> | undefined): Record<string, (node: ParseNode) => void>;
37274
+ /**
37275
+ * The deserialization information for the current model
37276
+ * @param OidcAddressInboundClaims The instance to deserialize into.
37277
+ * @returns {Record<string, (node: ParseNode) => void>}
37278
+ */
37279
+ export declare function deserializeIntoOidcAddressInboundClaims(oidcAddressInboundClaims?: Partial<OidcAddressInboundClaims> | undefined): Record<string, (node: ParseNode) => void>;
37280
+ /**
37281
+ * The deserialization information for the current model
37282
+ * @param OidcClientAuthentication The instance to deserialize into.
37283
+ * @returns {Record<string, (node: ParseNode) => void>}
37284
+ */
37285
+ export declare function deserializeIntoOidcClientAuthentication(oidcClientAuthentication?: Partial<OidcClientAuthentication> | undefined): Record<string, (node: ParseNode) => void>;
37286
+ /**
37287
+ * The deserialization information for the current model
37288
+ * @param OidcClientSecretAuthentication The instance to deserialize into.
37289
+ * @returns {Record<string, (node: ParseNode) => void>}
37290
+ */
37291
+ export declare function deserializeIntoOidcClientSecretAuthentication(oidcClientSecretAuthentication?: Partial<OidcClientSecretAuthentication> | undefined): Record<string, (node: ParseNode) => void>;
37292
+ /**
37293
+ * The deserialization information for the current model
37294
+ * @param OidcIdentityProvider The instance to deserialize into.
37295
+ * @returns {Record<string, (node: ParseNode) => void>}
37296
+ */
37297
+ export declare function deserializeIntoOidcIdentityProvider(oidcIdentityProvider?: Partial<OidcIdentityProvider> | undefined): Record<string, (node: ParseNode) => void>;
37298
+ /**
37299
+ * The deserialization information for the current model
37300
+ * @param OidcInboundClaimMappingOverride The instance to deserialize into.
37301
+ * @returns {Record<string, (node: ParseNode) => void>}
37302
+ */
37303
+ export declare function deserializeIntoOidcInboundClaimMappingOverride(oidcInboundClaimMappingOverride?: Partial<OidcInboundClaimMappingOverride> | undefined): Record<string, (node: ParseNode) => void>;
37304
+ /**
37305
+ * The deserialization information for the current model
37306
+ * @param OidcPrivateJwtKeyClientAuthentication The instance to deserialize into.
37307
+ * @returns {Record<string, (node: ParseNode) => void>}
37308
+ */
37309
+ export declare function deserializeIntoOidcPrivateJwtKeyClientAuthentication(oidcPrivateJwtKeyClientAuthentication?: Partial<OidcPrivateJwtKeyClientAuthentication> | undefined): Record<string, (node: ParseNode) => void>;
37080
37310
  /**
37081
37311
  * The deserialization information for the current model
37082
37312
  * @param OmaSetting The instance to deserialize into.
@@ -37539,6 +37769,12 @@ export declare function deserializeIntoOnUserCreateStartHandler(onUserCreateStar
37539
37769
  * @returns {Record<string, (node: ParseNode) => void>}
37540
37770
  */
37541
37771
  export declare function deserializeIntoOnUserCreateStartListener(onUserCreateStartListener?: Partial<OnUserCreateStartListener> | undefined): Record<string, (node: ParseNode) => void>;
37772
+ /**
37773
+ * The deserialization information for the current model
37774
+ * @param OpenIdConnectSetting The instance to deserialize into.
37775
+ * @returns {Record<string, (node: ParseNode) => void>}
37776
+ */
37777
+ export declare function deserializeIntoOpenIdConnectSetting(openIdConnectSetting?: Partial<OpenIdConnectSetting> | undefined): Record<string, (node: ParseNode) => void>;
37542
37778
  /**
37543
37779
  * The deserialization information for the current model
37544
37780
  * @param OpenShift The instance to deserialize into.
@@ -38757,6 +38993,12 @@ export declare function deserializeIntoProtectedApplicationMetadata(protectedApp
38757
38993
  * @returns {Record<string, (node: ParseNode) => void>}
38758
38994
  */
38759
38995
  export declare function deserializeIntoProtectedContent(protectedContent?: Partial<ProtectedContent> | undefined): Record<string, (node: ParseNode) => void>;
38996
+ /**
38997
+ * The deserialization information for the current model
38998
+ * @param ProtectionPolicyArtifactCount The instance to deserialize into.
38999
+ * @returns {Record<string, (node: ParseNode) => void>}
39000
+ */
39001
+ export declare function deserializeIntoProtectionPolicyArtifactCount(protectionPolicyArtifactCount?: Partial<ProtectionPolicyArtifactCount> | undefined): Record<string, (node: ParseNode) => void>;
38760
39002
  /**
38761
39003
  * The deserialization information for the current model
38762
39004
  * @param ProtectionPolicyBase The instance to deserialize into.
@@ -39195,6 +39437,12 @@ export declare function deserializeIntoResetPasscodeActionResult(resetPasscodeAc
39195
39437
  * @returns {Record<string, (node: ParseNode) => void>}
39196
39438
  */
39197
39439
  export declare function deserializeIntoResourceAccess(resourceAccess?: Partial<ResourceAccess> | undefined): Record<string, (node: ParseNode) => void>;
39440
+ /**
39441
+ * The deserialization information for the current model
39442
+ * @param ResourceAccessDetail The instance to deserialize into.
39443
+ * @returns {Record<string, (node: ParseNode) => void>}
39444
+ */
39445
+ export declare function deserializeIntoResourceAccessDetail(resourceAccessDetail?: Partial<ResourceAccessDetail> | undefined): Record<string, (node: ParseNode) => void>;
39198
39446
  /**
39199
39447
  * The deserialization information for the current model
39200
39448
  * @param ResourceAction The instance to deserialize into.
@@ -50089,7 +50337,84 @@ export interface EventMessageResponse extends EventMessage, Parsable {
50089
50337
  responseType?: ResponseType | null;
50090
50338
  }
50091
50339
  export type EventType = (typeof EventTypeObject)[keyof typeof EventTypeObject];
50340
+ export interface ExchangeAdmin extends Entity, Parsable {
50341
+ /**
50342
+ * Represents a container for administrative resources to trace messages.
50343
+ */
50344
+ tracing?: MessageTracingRoot | null;
50345
+ }
50092
50346
  export type ExchangeIdFormat = (typeof ExchangeIdFormatObject)[keyof typeof ExchangeIdFormatObject];
50347
+ export interface ExchangeMessageTrace extends Entity, Parsable {
50348
+ /**
50349
+ * The source IP address. For incoming messages, this value is the public IP address of the SMTP email server that sent the message. Supports $filter (eq).
50350
+ */
50351
+ fromIP?: string | null;
50352
+ /**
50353
+ * The Message-ID header field of the message. The format of the Message-ID depends on the messaging server that sent the message. Supports $filter (eq).
50354
+ */
50355
+ messageId?: string | null;
50356
+ /**
50357
+ * The date and time when the message was received by Exchange Online. The timestamp is in UTC format. Supports $filter (ge, le).
50358
+ */
50359
+ receivedDateTime?: Date | null;
50360
+ /**
50361
+ * The SMTP email address of the user that the message was addressed to. Supports $filter (eq).
50362
+ */
50363
+ recipientAddress?: string | null;
50364
+ /**
50365
+ * The SMTP email address of the user the message was purportedly from. Supports $filter (eq).
50366
+ */
50367
+ senderAddress?: string | null;
50368
+ /**
50369
+ * The size of the message in bytes.
50370
+ */
50371
+ size?: number | null;
50372
+ /**
50373
+ * The status property
50374
+ */
50375
+ status?: ExchangeMessageTraceStatus | null;
50376
+ /**
50377
+ * The subject line of the message. Supports $filter (contains, startsWith, endsWith).
50378
+ */
50379
+ subject?: string | null;
50380
+ /**
50381
+ * The destination IP address. For outgoing messages, this value is the public IP address in the resolved MX record for the destination domain. For incoming messages to Exchange Online, this value is blank. Supports $filter (eq).
50382
+ */
50383
+ toIP?: string | null;
50384
+ }
50385
+ export interface ExchangeMessageTraceCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
50386
+ /**
50387
+ * The value property
50388
+ */
50389
+ value?: ExchangeMessageTrace[] | null;
50390
+ }
50391
+ export interface ExchangeMessageTraceDetail extends Entity, Parsable {
50392
+ /**
50393
+ * The action taken on the message during the event.
50394
+ */
50395
+ action?: string | null;
50396
+ /**
50397
+ * Additional data associated with the event, containing supplementary information specific to the event.
50398
+ */
50399
+ data?: string | null;
50400
+ /**
50401
+ * The date and time when the event occurred. The timestamp is in UTC format.
50402
+ */
50403
+ dateTime?: Date | null;
50404
+ /**
50405
+ * A detailed description that provides context about what happened during message processing.
50406
+ */
50407
+ description?: string | null;
50408
+ /**
50409
+ * The event that occurred during message processing.
50410
+ */
50411
+ event?: string | null;
50412
+ /**
50413
+ * The Message-ID header field of the message. The format depends on the messaging server that sent the message.
50414
+ */
50415
+ messageId?: string | null;
50416
+ }
50417
+ export type ExchangeMessageTraceStatus = (typeof ExchangeMessageTraceStatusObject)[keyof typeof ExchangeMessageTraceStatusObject];
50093
50418
  export interface ExchangeProtectionPolicy extends Parsable, ProtectionPolicyBase {
50094
50419
  /**
50095
50420
  * The rules associated with the Exchange protection policy.
@@ -50254,6 +50579,40 @@ export interface ExtensionSchemaProperty extends AdditionalDataHolder, BackedMod
50254
50579
  type?: string | null;
50255
50580
  }
50256
50581
  export type ExternalAudienceScope = (typeof ExternalAudienceScopeObject)[keyof typeof ExternalAudienceScopeObject];
50582
+ export interface ExternalAuthenticationMethod extends AuthenticationMethod, Parsable {
50583
+ /**
50584
+ * A unique identifier used to manage the external auth method within Microsoft Entra ID.
50585
+ */
50586
+ configurationId?: string | null;
50587
+ /**
50588
+ * Custom name given to the registered external authentication method.
50589
+ */
50590
+ displayName?: string | null;
50591
+ }
50592
+ export interface ExternalAuthenticationMethodCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
50593
+ /**
50594
+ * The value property
50595
+ */
50596
+ value?: ExternalAuthenticationMethod[] | null;
50597
+ }
50598
+ export interface ExternalAuthenticationMethodConfiguration extends AuthenticationMethodConfiguration, Parsable {
50599
+ /**
50600
+ * appId for the app registration in Microsoft Entra ID representing the integration with the external provider.
50601
+ */
50602
+ appId?: string | null;
50603
+ /**
50604
+ * Display name for the external authentication method. This name is shown to users during sign-in.
50605
+ */
50606
+ displayName?: string | null;
50607
+ /**
50608
+ * A collection of groups that are enabled to use an authentication method as part of an authentication method policy in Microsoft Entra ID.
50609
+ */
50610
+ includeTargets?: AuthenticationMethodTarget[] | null;
50611
+ /**
50612
+ * The openIdConnectSetting property
50613
+ */
50614
+ openIdConnectSetting?: OpenIdConnectSetting | null;
50615
+ }
50257
50616
  export interface ExternalDomainFederation extends IdentitySource, Parsable {
50258
50617
  /**
50259
50618
  * The name of the identity source, typically also the domain name. Read only.
@@ -50428,10 +50787,6 @@ export interface Fido2AuthenticationMethod extends AuthenticationMethod, Parsabl
50428
50787
  * The attestation level of this FIDO2 security key. The possible values are: attested, or notAttested.
50429
50788
  */
50430
50789
  attestationLevel?: AttestationLevel | null;
50431
- /**
50432
- * The timestamp when this key was registered to the user.
50433
- */
50434
- createdDateTime?: Date | null;
50435
50790
  /**
50436
50791
  * The display name of the key as given by the user.
50437
50792
  */
@@ -51532,6 +51887,14 @@ export interface Group extends DirectoryObject, Parsable {
51532
51887
  * Timestamp of when the group was last renewed. This value can't be modified directly and is only updated via the renew service action. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on January 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Supports $filter (eq, ne, not, ge, le, in). Read-only.
51533
51888
  */
51534
51889
  renewedDateTime?: Date | null;
51890
+ /**
51891
+ * Specifies the group behaviors that can be set for a Microsoft 365 group during creation. This property can be set only as part of creation (POST). For the list of possible values, see Microsoft 365 group behaviors and provisioning options.
51892
+ */
51893
+ resourceBehaviorOptions?: string[] | null;
51894
+ /**
51895
+ * Specifies the group resources that are associated with the Microsoft 365 group. The possible value is Team. For more information, see Microsoft 365 group behaviors and provisioning options. Returned by default. Supports $filter (eq, not, startsWith).
51896
+ */
51897
+ resourceProvisioningOptions?: string[] | null;
51535
51898
  /**
51536
51899
  * Specifies whether the group is a security group. Required. Returned by default. Supports $filter (eq, ne, not, in).
51537
51900
  */
@@ -58142,6 +58505,12 @@ export interface MessageSecurityState extends AdditionalDataHolder, BackedModel,
58142
58505
  */
58143
58506
  odataType?: string | null;
58144
58507
  }
58508
+ export interface MessageTracingRoot extends Entity, Parsable {
58509
+ /**
58510
+ * Represents the trace information of messages that pass through Exchange Online organizations.
58511
+ */
58512
+ messageTraces?: ExchangeMessageTrace[] | null;
58513
+ }
58145
58514
  export interface MessageUnpinnedEventMessageDetail extends EventMessageDetail, Parsable {
58146
58515
  /**
58147
58516
  * Date and time when the event occurred.
@@ -58177,10 +58546,6 @@ export interface MicrosoftAccountUserConversationMember extends ConversationMemb
58177
58546
  userId?: string | null;
58178
58547
  }
58179
58548
  export interface MicrosoftAuthenticatorAuthenticationMethod extends AuthenticationMethod, Parsable {
58180
- /**
58181
- * The date and time that this app was registered. This property is null if the device isn't registered for passwordless Phone Sign-In.
58182
- */
58183
- createdDateTime?: Date | null;
58184
58549
  /**
58185
58550
  * The registered device on which Microsoft Authenticator resides. This property is null if the device isn't registered for passwordless Phone Sign-In.
58186
58551
  */
@@ -59426,6 +59791,131 @@ export interface OfficeGraphInsights extends Entity, Parsable {
59426
59791
  */
59427
59792
  used?: UsedInsight[] | null;
59428
59793
  }
59794
+ export interface OidcAddressInboundClaims extends AdditionalDataHolder, BackedModel, Parsable {
59795
+ /**
59796
+ * Stores model information.
59797
+ */
59798
+ backingStoreEnabled?: boolean | null;
59799
+ /**
59800
+ * The country property
59801
+ */
59802
+ country?: string | null;
59803
+ /**
59804
+ * The locality property
59805
+ */
59806
+ locality?: string | null;
59807
+ /**
59808
+ * The OdataType property
59809
+ */
59810
+ odataType?: string | null;
59811
+ /**
59812
+ * The postal_code property
59813
+ */
59814
+ postalCode?: string | null;
59815
+ /**
59816
+ * The region property
59817
+ */
59818
+ region?: string | null;
59819
+ /**
59820
+ * The street_address property
59821
+ */
59822
+ streetAddress?: string | null;
59823
+ }
59824
+ export interface OidcClientAuthentication extends AdditionalDataHolder, BackedModel, Parsable {
59825
+ /**
59826
+ * Stores model information.
59827
+ */
59828
+ backingStoreEnabled?: boolean | null;
59829
+ /**
59830
+ * The OdataType property
59831
+ */
59832
+ odataType?: string | null;
59833
+ }
59834
+ export interface OidcClientSecretAuthentication extends OidcClientAuthentication, Parsable {
59835
+ /**
59836
+ * The clientSecret property
59837
+ */
59838
+ clientSecret?: string | null;
59839
+ }
59840
+ export interface OidcIdentityProvider extends IdentityProviderBase, Parsable {
59841
+ /**
59842
+ * The clientAuthentication property
59843
+ */
59844
+ clientAuthentication?: OidcClientAuthentication | null;
59845
+ /**
59846
+ * The clientId property
59847
+ */
59848
+ clientId?: string | null;
59849
+ /**
59850
+ * The inboundClaimMapping property
59851
+ */
59852
+ inboundClaimMapping?: OidcInboundClaimMappingOverride | null;
59853
+ /**
59854
+ * The issuer property
59855
+ */
59856
+ issuer?: string | null;
59857
+ /**
59858
+ * The responseType property
59859
+ */
59860
+ responseType?: OidcResponseType[] | null;
59861
+ /**
59862
+ * The scope property
59863
+ */
59864
+ scope?: string | null;
59865
+ /**
59866
+ * The wellKnownEndpoint property
59867
+ */
59868
+ wellKnownEndpoint?: string | null;
59869
+ }
59870
+ export interface OidcInboundClaimMappingOverride extends AdditionalDataHolder, BackedModel, Parsable {
59871
+ /**
59872
+ * The address property
59873
+ */
59874
+ address?: OidcAddressInboundClaims | null;
59875
+ /**
59876
+ * Stores model information.
59877
+ */
59878
+ backingStoreEnabled?: boolean | null;
59879
+ /**
59880
+ * The email property
59881
+ */
59882
+ email?: string | null;
59883
+ /**
59884
+ * The email_verified property
59885
+ */
59886
+ emailVerified?: string | null;
59887
+ /**
59888
+ * The family_name property
59889
+ */
59890
+ familyName?: string | null;
59891
+ /**
59892
+ * The given_name property
59893
+ */
59894
+ givenName?: string | null;
59895
+ /**
59896
+ * The name property
59897
+ */
59898
+ name?: string | null;
59899
+ /**
59900
+ * The OdataType property
59901
+ */
59902
+ odataType?: string | null;
59903
+ /**
59904
+ * The phone_number property
59905
+ */
59906
+ phoneNumber?: string | null;
59907
+ /**
59908
+ * The phone_number_verified property
59909
+ */
59910
+ phoneNumberVerified?: string | null;
59911
+ /**
59912
+ * The sub property
59913
+ */
59914
+ sub?: string | null;
59915
+ }
59916
+ export interface OidcPrivateJwtKeyClientAuthentication extends OidcClientAuthentication, Parsable {
59917
+ }
59918
+ export type OidcResponseType = (typeof OidcResponseTypeObject)[keyof typeof OidcResponseTypeObject];
59429
59919
  /**
59430
59920
  * OMA Settings definition.
59431
59921
  */
@@ -60611,6 +61101,24 @@ export interface OnUserCreateStartListener extends AuthenticationEventListener,
60611
61101
  */
60612
61102
  handler?: OnUserCreateStartHandler | null;
60613
61103
  }
61104
+ export interface OpenIdConnectSetting extends AdditionalDataHolder, BackedModel, Parsable {
61105
+ /**
61106
+ * Stores model information.
61107
+ */
61108
+ backingStoreEnabled?: boolean | null;
61109
+ /**
61110
+ * The Microsoft Entra ID's client ID as generated by the provider or admin to identify Microsoft Entra ID. In OIDC parlance, this is the client_id that external identity provider assigns to Microsoft Entra ID, which is also a recipient of a token from the external identity provider.
61111
+ */
61112
+ clientId?: string | null;
61113
+ /**
61114
+ * The host URL of the external identity provider's OIDC discovery endpoint. This endpoint must support the OIDC discovery process.
61115
+ */
61116
+ discoveryUrl?: string | null;
61117
+ /**
61118
+ * The OdataType property
61119
+ */
61120
+ odataType?: string | null;
61121
+ }
60614
61122
  export interface OpenShift extends ChangeTrackedEntity, Parsable {
60615
61123
  /**
60616
61124
  * Draft changes in the openShift are only visible to managers until they're shared.
@@ -61448,10 +61956,6 @@ export interface Partners extends Entity, Parsable {
61448
61956
  }
61449
61957
  export type PartnerTenantType = (typeof PartnerTenantTypeObject)[keyof typeof PartnerTenantTypeObject];
61450
61958
  export interface PasswordAuthenticationMethod extends AuthenticationMethod, Parsable {
61451
- /**
61452
- * The date and time when this password was last updated. This property is currently not populated. Read-only. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
61453
- */
61454
- createdDateTime?: Date | null;
61455
61959
  /**
61456
61960
  * For security, the password is always returned as null from a LIST or GET operation.
61457
61961
  */
@@ -62774,10 +63278,6 @@ export interface PlannerUserIds extends AdditionalDataHolder, BackedModel, Parsa
62774
63278
  odataType?: string | null;
62775
63279
  }
62776
63280
  export interface PlatformCredentialAuthenticationMethod extends AuthenticationMethod, Parsable {
62777
- /**
62778
- * The date and time that this Platform Credential Key was registered.
62779
- */
62780
- createdDateTime?: Date | null;
62781
63281
  /**
62782
63282
  * The registered device on which this Platform Credential resides. Supports $expand. When you get a user's Platform Credential registration information, this property is returned only on a single GET and when you specify ?$expand. For example, GET /users/admin@contoso.com/authentication/platformCredentialAuthenticationMethod/_jpuR-TGZtk6aQCLF3BQjA2?$expand=device.
62783
63283
  */
@@ -64687,9 +65187,17 @@ export interface ProcessContentResponses extends AdditionalDataHolder, BackedMod
64687
65187
  }
64688
65188
  export interface ProcessConversationMetadata extends Parsable, ProcessContentMetadataBase {
64689
65189
  /**
64690
- * List of resources (for example, file URLs, web URLs) accessed during the generation of this message (relevant for bot interactions).
65190
+ * List of resources (for example, file URLs, web URLs) accessed during the generation of this message (relevant for bot interactions). The accessedResources property is deprecated and stopped returning data on August 20, 2025. Going forward, use the accessedResources_v2 property.
64691
65191
  */
64692
65192
  accessedResources?: string[] | null;
65193
+ /**
65194
+ * Lists details about the resources accessed by AI agents, such as identifiers, access type, and status.
65195
+ */
65196
+ accessedResourcesV2?: ResourceAccessDetail[] | null;
65197
+ /**
65198
+ * Indicates the information about an AI agent that participated in the preparation of the message.
65199
+ */
65200
+ agents?: AiAgentInfo[] | null;
64693
65201
  /**
64694
65202
  * Identifier of the parent message in a threaded conversation, if applicable.
64695
65203
  */
@@ -64811,6 +65319,32 @@ export interface ProtectedContent extends AdditionalDataHolder, BackedModel, Par
64811
65319
  */
64812
65320
  odataType?: string | null;
64813
65321
  }
65322
+ export interface ProtectionPolicyArtifactCount extends AdditionalDataHolder, BackedModel, Parsable {
65323
+ /**
65324
+ * Stores model information.
65325
+ */
65326
+ backingStoreEnabled?: boolean | null;
65327
+ /**
65328
+ * The completed property
65329
+ */
65330
+ completed?: number | null;
65331
+ /**
65332
+ * The failed property
65333
+ */
65334
+ failed?: number | null;
65335
+ /**
65336
+ * The inProgress property
65337
+ */
65338
+ inProgress?: number | null;
65339
+ /**
65340
+ * The OdataType property
65341
+ */
65342
+ odataType?: string | null;
65343
+ /**
65344
+ * The total property
65345
+ */
65346
+ total?: number | null;
65347
+ }
64814
65348
  export interface ProtectionPolicyBase extends Entity, Parsable {
64815
65349
  /**
64816
65350
  * The identity of person who created the policy.
@@ -64824,6 +65358,10 @@ export interface ProtectionPolicyBase extends Entity, Parsable {
64824
65358
  * The name of the policy to be created.
64825
65359
  */
64826
65360
  displayName?: string | null;
65361
+ /**
65362
+ * The isEnabled property
65363
+ */
65364
+ isEnabled?: boolean | null;
64827
65365
  /**
64828
65366
  * The identity of the person who last modified the policy.
64829
65367
  */
@@ -64832,6 +65370,10 @@ export interface ProtectionPolicyBase extends Entity, Parsable {
64832
65370
  * The timestamp of the last modification of the policy.
64833
65371
  */
64834
65372
  lastModifiedDateTime?: Date | null;
65373
+ /**
65374
+ * The protectionPolicyArtifactCount property
65375
+ */
65376
+ protectionPolicyArtifactCount?: ProtectionPolicyArtifactCount | null;
64835
65377
  /**
64836
65378
  * Contains the retention setting details for the policy.
64837
65379
  */
@@ -66434,6 +66976,50 @@ export interface ResourceAccess extends AdditionalDataHolder, BackedModel, Parsa
66434
66976
  */
66435
66977
  type?: string | null;
66436
66978
  }
66979
+ export interface ResourceAccessDetail extends AdditionalDataHolder, BackedModel, Parsable {
66980
+ /**
66981
+ * The accessType property
66982
+ */
66983
+ accessType?: ResourceAccessType[] | null;
66984
+ /**
66985
+ * Stores model information.
66986
+ */
66987
+ backingStoreEnabled?: boolean | null;
66988
+ /**
66989
+ * Unique identifier of the resource accessed.
66990
+ */
66991
+ identifier?: string | null;
66992
+ /**
66993
+ * Indicates whether cross-prompt injection was detected during the access attempt.
66994
+ */
66995
+ isCrossPromptInjectionDetected?: boolean | null;
66996
+ /**
66997
+ * Identifier for the sensitivity label applied to the resource, if any.
66998
+ */
66999
+ labelId?: string | null;
67000
+ /**
67001
+ * Name of the resource accessed.
67002
+ */
67003
+ name?: string | null;
67004
+ /**
67005
+ * The OdataType property
67006
+ */
67007
+ odataType?: string | null;
67008
+ /**
67009
+ * The status property
67010
+ */
67011
+ status?: ResourceAccessStatus | null;
67012
+ /**
67013
+ * Identifier for the resource in its native storage format. For SharePoint resources, this is the unique identifier of the list item. For other resources, this is the name of the location, such as Box, Dropbox, Exchange, or Google Drive.
67014
+ */
67015
+ storageId?: string | null;
67016
+ /**
67017
+ * URL of the resource accessed.
67018
+ */
67019
+ url?: string | null;
67020
+ }
67021
+ export type ResourceAccessStatus = (typeof ResourceAccessStatusObject)[keyof typeof ResourceAccessStatusObject];
67022
+ export type ResourceAccessType = (typeof ResourceAccessTypeObject)[keyof typeof ResourceAccessTypeObject];
66437
67023
  /**
66438
67024
  * Set of allowed and not allowed actions for a resource.
66439
67025
  */
@@ -69553,6 +70139,13 @@ export declare function serializeAgreementFileVersion(writer: SerializationWrite
69553
70139
  * @param writer Serialization writer to use to serialize this model
69554
70140
  */
69555
70141
  export declare function serializeAgreementFileVersionCollectionResponse(writer: SerializationWriter, agreementFileVersionCollectionResponse?: Partial<AgreementFileVersionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
70142
+ /**
70143
+ * Serializes information the current object
70144
+ * @param AiAgentInfo The instance to serialize from.
70145
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
70146
+ * @param writer Serialization writer to use to serialize this model
70147
+ */
70148
+ export declare function serializeAiAgentInfo(writer: SerializationWriter, aiAgentInfo?: Partial<AiAgentInfo> | undefined | null, isSerializingDerivedType?: boolean): void;
69556
70149
  /**
69557
70150
  * Serializes information the current object
69558
70151
  * @param AiInteraction The instance to serialize from.
@@ -69574,6 +70167,13 @@ export declare function serializeAiInteractionAttachment(writer: SerializationWr
69574
70167
  * @param writer Serialization writer to use to serialize this model
69575
70168
  */
69576
70169
  export declare function serializeAiInteractionContext(writer: SerializationWriter, aiInteractionContext?: Partial<AiInteractionContext> | undefined | null, isSerializingDerivedType?: boolean): void;
70170
+ /**
70171
+ * Serializes information the current object
70172
+ * @param AiInteractionEntity The instance to serialize from.
70173
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
70174
+ * @param writer Serialization writer to use to serialize this model
70175
+ */
70176
+ export declare function serializeAiInteractionEntity(writer: SerializationWriter, aiInteractionEntity?: Partial<AiInteractionEntity> | undefined | null, isSerializingDerivedType?: boolean): void;
69577
70177
  /**
69578
70178
  * Serializes information the current object
69579
70179
  * @param AiInteractionHistory The instance to serialize from.
@@ -75286,6 +75886,34 @@ export declare function serializeEventMessageRequest(writer: SerializationWriter
75286
75886
  * @param writer Serialization writer to use to serialize this model
75287
75887
  */
75288
75888
  export declare function serializeEventMessageResponse(writer: SerializationWriter, eventMessageResponse?: Partial<EventMessageResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
75889
+ /**
75890
+ * Serializes information the current object
75891
+ * @param ExchangeAdmin The instance to serialize from.
75892
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
75893
+ * @param writer Serialization writer to use to serialize this model
75894
+ */
75895
+ export declare function serializeExchangeAdmin(writer: SerializationWriter, exchangeAdmin?: Partial<ExchangeAdmin> | undefined | null, isSerializingDerivedType?: boolean): void;
75896
+ /**
75897
+ * Serializes information the current object
75898
+ * @param ExchangeMessageTrace The instance to serialize from.
75899
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
75900
+ * @param writer Serialization writer to use to serialize this model
75901
+ */
75902
+ export declare function serializeExchangeMessageTrace(writer: SerializationWriter, exchangeMessageTrace?: Partial<ExchangeMessageTrace> | undefined | null, isSerializingDerivedType?: boolean): void;
75903
+ /**
75904
+ * Serializes information the current object
75905
+ * @param ExchangeMessageTraceCollectionResponse The instance to serialize from.
75906
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
75907
+ * @param writer Serialization writer to use to serialize this model
75908
+ */
75909
+ export declare function serializeExchangeMessageTraceCollectionResponse(writer: SerializationWriter, exchangeMessageTraceCollectionResponse?: Partial<ExchangeMessageTraceCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
75910
+ /**
75911
+ * Serializes information the current object
75912
+ * @param ExchangeMessageTraceDetail The instance to serialize from.
75913
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
75914
+ * @param writer Serialization writer to use to serialize this model
75915
+ */
75916
+ export declare function serializeExchangeMessageTraceDetail(writer: SerializationWriter, exchangeMessageTraceDetail?: Partial<ExchangeMessageTraceDetail> | undefined | null, isSerializingDerivedType?: boolean): void;
75289
75917
  /**
75290
75918
  * Serializes information the current object
75291
75919
  * @param ExchangeProtectionPolicy The instance to serialize from.
@@ -75377,6 +76005,27 @@ export declare function serializeExtensionPropertyCollectionResponse(writer: Ser
75377
76005
  * @param writer Serialization writer to use to serialize this model
75378
76006
  */
75379
76007
  export declare function serializeExtensionSchemaProperty(writer: SerializationWriter, extensionSchemaProperty?: Partial<ExtensionSchemaProperty> | undefined | null, isSerializingDerivedType?: boolean): void;
76008
+ /**
76009
+ * Serializes information the current object
76010
+ * @param ExternalAuthenticationMethod The instance to serialize from.
76011
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
76012
+ * @param writer Serialization writer to use to serialize this model
76013
+ */
76014
+ export declare function serializeExternalAuthenticationMethod(writer: SerializationWriter, externalAuthenticationMethod?: Partial<ExternalAuthenticationMethod> | undefined | null, isSerializingDerivedType?: boolean): void;
76015
+ /**
76016
+ * Serializes information the current object
76017
+ * @param ExternalAuthenticationMethodCollectionResponse The instance to serialize from.
76018
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
76019
+ * @param writer Serialization writer to use to serialize this model
76020
+ */
76021
+ export declare function serializeExternalAuthenticationMethodCollectionResponse(writer: SerializationWriter, externalAuthenticationMethodCollectionResponse?: Partial<ExternalAuthenticationMethodCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
76022
+ /**
76023
+ * Serializes information the current object
76024
+ * @param ExternalAuthenticationMethodConfiguration The instance to serialize from.
76025
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
76026
+ * @param writer Serialization writer to use to serialize this model
76027
+ */
76028
+ export declare function serializeExternalAuthenticationMethodConfiguration(writer: SerializationWriter, externalAuthenticationMethodConfiguration?: Partial<ExternalAuthenticationMethodConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
75380
76029
  /**
75381
76030
  * Serializes information the current object
75382
76031
  * @param ExternalDomainFederation The instance to serialize from.
@@ -77995,6 +78644,13 @@ export declare function serializeMessageRulePredicates(writer: SerializationWrit
77995
78644
  * @param writer Serialization writer to use to serialize this model
77996
78645
  */
77997
78646
  export declare function serializeMessageSecurityState(writer: SerializationWriter, messageSecurityState?: Partial<MessageSecurityState> | undefined | null, isSerializingDerivedType?: boolean): void;
78647
+ /**
78648
+ * Serializes information the current object
78649
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
78650
+ * @param MessageTracingRoot The instance to serialize from.
78651
+ * @param writer Serialization writer to use to serialize this model
78652
+ */
78653
+ export declare function serializeMessageTracingRoot(writer: SerializationWriter, messageTracingRoot?: Partial<MessageTracingRoot> | undefined | null, isSerializingDerivedType?: boolean): void;
77998
78654
  /**
77999
78655
  * Serializes information the current object
78000
78656
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -78499,6 +79155,48 @@ export declare function serializeOfferShiftRequestCollectionResponse(writer: Ser
78499
79155
  * @param writer Serialization writer to use to serialize this model
78500
79156
  */
78501
79157
  export declare function serializeOfficeGraphInsights(writer: SerializationWriter, officeGraphInsights?: Partial<OfficeGraphInsights> | undefined | null, isSerializingDerivedType?: boolean): void;
79158
+ /**
79159
+ * Serializes information the current object
79160
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
79161
+ * @param OidcAddressInboundClaims The instance to serialize from.
79162
+ * @param writer Serialization writer to use to serialize this model
79163
+ */
79164
+ export declare function serializeOidcAddressInboundClaims(writer: SerializationWriter, oidcAddressInboundClaims?: Partial<OidcAddressInboundClaims> | undefined | null, isSerializingDerivedType?: boolean): void;
79165
+ /**
79166
+ * Serializes information the current object
79167
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
79168
+ * @param OidcClientAuthentication The instance to serialize from.
79169
+ * @param writer Serialization writer to use to serialize this model
79170
+ */
79171
+ export declare function serializeOidcClientAuthentication(writer: SerializationWriter, oidcClientAuthentication?: Partial<OidcClientAuthentication> | undefined | null, isSerializingDerivedType?: boolean): void;
79172
+ /**
79173
+ * Serializes information the current object
79174
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
79175
+ * @param OidcClientSecretAuthentication The instance to serialize from.
79176
+ * @param writer Serialization writer to use to serialize this model
79177
+ */
79178
+ export declare function serializeOidcClientSecretAuthentication(writer: SerializationWriter, oidcClientSecretAuthentication?: Partial<OidcClientSecretAuthentication> | undefined | null, isSerializingDerivedType?: boolean): void;
79179
+ /**
79180
+ * Serializes information the current object
79181
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
79182
+ * @param OidcIdentityProvider The instance to serialize from.
79183
+ * @param writer Serialization writer to use to serialize this model
79184
+ */
79185
+ export declare function serializeOidcIdentityProvider(writer: SerializationWriter, oidcIdentityProvider?: Partial<OidcIdentityProvider> | undefined | null, isSerializingDerivedType?: boolean): void;
79186
+ /**
79187
+ * Serializes information the current object
79188
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
79189
+ * @param OidcInboundClaimMappingOverride The instance to serialize from.
79190
+ * @param writer Serialization writer to use to serialize this model
79191
+ */
79192
+ export declare function serializeOidcInboundClaimMappingOverride(writer: SerializationWriter, oidcInboundClaimMappingOverride?: Partial<OidcInboundClaimMappingOverride> | undefined | null, isSerializingDerivedType?: boolean): void;
79193
+ /**
79194
+ * Serializes information the current object
79195
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
79196
+ * @param OidcPrivateJwtKeyClientAuthentication The instance to serialize from.
79197
+ * @param writer Serialization writer to use to serialize this model
79198
+ */
79199
+ export declare function serializeOidcPrivateJwtKeyClientAuthentication(writer: SerializationWriter, oidcPrivateJwtKeyClientAuthentication?: Partial<OidcPrivateJwtKeyClientAuthentication> | undefined | null, isSerializingDerivedType?: boolean): void;
78502
79200
  /**
78503
79201
  * Serializes information the current object
78504
79202
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -79038,6 +79736,13 @@ export declare function serializeOnUserCreateStartHandler(writer: SerializationW
79038
79736
  * @param writer Serialization writer to use to serialize this model
79039
79737
  */
79040
79738
  export declare function serializeOnUserCreateStartListener(writer: SerializationWriter, onUserCreateStartListener?: Partial<OnUserCreateStartListener> | undefined | null, isSerializingDerivedType?: boolean): void;
79739
+ /**
79740
+ * Serializes information the current object
79741
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
79742
+ * @param OpenIdConnectSetting The instance to serialize from.
79743
+ * @param writer Serialization writer to use to serialize this model
79744
+ */
79745
+ export declare function serializeOpenIdConnectSetting(writer: SerializationWriter, openIdConnectSetting?: Partial<OpenIdConnectSetting> | undefined | null, isSerializingDerivedType?: boolean): void;
79041
79746
  /**
79042
79747
  * Serializes information the current object
79043
79748
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -80459,6 +81164,13 @@ export declare function serializeProtectedApplicationMetadata(writer: Serializat
80459
81164
  * @param writer Serialization writer to use to serialize this model
80460
81165
  */
80461
81166
  export declare function serializeProtectedContent(writer: SerializationWriter, protectedContent?: Partial<ProtectedContent> | undefined | null, isSerializingDerivedType?: boolean): void;
81167
+ /**
81168
+ * Serializes information the current object
81169
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
81170
+ * @param ProtectionPolicyArtifactCount The instance to serialize from.
81171
+ * @param writer Serialization writer to use to serialize this model
81172
+ */
81173
+ export declare function serializeProtectionPolicyArtifactCount(writer: SerializationWriter, protectionPolicyArtifactCount?: Partial<ProtectionPolicyArtifactCount> | undefined | null, isSerializingDerivedType?: boolean): void;
80462
81174
  /**
80463
81175
  * Serializes information the current object
80464
81176
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -80970,6 +81682,13 @@ export declare function serializeResetPasscodeActionResult(writer: Serialization
80970
81682
  * @param writer Serialization writer to use to serialize this model
80971
81683
  */
80972
81684
  export declare function serializeResourceAccess(writer: SerializationWriter, resourceAccess?: Partial<ResourceAccess> | undefined | null, isSerializingDerivedType?: boolean): void;
81685
+ /**
81686
+ * Serializes information the current object
81687
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
81688
+ * @param ResourceAccessDetail The instance to serialize from.
81689
+ * @param writer Serialization writer to use to serialize this model
81690
+ */
81691
+ export declare function serializeResourceAccessDetail(writer: SerializationWriter, resourceAccessDetail?: Partial<ResourceAccessDetail> | undefined | null, isSerializingDerivedType?: boolean): void;
80973
81692
  /**
80974
81693
  * Serializes information the current object
80975
81694
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -87051,7 +87770,7 @@ export interface ServicePrincipal extends DirectoryObject, Parsable {
87051
87770
  */
87052
87771
  servicePrincipalNames?: string[] | null;
87053
87772
  /**
87054
- * Identifies whether the service principal represents an application, a managed identity, or a legacy application. This is set by Microsoft Entra ID internally. The servicePrincipalType property can be set to three different values: Application - A service principal that represents an application or service. The appId property identifies the associated app registration, and matches the appId of an application, possibly from a different tenant. If the associated app registration is missing, tokens aren't issued for the service principal.ManagedIdentity - A service principal that represents a managed identity. Service principals representing managed identities can be granted access and permissions, but can't be updated or modified directly.Legacy - A service principal that represents an app created before app registrations, or through legacy experiences. A legacy service principal can have credentials, service principal names, reply URLs, and other properties that are editable by an authorized user, but doesn't have an associated app registration. The appId value doesn't associate the service principal with an app registration. The service principal can only be used in the tenant where it was created.SocialIdp - For internal use.
87773
+ * Identifies whether the service principal represents an application, a managed identity, or a legacy application. This property is set by Microsoft Entra ID internally. The servicePrincipalType property can be set to three different values: Application - A service principal that represents an application or service. The appId property identifies the associated app registration, and matches the appId of an application, possibly from a different tenant. If the associated app registration is missing, tokens aren't issued for the service principal.ManagedIdentity - A service principal that represents a managed identity. Service principals representing managed identities can be granted access and permissions, but can't be updated or modified directly.Legacy - A service principal that represents an app created before app registrations, or through legacy experiences. A legacy service principal can have credentials, service principal names, reply URLs, and other properties that are editable by an authorized user, but doesn't have an associated app registration. The appId value doesn't associate the service principal with an app registration. The service principal can only be used in the tenant where it was created.ServiceIdentity - A service principal that represents an agent identity.SocialIdp - For internal use.
87055
87774
  */
87056
87775
  servicePrincipalType?: string | null;
87057
87776
  /**
@@ -91713,10 +92432,6 @@ export interface TeleconferenceDeviceVideoQuality extends Parsable, Teleconferen
91713
92432
  export type TemplateApplicationLevel = (typeof TemplateApplicationLevelObject)[keyof typeof TemplateApplicationLevelObject];
91714
92433
  export type TemplateScenarios = (typeof TemplateScenariosObject)[keyof typeof TemplateScenariosObject];
91715
92434
  export interface TemporaryAccessPassAuthenticationMethod extends AuthenticationMethod, Parsable {
91716
- /**
91717
- * The date and time when the Temporary Access Pass was created.
91718
- */
91719
- createdDateTime?: Date | null;
91720
92435
  /**
91721
92436
  * The state of the authentication method that indicates whether it's currently usable by the user.
91722
92437
  */
@@ -99556,10 +100271,6 @@ export interface WindowsFirewallNetworkProfile extends AdditionalDataHolder, Bac
99556
100271
  unicastResponsesToMulticastBroadcastsBlocked?: boolean | null;
99557
100272
  }
99558
100273
  export interface WindowsHelloForBusinessAuthenticationMethod extends AuthenticationMethod, Parsable {
99559
- /**
99560
- * The date and time that this Windows Hello for Business key was registered.
99561
- */
99562
- createdDateTime?: Date | null;
99563
100274
  /**
99564
100275
  * The registered device on which this Windows Hello for Business key resides. Supports $expand. When you get a user's Windows Hello for Business registration information, this property is returned only on a single GET and when you specify ?$expand. For example, GET /users/admin@contoso.com/authentication/windowsHelloForBusinessMethods/_jpuR-TGZtk6aQCLF3BQjA2?$expand=device.
99565
100276
  */
@@ -104520,6 +105231,16 @@ export declare const ExchangeIdFormatObject: {
104520
105231
  readonly RestId: "restId";
104521
105232
  readonly RestImmutableEntryId: "restImmutableEntryId";
104522
105233
  };
105234
+ export declare const ExchangeMessageTraceStatusObject: {
105235
+ readonly GettingStatus: "gettingStatus";
105236
+ readonly Pending: "pending";
105237
+ readonly Failed: "failed";
105238
+ readonly Delivered: "delivered";
105239
+ readonly Expanded: "expanded";
105240
+ readonly Quarantined: "quarantined";
105241
+ readonly FilteredAsSpam: "filteredAsSpam";
105242
+ readonly UnknownFutureValue: "unknownFutureValue";
105243
+ };
104523
105244
  export declare const ExecutionModeObject: {
104524
105245
  readonly EvaluateInline: "evaluateInline";
104525
105246
  readonly EvaluateOffline: "evaluateOffline";
@@ -105473,6 +106194,12 @@ export declare const ObjectMappingMetadataObject: {
105473
106194
  readonly ExcludeFromReporting: "ExcludeFromReporting";
105474
106195
  readonly Unsynchronized: "Unsynchronized";
105475
106196
  };
106197
+ export declare const OidcResponseTypeObject: {
106198
+ readonly Code: "code";
106199
+ readonly Id_token: "id_token";
106200
+ readonly Token: "token";
106201
+ readonly UnknownFutureValue: "unknownFutureValue";
106202
+ };
105476
106203
  export declare const OnenotePatchActionTypeObject: {
105477
106204
  readonly Replace: "Replace";
105478
106205
  readonly Append: "Append";
@@ -107333,6 +108060,19 @@ export declare const RequiredPasswordTypeObject: {
107333
108060
  /** Numeric password required. */
107334
108061
  readonly Numeric: "numeric";
107335
108062
  };
108063
+ export declare const ResourceAccessStatusObject: {
108064
+ readonly None: "none";
108065
+ readonly Failure: "failure";
108066
+ readonly Success: "success";
108067
+ readonly UnknownFutureValue: "unknownFutureValue";
108068
+ };
108069
+ export declare const ResourceAccessTypeObject: {
108070
+ readonly None: "none";
108071
+ readonly Read: "read";
108072
+ readonly Write: "write";
108073
+ readonly Create: "create";
108074
+ readonly UnknownFutureValue: "unknownFutureValue";
108075
+ };
107336
108076
  export declare const ResourceLinkTypeObject: {
107337
108077
  readonly Url: "url";
107338
108078
  readonly UnknownFutureValue: "unknownFutureValue";
@@ -108347,6 +109087,7 @@ export declare const UsageRightsObject: {
108347
109087
  readonly EncryptedProtectionTypeNotSupportedException: "encryptedProtectionTypeNotSupportedException";
108348
109088
  readonly PurviewClaimsChallengeNotSupportedException: "purviewClaimsChallengeNotSupportedException";
108349
109089
  readonly Exception: "exception";
109090
+ readonly LabelNotFoundException: "labelNotFoundException";
108350
109091
  readonly UnknownFutureValue: "unknownFutureValue";
108351
109092
  };
108352
109093
  export declare const UserAccountSecurityTypeObject: {