@microsoft/msgraph-sdk 1.0.0-preview.53 → 1.0.0-preview.55

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
@@ -3624,7 +3624,7 @@ export interface Application extends DirectoryObject, Parsable {
3624
3624
  */
3625
3625
  homeRealmDiscoveryPolicies?: HomeRealmDiscoveryPolicy[] | null;
3626
3626
  /**
3627
- * Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique. You can use the default value provided, which is in the form api://<appId>, or specify a more readable URI like https://contoso.com/api. For more information on valid identifierUris patterns and best practices, see Microsoft Entra application registration security best practices. Not nullable. Supports $filter (eq, ne, ge, le, startsWith).
3627
+ * Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique. For more information on valid identifierUris patterns and best practices, see Microsoft Entra application registration security best practices. Not nullable. Supports $filter (eq, ne, ge, le, startsWith).
3628
3628
  */
3629
3629
  identifierUris?: string[] | null;
3630
3630
  /**
@@ -4755,9 +4755,17 @@ export interface AttendanceRecord extends Entity, Parsable {
4755
4755
  */
4756
4756
  emailAddress?: string | null;
4757
4757
  /**
4758
- * Identity of the user associated with this attendance record.
4758
+ * The external information for a virtualEventRegistration.
4759
+ */
4760
+ externalRegistrationInformation?: VirtualEventExternalRegistrationInformation | null;
4761
+ /**
4762
+ * The identity of the user associated with this attendance record. The specific type is one of the following derived types of identity, depending on the user type: communicationsUserIdentity, azureCommunicationServicesUserIdentity.
4759
4763
  */
4760
4764
  identity?: Identity | null;
4765
+ /**
4766
+ * Unique identifier of a virtualEventRegistration that is available to all participants registered for the virtualEventWebinar.
4767
+ */
4768
+ registrationId?: string | null;
4761
4769
  /**
4762
4770
  * Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.
4763
4771
  */
@@ -5431,6 +5439,10 @@ export interface Authentication extends Entity, Parsable {
5431
5439
  * The phone numbers registered to a user for authentication.
5432
5440
  */
5433
5441
  phoneMethods?: PhoneAuthenticationMethod[] | null;
5442
+ /**
5443
+ * Represents a platform credential instance registered to a user on Mac OS.
5444
+ */
5445
+ platformCredentialMethods?: PlatformCredentialAuthenticationMethod[] | null;
5434
5446
  /**
5435
5447
  * The software OATH time-based one-time password (TOTP) applications registered to a user for authentication.
5436
5448
  */
@@ -5824,6 +5836,7 @@ export interface AuthenticationMethodModeDetailCollectionResponse extends BaseCo
5824
5836
  value?: AuthenticationMethodModeDetail[] | null;
5825
5837
  }
5826
5838
  export type AuthenticationMethodModes = (typeof AuthenticationMethodModesObject)[keyof typeof AuthenticationMethodModesObject];
5839
+ export type AuthenticationMethodPlatform = (typeof AuthenticationMethodPlatformObject)[keyof typeof AuthenticationMethodPlatformObject];
5827
5840
  export type AuthenticationMethodSignInState = (typeof AuthenticationMethodSignInStateObject)[keyof typeof AuthenticationMethodSignInStateObject];
5828
5841
  export interface AuthenticationMethodsPolicy extends Entity, Parsable {
5829
5842
  /**
@@ -6321,6 +6334,10 @@ export interface BackupRestoreRoot extends Entity, Parsable {
6321
6334
  * The list of drive protection units in the tenant.
6322
6335
  */
6323
6336
  driveProtectionUnits?: DriveProtectionUnit[] | null;
6337
+ /**
6338
+ * The driveProtectionUnitsBulkAdditionJobs property
6339
+ */
6340
+ driveProtectionUnitsBulkAdditionJobs?: DriveProtectionUnitsBulkAdditionJob[] | null;
6324
6341
  /**
6325
6342
  * The list of Exchange protection policies in the tenant.
6326
6343
  */
@@ -6337,6 +6354,10 @@ export interface BackupRestoreRoot extends Entity, Parsable {
6337
6354
  * The list of mailbox protection units in the tenant.
6338
6355
  */
6339
6356
  mailboxProtectionUnits?: MailboxProtectionUnit[] | null;
6357
+ /**
6358
+ * The mailboxProtectionUnitsBulkAdditionJobs property
6359
+ */
6360
+ mailboxProtectionUnitsBulkAdditionJobs?: MailboxProtectionUnitsBulkAdditionJob[] | null;
6340
6361
  /**
6341
6362
  * The list of OneDrive for Business protection policies in the tenant.
6342
6363
  */
@@ -6385,6 +6406,10 @@ export interface BackupRestoreRoot extends Entity, Parsable {
6385
6406
  * The list of site protection units in the tenant.
6386
6407
  */
6387
6408
  siteProtectionUnits?: SiteProtectionUnit[] | null;
6409
+ /**
6410
+ * The siteProtectionUnitsBulkAdditionJobs property
6411
+ */
6412
+ siteProtectionUnitsBulkAdditionJobs?: SiteProtectionUnitsBulkAdditionJob[] | null;
6388
6413
  }
6389
6414
  export type BackupServiceConsumer = (typeof BackupServiceConsumerObject)[keyof typeof BackupServiceConsumerObject];
6390
6415
  export type BackupServiceStatus = (typeof BackupServiceStatusObject)[keyof typeof BackupServiceStatusObject];
@@ -11991,6 +12016,28 @@ export interface ConvertIdResult extends AdditionalDataHolder, BackedModel, Pars
11991
12016
  */
11992
12017
  targetId?: string | null;
11993
12018
  }
12019
+ export interface CopilotAdmin extends Entity, Parsable {
12020
+ /**
12021
+ * Set of Microsoft 365 Copilot settings that can be added or modified. Read-only. Nullable.
12022
+ */
12023
+ settings?: CopilotAdminSetting | null;
12024
+ }
12025
+ export interface CopilotAdminLimitedMode extends Entity, Parsable {
12026
+ /**
12027
+ * The ID of a Microsoft Entra group, for which the value of isEnabledForGroup is applied. The default value is null. If isEnabledForGroup is set to true, the groupId value must be provided for the Copilot limited mode in Teams meetings to be enabled for the members of the group. Optional.
12028
+ */
12029
+ groupId?: string | null;
12030
+ /**
12031
+ * Enables the user to be in limited mode for Copilot in Teams meetings. When copilotAdminLimitedMode=true, users in this mode can ask any questions, but Copilot doesn't respond to certain questions related to inferring emotions, behavior, or judgments. When copilotAdminLimitedMode=false, it responds to all types of questions grounded to the meeting conversation. The default value is false.
12032
+ */
12033
+ isEnabledForGroup?: boolean | null;
12034
+ }
12035
+ export interface CopilotAdminSetting extends Entity, Parsable {
12036
+ /**
12037
+ * Represents a setting that controls whether users of Microsoft 365 Copilot in Teams meetings can receive responses to sentiment-related prompts. Read-only. Nullable.
12038
+ */
12039
+ limitedMode?: CopilotAdminLimitedMode | null;
12040
+ }
11994
12041
  export interface CopyNotebookModel extends AdditionalDataHolder, BackedModel, Parsable {
11995
12042
  /**
11996
12043
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -15237,6 +15284,24 @@ export declare function createConversationThreadFromDiscriminatorValue(parseNode
15237
15284
  * @returns {ConvertIdResult}
15238
15285
  */
15239
15286
  export declare function createConvertIdResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
15287
+ /**
15288
+ * Creates a new instance of the appropriate class based on discriminator value
15289
+ * @param parseNode The parse node to use to read the discriminator value and create the object
15290
+ * @returns {CopilotAdmin}
15291
+ */
15292
+ export declare function createCopilotAdminFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
15293
+ /**
15294
+ * Creates a new instance of the appropriate class based on discriminator value
15295
+ * @param parseNode The parse node to use to read the discriminator value and create the object
15296
+ * @returns {CopilotAdminLimitedMode}
15297
+ */
15298
+ export declare function createCopilotAdminLimitedModeFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
15299
+ /**
15300
+ * Creates a new instance of the appropriate class based on discriminator value
15301
+ * @param parseNode The parse node to use to read the discriminator value and create the object
15302
+ * @returns {CopilotAdminSetting}
15303
+ */
15304
+ export declare function createCopilotAdminSettingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
15240
15305
  /**
15241
15306
  * Creates a new instance of the appropriate class based on discriminator value
15242
15307
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -16443,6 +16508,18 @@ export declare function createDriveProtectionUnitCollectionResponseFromDiscrimin
16443
16508
  * @returns {DriveProtectionUnit}
16444
16509
  */
16445
16510
  export declare function createDriveProtectionUnitFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16511
+ /**
16512
+ * Creates a new instance of the appropriate class based on discriminator value
16513
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16514
+ * @returns {DriveProtectionUnitsBulkAdditionJobCollectionResponse}
16515
+ */
16516
+ export declare function createDriveProtectionUnitsBulkAdditionJobCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16517
+ /**
16518
+ * Creates a new instance of the appropriate class based on discriminator value
16519
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16520
+ * @returns {DriveProtectionUnitsBulkAdditionJob}
16521
+ */
16522
+ export declare function createDriveProtectionUnitsBulkAdditionJobFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16446
16523
  /**
16447
16524
  * Creates a new instance of the appropriate class based on discriminator value
16448
16525
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -16461,6 +16538,18 @@ export declare function createDriveRestoreArtifactCollectionResponseFromDiscrimi
16461
16538
  * @returns {DriveRestoreArtifact}
16462
16539
  */
16463
16540
  export declare function createDriveRestoreArtifactFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16541
+ /**
16542
+ * Creates a new instance of the appropriate class based on discriminator value
16543
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16544
+ * @returns {DriveRestoreArtifactsBulkAdditionRequestCollectionResponse}
16545
+ */
16546
+ export declare function createDriveRestoreArtifactsBulkAdditionRequestCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16547
+ /**
16548
+ * Creates a new instance of the appropriate class based on discriminator value
16549
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16550
+ * @returns {DriveRestoreArtifactsBulkAdditionRequest}
16551
+ */
16552
+ export declare function createDriveRestoreArtifactsBulkAdditionRequestFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16464
16553
  /**
16465
16554
  * Creates a new instance of the appropriate class based on discriminator value
16466
16555
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -18657,6 +18746,18 @@ export declare function createMailboxProtectionUnitCollectionResponseFromDiscrim
18657
18746
  * @returns {MailboxProtectionUnit}
18658
18747
  */
18659
18748
  export declare function createMailboxProtectionUnitFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18749
+ /**
18750
+ * Creates a new instance of the appropriate class based on discriminator value
18751
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18752
+ * @returns {MailboxProtectionUnitsBulkAdditionJobCollectionResponse}
18753
+ */
18754
+ export declare function createMailboxProtectionUnitsBulkAdditionJobCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18755
+ /**
18756
+ * Creates a new instance of the appropriate class based on discriminator value
18757
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18758
+ * @returns {MailboxProtectionUnitsBulkAdditionJob}
18759
+ */
18760
+ export declare function createMailboxProtectionUnitsBulkAdditionJobFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18660
18761
  /**
18661
18762
  * Creates a new instance of the appropriate class based on discriminator value
18662
18763
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -18669,6 +18770,18 @@ export declare function createMailboxRestoreArtifactCollectionResponseFromDiscri
18669
18770
  * @returns {MailboxRestoreArtifact}
18670
18771
  */
18671
18772
  export declare function createMailboxRestoreArtifactFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18773
+ /**
18774
+ * Creates a new instance of the appropriate class based on discriminator value
18775
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18776
+ * @returns {MailboxRestoreArtifactsBulkAdditionRequestCollectionResponse}
18777
+ */
18778
+ export declare function createMailboxRestoreArtifactsBulkAdditionRequestCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18779
+ /**
18780
+ * Creates a new instance of the appropriate class based on discriminator value
18781
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18782
+ * @returns {MailboxRestoreArtifactsBulkAdditionRequest}
18783
+ */
18784
+ export declare function createMailboxRestoreArtifactsBulkAdditionRequestFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18672
18785
  /**
18673
18786
  * Creates a new instance of the appropriate class based on discriminator value
18674
18787
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -19689,6 +19802,54 @@ export declare function createOnAttributeCollectionHandlerFromDiscriminatorValue
19689
19802
  * @returns {OnAttributeCollectionListener}
19690
19803
  */
19691
19804
  export declare function createOnAttributeCollectionListenerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19805
+ /**
19806
+ * Creates a new instance of the appropriate class based on discriminator value
19807
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19808
+ * @returns {OnAttributeCollectionStartCustomExtension}
19809
+ */
19810
+ export declare function createOnAttributeCollectionStartCustomExtensionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19811
+ /**
19812
+ * Creates a new instance of the appropriate class based on discriminator value
19813
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19814
+ * @returns {OnAttributeCollectionStartCustomExtensionHandler}
19815
+ */
19816
+ export declare function createOnAttributeCollectionStartCustomExtensionHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19817
+ /**
19818
+ * Creates a new instance of the appropriate class based on discriminator value
19819
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19820
+ * @returns {OnAttributeCollectionStartHandler}
19821
+ */
19822
+ export declare function createOnAttributeCollectionStartHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19823
+ /**
19824
+ * Creates a new instance of the appropriate class based on discriminator value
19825
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19826
+ * @returns {OnAttributeCollectionStartListener}
19827
+ */
19828
+ export declare function createOnAttributeCollectionStartListenerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19829
+ /**
19830
+ * Creates a new instance of the appropriate class based on discriminator value
19831
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19832
+ * @returns {OnAttributeCollectionSubmitCustomExtension}
19833
+ */
19834
+ export declare function createOnAttributeCollectionSubmitCustomExtensionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19835
+ /**
19836
+ * Creates a new instance of the appropriate class based on discriminator value
19837
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19838
+ * @returns {OnAttributeCollectionSubmitCustomExtensionHandler}
19839
+ */
19840
+ export declare function createOnAttributeCollectionSubmitCustomExtensionHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19841
+ /**
19842
+ * Creates a new instance of the appropriate class based on discriminator value
19843
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19844
+ * @returns {OnAttributeCollectionSubmitHandler}
19845
+ */
19846
+ export declare function createOnAttributeCollectionSubmitHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19847
+ /**
19848
+ * Creates a new instance of the appropriate class based on discriminator value
19849
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19850
+ * @returns {OnAttributeCollectionSubmitListener}
19851
+ */
19852
+ export declare function createOnAttributeCollectionSubmitListenerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19692
19853
  /**
19693
19854
  * Creates a new instance of the appropriate class based on discriminator value
19694
19855
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -20547,6 +20708,18 @@ export declare function createPlannerUserFromDiscriminatorValue(parseNode: Parse
20547
20708
  * @returns {PlannerUserIds}
20548
20709
  */
20549
20710
  export declare function createPlannerUserIdsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20711
+ /**
20712
+ * Creates a new instance of the appropriate class based on discriminator value
20713
+ * @param parseNode The parse node to use to read the discriminator value and create the object
20714
+ * @returns {PlatformCredentialAuthenticationMethodCollectionResponse}
20715
+ */
20716
+ export declare function createPlatformCredentialAuthenticationMethodCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20717
+ /**
20718
+ * Creates a new instance of the appropriate class based on discriminator value
20719
+ * @param parseNode The parse node to use to read the discriminator value and create the object
20720
+ * @returns {PlatformCredentialAuthenticationMethod}
20721
+ */
20722
+ export declare function createPlatformCredentialAuthenticationMethodFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20550
20723
  /**
20551
20724
  * Creates a new instance of the appropriate class based on discriminator value
20552
20725
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -21075,6 +21248,12 @@ export declare function createProtectionUnitBaseCollectionResponseFromDiscrimina
21075
21248
  * @returns {ProtectionUnitBase}
21076
21249
  */
21077
21250
  export declare function createProtectionUnitBaseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21251
+ /**
21252
+ * Creates a new instance of the appropriate class based on discriminator value
21253
+ * @param parseNode The parse node to use to read the discriminator value and create the object
21254
+ * @returns {ProtectionUnitsBulkJobBase}
21255
+ */
21256
+ export declare function createProtectionUnitsBulkJobBaseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21078
21257
  /**
21079
21258
  * Creates a new instance of the appropriate class based on discriminator value
21080
21259
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -21483,6 +21662,12 @@ export declare function createResponseStatusFromDiscriminatorValue(parseNode: Pa
21483
21662
  * @returns {RestoreArtifactBase}
21484
21663
  */
21485
21664
  export declare function createRestoreArtifactBaseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21665
+ /**
21666
+ * Creates a new instance of the appropriate class based on discriminator value
21667
+ * @param parseNode The parse node to use to read the discriminator value and create the object
21668
+ * @returns {RestoreArtifactsBulkRequestBase}
21669
+ */
21670
+ export declare function createRestoreArtifactsBulkRequestBaseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21486
21671
  /**
21487
21672
  * Creates a new instance of the appropriate class based on discriminator value
21488
21673
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -22551,6 +22736,18 @@ export declare function createSiteProtectionUnitCollectionResponseFromDiscrimina
22551
22736
  * @returns {SiteProtectionUnit}
22552
22737
  */
22553
22738
  export declare function createSiteProtectionUnitFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22739
+ /**
22740
+ * Creates a new instance of the appropriate class based on discriminator value
22741
+ * @param parseNode The parse node to use to read the discriminator value and create the object
22742
+ * @returns {SiteProtectionUnitsBulkAdditionJobCollectionResponse}
22743
+ */
22744
+ export declare function createSiteProtectionUnitsBulkAdditionJobCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22745
+ /**
22746
+ * Creates a new instance of the appropriate class based on discriminator value
22747
+ * @param parseNode The parse node to use to read the discriminator value and create the object
22748
+ * @returns {SiteProtectionUnitsBulkAdditionJob}
22749
+ */
22750
+ export declare function createSiteProtectionUnitsBulkAdditionJobFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22554
22751
  /**
22555
22752
  * Creates a new instance of the appropriate class based on discriminator value
22556
22753
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -22563,6 +22760,18 @@ export declare function createSiteRestoreArtifactCollectionResponseFromDiscrimin
22563
22760
  * @returns {SiteRestoreArtifact}
22564
22761
  */
22565
22762
  export declare function createSiteRestoreArtifactFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22763
+ /**
22764
+ * Creates a new instance of the appropriate class based on discriminator value
22765
+ * @param parseNode The parse node to use to read the discriminator value and create the object
22766
+ * @returns {SiteRestoreArtifactsBulkAdditionRequestCollectionResponse}
22767
+ */
22768
+ export declare function createSiteRestoreArtifactsBulkAdditionRequestCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22769
+ /**
22770
+ * Creates a new instance of the appropriate class based on discriminator value
22771
+ * @param parseNode The parse node to use to read the discriminator value and create the object
22772
+ * @returns {SiteRestoreArtifactsBulkAdditionRequest}
22773
+ */
22774
+ export declare function createSiteRestoreArtifactsBulkAdditionRequestFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22566
22775
  /**
22567
22776
  * Creates a new instance of the appropriate class based on discriminator value
22568
22777
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -29712,6 +29921,21 @@ export declare function deserializeIntoConversationThreadCollectionResponse(conv
29712
29921
  * @returns {Record<string, (node: ParseNode) => void>}
29713
29922
  */
29714
29923
  export declare function deserializeIntoConvertIdResult(convertIdResult?: Partial<ConvertIdResult> | undefined): Record<string, (node: ParseNode) => void>;
29924
+ /**
29925
+ * The deserialization information for the current model
29926
+ * @returns {Record<string, (node: ParseNode) => void>}
29927
+ */
29928
+ export declare function deserializeIntoCopilotAdmin(copilotAdmin?: Partial<CopilotAdmin> | undefined): Record<string, (node: ParseNode) => void>;
29929
+ /**
29930
+ * The deserialization information for the current model
29931
+ * @returns {Record<string, (node: ParseNode) => void>}
29932
+ */
29933
+ export declare function deserializeIntoCopilotAdminLimitedMode(copilotAdminLimitedMode?: Partial<CopilotAdminLimitedMode> | undefined): Record<string, (node: ParseNode) => void>;
29934
+ /**
29935
+ * The deserialization information for the current model
29936
+ * @returns {Record<string, (node: ParseNode) => void>}
29937
+ */
29938
+ export declare function deserializeIntoCopilotAdminSetting(copilotAdminSetting?: Partial<CopilotAdminSetting> | undefined): Record<string, (node: ParseNode) => void>;
29715
29939
  /**
29716
29940
  * The deserialization information for the current model
29717
29941
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -30717,6 +30941,16 @@ export declare function deserializeIntoDriveProtectionUnit(driveProtectionUnit?:
30717
30941
  * @returns {Record<string, (node: ParseNode) => void>}
30718
30942
  */
30719
30943
  export declare function deserializeIntoDriveProtectionUnitCollectionResponse(driveProtectionUnitCollectionResponse?: Partial<DriveProtectionUnitCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
30944
+ /**
30945
+ * The deserialization information for the current model
30946
+ * @returns {Record<string, (node: ParseNode) => void>}
30947
+ */
30948
+ export declare function deserializeIntoDriveProtectionUnitsBulkAdditionJob(driveProtectionUnitsBulkAdditionJob?: Partial<DriveProtectionUnitsBulkAdditionJob> | undefined): Record<string, (node: ParseNode) => void>;
30949
+ /**
30950
+ * The deserialization information for the current model
30951
+ * @returns {Record<string, (node: ParseNode) => void>}
30952
+ */
30953
+ export declare function deserializeIntoDriveProtectionUnitsBulkAdditionJobCollectionResponse(driveProtectionUnitsBulkAdditionJobCollectionResponse?: Partial<DriveProtectionUnitsBulkAdditionJobCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
30720
30954
  /**
30721
30955
  * The deserialization information for the current model
30722
30956
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -30732,6 +30966,16 @@ export declare function deserializeIntoDriveRestoreArtifact(driveRestoreArtifact
30732
30966
  * @returns {Record<string, (node: ParseNode) => void>}
30733
30967
  */
30734
30968
  export declare function deserializeIntoDriveRestoreArtifactCollectionResponse(driveRestoreArtifactCollectionResponse?: Partial<DriveRestoreArtifactCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
30969
+ /**
30970
+ * The deserialization information for the current model
30971
+ * @returns {Record<string, (node: ParseNode) => void>}
30972
+ */
30973
+ export declare function deserializeIntoDriveRestoreArtifactsBulkAdditionRequest(driveRestoreArtifactsBulkAdditionRequest?: Partial<DriveRestoreArtifactsBulkAdditionRequest> | undefined): Record<string, (node: ParseNode) => void>;
30974
+ /**
30975
+ * The deserialization information for the current model
30976
+ * @returns {Record<string, (node: ParseNode) => void>}
30977
+ */
30978
+ export declare function deserializeIntoDriveRestoreArtifactsBulkAdditionRequestCollectionResponse(driveRestoreArtifactsBulkAdditionRequestCollectionResponse?: Partial<DriveRestoreArtifactsBulkAdditionRequestCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
30735
30979
  /**
30736
30980
  * The deserialization information for the current model
30737
30981
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -32562,6 +32806,16 @@ export declare function deserializeIntoMailboxProtectionUnit(mailboxProtectionUn
32562
32806
  * @returns {Record<string, (node: ParseNode) => void>}
32563
32807
  */
32564
32808
  export declare function deserializeIntoMailboxProtectionUnitCollectionResponse(mailboxProtectionUnitCollectionResponse?: Partial<MailboxProtectionUnitCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
32809
+ /**
32810
+ * The deserialization information for the current model
32811
+ * @returns {Record<string, (node: ParseNode) => void>}
32812
+ */
32813
+ export declare function deserializeIntoMailboxProtectionUnitsBulkAdditionJob(mailboxProtectionUnitsBulkAdditionJob?: Partial<MailboxProtectionUnitsBulkAdditionJob> | undefined): Record<string, (node: ParseNode) => void>;
32814
+ /**
32815
+ * The deserialization information for the current model
32816
+ * @returns {Record<string, (node: ParseNode) => void>}
32817
+ */
32818
+ export declare function deserializeIntoMailboxProtectionUnitsBulkAdditionJobCollectionResponse(mailboxProtectionUnitsBulkAdditionJobCollectionResponse?: Partial<MailboxProtectionUnitsBulkAdditionJobCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
32565
32819
  /**
32566
32820
  * The deserialization information for the current model
32567
32821
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -32572,6 +32826,16 @@ export declare function deserializeIntoMailboxRestoreArtifact(mailboxRestoreArti
32572
32826
  * @returns {Record<string, (node: ParseNode) => void>}
32573
32827
  */
32574
32828
  export declare function deserializeIntoMailboxRestoreArtifactCollectionResponse(mailboxRestoreArtifactCollectionResponse?: Partial<MailboxRestoreArtifactCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
32829
+ /**
32830
+ * The deserialization information for the current model
32831
+ * @returns {Record<string, (node: ParseNode) => void>}
32832
+ */
32833
+ export declare function deserializeIntoMailboxRestoreArtifactsBulkAdditionRequest(mailboxRestoreArtifactsBulkAdditionRequest?: Partial<MailboxRestoreArtifactsBulkAdditionRequest> | undefined): Record<string, (node: ParseNode) => void>;
32834
+ /**
32835
+ * The deserialization information for the current model
32836
+ * @returns {Record<string, (node: ParseNode) => void>}
32837
+ */
32838
+ export declare function deserializeIntoMailboxRestoreArtifactsBulkAdditionRequestCollectionResponse(mailboxRestoreArtifactsBulkAdditionRequestCollectionResponse?: Partial<MailboxRestoreArtifactsBulkAdditionRequestCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
32575
32839
  /**
32576
32840
  * The deserialization information for the current model
32577
32841
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -33422,6 +33686,46 @@ export declare function deserializeIntoOnAttributeCollectionHandler(onAttributeC
33422
33686
  * @returns {Record<string, (node: ParseNode) => void>}
33423
33687
  */
33424
33688
  export declare function deserializeIntoOnAttributeCollectionListener(onAttributeCollectionListener?: Partial<OnAttributeCollectionListener> | undefined): Record<string, (node: ParseNode) => void>;
33689
+ /**
33690
+ * The deserialization information for the current model
33691
+ * @returns {Record<string, (node: ParseNode) => void>}
33692
+ */
33693
+ export declare function deserializeIntoOnAttributeCollectionStartCustomExtension(onAttributeCollectionStartCustomExtension?: Partial<OnAttributeCollectionStartCustomExtension> | undefined): Record<string, (node: ParseNode) => void>;
33694
+ /**
33695
+ * The deserialization information for the current model
33696
+ * @returns {Record<string, (node: ParseNode) => void>}
33697
+ */
33698
+ export declare function deserializeIntoOnAttributeCollectionStartCustomExtensionHandler(onAttributeCollectionStartCustomExtensionHandler?: Partial<OnAttributeCollectionStartCustomExtensionHandler> | undefined): Record<string, (node: ParseNode) => void>;
33699
+ /**
33700
+ * The deserialization information for the current model
33701
+ * @returns {Record<string, (node: ParseNode) => void>}
33702
+ */
33703
+ export declare function deserializeIntoOnAttributeCollectionStartHandler(onAttributeCollectionStartHandler?: Partial<OnAttributeCollectionStartHandler> | undefined): Record<string, (node: ParseNode) => void>;
33704
+ /**
33705
+ * The deserialization information for the current model
33706
+ * @returns {Record<string, (node: ParseNode) => void>}
33707
+ */
33708
+ export declare function deserializeIntoOnAttributeCollectionStartListener(onAttributeCollectionStartListener?: Partial<OnAttributeCollectionStartListener> | undefined): Record<string, (node: ParseNode) => void>;
33709
+ /**
33710
+ * The deserialization information for the current model
33711
+ * @returns {Record<string, (node: ParseNode) => void>}
33712
+ */
33713
+ export declare function deserializeIntoOnAttributeCollectionSubmitCustomExtension(onAttributeCollectionSubmitCustomExtension?: Partial<OnAttributeCollectionSubmitCustomExtension> | undefined): Record<string, (node: ParseNode) => void>;
33714
+ /**
33715
+ * The deserialization information for the current model
33716
+ * @returns {Record<string, (node: ParseNode) => void>}
33717
+ */
33718
+ export declare function deserializeIntoOnAttributeCollectionSubmitCustomExtensionHandler(onAttributeCollectionSubmitCustomExtensionHandler?: Partial<OnAttributeCollectionSubmitCustomExtensionHandler> | undefined): Record<string, (node: ParseNode) => void>;
33719
+ /**
33720
+ * The deserialization information for the current model
33721
+ * @returns {Record<string, (node: ParseNode) => void>}
33722
+ */
33723
+ export declare function deserializeIntoOnAttributeCollectionSubmitHandler(onAttributeCollectionSubmitHandler?: Partial<OnAttributeCollectionSubmitHandler> | undefined): Record<string, (node: ParseNode) => void>;
33724
+ /**
33725
+ * The deserialization information for the current model
33726
+ * @returns {Record<string, (node: ParseNode) => void>}
33727
+ */
33728
+ export declare function deserializeIntoOnAttributeCollectionSubmitListener(onAttributeCollectionSubmitListener?: Partial<OnAttributeCollectionSubmitListener> | undefined): Record<string, (node: ParseNode) => void>;
33425
33729
  /**
33426
33730
  * The deserialization information for the current model
33427
33731
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -34137,6 +34441,16 @@ export declare function deserializeIntoPlannerUser(plannerUser?: Partial<Planner
34137
34441
  * @returns {Record<string, (node: ParseNode) => void>}
34138
34442
  */
34139
34443
  export declare function deserializeIntoPlannerUserIds(plannerUserIds?: Partial<PlannerUserIds> | undefined): Record<string, (node: ParseNode) => void>;
34444
+ /**
34445
+ * The deserialization information for the current model
34446
+ * @returns {Record<string, (node: ParseNode) => void>}
34447
+ */
34448
+ export declare function deserializeIntoPlatformCredentialAuthenticationMethod(platformCredentialAuthenticationMethod?: Partial<PlatformCredentialAuthenticationMethod> | undefined): Record<string, (node: ParseNode) => void>;
34449
+ /**
34450
+ * The deserialization information for the current model
34451
+ * @returns {Record<string, (node: ParseNode) => void>}
34452
+ */
34453
+ export declare function deserializeIntoPlatformCredentialAuthenticationMethodCollectionResponse(platformCredentialAuthenticationMethodCollectionResponse?: Partial<PlatformCredentialAuthenticationMethodCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
34140
34454
  /**
34141
34455
  * The deserialization information for the current model
34142
34456
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -34577,6 +34891,11 @@ export declare function deserializeIntoProtectionUnitBase(protectionUnitBase?: P
34577
34891
  * @returns {Record<string, (node: ParseNode) => void>}
34578
34892
  */
34579
34893
  export declare function deserializeIntoProtectionUnitBaseCollectionResponse(protectionUnitBaseCollectionResponse?: Partial<ProtectionUnitBaseCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
34894
+ /**
34895
+ * The deserialization information for the current model
34896
+ * @returns {Record<string, (node: ParseNode) => void>}
34897
+ */
34898
+ export declare function deserializeIntoProtectionUnitsBulkJobBase(protectionUnitsBulkJobBase?: Partial<ProtectionUnitsBulkJobBase> | undefined): Record<string, (node: ParseNode) => void>;
34580
34899
  /**
34581
34900
  * The deserialization information for the current model
34582
34901
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -34917,6 +35236,11 @@ export declare function deserializeIntoResponseStatus(responseStatus?: Partial<R
34917
35236
  * @returns {Record<string, (node: ParseNode) => void>}
34918
35237
  */
34919
35238
  export declare function deserializeIntoRestoreArtifactBase(restoreArtifactBase?: Partial<RestoreArtifactBase> | undefined): Record<string, (node: ParseNode) => void>;
35239
+ /**
35240
+ * The deserialization information for the current model
35241
+ * @returns {Record<string, (node: ParseNode) => void>}
35242
+ */
35243
+ export declare function deserializeIntoRestoreArtifactsBulkRequestBase(restoreArtifactsBulkRequestBase?: Partial<RestoreArtifactsBulkRequestBase> | undefined): Record<string, (node: ParseNode) => void>;
34920
35244
  /**
34921
35245
  * The deserialization information for the current model
34922
35246
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -35807,6 +36131,16 @@ export declare function deserializeIntoSiteProtectionUnit(siteProtectionUnit?: P
35807
36131
  * @returns {Record<string, (node: ParseNode) => void>}
35808
36132
  */
35809
36133
  export declare function deserializeIntoSiteProtectionUnitCollectionResponse(siteProtectionUnitCollectionResponse?: Partial<SiteProtectionUnitCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
36134
+ /**
36135
+ * The deserialization information for the current model
36136
+ * @returns {Record<string, (node: ParseNode) => void>}
36137
+ */
36138
+ export declare function deserializeIntoSiteProtectionUnitsBulkAdditionJob(siteProtectionUnitsBulkAdditionJob?: Partial<SiteProtectionUnitsBulkAdditionJob> | undefined): Record<string, (node: ParseNode) => void>;
36139
+ /**
36140
+ * The deserialization information for the current model
36141
+ * @returns {Record<string, (node: ParseNode) => void>}
36142
+ */
36143
+ export declare function deserializeIntoSiteProtectionUnitsBulkAdditionJobCollectionResponse(siteProtectionUnitsBulkAdditionJobCollectionResponse?: Partial<SiteProtectionUnitsBulkAdditionJobCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
35810
36144
  /**
35811
36145
  * The deserialization information for the current model
35812
36146
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -35817,6 +36151,16 @@ export declare function deserializeIntoSiteRestoreArtifact(siteRestoreArtifact?:
35817
36151
  * @returns {Record<string, (node: ParseNode) => void>}
35818
36152
  */
35819
36153
  export declare function deserializeIntoSiteRestoreArtifactCollectionResponse(siteRestoreArtifactCollectionResponse?: Partial<SiteRestoreArtifactCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
36154
+ /**
36155
+ * The deserialization information for the current model
36156
+ * @returns {Record<string, (node: ParseNode) => void>}
36157
+ */
36158
+ export declare function deserializeIntoSiteRestoreArtifactsBulkAdditionRequest(siteRestoreArtifactsBulkAdditionRequest?: Partial<SiteRestoreArtifactsBulkAdditionRequest> | undefined): Record<string, (node: ParseNode) => void>;
36159
+ /**
36160
+ * The deserialization information for the current model
36161
+ * @returns {Record<string, (node: ParseNode) => void>}
36162
+ */
36163
+ export declare function deserializeIntoSiteRestoreArtifactsBulkAdditionRequestCollectionResponse(siteRestoreArtifactsBulkAdditionRequestCollectionResponse?: Partial<SiteRestoreArtifactsBulkAdditionRequestCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
35820
36164
  /**
35821
36165
  * The deserialization information for the current model
35822
36166
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -41899,6 +42243,22 @@ export interface DriveProtectionUnitCollectionResponse extends BaseCollectionPag
41899
42243
  */
41900
42244
  value?: DriveProtectionUnit[] | null;
41901
42245
  }
42246
+ export interface DriveProtectionUnitsBulkAdditionJob extends Parsable, ProtectionUnitsBulkJobBase {
42247
+ /**
42248
+ * The directoryObjectIds property
42249
+ */
42250
+ directoryObjectIds?: string[] | null;
42251
+ /**
42252
+ * The drives property
42253
+ */
42254
+ drives?: string[] | null;
42255
+ }
42256
+ export interface DriveProtectionUnitsBulkAdditionJobCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
42257
+ /**
42258
+ * The value property
42259
+ */
42260
+ value?: DriveProtectionUnitsBulkAdditionJob[] | null;
42261
+ }
41902
42262
  export interface DriveRecipient extends AdditionalDataHolder, BackedModel, Parsable {
41903
42263
  /**
41904
42264
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -41945,6 +42305,22 @@ export interface DriveRestoreArtifactCollectionResponse extends BaseCollectionPa
41945
42305
  */
41946
42306
  value?: DriveRestoreArtifact[] | null;
41947
42307
  }
42308
+ export interface DriveRestoreArtifactsBulkAdditionRequest extends Parsable, RestoreArtifactsBulkRequestBase {
42309
+ /**
42310
+ * The directoryObjectIds property
42311
+ */
42312
+ directoryObjectIds?: string[] | null;
42313
+ /**
42314
+ * The drives property
42315
+ */
42316
+ drives?: string[] | null;
42317
+ }
42318
+ export interface DriveRestoreArtifactsBulkAdditionRequestCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
42319
+ /**
42320
+ * The value property
42321
+ */
42322
+ value?: DriveRestoreArtifactsBulkAdditionRequest[] | null;
42323
+ }
41948
42324
  /**
41949
42325
  * Contains properties for the installation summary of a book for a device.
41950
42326
  */
@@ -42903,6 +43279,10 @@ export interface EducationStudent extends AdditionalDataHolder, BackedModel, Par
42903
43279
  studentNumber?: string | null;
42904
43280
  }
42905
43281
  export interface EducationSubmission extends Entity, Parsable {
43282
+ /**
43283
+ * The unique identifier for the assignment with which this submission is associated. A submission is always associated with one and only one assignment.
43284
+ */
43285
+ assignmentId?: string | null;
42906
43286
  /**
42907
43287
  * The user that marked the submission as excused.
42908
43288
  */
@@ -42911,6 +43291,14 @@ export interface EducationSubmission extends Entity, Parsable {
42911
43291
  * The time that the submission was excused. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
42912
43292
  */
42913
43293
  excusedDateTime?: Date | null;
43294
+ /**
43295
+ * The identities of those who modified the submission.
43296
+ */
43297
+ lastModifiedBy?: IdentitySet | null;
43298
+ /**
43299
+ * The date and time the submission was modified.
43300
+ */
43301
+ lastModifiedDateTime?: Date | null;
42914
43302
  /**
42915
43303
  * The outcomes property
42916
43304
  */
@@ -43809,10 +44197,18 @@ export interface Event extends OutlookItem, Parsable {
43809
44197
  * The calendar that contains the event. Navigation property. Read-only.
43810
44198
  */
43811
44199
  calendar?: Calendar | null;
44200
+ /**
44201
+ * The cancelledOccurrences property
44202
+ */
44203
+ cancelledOccurrences?: string[] | null;
43812
44204
  /**
43813
44205
  * The date, time, and time zone that the event ends. By default, the end time is in UTC.
43814
44206
  */
43815
44207
  end?: DateTimeTimeZone | null;
44208
+ /**
44209
+ * The exceptionOccurrences property
44210
+ */
44211
+ exceptionOccurrences?: Event[] | null;
43816
44212
  /**
43817
44213
  * The collection of open extensions defined for the event. Nullable.
43818
44214
  */
@@ -44063,6 +44459,10 @@ export interface ExchangeProtectionPolicy extends Parsable, ProtectionPolicyBase
44063
44459
  * The protection units (mailboxes) that are protected under the Exchange protection policy.
44064
44460
  */
44065
44461
  mailboxProtectionUnits?: MailboxProtectionUnit[] | null;
44462
+ /**
44463
+ * The mailboxProtectionUnitsBulkAdditionJobs property
44464
+ */
44465
+ mailboxProtectionUnitsBulkAdditionJobs?: MailboxProtectionUnitsBulkAdditionJob[] | null;
44066
44466
  }
44067
44467
  export interface ExchangeProtectionPolicyCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
44068
44468
  /**
@@ -44079,6 +44479,10 @@ export interface ExchangeRestoreSession extends Parsable, RestoreSessionBase {
44079
44479
  * A collection of restore points and destination details that can be used to restore Exchange mailboxes.
44080
44480
  */
44081
44481
  mailboxRestoreArtifacts?: MailboxRestoreArtifact[] | null;
44482
+ /**
44483
+ * The mailboxRestoreArtifactsBulkAdditionRequests property
44484
+ */
44485
+ mailboxRestoreArtifactsBulkAdditionRequests?: MailboxRestoreArtifactsBulkAdditionRequest[] | null;
44082
44486
  }
44083
44487
  export interface ExchangeRestoreSessionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
44084
44488
  /**
@@ -44267,6 +44671,14 @@ export interface ExternalUsersSelfServiceSignUpEventsFlow extends Authentication
44267
44671
  * The configuration for what to invoke when attributes are ready to be collected from the user.
44268
44672
  */
44269
44673
  onAttributeCollection?: OnAttributeCollectionHandler | null;
44674
+ /**
44675
+ * The configuration for what to invoke when attribution collection starts.
44676
+ */
44677
+ onAttributeCollectionStart?: OnAttributeCollectionStartHandler | null;
44678
+ /**
44679
+ * The configuration for what to invoke when attributes are submitted at the end of attribution collection.
44680
+ */
44681
+ onAttributeCollectionSubmit?: OnAttributeCollectionSubmitHandler | null;
44270
44682
  /**
44271
44683
  * Required. The configuration for what to invoke when authentication methods are ready to be presented to the user. Must have at least one identity provider linked. Supports $filter (eq). See support for filtering on user flows for syntax information.
44272
44684
  */
@@ -49669,6 +50081,22 @@ export interface MailboxProtectionUnitCollectionResponse extends BaseCollectionP
49669
50081
  */
49670
50082
  value?: MailboxProtectionUnit[] | null;
49671
50083
  }
50084
+ export interface MailboxProtectionUnitsBulkAdditionJob extends Parsable, ProtectionUnitsBulkJobBase {
50085
+ /**
50086
+ * The directoryObjectIds property
50087
+ */
50088
+ directoryObjectIds?: string[] | null;
50089
+ /**
50090
+ * The mailboxes property
50091
+ */
50092
+ mailboxes?: string[] | null;
50093
+ }
50094
+ export interface MailboxProtectionUnitsBulkAdditionJobCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
50095
+ /**
50096
+ * The value property
50097
+ */
50098
+ value?: MailboxProtectionUnitsBulkAdditionJob[] | null;
50099
+ }
49672
50100
  export interface MailboxRestoreArtifact extends Parsable, RestoreArtifactBase {
49673
50101
  /**
49674
50102
  * The new restored folder identifier for the user.
@@ -49685,6 +50113,22 @@ export interface MailboxRestoreArtifactCollectionResponse extends BaseCollection
49685
50113
  */
49686
50114
  value?: MailboxRestoreArtifact[] | null;
49687
50115
  }
50116
+ export interface MailboxRestoreArtifactsBulkAdditionRequest extends Parsable, RestoreArtifactsBulkRequestBase {
50117
+ /**
50118
+ * The directoryObjectIds property
50119
+ */
50120
+ directoryObjectIds?: string[] | null;
50121
+ /**
50122
+ * The mailboxes property
50123
+ */
50124
+ mailboxes?: string[] | null;
50125
+ }
50126
+ export interface MailboxRestoreArtifactsBulkAdditionRequestCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
50127
+ /**
50128
+ * The value property
50129
+ */
50130
+ value?: MailboxRestoreArtifactsBulkAdditionRequest[] | null;
50131
+ }
49688
50132
  export interface MailboxSettings extends AdditionalDataHolder, BackedModel, Parsable {
49689
50133
  /**
49690
50134
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -51383,6 +51827,10 @@ export interface MeetingAttendanceReport extends Entity, Parsable {
51383
51827
  * List of attendance records of an attendance report. Read-only.
51384
51828
  */
51385
51829
  attendanceRecords?: AttendanceRecord[] | null;
51830
+ /**
51831
+ * The external information of a virtual event. Returned only for event organizers or coorganizers. Read-only.
51832
+ */
51833
+ externalEventInformation?: VirtualEventExternalInformation[] | null;
51386
51834
  /**
51387
51835
  * UTC time when the meeting ended. Read-only.
51388
51836
  */
@@ -53490,6 +53938,70 @@ export interface OnAttributeCollectionListener extends AuthenticationEventListen
53490
53938
  */
53491
53939
  handler?: OnAttributeCollectionHandler | null;
53492
53940
  }
53941
+ export interface OnAttributeCollectionStartCustomExtension extends CustomAuthenticationExtension, Parsable {
53942
+ }
53943
+ export interface OnAttributeCollectionStartCustomExtensionHandler extends OnAttributeCollectionStartHandler, Parsable {
53944
+ /**
53945
+ * Configuration regarding properties of the custom extension that are can be overwritten per event listener.
53946
+ */
53947
+ configuration?: CustomExtensionOverwriteConfiguration | null;
53948
+ /**
53949
+ * The customExtension property
53950
+ */
53951
+ customExtension?: OnAttributeCollectionStartCustomExtension | null;
53952
+ }
53953
+ export interface OnAttributeCollectionStartHandler extends AdditionalDataHolder, BackedModel, Parsable {
53954
+ /**
53955
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
53956
+ */
53957
+ additionalData?: Record<string, unknown>;
53958
+ /**
53959
+ * Stores model information.
53960
+ */
53961
+ backingStoreEnabled?: boolean | null;
53962
+ /**
53963
+ * The OdataType property
53964
+ */
53965
+ odataType?: string | null;
53966
+ }
53967
+ export interface OnAttributeCollectionStartListener extends AuthenticationEventListener, Parsable {
53968
+ /**
53969
+ * Configuration for what to invoke if the event resolves to this listener.
53970
+ */
53971
+ handler?: OnAttributeCollectionStartHandler | null;
53972
+ }
53973
+ export interface OnAttributeCollectionSubmitCustomExtension extends CustomAuthenticationExtension, Parsable {
53974
+ }
53975
+ export interface OnAttributeCollectionSubmitCustomExtensionHandler extends OnAttributeCollectionSubmitHandler, Parsable {
53976
+ /**
53977
+ * Configuration regarding properties of the custom extension that can be overwritten per event listener.
53978
+ */
53979
+ configuration?: CustomExtensionOverwriteConfiguration | null;
53980
+ /**
53981
+ * The customExtension property
53982
+ */
53983
+ customExtension?: OnAttributeCollectionSubmitCustomExtension | null;
53984
+ }
53985
+ export interface OnAttributeCollectionSubmitHandler extends AdditionalDataHolder, BackedModel, Parsable {
53986
+ /**
53987
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
53988
+ */
53989
+ additionalData?: Record<string, unknown>;
53990
+ /**
53991
+ * Stores model information.
53992
+ */
53993
+ backingStoreEnabled?: boolean | null;
53994
+ /**
53995
+ * The OdataType property
53996
+ */
53997
+ odataType?: string | null;
53998
+ }
53999
+ export interface OnAttributeCollectionSubmitListener extends AuthenticationEventListener, Parsable {
54000
+ /**
54001
+ * Configuration for what to invoke if the event resolves to this listener.
54002
+ */
54003
+ handler?: OnAttributeCollectionSubmitHandler | null;
54004
+ }
53493
54005
  export interface OnAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp extends OnAuthenticationMethodLoadStartHandler, Parsable {
53494
54006
  /**
53495
54007
  * The identityProviders property
@@ -53525,6 +54037,10 @@ export interface OneDriveForBusinessProtectionPolicy extends Parsable, Protectio
53525
54037
  * Contains the protection units associated with a OneDrive for Business protection policy.
53526
54038
  */
53527
54039
  driveProtectionUnits?: DriveProtectionUnit[] | null;
54040
+ /**
54041
+ * The driveProtectionUnitsBulkAdditionJobs property
54042
+ */
54043
+ driveProtectionUnitsBulkAdditionJobs?: DriveProtectionUnitsBulkAdditionJob[] | null;
53528
54044
  }
53529
54045
  export interface OneDriveForBusinessProtectionPolicyCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
53530
54046
  /**
@@ -53537,6 +54053,10 @@ export interface OneDriveForBusinessRestoreSession extends Parsable, RestoreSess
53537
54053
  * A collection of restore points and destination details that can be used to restore a OneDrive for Business drive.
53538
54054
  */
53539
54055
  driveRestoreArtifacts?: DriveRestoreArtifact[] | null;
54056
+ /**
54057
+ * The driveRestoreArtifactsBulkAdditionRequests property
54058
+ */
54059
+ driveRestoreArtifactsBulkAdditionRequests?: DriveRestoreArtifactsBulkAdditionRequest[] | null;
53540
54060
  }
53541
54061
  export interface OneDriveForBusinessRestoreSessionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
53542
54062
  /**
@@ -56654,6 +57174,34 @@ export interface PlannerUserIds extends AdditionalDataHolder, BackedModel, Parsa
56654
57174
  */
56655
57175
  odataType?: string | null;
56656
57176
  }
57177
+ export interface PlatformCredentialAuthenticationMethod extends AuthenticationMethod, Parsable {
57178
+ /**
57179
+ * The date and time that this Platform Credential Key was registered.
57180
+ */
57181
+ createdDateTime?: Date | null;
57182
+ /**
57183
+ * 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.
57184
+ */
57185
+ device?: Device | null;
57186
+ /**
57187
+ * The name of the device on which Platform Credential is registered.
57188
+ */
57189
+ displayName?: string | null;
57190
+ /**
57191
+ * Key strength of this Platform Credential key. Possible values are: normal, weak, unknown.
57192
+ */
57193
+ keyStrength?: AuthenticationMethodKeyStrength | null;
57194
+ /**
57195
+ * Platform on which this Platform Credential key is present. Possible values are: unknown, windows, macOS,iOS, android, linux.
57196
+ */
57197
+ platform?: AuthenticationMethodPlatform | null;
57198
+ }
57199
+ export interface PlatformCredentialAuthenticationMethodCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
57200
+ /**
57201
+ * The value property
57202
+ */
57203
+ value?: PlatformCredentialAuthenticationMethod[] | null;
57204
+ }
56657
57205
  export interface PlayPromptOperation extends CommsOperation, Parsable {
56658
57206
  }
56659
57207
  export interface PolicyBase extends DirectoryObject, Parsable {
@@ -58575,6 +59123,37 @@ export interface ProtectionUnitBaseCollectionResponse extends BaseCollectionPagi
58575
59123
  */
58576
59124
  value?: ProtectionUnitBase[] | null;
58577
59125
  }
59126
+ export interface ProtectionUnitsBulkJobBase extends Entity, Parsable {
59127
+ /**
59128
+ * The createdBy property
59129
+ */
59130
+ createdBy?: IdentitySet | null;
59131
+ /**
59132
+ * The createdDateTime property
59133
+ */
59134
+ createdDateTime?: Date | null;
59135
+ /**
59136
+ * The displayName property
59137
+ */
59138
+ displayName?: string | null;
59139
+ /**
59140
+ * The error property
59141
+ */
59142
+ errorEscaped?: PublicError | null;
59143
+ /**
59144
+ * The lastModifiedBy property
59145
+ */
59146
+ lastModifiedBy?: IdentitySet | null;
59147
+ /**
59148
+ * The lastModifiedDateTime property
59149
+ */
59150
+ lastModifiedDateTime?: Date | null;
59151
+ /**
59152
+ * The status property
59153
+ */
59154
+ status?: ProtectionUnitsBulkJobStatus | null;
59155
+ }
59156
+ export type ProtectionUnitsBulkJobStatus = (typeof ProtectionUnitsBulkJobStatusObject)[keyof typeof ProtectionUnitsBulkJobStatusObject];
58578
59157
  export type ProtectionUnitStatus = (typeof ProtectionUnitStatusObject)[keyof typeof ProtectionUnitStatusObject];
58579
59158
  export interface ProvisionChannelEmailResult extends AdditionalDataHolder, BackedModel, Parsable {
58580
59159
  /**
@@ -60222,6 +60801,57 @@ export interface RestoreArtifactBase extends Entity, Parsable {
60222
60801
  */
60223
60802
  status?: ArtifactRestoreStatus | null;
60224
60803
  }
60804
+ export interface RestoreArtifactsBulkRequestBase extends Entity, Parsable {
60805
+ /**
60806
+ * The createdBy property
60807
+ */
60808
+ createdBy?: IdentitySet | null;
60809
+ /**
60810
+ * The createdDateTime property
60811
+ */
60812
+ createdDateTime?: Date | null;
60813
+ /**
60814
+ * The destinationType property
60815
+ */
60816
+ destinationType?: DestinationType | null;
60817
+ /**
60818
+ * The displayName property
60819
+ */
60820
+ displayName?: string | null;
60821
+ /**
60822
+ * The error property
60823
+ */
60824
+ errorEscaped?: PublicError | null;
60825
+ /**
60826
+ * The lastModifiedBy property
60827
+ */
60828
+ lastModifiedBy?: IdentitySet | null;
60829
+ /**
60830
+ * The lastModifiedDateTime property
60831
+ */
60832
+ lastModifiedDateTime?: Date | null;
60833
+ /**
60834
+ * The protectionTimePeriod property
60835
+ */
60836
+ protectionTimePeriod?: TimePeriod | null;
60837
+ /**
60838
+ * The protectionUnitIds property
60839
+ */
60840
+ protectionUnitIds?: string[] | null;
60841
+ /**
60842
+ * The restorePointPreference property
60843
+ */
60844
+ restorePointPreference?: RestorePointPreference | null;
60845
+ /**
60846
+ * The status property
60847
+ */
60848
+ status?: RestoreArtifactsBulkRequestStatus | null;
60849
+ /**
60850
+ * The tags property
60851
+ */
60852
+ tags?: RestorePointTags[] | null;
60853
+ }
60854
+ export type RestoreArtifactsBulkRequestStatus = (typeof RestoreArtifactsBulkRequestStatusObject)[keyof typeof RestoreArtifactsBulkRequestStatusObject];
60225
60855
  export interface RestorePoint extends Entity, Parsable {
60226
60856
  /**
60227
60857
  * Expiration date time of the restore point.
@@ -64864,6 +65494,21 @@ export declare function serializeConversationThreadCollectionResponse(writer: Se
64864
65494
  * @param writer Serialization writer to use to serialize this model
64865
65495
  */
64866
65496
  export declare function serializeConvertIdResult(writer: SerializationWriter, convertIdResult?: Partial<ConvertIdResult> | undefined | null): void;
65497
+ /**
65498
+ * Serializes information the current object
65499
+ * @param writer Serialization writer to use to serialize this model
65500
+ */
65501
+ export declare function serializeCopilotAdmin(writer: SerializationWriter, copilotAdmin?: Partial<CopilotAdmin> | undefined | null): void;
65502
+ /**
65503
+ * Serializes information the current object
65504
+ * @param writer Serialization writer to use to serialize this model
65505
+ */
65506
+ export declare function serializeCopilotAdminLimitedMode(writer: SerializationWriter, copilotAdminLimitedMode?: Partial<CopilotAdminLimitedMode> | undefined | null): void;
65507
+ /**
65508
+ * Serializes information the current object
65509
+ * @param writer Serialization writer to use to serialize this model
65510
+ */
65511
+ export declare function serializeCopilotAdminSetting(writer: SerializationWriter, copilotAdminSetting?: Partial<CopilotAdminSetting> | undefined | null): void;
64867
65512
  /**
64868
65513
  * Serializes information the current object
64869
65514
  * @param writer Serialization writer to use to serialize this model
@@ -65869,6 +66514,16 @@ export declare function serializeDriveProtectionUnit(writer: SerializationWriter
65869
66514
  * @param writer Serialization writer to use to serialize this model
65870
66515
  */
65871
66516
  export declare function serializeDriveProtectionUnitCollectionResponse(writer: SerializationWriter, driveProtectionUnitCollectionResponse?: Partial<DriveProtectionUnitCollectionResponse> | undefined | null): void;
66517
+ /**
66518
+ * Serializes information the current object
66519
+ * @param writer Serialization writer to use to serialize this model
66520
+ */
66521
+ export declare function serializeDriveProtectionUnitsBulkAdditionJob(writer: SerializationWriter, driveProtectionUnitsBulkAdditionJob?: Partial<DriveProtectionUnitsBulkAdditionJob> | undefined | null): void;
66522
+ /**
66523
+ * Serializes information the current object
66524
+ * @param writer Serialization writer to use to serialize this model
66525
+ */
66526
+ export declare function serializeDriveProtectionUnitsBulkAdditionJobCollectionResponse(writer: SerializationWriter, driveProtectionUnitsBulkAdditionJobCollectionResponse?: Partial<DriveProtectionUnitsBulkAdditionJobCollectionResponse> | undefined | null): void;
65872
66527
  /**
65873
66528
  * Serializes information the current object
65874
66529
  * @param writer Serialization writer to use to serialize this model
@@ -65884,6 +66539,16 @@ export declare function serializeDriveRestoreArtifact(writer: SerializationWrite
65884
66539
  * @param writer Serialization writer to use to serialize this model
65885
66540
  */
65886
66541
  export declare function serializeDriveRestoreArtifactCollectionResponse(writer: SerializationWriter, driveRestoreArtifactCollectionResponse?: Partial<DriveRestoreArtifactCollectionResponse> | undefined | null): void;
66542
+ /**
66543
+ * Serializes information the current object
66544
+ * @param writer Serialization writer to use to serialize this model
66545
+ */
66546
+ export declare function serializeDriveRestoreArtifactsBulkAdditionRequest(writer: SerializationWriter, driveRestoreArtifactsBulkAdditionRequest?: Partial<DriveRestoreArtifactsBulkAdditionRequest> | undefined | null): void;
66547
+ /**
66548
+ * Serializes information the current object
66549
+ * @param writer Serialization writer to use to serialize this model
66550
+ */
66551
+ export declare function serializeDriveRestoreArtifactsBulkAdditionRequestCollectionResponse(writer: SerializationWriter, driveRestoreArtifactsBulkAdditionRequestCollectionResponse?: Partial<DriveRestoreArtifactsBulkAdditionRequestCollectionResponse> | undefined | null): void;
65887
66552
  /**
65888
66553
  * Serializes information the current object
65889
66554
  * @param writer Serialization writer to use to serialize this model
@@ -67714,6 +68379,16 @@ export declare function serializeMailboxProtectionUnit(writer: SerializationWrit
67714
68379
  * @param writer Serialization writer to use to serialize this model
67715
68380
  */
67716
68381
  export declare function serializeMailboxProtectionUnitCollectionResponse(writer: SerializationWriter, mailboxProtectionUnitCollectionResponse?: Partial<MailboxProtectionUnitCollectionResponse> | undefined | null): void;
68382
+ /**
68383
+ * Serializes information the current object
68384
+ * @param writer Serialization writer to use to serialize this model
68385
+ */
68386
+ export declare function serializeMailboxProtectionUnitsBulkAdditionJob(writer: SerializationWriter, mailboxProtectionUnitsBulkAdditionJob?: Partial<MailboxProtectionUnitsBulkAdditionJob> | undefined | null): void;
68387
+ /**
68388
+ * Serializes information the current object
68389
+ * @param writer Serialization writer to use to serialize this model
68390
+ */
68391
+ export declare function serializeMailboxProtectionUnitsBulkAdditionJobCollectionResponse(writer: SerializationWriter, mailboxProtectionUnitsBulkAdditionJobCollectionResponse?: Partial<MailboxProtectionUnitsBulkAdditionJobCollectionResponse> | undefined | null): void;
67717
68392
  /**
67718
68393
  * Serializes information the current object
67719
68394
  * @param writer Serialization writer to use to serialize this model
@@ -67724,6 +68399,16 @@ export declare function serializeMailboxRestoreArtifact(writer: SerializationWri
67724
68399
  * @param writer Serialization writer to use to serialize this model
67725
68400
  */
67726
68401
  export declare function serializeMailboxRestoreArtifactCollectionResponse(writer: SerializationWriter, mailboxRestoreArtifactCollectionResponse?: Partial<MailboxRestoreArtifactCollectionResponse> | undefined | null): void;
68402
+ /**
68403
+ * Serializes information the current object
68404
+ * @param writer Serialization writer to use to serialize this model
68405
+ */
68406
+ export declare function serializeMailboxRestoreArtifactsBulkAdditionRequest(writer: SerializationWriter, mailboxRestoreArtifactsBulkAdditionRequest?: Partial<MailboxRestoreArtifactsBulkAdditionRequest> | undefined | null): void;
68407
+ /**
68408
+ * Serializes information the current object
68409
+ * @param writer Serialization writer to use to serialize this model
68410
+ */
68411
+ export declare function serializeMailboxRestoreArtifactsBulkAdditionRequestCollectionResponse(writer: SerializationWriter, mailboxRestoreArtifactsBulkAdditionRequestCollectionResponse?: Partial<MailboxRestoreArtifactsBulkAdditionRequestCollectionResponse> | undefined | null): void;
67727
68412
  /**
67728
68413
  * Serializes information the current object
67729
68414
  * @param writer Serialization writer to use to serialize this model
@@ -68574,6 +69259,46 @@ export declare function serializeOnAttributeCollectionHandler(writer: Serializat
68574
69259
  * @param writer Serialization writer to use to serialize this model
68575
69260
  */
68576
69261
  export declare function serializeOnAttributeCollectionListener(writer: SerializationWriter, onAttributeCollectionListener?: Partial<OnAttributeCollectionListener> | undefined | null): void;
69262
+ /**
69263
+ * Serializes information the current object
69264
+ * @param writer Serialization writer to use to serialize this model
69265
+ */
69266
+ export declare function serializeOnAttributeCollectionStartCustomExtension(writer: SerializationWriter, onAttributeCollectionStartCustomExtension?: Partial<OnAttributeCollectionStartCustomExtension> | undefined | null): void;
69267
+ /**
69268
+ * Serializes information the current object
69269
+ * @param writer Serialization writer to use to serialize this model
69270
+ */
69271
+ export declare function serializeOnAttributeCollectionStartCustomExtensionHandler(writer: SerializationWriter, onAttributeCollectionStartCustomExtensionHandler?: Partial<OnAttributeCollectionStartCustomExtensionHandler> | undefined | null): void;
69272
+ /**
69273
+ * Serializes information the current object
69274
+ * @param writer Serialization writer to use to serialize this model
69275
+ */
69276
+ export declare function serializeOnAttributeCollectionStartHandler(writer: SerializationWriter, onAttributeCollectionStartHandler?: Partial<OnAttributeCollectionStartHandler> | undefined | null): void;
69277
+ /**
69278
+ * Serializes information the current object
69279
+ * @param writer Serialization writer to use to serialize this model
69280
+ */
69281
+ export declare function serializeOnAttributeCollectionStartListener(writer: SerializationWriter, onAttributeCollectionStartListener?: Partial<OnAttributeCollectionStartListener> | undefined | null): void;
69282
+ /**
69283
+ * Serializes information the current object
69284
+ * @param writer Serialization writer to use to serialize this model
69285
+ */
69286
+ export declare function serializeOnAttributeCollectionSubmitCustomExtension(writer: SerializationWriter, onAttributeCollectionSubmitCustomExtension?: Partial<OnAttributeCollectionSubmitCustomExtension> | undefined | null): void;
69287
+ /**
69288
+ * Serializes information the current object
69289
+ * @param writer Serialization writer to use to serialize this model
69290
+ */
69291
+ export declare function serializeOnAttributeCollectionSubmitCustomExtensionHandler(writer: SerializationWriter, onAttributeCollectionSubmitCustomExtensionHandler?: Partial<OnAttributeCollectionSubmitCustomExtensionHandler> | undefined | null): void;
69292
+ /**
69293
+ * Serializes information the current object
69294
+ * @param writer Serialization writer to use to serialize this model
69295
+ */
69296
+ export declare function serializeOnAttributeCollectionSubmitHandler(writer: SerializationWriter, onAttributeCollectionSubmitHandler?: Partial<OnAttributeCollectionSubmitHandler> | undefined | null): void;
69297
+ /**
69298
+ * Serializes information the current object
69299
+ * @param writer Serialization writer to use to serialize this model
69300
+ */
69301
+ export declare function serializeOnAttributeCollectionSubmitListener(writer: SerializationWriter, onAttributeCollectionSubmitListener?: Partial<OnAttributeCollectionSubmitListener> | undefined | null): void;
68577
69302
  /**
68578
69303
  * Serializes information the current object
68579
69304
  * @param writer Serialization writer to use to serialize this model
@@ -69289,6 +70014,16 @@ export declare function serializePlannerUser(writer: SerializationWriter, planne
69289
70014
  * @param writer Serialization writer to use to serialize this model
69290
70015
  */
69291
70016
  export declare function serializePlannerUserIds(writer: SerializationWriter, plannerUserIds?: Partial<PlannerUserIds> | undefined | null): void;
70017
+ /**
70018
+ * Serializes information the current object
70019
+ * @param writer Serialization writer to use to serialize this model
70020
+ */
70021
+ export declare function serializePlatformCredentialAuthenticationMethod(writer: SerializationWriter, platformCredentialAuthenticationMethod?: Partial<PlatformCredentialAuthenticationMethod> | undefined | null): void;
70022
+ /**
70023
+ * Serializes information the current object
70024
+ * @param writer Serialization writer to use to serialize this model
70025
+ */
70026
+ export declare function serializePlatformCredentialAuthenticationMethodCollectionResponse(writer: SerializationWriter, platformCredentialAuthenticationMethodCollectionResponse?: Partial<PlatformCredentialAuthenticationMethodCollectionResponse> | undefined | null): void;
69292
70027
  /**
69293
70028
  * Serializes information the current object
69294
70029
  * @param writer Serialization writer to use to serialize this model
@@ -69729,6 +70464,11 @@ export declare function serializeProtectionUnitBase(writer: SerializationWriter,
69729
70464
  * @param writer Serialization writer to use to serialize this model
69730
70465
  */
69731
70466
  export declare function serializeProtectionUnitBaseCollectionResponse(writer: SerializationWriter, protectionUnitBaseCollectionResponse?: Partial<ProtectionUnitBaseCollectionResponse> | undefined | null): void;
70467
+ /**
70468
+ * Serializes information the current object
70469
+ * @param writer Serialization writer to use to serialize this model
70470
+ */
70471
+ export declare function serializeProtectionUnitsBulkJobBase(writer: SerializationWriter, protectionUnitsBulkJobBase?: Partial<ProtectionUnitsBulkJobBase> | undefined | null): void;
69732
70472
  /**
69733
70473
  * Serializes information the current object
69734
70474
  * @param writer Serialization writer to use to serialize this model
@@ -70069,6 +70809,11 @@ export declare function serializeResponseStatus(writer: SerializationWriter, res
70069
70809
  * @param writer Serialization writer to use to serialize this model
70070
70810
  */
70071
70811
  export declare function serializeRestoreArtifactBase(writer: SerializationWriter, restoreArtifactBase?: Partial<RestoreArtifactBase> | undefined | null): void;
70812
+ /**
70813
+ * Serializes information the current object
70814
+ * @param writer Serialization writer to use to serialize this model
70815
+ */
70816
+ export declare function serializeRestoreArtifactsBulkRequestBase(writer: SerializationWriter, restoreArtifactsBulkRequestBase?: Partial<RestoreArtifactsBulkRequestBase> | undefined | null): void;
70072
70817
  /**
70073
70818
  * Serializes information the current object
70074
70819
  * @param writer Serialization writer to use to serialize this model
@@ -70959,6 +71704,16 @@ export declare function serializeSiteProtectionUnit(writer: SerializationWriter,
70959
71704
  * @param writer Serialization writer to use to serialize this model
70960
71705
  */
70961
71706
  export declare function serializeSiteProtectionUnitCollectionResponse(writer: SerializationWriter, siteProtectionUnitCollectionResponse?: Partial<SiteProtectionUnitCollectionResponse> | undefined | null): void;
71707
+ /**
71708
+ * Serializes information the current object
71709
+ * @param writer Serialization writer to use to serialize this model
71710
+ */
71711
+ export declare function serializeSiteProtectionUnitsBulkAdditionJob(writer: SerializationWriter, siteProtectionUnitsBulkAdditionJob?: Partial<SiteProtectionUnitsBulkAdditionJob> | undefined | null): void;
71712
+ /**
71713
+ * Serializes information the current object
71714
+ * @param writer Serialization writer to use to serialize this model
71715
+ */
71716
+ export declare function serializeSiteProtectionUnitsBulkAdditionJobCollectionResponse(writer: SerializationWriter, siteProtectionUnitsBulkAdditionJobCollectionResponse?: Partial<SiteProtectionUnitsBulkAdditionJobCollectionResponse> | undefined | null): void;
70962
71717
  /**
70963
71718
  * Serializes information the current object
70964
71719
  * @param writer Serialization writer to use to serialize this model
@@ -70969,6 +71724,16 @@ export declare function serializeSiteRestoreArtifact(writer: SerializationWriter
70969
71724
  * @param writer Serialization writer to use to serialize this model
70970
71725
  */
70971
71726
  export declare function serializeSiteRestoreArtifactCollectionResponse(writer: SerializationWriter, siteRestoreArtifactCollectionResponse?: Partial<SiteRestoreArtifactCollectionResponse> | undefined | null): void;
71727
+ /**
71728
+ * Serializes information the current object
71729
+ * @param writer Serialization writer to use to serialize this model
71730
+ */
71731
+ export declare function serializeSiteRestoreArtifactsBulkAdditionRequest(writer: SerializationWriter, siteRestoreArtifactsBulkAdditionRequest?: Partial<SiteRestoreArtifactsBulkAdditionRequest> | undefined | null): void;
71732
+ /**
71733
+ * Serializes information the current object
71734
+ * @param writer Serialization writer to use to serialize this model
71735
+ */
71736
+ export declare function serializeSiteRestoreArtifactsBulkAdditionRequestCollectionResponse(writer: SerializationWriter, siteRestoreArtifactsBulkAdditionRequestCollectionResponse?: Partial<SiteRestoreArtifactsBulkAdditionRequestCollectionResponse> | undefined | null): void;
70972
71737
  /**
70973
71738
  * Serializes information the current object
70974
71739
  * @param writer Serialization writer to use to serialize this model
@@ -74929,6 +75694,10 @@ export interface SharePointProtectionPolicy extends Parsable, ProtectionPolicyBa
74929
75694
  * The protection units (sites) that are protected under the site protection policy.
74930
75695
  */
74931
75696
  siteProtectionUnits?: SiteProtectionUnit[] | null;
75697
+ /**
75698
+ * The siteProtectionUnitsBulkAdditionJobs property
75699
+ */
75700
+ siteProtectionUnitsBulkAdditionJobs?: SiteProtectionUnitsBulkAdditionJob[] | null;
74932
75701
  }
74933
75702
  export interface SharePointProtectionPolicyCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
74934
75703
  /**
@@ -74941,6 +75710,10 @@ export interface SharePointRestoreSession extends Parsable, RestoreSessionBase {
74941
75710
  * A collection of restore points and destination details that can be used to restore SharePoint sites.
74942
75711
  */
74943
75712
  siteRestoreArtifacts?: SiteRestoreArtifact[] | null;
75713
+ /**
75714
+ * The siteRestoreArtifactsBulkAdditionRequests property
75715
+ */
75716
+ siteRestoreArtifactsBulkAdditionRequests?: SiteRestoreArtifactsBulkAdditionRequest[] | null;
74944
75717
  }
74945
75718
  export interface SharePointRestoreSessionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
74946
75719
  /**
@@ -76045,6 +76818,22 @@ export interface SiteProtectionUnitCollectionResponse extends BaseCollectionPagi
76045
76818
  */
76046
76819
  value?: SiteProtectionUnit[] | null;
76047
76820
  }
76821
+ export interface SiteProtectionUnitsBulkAdditionJob extends Parsable, ProtectionUnitsBulkJobBase {
76822
+ /**
76823
+ * The siteIds property
76824
+ */
76825
+ siteIds?: string[] | null;
76826
+ /**
76827
+ * The siteWebUrls property
76828
+ */
76829
+ siteWebUrls?: string[] | null;
76830
+ }
76831
+ export interface SiteProtectionUnitsBulkAdditionJobCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
76832
+ /**
76833
+ * The value property
76834
+ */
76835
+ value?: SiteProtectionUnitsBulkAdditionJob[] | null;
76836
+ }
76048
76837
  export interface SiteRestoreArtifact extends Parsable, RestoreArtifactBase {
76049
76838
  /**
76050
76839
  * The new site identifier if the value of the destinationType property is new, and the existing site ID if the value is inPlace.
@@ -76065,6 +76854,22 @@ export interface SiteRestoreArtifactCollectionResponse extends BaseCollectionPag
76065
76854
  */
76066
76855
  value?: SiteRestoreArtifact[] | null;
76067
76856
  }
76857
+ export interface SiteRestoreArtifactsBulkAdditionRequest extends Parsable, RestoreArtifactsBulkRequestBase {
76858
+ /**
76859
+ * The siteIds property
76860
+ */
76861
+ siteIds?: string[] | null;
76862
+ /**
76863
+ * The siteWebUrls property
76864
+ */
76865
+ siteWebUrls?: string[] | null;
76866
+ }
76867
+ export interface SiteRestoreArtifactsBulkAdditionRequestCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
76868
+ /**
76869
+ * The value property
76870
+ */
76871
+ value?: SiteRestoreArtifactsBulkAdditionRequest[] | null;
76872
+ }
76068
76873
  export type SiteSecurityLevel = (typeof SiteSecurityLevelObject)[keyof typeof SiteSecurityLevelObject];
76069
76874
  export interface SizeRange extends AdditionalDataHolder, BackedModel, Parsable {
76070
76875
  /**
@@ -89808,6 +90613,15 @@ export declare const AuthenticationMethodModesObject: {
89808
90613
  readonly FederatedMultiFactor: "federatedMultiFactor";
89809
90614
  readonly UnknownFutureValue: "unknownFutureValue";
89810
90615
  };
90616
+ export declare const AuthenticationMethodPlatformObject: {
90617
+ readonly Unknown: "unknown";
90618
+ readonly Windows: "windows";
90619
+ readonly MacOS: "macOS";
90620
+ readonly IOS: "iOS";
90621
+ readonly Android: "android";
90622
+ readonly Linux: "linux";
90623
+ readonly UnknownFutureValue: "unknownFutureValue";
90624
+ };
89811
90625
  export declare const AuthenticationMethodSignInStateObject: {
89812
90626
  readonly NotSupported: "notSupported";
89813
90627
  readonly NotAllowedByPolicy: "notAllowedByPolicy";
@@ -93586,6 +94400,13 @@ export declare const ProtectionRuleStatusObject: {
93586
94400
  readonly CompletedWithErrors: "completedWithErrors";
93587
94401
  readonly UnknownFutureValue: "unknownFutureValue";
93588
94402
  };
94403
+ export declare const ProtectionUnitsBulkJobStatusObject: {
94404
+ readonly Unknown: "unknown";
94405
+ readonly Active: "active";
94406
+ readonly Completed: "completed";
94407
+ readonly CompletedWithErrors: "completedWithErrors";
94408
+ readonly UnknownFutureValue: "unknownFutureValue";
94409
+ };
93589
94410
  export declare const ProtectionUnitStatusObject: {
93590
94411
  readonly ProtectRequested: "protectRequested";
93591
94412
  readonly Protected: "protected";
@@ -94094,6 +94915,13 @@ export declare const RestorableArtifactObject: {
94094
94915
  readonly Message: "message";
94095
94916
  readonly UnknownFutureValue: "unknownFutureValue";
94096
94917
  };
94918
+ export declare const RestoreArtifactsBulkRequestStatusObject: {
94919
+ readonly Unknown: "unknown";
94920
+ readonly Active: "active";
94921
+ readonly Completed: "completed";
94922
+ readonly CompletedWithErrors: "completedWithErrors";
94923
+ readonly UnknownFutureValue: "unknownFutureValue";
94924
+ };
94097
94925
  export declare const RestorePointPreferenceObject: {
94098
94926
  readonly Latest: "latest";
94099
94927
  readonly Oldest: "oldest";