@microsoft/msgraph-sdk 1.0.0-preview.23 → 1.0.0-preview.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/graphRequestAdapter.js +8 -11
  2. package/graphRequestAdapter.js.map +1 -0
  3. package/graphServiceClient.js +17 -21
  4. package/graphServiceClient.js.map +1 -0
  5. package/index.d.ts +2 -2
  6. package/index.d.ts.map +1 -1
  7. package/index.js +3 -18
  8. package/index.js.map +1 -0
  9. package/models/callRecords/index.d.ts +118 -4
  10. package/models/callRecords/index.d.ts.map +1 -1
  11. package/models/callRecords/index.js +241 -180
  12. package/models/callRecords/index.js.map +1 -0
  13. package/models/externalConnectors/index.d.ts +4 -4
  14. package/models/externalConnectors/index.d.ts.map +1 -1
  15. package/models/externalConnectors/index.js +133 -215
  16. package/models/externalConnectors/index.js.map +1 -0
  17. package/models/identityGovernance/index.d.ts +2 -2
  18. package/models/identityGovernance/index.d.ts.map +1 -1
  19. package/models/identityGovernance/index.js +184 -296
  20. package/models/identityGovernance/index.js.map +1 -0
  21. package/models/index.d.ts +1312 -225
  22. package/models/index.d.ts.map +1 -1
  23. package/models/index.js +8747 -14356
  24. package/models/index.js.map +1 -0
  25. package/models/oDataErrors/index.js +13 -27
  26. package/models/oDataErrors/index.js.map +1 -0
  27. package/models/partners/billing/index.d.ts +1 -1
  28. package/models/partners/billing/index.d.ts.map +1 -1
  29. package/models/partners/billing/index.js +68 -112
  30. package/models/partners/billing/index.js.map +1 -0
  31. package/models/partners/index.d.ts +0 -1
  32. package/models/partners/index.js +1 -1
  33. package/models/partners/index.js.map +1 -0
  34. package/models/search/index.d.ts +1 -1
  35. package/models/search/index.d.ts.map +1 -1
  36. package/models/search/index.js +48 -83
  37. package/models/search/index.js.map +1 -0
  38. package/models/security/index.d.ts +6 -6
  39. package/models/security/index.d.ts.map +1 -1
  40. package/models/security/index.js +869 -1487
  41. package/models/security/index.js.map +1 -0
  42. package/models/termStore/index.d.ts +1 -1
  43. package/models/termStore/index.d.ts.map +1 -1
  44. package/models/termStore/index.js +65 -106
  45. package/models/termStore/index.js.map +1 -0
  46. package/package.json +3 -2
  47. package/tsconfig.tsbuildinfo +1 -1
  48. package/version.js +2 -4
  49. package/version.js.map +1 -0
package/models/index.d.ts CHANGED
@@ -1,10 +1,10 @@
1
- import { type CallRecord } from './callRecords/';
2
- import { type LifecycleWorkflowsContainer, type Workflow } from './identityGovernance/';
3
- import { type Billing } from './partners/billing/';
4
- import { type Acronym, type Bookmark, type Qna } from './search/';
5
- import { BehaviorDuringRetentionPeriod, type CasesRoot, type IdentityContainer as I2b88f0c27d7fd9c000e7e4e78cc3161590db07c518949b504f8a27680ed1200f, type Incident, type LabelsRoot, type ThreatIntelligence, type TriggersRoot, type TriggerTypesRoot } from './security/';
6
- import { type Set, type Store, type Term } from './termStore/';
7
- import { type AdditionalDataHolder, type BackedModel, type DateOnly, type Duration, type Parsable, type ParseNode, type SerializationWriter, type TimeOnly } from '@microsoft/kiota-abstractions';
1
+ import { type CallRecord } from './callRecords/index.js';
2
+ import { type LifecycleWorkflowsContainer, type Workflow } from './identityGovernance/index.js';
3
+ import { type Billing } from './partners/billing/index.js';
4
+ import { type Acronym, type Bookmark, type Qna } from './search/index.js';
5
+ import { BehaviorDuringRetentionPeriod, type CasesRoot, type IdentityContainer as I2b88f0c27d7fd9c000e7e4e78cc3161590db07c518949b504f8a27680ed1200f, type Incident, type LabelsRoot, type ThreatIntelligence, type TriggersRoot, type TriggerTypesRoot } from './security/index.js';
6
+ import { type Set, type Store, type Term } from './termStore/index.js';
7
+ import { type AdditionalDataHolder, type BackedModel, type DateOnly, type Duration, type Parsable, type ParseNode, type SerializationWriter, type TimeOnly, UntypedNode } from '@microsoft/kiota-abstractions';
8
8
  import { type Guid } from 'guid-typescript';
9
9
  export interface AadUserConversationMember extends ConversationMember, Parsable {
10
10
  /**
@@ -140,7 +140,7 @@ export interface AccessPackageAnswerChoice extends AdditionalDataHolder, BackedM
140
140
  */
141
141
  odataType?: string;
142
142
  /**
143
- * The text property
143
+ * The string to display for this answer; if an Accept-Language header is provided, and there is a matching localization in localizations, this string will be the matching localized string; otherwise, this string remains as the default non-localized string. Required.
144
144
  */
145
145
  text?: string;
146
146
  }
@@ -222,7 +222,7 @@ export interface AccessPackageAssignment extends Entity, Parsable {
222
222
  */
223
223
  state?: AccessPackageAssignmentState;
224
224
  /**
225
- * More information about the assignment lifecycle. Possible values include Delivering, Delivered, NearExpiry1DayNotificationTriggered, or ExpiredNotificationTriggered. Read-only.
225
+ * More information about the assignment lifecycle. Possible values include Delivering, Delivered, NearExpiry1DayNotificationTriggered, or ExpiredNotificationTriggered. Read-only.
226
226
  */
227
227
  status?: string;
228
228
  /**
@@ -340,7 +340,7 @@ export interface AccessPackageAssignmentRequest extends Entity, Parsable {
340
340
  */
341
341
  answers?: AccessPackageAnswer[];
342
342
  /**
343
- * For a requestType of userAdd or adminAdd, this is an access package assignment requested to be created. For a requestType of userRemove, adminRemove or systemRemove, this has the id property of an existing assignment to be removed. Supports $expand.
343
+ * For a requestType of userAdd or adminAdd, this is an access package assignment requested to be created. For a requestType of userRemove, adminRemove or systemRemove, this has the id property of an existing assignment to be removed. Supports $expand.
344
344
  */
345
345
  assignment?: AccessPackageAssignment;
346
346
  /**
@@ -360,7 +360,7 @@ export interface AccessPackageAssignmentRequest extends Entity, Parsable {
360
360
  */
361
361
  requestor?: AccessPackageSubject;
362
362
  /**
363
- * The type of the request. The possible values are: notSpecified, userAdd, UserExtend, userUpdate, userRemove, adminAdd, adminUpdate, adminRemove, systemAdd, systemUpdate, systemRemove, onBehalfAdd (not supported), unknownFutureValue. A request from the user themselves would have requestType of userAdd, userUpdate or userRemove. This property can't be changed once set.
363
+ * The type of the request. The possible values are: notSpecified, userAdd, UserExtend, userUpdate, userRemove, adminAdd, adminUpdate, adminRemove, systemAdd, systemUpdate, systemRemove, onBehalfAdd (not supported), unknownFutureValue. Requests from the user have a requestType of userAdd, userUpdate, or userRemove. This property can't be changed once set.
364
364
  */
365
365
  requestType?: AccessPackageRequestType;
366
366
  /**
@@ -763,7 +763,7 @@ export interface AccessPackageResource extends Entity, Parsable {
763
763
  */
764
764
  modifiedDateTime?: Date;
765
765
  /**
766
- * The unique identifier of the resource in the origin system. In the case of a Microsoft Entra group, this is the identifier of the group.
766
+ * The unique identifier of the resource in the origin system. For a Microsoft Entra group, this is the identifier of the group.
767
767
  */
768
768
  originId?: string;
769
769
  /**
@@ -915,7 +915,7 @@ export interface AccessPackageResourceRequest extends Entity, Parsable {
915
915
  */
916
916
  resource?: AccessPackageResource;
917
917
  /**
918
- * The outcome of whether the service was able to add the resource to the catalog. The value is delivered if the resource was added or removed, and deliveryFailed if it could not be added or removed. Read-only.
918
+ * The outcome of whether the service was able to add the resource to the catalog. The value is delivered if the resource was added or removed, and deliveryFailed if it couldn't be added or removed. Read-only.
919
919
  */
920
920
  state?: AccessPackageRequestState;
921
921
  }
@@ -935,11 +935,11 @@ export interface AccessPackageResourceRole extends Entity, Parsable {
935
935
  */
936
936
  displayName?: string;
937
937
  /**
938
- * The unique identifier of the resource role in the origin system. For a SharePoint Online site, the originId will be the sequence number of the role in the site.
938
+ * The unique identifier of the resource role in the origin system. For a SharePoint Online site, the originId is the sequence number of the role in the site.
939
939
  */
940
940
  originId?: string;
941
941
  /**
942
- * The type of the resource in the origin system, such as SharePointOnline, AadApplication or AadGroup.
942
+ * The type of the resource in the origin system, such as SharePointOnline, AadApplication, or AadGroup.
943
943
  */
944
944
  originSystem?: string;
945
945
  /**
@@ -1259,7 +1259,7 @@ export interface AccessReviewInstanceDecisionItem extends Entity, Parsable {
1259
1259
  */
1260
1260
  principalLink?: string;
1261
1261
  /**
1262
- * A system-generated recommendation for the approval decision based off last interactive sign-in to tenant. Recommend approve if sign-in is within thirty days of start of review. Recommend deny if sign-in is greater than thirty days of start of review. Recommendation not available otherwise. Possible values: Approve, Deny, or NoInfoAvailable. Supports $select, $orderby, and $filter (eq only). Read-only.
1262
+ * A system-generated recommendation for the approval decision based off last interactive sign-in to tenant. The value is Approve if the sign-in is fewer than 30 days after the start of review, Deny if the sign-in is greater than 30 days after, or NoInfoAvailable. Possible values: Approve, Deny, or NoInfoAvailable. Supports $select, $orderby, and $filter (eq only). Read-only.
1263
1263
  */
1264
1264
  recommendation?: string;
1265
1265
  /**
@@ -1795,7 +1795,7 @@ export interface AddIn extends AdditionalDataHolder, BackedModel, Parsable {
1795
1795
  */
1796
1796
  backingStoreEnabled?: boolean;
1797
1797
  /**
1798
- * The id property
1798
+ * The unique identifier for the addIn object.
1799
1799
  */
1800
1800
  id?: Guid;
1801
1801
  /**
@@ -1803,11 +1803,11 @@ export interface AddIn extends AdditionalDataHolder, BackedModel, Parsable {
1803
1803
  */
1804
1804
  odataType?: string;
1805
1805
  /**
1806
- * The properties property
1806
+ * The collection of key-value pairs that define parameters that the consuming service can use or call. You must specify this property when performing a POST or a PATCH operation on the addIns collection. Required.
1807
1807
  */
1808
1808
  properties?: KeyValue[];
1809
1809
  /**
1810
- * The type property
1810
+ * The unique name for the functionality exposed by the app.
1811
1811
  */
1812
1812
  type?: string;
1813
1813
  }
@@ -4740,7 +4740,7 @@ export interface AttributeDefinition extends AdditionalDataHolder, BackedModel,
4740
4740
  */
4741
4741
  caseExact?: boolean;
4742
4742
  /**
4743
- * The defaultValue property
4743
+ * The default value of the attribute.
4744
4744
  */
4745
4745
  defaultValue?: string;
4746
4746
  /**
@@ -5047,7 +5047,7 @@ export interface AudioConferencing extends AdditionalDataHolder, BackedModel, Pa
5047
5047
  */
5048
5048
  odataType?: string;
5049
5049
  /**
5050
- * The tollFreeNumber property
5050
+ * The toll-free number that connects to the Audio Conference Provider.
5051
5051
  */
5052
5052
  tollFreeNumber?: string;
5053
5053
  /**
@@ -5055,7 +5055,7 @@ export interface AudioConferencing extends AdditionalDataHolder, BackedModel, Pa
5055
5055
  */
5056
5056
  tollFreeNumbers?: string[];
5057
5057
  /**
5058
- * The tollNumber property
5058
+ * The toll number that connects to the Audio Conference Provider.
5059
5059
  */
5060
5060
  tollNumber?: string;
5061
5061
  /**
@@ -5307,7 +5307,7 @@ export interface Authentication extends Entity, Parsable {
5307
5307
  */
5308
5308
  operations?: LongRunningOperation[];
5309
5309
  /**
5310
- * Represents the password that's registered to a user for authentication. For security, the password itself will never be returned in the object, but action can be taken to reset a password.
5310
+ * Represents the password registered to a user for authentication. For security, the password itself is never returned in the object, but action can be taken to reset a password.
5311
5311
  */
5312
5312
  passwordMethods?: PasswordAuthenticationMethod[];
5313
5313
  /**
@@ -5315,7 +5315,7 @@ export interface Authentication extends Entity, Parsable {
5315
5315
  */
5316
5316
  phoneMethods?: PhoneAuthenticationMethod[];
5317
5317
  /**
5318
- * The software OATH TOTP applications registered to a user for authentication.
5318
+ * The software OATH time-based one-time password (TOTP) applications registered to a user for authentication.
5319
5319
  */
5320
5320
  softwareOathMethods?: SoftwareOathAuthenticationMethod[];
5321
5321
  /**
@@ -5327,6 +5327,127 @@ export interface Authentication extends Entity, Parsable {
5327
5327
  */
5328
5328
  windowsHelloForBusinessMethods?: WindowsHelloForBusinessAuthenticationMethod[];
5329
5329
  }
5330
+ export interface AuthenticationAttributeCollectionInputConfiguration extends AdditionalDataHolder, BackedModel, Parsable {
5331
+ /**
5332
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
5333
+ */
5334
+ additionalData?: Record<string, unknown>;
5335
+ /**
5336
+ * The built-in or custom attribute for which a value is being collected.
5337
+ */
5338
+ attribute?: string;
5339
+ /**
5340
+ * Stores model information.
5341
+ */
5342
+ backingStoreEnabled?: boolean;
5343
+ /**
5344
+ * The default value of the attribute displayed to the end user.
5345
+ */
5346
+ defaultValue?: string;
5347
+ /**
5348
+ * Whether the attribute is editable by the end user.
5349
+ */
5350
+ editable?: boolean;
5351
+ /**
5352
+ * Whether the attribute is displayed to the end user.
5353
+ */
5354
+ hidden?: boolean;
5355
+ /**
5356
+ * The inputType property
5357
+ */
5358
+ inputType?: AuthenticationAttributeCollectionInputType;
5359
+ /**
5360
+ * The label of the attribute field that is displayed to end user, unless overridden.
5361
+ */
5362
+ label?: string;
5363
+ /**
5364
+ * The OdataType property
5365
+ */
5366
+ odataType?: string;
5367
+ /**
5368
+ * The option values for certain multiple-option input types.
5369
+ */
5370
+ options?: AuthenticationAttributeCollectionOptionConfiguration[];
5371
+ /**
5372
+ * Whether the field is required.
5373
+ */
5374
+ required?: boolean;
5375
+ /**
5376
+ * The regex for the value of the field.
5377
+ */
5378
+ validationRegEx?: string;
5379
+ /**
5380
+ * Whether the value collected is stored.
5381
+ */
5382
+ writeToDirectory?: boolean;
5383
+ }
5384
+ export type AuthenticationAttributeCollectionInputType = (typeof AuthenticationAttributeCollectionInputTypeObject)[keyof typeof AuthenticationAttributeCollectionInputTypeObject];
5385
+ export interface AuthenticationAttributeCollectionOptionConfiguration extends AdditionalDataHolder, BackedModel, Parsable {
5386
+ /**
5387
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
5388
+ */
5389
+ additionalData?: Record<string, unknown>;
5390
+ /**
5391
+ * Stores model information.
5392
+ */
5393
+ backingStoreEnabled?: boolean;
5394
+ /**
5395
+ * The label of the option that will be displayed to user, unless overridden.
5396
+ */
5397
+ label?: string;
5398
+ /**
5399
+ * The OdataType property
5400
+ */
5401
+ odataType?: string;
5402
+ /**
5403
+ * The value of the option that will be stored.
5404
+ */
5405
+ value?: string;
5406
+ }
5407
+ export interface AuthenticationAttributeCollectionPage extends AdditionalDataHolder, BackedModel, Parsable {
5408
+ /**
5409
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
5410
+ */
5411
+ additionalData?: Record<string, unknown>;
5412
+ /**
5413
+ * Stores model information.
5414
+ */
5415
+ backingStoreEnabled?: boolean;
5416
+ /**
5417
+ * The OdataType property
5418
+ */
5419
+ odataType?: string;
5420
+ /**
5421
+ * A collection of displays of the attribute collection page.
5422
+ */
5423
+ views?: AuthenticationAttributeCollectionPageViewConfiguration[];
5424
+ }
5425
+ export interface AuthenticationAttributeCollectionPageViewConfiguration extends AdditionalDataHolder, BackedModel, Parsable {
5426
+ /**
5427
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
5428
+ */
5429
+ additionalData?: Record<string, unknown>;
5430
+ /**
5431
+ * Stores model information.
5432
+ */
5433
+ backingStoreEnabled?: boolean;
5434
+ /**
5435
+ * The description of the page.
5436
+ */
5437
+ description?: string;
5438
+ /**
5439
+ * The display configuration of attributes being collected on the attribute collection page.
5440
+ */
5441
+ inputs?: AuthenticationAttributeCollectionInputConfiguration[];
5442
+ /**
5443
+ * The OdataType property
5444
+ */
5445
+ odataType?: string;
5446
+ /**
5447
+ * The title of the attribute collection page.
5448
+ */
5449
+ title?: string;
5450
+ }
5330
5451
  export interface AuthenticationCombinationConfiguration extends Entity, Parsable {
5331
5452
  /**
5332
5453
  * Which authentication method combinations this configuration applies to. Must be an allowedCombinations object that's defined for the authenticationStrengthPolicy. The only possible value for fido2combinationConfigurations is 'fido2'.
@@ -5345,7 +5466,7 @@ export interface AuthenticationConditionApplication extends AdditionalDataHolder
5345
5466
  */
5346
5467
  additionalData?: Record<string, unknown>;
5347
5468
  /**
5348
- * The identifier for an application corresponding to a condition that triggers an authenticationEventListener.
5469
+ * The identifier for an application corresponding to a condition which will trigger an authenticationEventListener.
5349
5470
  */
5350
5471
  appId?: string;
5351
5472
  /**
@@ -5357,6 +5478,12 @@ export interface AuthenticationConditionApplication extends AdditionalDataHolder
5357
5478
  */
5358
5479
  odataType?: string;
5359
5480
  }
5481
+ export interface AuthenticationConditionApplicationCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
5482
+ /**
5483
+ * The value property
5484
+ */
5485
+ value?: AuthenticationConditionApplication[];
5486
+ }
5360
5487
  export interface AuthenticationConditions extends AdditionalDataHolder, BackedModel, Parsable {
5361
5488
  /**
5362
5489
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -5437,7 +5564,7 @@ export interface AuthenticationContextClassReferenceCollectionResponse extends B
5437
5564
  }
5438
5565
  export interface AuthenticationEventListener extends Entity, Parsable {
5439
5566
  /**
5440
- * The authenticationEventsFlowId property
5567
+ * Indicates the authenticationEventListener is associated with an authenticationEventsFlow. Read-only.
5441
5568
  */
5442
5569
  authenticationEventsFlowId?: string;
5443
5570
  /**
@@ -5451,6 +5578,26 @@ export interface AuthenticationEventListenerCollectionResponse extends BaseColle
5451
5578
  */
5452
5579
  value?: AuthenticationEventListener[];
5453
5580
  }
5581
+ export interface AuthenticationEventsFlow extends Entity, Parsable {
5582
+ /**
5583
+ * The conditions representing the context of the authentication request that's used to decide whether the events policy is invoked.
5584
+ */
5585
+ conditions?: AuthenticationConditions;
5586
+ /**
5587
+ * The description of the events policy.
5588
+ */
5589
+ description?: string;
5590
+ /**
5591
+ * Required. The display name for the events policy.
5592
+ */
5593
+ displayName?: string;
5594
+ }
5595
+ export interface AuthenticationEventsFlowCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
5596
+ /**
5597
+ * The value property
5598
+ */
5599
+ value?: AuthenticationEventsFlow[];
5600
+ }
5454
5601
  export interface AuthenticationFlowsPolicy extends Entity, Parsable {
5455
5602
  /**
5456
5603
  * Inherited property. A description of the policy. Optional. Read-only.
@@ -8037,7 +8184,7 @@ export interface Channel extends Entity, Parsable {
8037
8184
  */
8038
8185
  filesFolder?: DriveItem;
8039
8186
  /**
8040
- * Indicates whether the channel should automatically be marked 'favorite' for all members of the team. Can only be set programmatically with Create team. Default: false.
8187
+ * Indicates whether the channel should be marked as recommended for all members of the team to show in their channel list. Note: All recommended channels automatically show in the channels list for education and frontline worker users. The property can only be set programmatically via the Create team method. The default value is false.
8041
8188
  */
8042
8189
  isFavoriteByDefault?: boolean;
8043
8190
  /**
@@ -10188,6 +10335,10 @@ export interface ConditionalAccessConditionSet extends AdditionalDataHolder, Bac
10188
10335
  * Devices in the policy.
10189
10336
  */
10190
10337
  devices?: ConditionalAccessDevices;
10338
+ /**
10339
+ * The insiderRiskLevels property
10340
+ */
10341
+ insiderRiskLevels?: ConditionalAccessInsiderRiskLevels[];
10191
10342
  /**
10192
10343
  * Locations included in and excluded from the policy.
10193
10344
  */
@@ -10341,6 +10492,7 @@ export interface ConditionalAccessGuestsOrExternalUsers extends AdditionalDataHo
10341
10492
  */
10342
10493
  odataType?: string;
10343
10494
  }
10495
+ export type ConditionalAccessInsiderRiskLevels = (typeof ConditionalAccessInsiderRiskLevelsObject)[keyof typeof ConditionalAccessInsiderRiskLevelsObject];
10344
10496
  export interface ConditionalAccessLocations extends AdditionalDataHolder, BackedModel, Parsable {
10345
10497
  /**
10346
10498
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -10772,7 +10924,7 @@ export interface Contact extends OutlookItem, Parsable {
10772
10924
  */
10773
10925
  fileAs?: string;
10774
10926
  /**
10775
- * The contact's generation.
10927
+ * The contact's suffix.
10776
10928
  */
10777
10929
  generation?: string;
10778
10930
  /**
@@ -10965,11 +11117,11 @@ export interface ContentCustomization extends AdditionalDataHolder, BackedModel,
10965
11117
  */
10966
11118
  odataType?: string;
10967
11119
  /**
10968
- * The registrationCampaign property
11120
+ * Represents content options to customize during MFA proofup interruptions.
10969
11121
  */
10970
11122
  registrationCampaign?: KeyValue[];
10971
11123
  /**
10972
- * The registrationCampaignRelativeUrl property
11124
+ * The relative URL of the content options to customize during MFA proofup interruptions.
10973
11125
  */
10974
11126
  registrationCampaignRelativeUrl?: string;
10975
11127
  }
@@ -12739,6 +12891,30 @@ export declare function createAuditPropertyFromDiscriminatorValue(parseNode: Par
12739
12891
  * @returns {AuditResource}
12740
12892
  */
12741
12893
  export declare function createAuditResourceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12894
+ /**
12895
+ * Creates a new instance of the appropriate class based on discriminator value
12896
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12897
+ * @returns {AuthenticationAttributeCollectionInputConfiguration}
12898
+ */
12899
+ export declare function createAuthenticationAttributeCollectionInputConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12900
+ /**
12901
+ * Creates a new instance of the appropriate class based on discriminator value
12902
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12903
+ * @returns {AuthenticationAttributeCollectionOptionConfiguration}
12904
+ */
12905
+ export declare function createAuthenticationAttributeCollectionOptionConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12906
+ /**
12907
+ * Creates a new instance of the appropriate class based on discriminator value
12908
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12909
+ * @returns {AuthenticationAttributeCollectionPage}
12910
+ */
12911
+ export declare function createAuthenticationAttributeCollectionPageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12912
+ /**
12913
+ * Creates a new instance of the appropriate class based on discriminator value
12914
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12915
+ * @returns {AuthenticationAttributeCollectionPageViewConfiguration}
12916
+ */
12917
+ export declare function createAuthenticationAttributeCollectionPageViewConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12742
12918
  /**
12743
12919
  * Creates a new instance of the appropriate class based on discriminator value
12744
12920
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -12751,6 +12927,12 @@ export declare function createAuthenticationCombinationConfigurationCollectionRe
12751
12927
  * @returns {AuthenticationCombinationConfiguration}
12752
12928
  */
12753
12929
  export declare function createAuthenticationCombinationConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12930
+ /**
12931
+ * Creates a new instance of the appropriate class based on discriminator value
12932
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12933
+ * @returns {AuthenticationConditionApplicationCollectionResponse}
12934
+ */
12935
+ export declare function createAuthenticationConditionApplicationCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12754
12936
  /**
12755
12937
  * Creates a new instance of the appropriate class based on discriminator value
12756
12938
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -12799,6 +12981,18 @@ export declare function createAuthenticationEventListenerCollectionResponseFromD
12799
12981
  * @returns {AuthenticationEventListener}
12800
12982
  */
12801
12983
  export declare function createAuthenticationEventListenerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12984
+ /**
12985
+ * Creates a new instance of the appropriate class based on discriminator value
12986
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12987
+ * @returns {AuthenticationEventsFlowCollectionResponse}
12988
+ */
12989
+ export declare function createAuthenticationEventsFlowCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12990
+ /**
12991
+ * Creates a new instance of the appropriate class based on discriminator value
12992
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12993
+ * @returns {AuthenticationEventsFlow}
12994
+ */
12995
+ export declare function createAuthenticationEventsFlowFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12802
12996
  /**
12803
12997
  * Creates a new instance of the appropriate class based on discriminator value
12804
12998
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -16249,6 +16443,18 @@ export declare function createExternalLinkFromDiscriminatorValue(parseNode: Pars
16249
16443
  * @returns {ExternalSponsors}
16250
16444
  */
16251
16445
  export declare function createExternalSponsorsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16446
+ /**
16447
+ * Creates a new instance of the appropriate class based on discriminator value
16448
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16449
+ * @returns {ExternalUsersSelfServiceSignUpEventsFlowCollectionResponse}
16450
+ */
16451
+ export declare function createExternalUsersSelfServiceSignUpEventsFlowCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16452
+ /**
16453
+ * Creates a new instance of the appropriate class based on discriminator value
16454
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16455
+ * @returns {ExternalUsersSelfServiceSignUpEventsFlow}
16456
+ */
16457
+ export declare function createExternalUsersSelfServiceSignUpEventsFlowFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16252
16458
  /**
16253
16459
  * Creates a new instance of the appropriate class based on discriminator value
16254
16460
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -16357,6 +16563,36 @@ export declare function createFileHashFromDiscriminatorValue(parseNode: ParseNod
16357
16563
  * @returns {FileSecurityState}
16358
16564
  */
16359
16565
  export declare function createFileSecurityStateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16566
+ /**
16567
+ * Creates a new instance of the appropriate class based on discriminator value
16568
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16569
+ * @returns {FileStorageContainerCollectionResponse}
16570
+ */
16571
+ export declare function createFileStorageContainerCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16572
+ /**
16573
+ * Creates a new instance of the appropriate class based on discriminator value
16574
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16575
+ * @returns {FileStorageContainerCustomPropertyDictionary}
16576
+ */
16577
+ export declare function createFileStorageContainerCustomPropertyDictionaryFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16578
+ /**
16579
+ * Creates a new instance of the appropriate class based on discriminator value
16580
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16581
+ * @returns {FileStorageContainer}
16582
+ */
16583
+ export declare function createFileStorageContainerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16584
+ /**
16585
+ * Creates a new instance of the appropriate class based on discriminator value
16586
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16587
+ * @returns {FileStorageContainerViewpoint}
16588
+ */
16589
+ export declare function createFileStorageContainerViewpointFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16590
+ /**
16591
+ * Creates a new instance of the appropriate class based on discriminator value
16592
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16593
+ * @returns {FileStorage}
16594
+ */
16595
+ export declare function createFileStorageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16360
16596
  /**
16361
16597
  * Creates a new instance of the appropriate class based on discriminator value
16362
16598
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -17245,12 +17481,6 @@ export declare function createJoinMeetingIdMeetingInfoFromDiscriminatorValue(par
17245
17481
  * @returns {JoinMeetingIdSettings}
17246
17482
  */
17247
17483
  export declare function createJoinMeetingIdSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17248
- /**
17249
- * Creates a new instance of the appropriate class based on discriminator value
17250
- * @param parseNode The parse node to use to read the discriminator value and create the object
17251
- * @returns {Json}
17252
- */
17253
- export declare function createJsonFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17254
17484
  /**
17255
17485
  * Creates a new instance of the appropriate class based on discriminator value
17256
17486
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -18637,6 +18867,42 @@ export declare function createOmaSettingStringFromDiscriminatorValue(parseNode:
18637
18867
  * @returns {OmaSettingStringXml}
18638
18868
  */
18639
18869
  export declare function createOmaSettingStringXmlFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18870
+ /**
18871
+ * Creates a new instance of the appropriate class based on discriminator value
18872
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18873
+ * @returns {OnAttributeCollectionExternalUsersSelfServiceSignUp}
18874
+ */
18875
+ export declare function createOnAttributeCollectionExternalUsersSelfServiceSignUpFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18876
+ /**
18877
+ * Creates a new instance of the appropriate class based on discriminator value
18878
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18879
+ * @returns {OnAttributeCollectionHandler}
18880
+ */
18881
+ export declare function createOnAttributeCollectionHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18882
+ /**
18883
+ * Creates a new instance of the appropriate class based on discriminator value
18884
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18885
+ * @returns {OnAttributeCollectionListener}
18886
+ */
18887
+ export declare function createOnAttributeCollectionListenerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18888
+ /**
18889
+ * Creates a new instance of the appropriate class based on discriminator value
18890
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18891
+ * @returns {OnAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp}
18892
+ */
18893
+ export declare function createOnAuthenticationMethodLoadStartExternalUsersSelfServiceSignUpFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18894
+ /**
18895
+ * Creates a new instance of the appropriate class based on discriminator value
18896
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18897
+ * @returns {OnAuthenticationMethodLoadStartHandler}
18898
+ */
18899
+ export declare function createOnAuthenticationMethodLoadStartHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18900
+ /**
18901
+ * Creates a new instance of the appropriate class based on discriminator value
18902
+ * @param parseNode The parse node to use to read the discriminator value and create the object
18903
+ * @returns {OnAuthenticationMethodLoadStartListener}
18904
+ */
18905
+ export declare function createOnAuthenticationMethodLoadStartListenerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18640
18906
  /**
18641
18907
  * Creates a new instance of the appropriate class based on discriminator value
18642
18908
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -18733,6 +18999,24 @@ export declare function createOnenoteSectionCollectionResponseFromDiscriminatorV
18733
18999
  * @returns {OnenoteSection}
18734
19000
  */
18735
19001
  export declare function createOnenoteSectionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19002
+ /**
19003
+ * Creates a new instance of the appropriate class based on discriminator value
19004
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19005
+ * @returns {OnInteractiveAuthFlowStartExternalUsersSelfServiceSignUp}
19006
+ */
19007
+ export declare function createOnInteractiveAuthFlowStartExternalUsersSelfServiceSignUpFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19008
+ /**
19009
+ * Creates a new instance of the appropriate class based on discriminator value
19010
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19011
+ * @returns {OnInteractiveAuthFlowStartHandler}
19012
+ */
19013
+ export declare function createOnInteractiveAuthFlowStartHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19014
+ /**
19015
+ * Creates a new instance of the appropriate class based on discriminator value
19016
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19017
+ * @returns {OnInteractiveAuthFlowStartListener}
19018
+ */
19019
+ export declare function createOnInteractiveAuthFlowStartListenerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18736
19020
  /**
18737
19021
  * Creates a new instance of the appropriate class based on discriminator value
18738
19022
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -18841,6 +19125,24 @@ export declare function createOnTokenIssuanceStartListenerFromDiscriminatorValue
18841
19125
  * @returns {OnTokenIssuanceStartReturnClaim}
18842
19126
  */
18843
19127
  export declare function createOnTokenIssuanceStartReturnClaimFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19128
+ /**
19129
+ * Creates a new instance of the appropriate class based on discriminator value
19130
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19131
+ * @returns {OnUserCreateStartExternalUsersSelfServiceSignUp}
19132
+ */
19133
+ export declare function createOnUserCreateStartExternalUsersSelfServiceSignUpFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19134
+ /**
19135
+ * Creates a new instance of the appropriate class based on discriminator value
19136
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19137
+ * @returns {OnUserCreateStartHandler}
19138
+ */
19139
+ export declare function createOnUserCreateStartHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19140
+ /**
19141
+ * Creates a new instance of the appropriate class based on discriminator value
19142
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19143
+ * @returns {OnUserCreateStartListener}
19144
+ */
19145
+ export declare function createOnUserCreateStartListenerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
18844
19146
  /**
18845
19147
  * Creates a new instance of the appropriate class based on discriminator value
18846
19148
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -18997,6 +19299,12 @@ export declare function createOutlookItemFromDiscriminatorValue(parseNode: Parse
18997
19299
  * @returns {OutlookUser}
18998
19300
  */
18999
19301
  export declare function createOutlookUserFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19302
+ /**
19303
+ * Creates a new instance of the appropriate class based on discriminator value
19304
+ * @param parseNode The parse node to use to read the discriminator value and create the object
19305
+ * @returns {OutOfBoxExperienceSetting}
19306
+ */
19307
+ export declare function createOutOfBoxExperienceSettingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
19000
19308
  /**
19001
19309
  * Creates a new instance of the appropriate class based on discriminator value
19002
19310
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -21193,6 +21501,12 @@ export declare function createSingleUserFromDiscriminatorValue(parseNode: ParseN
21193
21501
  * @returns {SingleValueLegacyExtendedProperty}
21194
21502
  */
21195
21503
  export declare function createSingleValueLegacyExtendedPropertyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21504
+ /**
21505
+ * Creates a new instance of the appropriate class based on discriminator value
21506
+ * @param parseNode The parse node to use to read the discriminator value and create the object
21507
+ * @returns {SiteArchivalDetails}
21508
+ */
21509
+ export declare function createSiteArchivalDetailsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21196
21510
  /**
21197
21511
  * Creates a new instance of the appropriate class based on discriminator value
21198
21512
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -21343,6 +21657,12 @@ export declare function createStartHoldMusicOperationFromDiscriminatorValue(pars
21343
21657
  * @returns {StopHoldMusicOperation}
21344
21658
  */
21345
21659
  export declare function createStopHoldMusicOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21660
+ /**
21661
+ * Creates a new instance of the appropriate class based on discriminator value
21662
+ * @param parseNode The parse node to use to read the discriminator value and create the object
21663
+ * @returns {Storage}
21664
+ */
21665
+ export declare function createStorageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21346
21666
  /**
21347
21667
  * Creates a new instance of the appropriate class based on discriminator value
21348
21668
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -23551,6 +23871,18 @@ export declare function createWindowsAppXCollectionResponseFromDiscriminatorValu
23551
23871
  * @returns {WindowsAppX}
23552
23872
  */
23553
23873
  export declare function createWindowsAppXFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
23874
+ /**
23875
+ * Creates a new instance of the appropriate class based on discriminator value
23876
+ * @param parseNode The parse node to use to read the discriminator value and create the object
23877
+ * @returns {WindowsAutopilotDeploymentProfileAssignment}
23878
+ */
23879
+ export declare function createWindowsAutopilotDeploymentProfileAssignmentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
23880
+ /**
23881
+ * Creates a new instance of the appropriate class based on discriminator value
23882
+ * @param parseNode The parse node to use to read the discriminator value and create the object
23883
+ * @returns {WindowsAutopilotDeploymentProfile}
23884
+ */
23885
+ export declare function createWindowsAutopilotDeploymentProfileFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
23554
23886
  /**
23555
23887
  * Creates a new instance of the appropriate class based on discriminator value
23556
23888
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -24319,6 +24651,12 @@ export declare function createX509CertificateAuthenticationMethodConfigurationFr
24319
24651
  * @returns {X509CertificateAuthenticationModeConfiguration}
24320
24652
  */
24321
24653
  export declare function createX509CertificateAuthenticationModeConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
24654
+ /**
24655
+ * Creates a new instance of the appropriate class based on discriminator value
24656
+ * @param parseNode The parse node to use to read the discriminator value and create the object
24657
+ * @returns {X509CertificateCombinationConfiguration}
24658
+ */
24659
+ export declare function createX509CertificateCombinationConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
24322
24660
  /**
24323
24661
  * Creates a new instance of the appropriate class based on discriminator value
24324
24662
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -26626,6 +26964,26 @@ export declare function deserializeIntoAuditResource(auditResource?: Partial<Aud
26626
26964
  * @returns {Record<string, (node: ParseNode) => void>}
26627
26965
  */
26628
26966
  export declare function deserializeIntoAuthentication(authentication?: Partial<Authentication> | undefined): Record<string, (node: ParseNode) => void>;
26967
+ /**
26968
+ * The deserialization information for the current model
26969
+ * @returns {Record<string, (node: ParseNode) => void>}
26970
+ */
26971
+ export declare function deserializeIntoAuthenticationAttributeCollectionInputConfiguration(authenticationAttributeCollectionInputConfiguration?: Partial<AuthenticationAttributeCollectionInputConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
26972
+ /**
26973
+ * The deserialization information for the current model
26974
+ * @returns {Record<string, (node: ParseNode) => void>}
26975
+ */
26976
+ export declare function deserializeIntoAuthenticationAttributeCollectionOptionConfiguration(authenticationAttributeCollectionOptionConfiguration?: Partial<AuthenticationAttributeCollectionOptionConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
26977
+ /**
26978
+ * The deserialization information for the current model
26979
+ * @returns {Record<string, (node: ParseNode) => void>}
26980
+ */
26981
+ export declare function deserializeIntoAuthenticationAttributeCollectionPage(authenticationAttributeCollectionPage?: Partial<AuthenticationAttributeCollectionPage> | undefined): Record<string, (node: ParseNode) => void>;
26982
+ /**
26983
+ * The deserialization information for the current model
26984
+ * @returns {Record<string, (node: ParseNode) => void>}
26985
+ */
26986
+ export declare function deserializeIntoAuthenticationAttributeCollectionPageViewConfiguration(authenticationAttributeCollectionPageViewConfiguration?: Partial<AuthenticationAttributeCollectionPageViewConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
26629
26987
  /**
26630
26988
  * The deserialization information for the current model
26631
26989
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -26641,6 +26999,11 @@ export declare function deserializeIntoAuthenticationCombinationConfigurationCol
26641
26999
  * @returns {Record<string, (node: ParseNode) => void>}
26642
27000
  */
26643
27001
  export declare function deserializeIntoAuthenticationConditionApplication(authenticationConditionApplication?: Partial<AuthenticationConditionApplication> | undefined): Record<string, (node: ParseNode) => void>;
27002
+ /**
27003
+ * The deserialization information for the current model
27004
+ * @returns {Record<string, (node: ParseNode) => void>}
27005
+ */
27006
+ export declare function deserializeIntoAuthenticationConditionApplicationCollectionResponse(authenticationConditionApplicationCollectionResponse?: Partial<AuthenticationConditionApplicationCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
26644
27007
  /**
26645
27008
  * The deserialization information for the current model
26646
27009
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -26676,6 +27039,16 @@ export declare function deserializeIntoAuthenticationEventListener(authenticatio
26676
27039
  * @returns {Record<string, (node: ParseNode) => void>}
26677
27040
  */
26678
27041
  export declare function deserializeIntoAuthenticationEventListenerCollectionResponse(authenticationEventListenerCollectionResponse?: Partial<AuthenticationEventListenerCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
27042
+ /**
27043
+ * The deserialization information for the current model
27044
+ * @returns {Record<string, (node: ParseNode) => void>}
27045
+ */
27046
+ export declare function deserializeIntoAuthenticationEventsFlow(authenticationEventsFlow?: Partial<AuthenticationEventsFlow> | undefined): Record<string, (node: ParseNode) => void>;
27047
+ /**
27048
+ * The deserialization information for the current model
27049
+ * @returns {Record<string, (node: ParseNode) => void>}
27050
+ */
27051
+ export declare function deserializeIntoAuthenticationEventsFlowCollectionResponse(authenticationEventsFlowCollectionResponse?: Partial<AuthenticationEventsFlowCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
26679
27052
  /**
26680
27053
  * The deserialization information for the current model
26681
27054
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -29546,6 +29919,16 @@ export declare function deserializeIntoExternalLink(externalLink?: Partial<Exter
29546
29919
  * @returns {Record<string, (node: ParseNode) => void>}
29547
29920
  */
29548
29921
  export declare function deserializeIntoExternalSponsors(externalSponsors?: Partial<ExternalSponsors> | undefined): Record<string, (node: ParseNode) => void>;
29922
+ /**
29923
+ * The deserialization information for the current model
29924
+ * @returns {Record<string, (node: ParseNode) => void>}
29925
+ */
29926
+ export declare function deserializeIntoExternalUsersSelfServiceSignUpEventsFlow(externalUsersSelfServiceSignUpEventsFlow?: Partial<ExternalUsersSelfServiceSignUpEventsFlow> | undefined): Record<string, (node: ParseNode) => void>;
29927
+ /**
29928
+ * The deserialization information for the current model
29929
+ * @returns {Record<string, (node: ParseNode) => void>}
29930
+ */
29931
+ export declare function deserializeIntoExternalUsersSelfServiceSignUpEventsFlowCollectionResponse(externalUsersSelfServiceSignUpEventsFlowCollectionResponse?: Partial<ExternalUsersSelfServiceSignUpEventsFlowCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
29549
29932
  /**
29550
29933
  * The deserialization information for the current model
29551
29934
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -29636,6 +30019,31 @@ export declare function deserializeIntoFileHash(fileHash?: Partial<FileHash> | u
29636
30019
  * @returns {Record<string, (node: ParseNode) => void>}
29637
30020
  */
29638
30021
  export declare function deserializeIntoFileSecurityState(fileSecurityState?: Partial<FileSecurityState> | undefined): Record<string, (node: ParseNode) => void>;
30022
+ /**
30023
+ * The deserialization information for the current model
30024
+ * @returns {Record<string, (node: ParseNode) => void>}
30025
+ */
30026
+ export declare function deserializeIntoFileStorage(fileStorage?: Partial<FileStorage> | undefined): Record<string, (node: ParseNode) => void>;
30027
+ /**
30028
+ * The deserialization information for the current model
30029
+ * @returns {Record<string, (node: ParseNode) => void>}
30030
+ */
30031
+ export declare function deserializeIntoFileStorageContainer(fileStorageContainer?: Partial<FileStorageContainer> | undefined): Record<string, (node: ParseNode) => void>;
30032
+ /**
30033
+ * The deserialization information for the current model
30034
+ * @returns {Record<string, (node: ParseNode) => void>}
30035
+ */
30036
+ export declare function deserializeIntoFileStorageContainerCollectionResponse(fileStorageContainerCollectionResponse?: Partial<FileStorageContainerCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
30037
+ /**
30038
+ * The deserialization information for the current model
30039
+ * @returns {Record<string, (node: ParseNode) => void>}
30040
+ */
30041
+ export declare function deserializeIntoFileStorageContainerCustomPropertyDictionary(fileStorageContainerCustomPropertyDictionary?: Partial<FileStorageContainerCustomPropertyDictionary> | undefined): Record<string, (node: ParseNode) => void>;
30042
+ /**
30043
+ * The deserialization information for the current model
30044
+ * @returns {Record<string, (node: ParseNode) => void>}
30045
+ */
30046
+ export declare function deserializeIntoFileStorageContainerViewpoint(fileStorageContainerViewpoint?: Partial<FileStorageContainerViewpoint> | undefined): Record<string, (node: ParseNode) => void>;
29639
30047
  /**
29640
30048
  * The deserialization information for the current model
29641
30049
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -30376,11 +30784,6 @@ export declare function deserializeIntoJoinMeetingIdMeetingInfo(joinMeetingIdMee
30376
30784
  * @returns {Record<string, (node: ParseNode) => void>}
30377
30785
  */
30378
30786
  export declare function deserializeIntoJoinMeetingIdSettings(joinMeetingIdSettings?: Partial<JoinMeetingIdSettings> | undefined): Record<string, (node: ParseNode) => void>;
30379
- /**
30380
- * The deserialization information for the current model
30381
- * @returns {Record<string, (node: ParseNode) => void>}
30382
- */
30383
- export declare function deserializeIntoJson(json?: Partial<Json> | undefined): Record<string, (node: ParseNode) => void>;
30384
30787
  /**
30385
30788
  * The deserialization information for the current model
30386
30789
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -31536,6 +31939,36 @@ export declare function deserializeIntoOmaSettingString(omaSettingString?: Parti
31536
31939
  * @returns {Record<string, (node: ParseNode) => void>}
31537
31940
  */
31538
31941
  export declare function deserializeIntoOmaSettingStringXml(omaSettingStringXml?: Partial<OmaSettingStringXml> | undefined): Record<string, (node: ParseNode) => void>;
31942
+ /**
31943
+ * The deserialization information for the current model
31944
+ * @returns {Record<string, (node: ParseNode) => void>}
31945
+ */
31946
+ export declare function deserializeIntoOnAttributeCollectionExternalUsersSelfServiceSignUp(onAttributeCollectionExternalUsersSelfServiceSignUp?: Partial<OnAttributeCollectionExternalUsersSelfServiceSignUp> | undefined): Record<string, (node: ParseNode) => void>;
31947
+ /**
31948
+ * The deserialization information for the current model
31949
+ * @returns {Record<string, (node: ParseNode) => void>}
31950
+ */
31951
+ export declare function deserializeIntoOnAttributeCollectionHandler(onAttributeCollectionHandler?: Partial<OnAttributeCollectionHandler> | undefined): Record<string, (node: ParseNode) => void>;
31952
+ /**
31953
+ * The deserialization information for the current model
31954
+ * @returns {Record<string, (node: ParseNode) => void>}
31955
+ */
31956
+ export declare function deserializeIntoOnAttributeCollectionListener(onAttributeCollectionListener?: Partial<OnAttributeCollectionListener> | undefined): Record<string, (node: ParseNode) => void>;
31957
+ /**
31958
+ * The deserialization information for the current model
31959
+ * @returns {Record<string, (node: ParseNode) => void>}
31960
+ */
31961
+ export declare function deserializeIntoOnAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp(onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp?: Partial<OnAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp> | undefined): Record<string, (node: ParseNode) => void>;
31962
+ /**
31963
+ * The deserialization information for the current model
31964
+ * @returns {Record<string, (node: ParseNode) => void>}
31965
+ */
31966
+ export declare function deserializeIntoOnAuthenticationMethodLoadStartHandler(onAuthenticationMethodLoadStartHandler?: Partial<OnAuthenticationMethodLoadStartHandler> | undefined): Record<string, (node: ParseNode) => void>;
31967
+ /**
31968
+ * The deserialization information for the current model
31969
+ * @returns {Record<string, (node: ParseNode) => void>}
31970
+ */
31971
+ export declare function deserializeIntoOnAuthenticationMethodLoadStartListener(onAuthenticationMethodLoadStartListener?: Partial<OnAuthenticationMethodLoadStartListener> | undefined): Record<string, (node: ParseNode) => void>;
31539
31972
  /**
31540
31973
  * The deserialization information for the current model
31541
31974
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -31616,6 +32049,21 @@ export declare function deserializeIntoOnenoteSection(onenoteSection?: Partial<O
31616
32049
  * @returns {Record<string, (node: ParseNode) => void>}
31617
32050
  */
31618
32051
  export declare function deserializeIntoOnenoteSectionCollectionResponse(onenoteSectionCollectionResponse?: Partial<OnenoteSectionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
32052
+ /**
32053
+ * The deserialization information for the current model
32054
+ * @returns {Record<string, (node: ParseNode) => void>}
32055
+ */
32056
+ export declare function deserializeIntoOnInteractiveAuthFlowStartExternalUsersSelfServiceSignUp(onInteractiveAuthFlowStartExternalUsersSelfServiceSignUp?: Partial<OnInteractiveAuthFlowStartExternalUsersSelfServiceSignUp> | undefined): Record<string, (node: ParseNode) => void>;
32057
+ /**
32058
+ * The deserialization information for the current model
32059
+ * @returns {Record<string, (node: ParseNode) => void>}
32060
+ */
32061
+ export declare function deserializeIntoOnInteractiveAuthFlowStartHandler(onInteractiveAuthFlowStartHandler?: Partial<OnInteractiveAuthFlowStartHandler> | undefined): Record<string, (node: ParseNode) => void>;
32062
+ /**
32063
+ * The deserialization information for the current model
32064
+ * @returns {Record<string, (node: ParseNode) => void>}
32065
+ */
32066
+ export declare function deserializeIntoOnInteractiveAuthFlowStartListener(onInteractiveAuthFlowStartListener?: Partial<OnInteractiveAuthFlowStartListener> | undefined): Record<string, (node: ParseNode) => void>;
31619
32067
  /**
31620
32068
  * The deserialization information for the current model
31621
32069
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -31706,6 +32154,21 @@ export declare function deserializeIntoOnTokenIssuanceStartListener(onTokenIssua
31706
32154
  * @returns {Record<string, (node: ParseNode) => void>}
31707
32155
  */
31708
32156
  export declare function deserializeIntoOnTokenIssuanceStartReturnClaim(onTokenIssuanceStartReturnClaim?: Partial<OnTokenIssuanceStartReturnClaim> | undefined): Record<string, (node: ParseNode) => void>;
32157
+ /**
32158
+ * The deserialization information for the current model
32159
+ * @returns {Record<string, (node: ParseNode) => void>}
32160
+ */
32161
+ export declare function deserializeIntoOnUserCreateStartExternalUsersSelfServiceSignUp(onUserCreateStartExternalUsersSelfServiceSignUp?: Partial<OnUserCreateStartExternalUsersSelfServiceSignUp> | undefined): Record<string, (node: ParseNode) => void>;
32162
+ /**
32163
+ * The deserialization information for the current model
32164
+ * @returns {Record<string, (node: ParseNode) => void>}
32165
+ */
32166
+ export declare function deserializeIntoOnUserCreateStartHandler(onUserCreateStartHandler?: Partial<OnUserCreateStartHandler> | undefined): Record<string, (node: ParseNode) => void>;
32167
+ /**
32168
+ * The deserialization information for the current model
32169
+ * @returns {Record<string, (node: ParseNode) => void>}
32170
+ */
32171
+ export declare function deserializeIntoOnUserCreateStartListener(onUserCreateStartListener?: Partial<OnUserCreateStartListener> | undefined): Record<string, (node: ParseNode) => void>;
31709
32172
  /**
31710
32173
  * The deserialization information for the current model
31711
32174
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -31836,6 +32299,11 @@ export declare function deserializeIntoOutlookItem(outlookItem?: Partial<Outlook
31836
32299
  * @returns {Record<string, (node: ParseNode) => void>}
31837
32300
  */
31838
32301
  export declare function deserializeIntoOutlookUser(outlookUser?: Partial<OutlookUser> | undefined): Record<string, (node: ParseNode) => void>;
32302
+ /**
32303
+ * The deserialization information for the current model
32304
+ * @returns {Record<string, (node: ParseNode) => void>}
32305
+ */
32306
+ export declare function deserializeIntoOutOfBoxExperienceSetting(outOfBoxExperienceSetting?: Partial<OutOfBoxExperienceSetting> | undefined): Record<string, (node: ParseNode) => void>;
31839
32307
  /**
31840
32308
  * The deserialization information for the current model
31841
32309
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -33671,6 +34139,11 @@ export declare function deserializeIntoSingleValueLegacyExtendedProperty(singleV
33671
34139
  * @returns {Record<string, (node: ParseNode) => void>}
33672
34140
  */
33673
34141
  export declare function deserializeIntoSite(site?: Partial<Site> | undefined): Record<string, (node: ParseNode) => void>;
34142
+ /**
34143
+ * The deserialization information for the current model
34144
+ * @returns {Record<string, (node: ParseNode) => void>}
34145
+ */
34146
+ export declare function deserializeIntoSiteArchivalDetails(siteArchivalDetails?: Partial<SiteArchivalDetails> | undefined): Record<string, (node: ParseNode) => void>;
33674
34147
  /**
33675
34148
  * The deserialization information for the current model
33676
34149
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -33791,6 +34264,11 @@ export declare function deserializeIntoStartHoldMusicOperation(startHoldMusicOpe
33791
34264
  * @returns {Record<string, (node: ParseNode) => void>}
33792
34265
  */
33793
34266
  export declare function deserializeIntoStopHoldMusicOperation(stopHoldMusicOperation?: Partial<StopHoldMusicOperation> | undefined): Record<string, (node: ParseNode) => void>;
34267
+ /**
34268
+ * The deserialization information for the current model
34269
+ * @returns {Record<string, (node: ParseNode) => void>}
34270
+ */
34271
+ export declare function deserializeIntoStorage(storage?: Partial<Storage> | undefined): Record<string, (node: ParseNode) => void>;
33794
34272
  /**
33795
34273
  * The deserialization information for the current model
33796
34274
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -35631,6 +36109,16 @@ export declare function deserializeIntoWindowsAppXAppAssignmentSettings(windowsA
35631
36109
  * @returns {Record<string, (node: ParseNode) => void>}
35632
36110
  */
35633
36111
  export declare function deserializeIntoWindowsAppXCollectionResponse(windowsAppXCollectionResponse?: Partial<WindowsAppXCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
36112
+ /**
36113
+ * The deserialization information for the current model
36114
+ * @returns {Record<string, (node: ParseNode) => void>}
36115
+ */
36116
+ export declare function deserializeIntoWindowsAutopilotDeploymentProfile(windowsAutopilotDeploymentProfile?: Partial<WindowsAutopilotDeploymentProfile> | undefined): Record<string, (node: ParseNode) => void>;
36117
+ /**
36118
+ * The deserialization information for the current model
36119
+ * @returns {Record<string, (node: ParseNode) => void>}
36120
+ */
36121
+ export declare function deserializeIntoWindowsAutopilotDeploymentProfileAssignment(windowsAutopilotDeploymentProfileAssignment?: Partial<WindowsAutopilotDeploymentProfileAssignment> | undefined): Record<string, (node: ParseNode) => void>;
35634
36122
  /**
35635
36123
  * The deserialization information for the current model
35636
36124
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -36271,6 +36759,11 @@ export declare function deserializeIntoX509CertificateAuthenticationMethodConfig
36271
36759
  * @returns {Record<string, (node: ParseNode) => void>}
36272
36760
  */
36273
36761
  export declare function deserializeIntoX509CertificateAuthenticationModeConfiguration(x509CertificateAuthenticationModeConfiguration?: Partial<X509CertificateAuthenticationModeConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
36762
+ /**
36763
+ * The deserialization information for the current model
36764
+ * @returns {Record<string, (node: ParseNode) => void>}
36765
+ */
36766
+ export declare function deserializeIntoX509CertificateCombinationConfiguration(x509CertificateCombinationConfiguration?: Partial<X509CertificateCombinationConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
36274
36767
  /**
36275
36768
  * The deserialization information for the current model
36276
36769
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -36337,7 +36830,7 @@ export interface DetectedAppCollectionResponse extends BaseCollectionPaginationC
36337
36830
  export type DetectedAppPlatformType = (typeof DetectedAppPlatformTypeObject)[keyof typeof DetectedAppPlatformTypeObject];
36338
36831
  export interface Device extends DirectoryObject, Parsable {
36339
36832
  /**
36340
- * true if the account is enabled; otherwise, false. Required. Default is true. Supports $filter (eq, ne, not, in). Only callers in Global Administrator and Cloud Device Administrator roles can set this property.
36833
+ * true if the account is enabled; otherwise, false. Required. Default is true. Supports $filter (eq, ne, not, in). Only callers with at least the Cloud Device Administrator role can set this property.
36341
36834
  */
36342
36835
  accountEnabled?: boolean;
36343
36836
  /**
@@ -36397,7 +36890,7 @@ export interface Device extends DirectoryObject, Parsable {
36397
36890
  */
36398
36891
  isManaged?: boolean;
36399
36892
  /**
36400
- * true if the device is rooted; false if the device is jail-broken. This property can only be updated by Intune.
36893
+ * true if the device is rooted or jail-broken. This property can only be updated by Intune.
36401
36894
  */
36402
36895
  isRooted?: boolean;
36403
36896
  /**
@@ -39784,7 +40277,7 @@ export interface EducationAssignmentDefaults extends Entity, Parsable {
39784
40277
  */
39785
40278
  addedStudentAction?: EducationAddedStudentAction;
39786
40279
  /**
39787
- * Optional field to control adding assignments to students' and teachers' calendars when the assignment is published. The possible values are: none, studentsAndPublisher, studentsAndTeamOwners, unknownFutureValue, and studentsOnly. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: studentsOnly. The default value is none.
40280
+ * Optional field to control adding assignments to students' and teachers' calendars when the assignment is published. The possible values are: none, studentsAndPublisher, studentsAndTeamOwners, unknownFutureValue, and studentsOnly. You must use the Prefer: include-unknown-enum-members request header to get the following value in this evolvable enum: studentsOnly. The default value is none.
39788
40281
  */
39789
40282
  addToCalendarAction?: EducationAddToCalendarOptions;
39790
40283
  /**
@@ -40519,11 +41012,11 @@ export interface EducationStudent extends AdditionalDataHolder, BackedModel, Par
40519
41012
  }
40520
41013
  export interface EducationSubmission extends Entity, Parsable {
40521
41014
  /**
40522
- * The excusedBy property
41015
+ * The user that marked the submission as excused.
40523
41016
  */
40524
41017
  excusedBy?: IdentitySet;
40525
41018
  /**
40526
- * The excusedDateTime property
41019
+ * 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.
40527
41020
  */
40528
41021
  excusedDateTime?: Date;
40529
41022
  /**
@@ -40559,7 +41052,7 @@ export interface EducationSubmission extends Entity, Parsable {
40559
41052
  */
40560
41053
  returnedDateTime?: Date;
40561
41054
  /**
40562
- * Read-only. Possible values are: working, submitted, returned, and reassigned. Note that you must use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: reassigned.
41055
+ * Read-only. Possible values are: excused, reassigned, returned, submitted and working. You must use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: excused and reassigned.
40563
41056
  */
40564
41057
  status?: EducationSubmissionStatus;
40565
41058
  /**
@@ -40770,7 +41263,7 @@ export interface EducationUser extends Entity, Parsable {
40770
41263
  */
40771
41264
  mobilePhone?: string;
40772
41265
  /**
40773
- * The officeLocation property
41266
+ * The office location for the user.
40774
41267
  */
40775
41268
  officeLocation?: string;
40776
41269
  /**
@@ -40798,7 +41291,7 @@ export interface EducationUser extends Entity, Parsable {
40798
41291
  */
40799
41292
  provisionedPlans?: ProvisionedPlan[];
40800
41293
  /**
40801
- * The refreshTokensValidFromDateTime property
41294
+ * Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application needs to acquire a new refresh token by requesting the authorized endpoint. Returned only on $select. Read-only.
40802
41295
  */
40803
41296
  refreshTokensValidFromDateTime?: Date;
40804
41297
  /**
@@ -41813,6 +42306,30 @@ export interface ExternalLink extends AdditionalDataHolder, BackedModel, Parsabl
41813
42306
  }
41814
42307
  export interface ExternalSponsors extends Parsable, SubjectSet {
41815
42308
  }
42309
+ export interface ExternalUsersSelfServiceSignUpEventsFlow extends AuthenticationEventsFlow, Parsable {
42310
+ /**
42311
+ * The configuration for what to invoke when attributes are ready to be collected from the user.
42312
+ */
42313
+ onAttributeCollection?: OnAttributeCollectionHandler;
42314
+ /**
42315
+ * 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.
42316
+ */
42317
+ onAuthenticationMethodLoadStart?: OnAuthenticationMethodLoadStartHandler;
42318
+ /**
42319
+ * Required. The configuration for what to invoke when an authentication flow is ready to be initiated.
42320
+ */
42321
+ onInteractiveAuthFlowStart?: OnInteractiveAuthFlowStartHandler;
42322
+ /**
42323
+ * The configuration for what to invoke during user creation.
42324
+ */
42325
+ onUserCreateStart?: OnUserCreateStartHandler;
42326
+ }
42327
+ export interface ExternalUsersSelfServiceSignUpEventsFlowCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
42328
+ /**
42329
+ * The value property
42330
+ */
42331
+ value?: ExternalUsersSelfServiceSignUpEventsFlow[];
42332
+ }
41816
42333
  export interface ExtractSensitivityLabelsResult extends AdditionalDataHolder, BackedModel, Parsable {
41817
42334
  /**
41818
42335
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -42148,6 +42665,77 @@ export interface FileSecurityState extends AdditionalDataHolder, BackedModel, Pa
42148
42665
  */
42149
42666
  riskScore?: string;
42150
42667
  }
42668
+ export interface FileStorage extends Entity, Parsable {
42669
+ /**
42670
+ * The containers property
42671
+ */
42672
+ containers?: FileStorageContainer[];
42673
+ }
42674
+ export interface FileStorageContainer extends Entity, Parsable {
42675
+ /**
42676
+ * Container type ID of the fileStorageContainer. For details about container types, see Container Types. Each container must have only one container type. Read-only.
42677
+ */
42678
+ containerTypeId?: Guid;
42679
+ /**
42680
+ * Date and time of the fileStorageContainer creation. Read-only.
42681
+ */
42682
+ createdDateTime?: Date;
42683
+ /**
42684
+ * Custom property collection for the fileStorageContainer. Read-write.
42685
+ */
42686
+ customProperties?: FileStorageContainerCustomPropertyDictionary;
42687
+ /**
42688
+ * Provides a user-visible description of the fileStorageContainer. Read-write.
42689
+ */
42690
+ description?: string;
42691
+ /**
42692
+ * The display name of the fileStorageContainer. Read-write.
42693
+ */
42694
+ displayName?: string;
42695
+ /**
42696
+ * The drive of the resource fileStorageContainer. Read-only.
42697
+ */
42698
+ drive?: Drive;
42699
+ /**
42700
+ * The set of permissions for users in the fileStorageContainer. Permission for each user is set by the roles property. The possible values are: reader, writer, manager, and owner. Read-write.
42701
+ */
42702
+ permissions?: Permission[];
42703
+ /**
42704
+ * Status of the fileStorageContainer. Containers are created as inactive and require activation. Inactive containers are subjected to automatic deletion in 24 hours. The possible values are: inactive, active. Read-only.
42705
+ */
42706
+ status?: FileStorageContainerStatus;
42707
+ /**
42708
+ * Data specific to the current user. Read-only.
42709
+ */
42710
+ viewpoint?: FileStorageContainerViewpoint;
42711
+ }
42712
+ export interface FileStorageContainerCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
42713
+ /**
42714
+ * The value property
42715
+ */
42716
+ value?: FileStorageContainer[];
42717
+ }
42718
+ export interface FileStorageContainerCustomPropertyDictionary extends Dictionary, Parsable {
42719
+ }
42720
+ export type FileStorageContainerStatus = (typeof FileStorageContainerStatusObject)[keyof typeof FileStorageContainerStatusObject];
42721
+ export interface FileStorageContainerViewpoint extends AdditionalDataHolder, BackedModel, Parsable {
42722
+ /**
42723
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
42724
+ */
42725
+ additionalData?: Record<string, unknown>;
42726
+ /**
42727
+ * Stores model information.
42728
+ */
42729
+ backingStoreEnabled?: boolean;
42730
+ /**
42731
+ * The current user's effective role. Read-only.
42732
+ */
42733
+ effectiveRole?: string;
42734
+ /**
42735
+ * The OdataType property
42736
+ */
42737
+ odataType?: string;
42738
+ }
42151
42739
  export interface FileSystemInfo extends AdditionalDataHolder, BackedModel, Parsable {
42152
42740
  /**
42153
42741
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -42469,7 +43057,7 @@ export interface GovernanceInsightCollectionResponse extends BaseCollectionPagin
42469
43057
  }
42470
43058
  export interface Group extends DirectoryObject, Parsable {
42471
43059
  /**
42472
- * The list of users or groups allowed to create posts or calendar events in this group. If this list is non-empty, then only users or groups listed here are allowed to post.
43060
+ * The list of users or groups allowed to create posts or calendar events in this group. If this list is nonempty, then only users or groups listed here are allowed to post.
42473
43061
  */
42474
43062
  acceptedSenders?: DirectoryObject[];
42475
43063
  /**
@@ -42477,7 +43065,7 @@ export interface Group extends DirectoryObject, Parsable {
42477
43065
  */
42478
43066
  allowExternalSenders?: boolean;
42479
43067
  /**
42480
- * Represents the app roles a group has been granted for an application. Supports $expand.
43068
+ * Represents the app roles granted to a group for an application. Supports $expand.
42481
43069
  */
42482
43070
  appRoleAssignments?: AppRoleAssignment[];
42483
43071
  /**
@@ -42489,7 +43077,7 @@ export interface Group extends DirectoryObject, Parsable {
42489
43077
  */
42490
43078
  assignedLicenses?: AssignedLicense[];
42491
43079
  /**
42492
- * Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).
43080
+ * Indicates if new members added to the group are autosubscribed to receive email notifications. You can set this property in a PATCH request for the group; don't set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).
42493
43081
  */
42494
43082
  autoSubscribeNewMembers?: boolean;
42495
43083
  /**
@@ -42501,7 +43089,7 @@ export interface Group extends DirectoryObject, Parsable {
42501
43089
  */
42502
43090
  calendarView?: Event[];
42503
43091
  /**
42504
- * Describes a classification for the group (such as low, medium or high business impact). Valid values for this property are defined by creating a ClassificationList setting value, based on the template definition.Returned by default. Supports $filter (eq, ne, not, ge, le, startsWith).
43092
+ * Describes a classification for the group (such as low, medium, or high business impact). Valid values for this property are defined by creating a ClassificationList setting value, based on the template definition.Returned by default. Supports $filter (eq, ne, not, ge, le, startsWith).
42505
43093
  */
42506
43094
  classification?: string;
42507
43095
  /**
@@ -42509,11 +43097,11 @@ export interface Group extends DirectoryObject, Parsable {
42509
43097
  */
42510
43098
  conversations?: Conversation[];
42511
43099
  /**
42512
- * Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group is created. 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. Returned by default. Read-only.
43100
+ * Timestamp of when the group was created. The value can't be modified and is automatically populated when the group is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on January 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Read-only.
42513
43101
  */
42514
43102
  createdDateTime?: Date;
42515
43103
  /**
42516
- * The user (or application) that created the group. NOTE: This is not set if the user is an administrator. Read-only.
43104
+ * The user (or application) that created the group. NOTE: This property isn't set if the user is an administrator. Read-only.
42517
43105
  */
42518
43106
  createdOnBehalfOf?: DirectoryObject;
42519
43107
  /**
@@ -42521,7 +43109,7 @@ export interface Group extends DirectoryObject, Parsable {
42521
43109
  */
42522
43110
  description?: string;
42523
43111
  /**
42524
- * The display name for the group. This property is required when a group is created and cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby.
43112
+ * The display name for the group. This property is required when a group is created and can't be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby.
42525
43113
  */
42526
43114
  displayName?: string;
42527
43115
  /**
@@ -42537,7 +43125,7 @@ export interface Group extends DirectoryObject, Parsable {
42537
43125
  */
42538
43126
  events?: Event[];
42539
43127
  /**
42540
- * Timestamp of when the group is set to expire. It is null for security groups, but for Microsoft 365 groups, it represents when the group is set to expire as defined in the groupLifecyclePolicy. 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. Returned by default. Supports $filter (eq, ne, not, ge, le, in). Read-only.
43128
+ * Timestamp of when the group is set to expire. It's null for security groups, but for Microsoft 365 groups, it represents when the group is set to expire as defined in the groupLifecyclePolicy. 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.
42541
43129
  */
42542
43130
  expirationDateTime?: Date;
42543
43131
  /**
@@ -42557,11 +43145,11 @@ export interface Group extends DirectoryObject, Parsable {
42557
43145
  */
42558
43146
  hasMembersWithLicenseErrors?: boolean;
42559
43147
  /**
42560
- * True if the group is not displayed in certain parts of the Outlook UI: the Address Book, address lists for selecting message recipients, and the Browse Groups dialog for searching groups; otherwise, false. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).
43148
+ * True if the group isn't displayed in certain parts of the Outlook UI: the Address Book, address lists for selecting message recipients, and the Browse Groups dialog for searching groups; otherwise, false. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).
42561
43149
  */
42562
43150
  hideFromAddressLists?: boolean;
42563
43151
  /**
42564
- * True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web; otherwise, false. The default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).
43152
+ * True if the group isn't displayed in Outlook clients, such as Outlook for Windows and Outlook on the web; otherwise, false. The default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).
42565
43153
  */
42566
43154
  hideFromOutlookClients?: boolean;
42567
43155
  /**
@@ -42569,7 +43157,7 @@ export interface Group extends DirectoryObject, Parsable {
42569
43157
  */
42570
43158
  isArchived?: boolean;
42571
43159
  /**
42572
- * Indicates whether this group can be assigned to a Microsoft Entra role. Optional. This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true, visibility must be Hidden, and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global Administrator and Privileged Role Administrator roles can set this property. The caller must also be assigned the RoleManagement.ReadWrite.Directory permission to set this property or update the membership of such groups. For more, see Using a group to manage Microsoft Entra role assignmentsUsing this feature requires a Microsoft Entra ID P1 license. Returned by default. Supports $filter (eq, ne, not).
43160
+ * Indicates whether this group can be assigned to a Microsoft Entra role. Optional. This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true, visibility must be Hidden, and the group can't be a dynamic group (that is, groupTypes can't contain DynamicMembership). Only callers with at least the Privileged Role Administrator role can set this property. The caller must also be assigned the RoleManagement.ReadWrite.Directory permission to set this property or update the membership of such groups. For more, see Using a group to manage Microsoft Entra role assignmentsUsing this feature requires a Microsoft Entra ID P1 license. Returned by default. Supports $filter (eq, ne, not).
42573
43161
  */
42574
43162
  isAssignableToRole?: boolean;
42575
43163
  /**
@@ -42589,7 +43177,7 @@ export interface Group extends DirectoryObject, Parsable {
42589
43177
  */
42590
43178
  mailEnabled?: boolean;
42591
43179
  /**
42592
- * The mail alias for the group, unique for Microsoft 365 groups in the organization. Maximum length is 64 characters. This property can contain only characters in the ASCII character set 0 - 127 except the following: @ () / [] ' ; : <> , SPACE. Required. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).
43180
+ * The mail alias for the group, unique for Microsoft 365 groups in the organization. Maximum length is 64 characters. This property can contain only characters in the ASCII character set 0 - 127 except the following characters: @ () / [] ' ; : <> , SPACE. Required. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).
42593
43181
  */
42594
43182
  mailNickname?: string;
42595
43183
  /**
@@ -42621,7 +43209,7 @@ export interface Group extends DirectoryObject, Parsable {
42621
43209
  */
42622
43210
  onPremisesDomainName?: string;
42623
43211
  /**
42624
- * Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter (eq, ne, not, ge, le, in).
43212
+ * Indicates the last time at which the group was synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on January 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Read-only. Supports $filter (eq, ne, not, ge, le, in).
42625
43213
  */
42626
43214
  onPremisesLastSyncDateTime?: Date;
42627
43215
  /**
@@ -42637,15 +43225,15 @@ export interface Group extends DirectoryObject, Parsable {
42637
43225
  */
42638
43226
  onPremisesSamAccountName?: string;
42639
43227
  /**
42640
- * Contains the on-premises security identifier (SID) for the group synchronized from on-premises to the cloud. Returned by default. Supports $filter (eq including on null values). Read-only.
43228
+ * Contains the on-premises security identifier (SID) for the group synchronized from on-premises to the cloud. Read-only. Returned by default. Supports $filter (eq including on null values). Read-only.
42641
43229
  */
42642
43230
  onPremisesSecurityIdentifier?: string;
42643
43231
  /**
42644
- * true if this group is synced from an on-premises directory; false if this group was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default). Returned by default. Read-only. Supports $filter (eq, ne, not, in, and eq on null values).
43232
+ * true if this group is synced from an on-premises directory; false if this group was originally synced from an on-premises directory but is no longer synced; null if this object has never synced from an on-premises directory (default). Returned by default. Read-only. Supports $filter (eq, ne, not, in, and eq on null values).
42645
43233
  */
42646
43234
  onPremisesSyncEnabled?: boolean;
42647
43235
  /**
42648
- * The owners of the group. Limited to 100 owners. Nullable. If this property is not specified when creating a Microsoft 365 group, the calling user is automatically assigned as the group owner. Supports $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1). Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,'Role')&$select=id,displayName&$expand=owners($select=id,userPrincipalName,displayName).
43236
+ * The owners of the group. Limited to 100 owners. Nullable. If this property isn't specified when creating a Microsoft 365 group, the calling user is automatically assigned as the group owner. Supports $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1). Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,'Role')&$select=id,displayName&$expand=owners($select=id,userPrincipalName,displayName).
42649
43237
  */
42650
43238
  owners?: DirectoryObject[];
42651
43239
  /**
@@ -42665,7 +43253,7 @@ export interface Group extends DirectoryObject, Parsable {
42665
43253
  */
42666
43254
  planner?: PlannerGroup;
42667
43255
  /**
42668
- * The preferred data location for the Microsoft 365 group. By default, the group inherits the group creator's preferred data location. To set this property, the calling app must be granted the Directory.ReadWrite.All permission and the user be assigned one of the following Microsoft Entra roles: Global Administrator User Account Administrator Directory Writer Exchange Administrator SharePoint Administrator For more information about this property, see OneDrive Online Multi-Geo. Nullable. Returned by default.
43256
+ * The preferred data location for the Microsoft 365 group. By default, the group inherits the group creator's preferred data location. To set this property, the calling app must be granted the Directory.ReadWrite.All permission and the user be assigned at least one of the following Microsoft Entra roles: User Account Administrator Directory Writer Exchange Administrator SharePoint Administrator For more information about this property, see OneDrive Online Multi-Geo. Nullable. Returned by default.
42669
43257
  */
42670
43258
  preferredDataLocation?: string;
42671
43259
  /**
@@ -42681,7 +43269,7 @@ export interface Group extends DirectoryObject, Parsable {
42681
43269
  */
42682
43270
  rejectedSenders?: DirectoryObject[];
42683
43271
  /**
42684
- * Timestamp of when the group was last renewed. This cannot 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 Jan 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Supports $filter (eq, ne, not, ge, le, in). Read-only.
43272
+ * 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.
42685
43273
  */
42686
43274
  renewedDateTime?: Date;
42687
43275
  /**
@@ -42689,15 +43277,15 @@ export interface Group extends DirectoryObject, Parsable {
42689
43277
  */
42690
43278
  securityEnabled?: boolean;
42691
43279
  /**
42692
- * Security identifier of the group, used in Windows scenarios. Returned by default.
43280
+ * Security identifier of the group, used in Windows scenarios. Read-only. Returned by default.
42693
43281
  */
42694
43282
  securityIdentifier?: string;
42695
43283
  /**
42696
- * Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance).
43284
+ * Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a group object. Supports $filter (eq, not, for isResolved and serviceInstance).
42697
43285
  */
42698
43286
  serviceProvisioningErrors?: ServiceProvisioningError[];
42699
43287
  /**
42700
- * Settings that can govern this group's behavior, like whether members can invite guest users to the group. Nullable.
43288
+ * Settings that can govern this group's behavior, like whether members can invite guests to the group. Nullable.
42701
43289
  */
42702
43290
  settings?: GroupSetting[];
42703
43291
  /**
@@ -42709,7 +43297,7 @@ export interface Group extends DirectoryObject, Parsable {
42709
43297
  */
42710
43298
  team?: Team;
42711
43299
  /**
42712
- * Specifies a Microsoft 365 group's color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange or Red. Returned by default.
43300
+ * Specifies a Microsoft 365 group's color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange, or Red. Returned by default.
42713
43301
  */
42714
43302
  theme?: string;
42715
43303
  /**
@@ -42729,11 +43317,11 @@ export interface Group extends DirectoryObject, Parsable {
42729
43317
  */
42730
43318
  uniqueName?: string;
42731
43319
  /**
42732
- * Count of conversations that have received new posts since the signed-in user last visited the group. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).
43320
+ * Count of conversations that received new posts since the signed-in user last visited the group. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).
42733
43321
  */
42734
43322
  unseenCount?: number;
42735
43323
  /**
42736
- * Specifies the group join policy and group content visibility for groups. Possible values are: Private, Public, or HiddenMembership. HiddenMembership can be set only for Microsoft 365 groups when the groups are created. It can't be updated later. Other values of visibility can be updated after group creation. If visibility value is not specified during group creation on Microsoft Graph, a security group is created as Private by default, and the Microsoft 365 group is Public. Groups assignable to roles are always Private. To learn more, see group visibility options. Returned by default. Nullable.
43324
+ * Specifies the group join policy and group content visibility for groups. Possible values are: Private, Public, or HiddenMembership. HiddenMembership can be set only for Microsoft 365 groups when the groups are created. It can't be updated later. Other values of visibility can be updated after group creation. If visibility value isn't specified during group creation on Microsoft Graph, a security group is created as Private by default, and the Microsoft 365 group is Public. Groups assignable to roles are always Private. To learn more, see group visibility options. Returned by default. Nullable.
42737
43325
  */
42738
43326
  visibility?: string;
42739
43327
  }
@@ -43002,11 +43590,11 @@ export interface Identity extends AdditionalDataHolder, BackedModel, Parsable {
43002
43590
  */
43003
43591
  backingStoreEnabled?: boolean;
43004
43592
  /**
43005
- * The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won't show up as having changed when using delta.
43593
+ * The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as having changed when using delta.
43006
43594
  */
43007
43595
  displayName?: string;
43008
43596
  /**
43009
- * Unique identifier for the identity.
43597
+ * Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn't included in the response.
43010
43598
  */
43011
43599
  id?: string;
43012
43600
  /**
@@ -43045,6 +43633,10 @@ export interface IdentityContainer extends Entity, Parsable {
43045
43633
  * Represents listeners for custom authentication extension events in Azure AD for workforce and customers.
43046
43634
  */
43047
43635
  authenticationEventListeners?: AuthenticationEventListener[];
43636
+ /**
43637
+ * Represents the entry point for self-service sign-up and sign-in user flows in both Microsoft Entra workforce and external tenants.
43638
+ */
43639
+ authenticationEventsFlows?: AuthenticationEventsFlow[];
43048
43640
  /**
43049
43641
  * Represents entry point for B2X/self-service sign-up identity userflows.
43050
43642
  */
@@ -43234,7 +43826,7 @@ export interface IdentityUserFlowAttribute extends Entity, Parsable {
43234
43826
  */
43235
43827
  dataType?: IdentityUserFlowAttributeDataType;
43236
43828
  /**
43237
- * The description of the user flow attribute that's shown to the user at the time of sign-up.
43829
+ * The description of the user flow attribute that's shown to the user at the time of sign up.
43238
43830
  */
43239
43831
  description?: string;
43240
43832
  /**
@@ -43875,7 +44467,7 @@ export interface InvestigationSecurityState extends AdditionalDataHolder, Backed
43875
44467
  }
43876
44468
  export interface Invitation extends Entity, Parsable {
43877
44469
  /**
43878
- * The user created as part of the invitation creation. Read-Only
44470
+ * The user created as part of the invitation creation. Read-only. The id property is required in the request body to reset a redemption status.
43879
44471
  */
43880
44472
  invitedUser?: User;
43881
44473
  /**
@@ -43887,7 +44479,7 @@ export interface Invitation extends Entity, Parsable {
43887
44479
  */
43888
44480
  invitedUserEmailAddress?: string;
43889
44481
  /**
43890
- * Additional configuration for the message being sent to the invited user, including customizing message text, language, and cc recipient list.
44482
+ * Contains configuration for the message being sent to the invited user, including customizing message text, language, and cc recipient list.
43891
44483
  */
43892
44484
  invitedUserMessageInfo?: InvitedUserMessageInfo;
43893
44485
  /**
@@ -43903,11 +44495,11 @@ export interface Invitation extends Entity, Parsable {
43903
44495
  */
43904
44496
  inviteRedeemUrl?: string;
43905
44497
  /**
43906
- * The URL the user should be redirected to once the invitation is redeemed. Required.
44498
+ * The URL the user should be redirected to after the invitation is redeemed. Required.
43907
44499
  */
43908
44500
  inviteRedirectUrl?: string;
43909
44501
  /**
43910
- * Reset the user's redemption status and reinvite a user while retaining their user identifier, group memberships, and app assignments. This property allows you to enable a user to sign-in using a different email address from the one in the previous invitation. For more information about using this property, see Reset redemption status for a guest user.
44502
+ * Reset the user's redemption status and reinvite a user while retaining their user identifier, group memberships, and app assignments. This property allows you to enable a user to sign-in using a different email address from the one in the previous invitation. When true, the invitedUser/id relationship is required. For more information about using this property, see Reset redemption status for a guest user.
43911
44503
  */
43912
44504
  resetRedemption?: boolean;
43913
44505
  /**
@@ -45514,7 +46106,7 @@ export interface ItemReference extends AdditionalDataHolder, BackedModel, Parsab
45514
46106
  */
45515
46107
  odataType?: string;
45516
46108
  /**
45517
- * Path that can be used to navigate to the item. Read-only.
46109
+ * Percent-encoded path that can be used to navigate to the item. Read-only.
45518
46110
  */
45519
46111
  path?: string;
45520
46112
  /**
@@ -45588,20 +46180,6 @@ export interface JoinMeetingIdSettings extends AdditionalDataHolder, BackedModel
45588
46180
  */
45589
46181
  passcode?: string;
45590
46182
  }
45591
- export interface Json extends AdditionalDataHolder, BackedModel, Parsable {
45592
- /**
45593
- * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
45594
- */
45595
- additionalData?: Record<string, unknown>;
45596
- /**
45597
- * Stores model information.
45598
- */
45599
- backingStoreEnabled?: boolean;
45600
- /**
45601
- * The OdataType property
45602
- */
45603
- odataType?: string;
45604
- }
45605
46183
  export interface KeyCredential extends AdditionalDataHolder, BackedModel, Parsable {
45606
46184
  /**
45607
46185
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -45658,7 +46236,7 @@ export interface KeyCredentialConfiguration extends AdditionalDataHolder, Backed
45658
46236
  */
45659
46237
  backingStoreEnabled?: boolean;
45660
46238
  /**
45661
- * The maxLifetime property
46239
+ * Value that can be used as the maximum duration in days, hours, minutes, or seconds from the date of key creation, for which the key is valid. Defined in ISO 8601 format for Durations. For example, P4DT12H30M5S represents a duration of four days, twelve hours, thirty minutes, and five seconds. This property is required when restrictionType is set to keyLifetime.
45662
46240
  */
45663
46241
  maxLifetime?: Duration;
45664
46242
  /**
@@ -45907,7 +46485,7 @@ export interface LearningCourseActivity extends Entity, Parsable {
45907
46485
  */
45908
46486
  completionPercentage?: number;
45909
46487
  /**
45910
- * A course activity ID generated by the provider. Optional.
46488
+ * The externalcourseActivityId property
45911
46489
  */
45912
46490
  externalcourseActivityId?: string;
45913
46491
  /**
@@ -47727,7 +48305,7 @@ export interface ManagedAppStatusRaw extends ManagedAppStatus, Parsable {
47727
48305
  /**
47728
48306
  * Status report content.
47729
48307
  */
47730
- content?: Json;
48308
+ content?: UntypedNode;
47731
48309
  }
47732
48310
  export type ManagedBrowserType = (typeof ManagedBrowserTypeObject)[keyof typeof ManagedBrowserTypeObject];
47733
48311
  /**
@@ -48781,7 +49359,7 @@ export interface MeetingParticipants extends AdditionalDataHolder, BackedModel,
48781
49359
  */
48782
49360
  additionalData?: Record<string, unknown>;
48783
49361
  /**
48784
- * The attendees property
49362
+ * Information about the meeting attendees.
48785
49363
  */
48786
49364
  attendees?: MeetingParticipantInfo[];
48787
49365
  /**
@@ -48793,7 +49371,7 @@ export interface MeetingParticipants extends AdditionalDataHolder, BackedModel,
48793
49371
  */
48794
49372
  odataType?: string;
48795
49373
  /**
48796
- * The organizer property
49374
+ * Information about the meeting organizer.
48797
49375
  */
48798
49376
  organizer?: MeetingParticipantInfo;
48799
49377
  }
@@ -50447,11 +51025,11 @@ export interface NumberColumn extends AdditionalDataHolder, BackedModel, Parsabl
50447
51025
  }
50448
51026
  export interface OAuth2PermissionGrant extends Entity, Parsable {
50449
51027
  /**
50450
- * The object id (not appId) of the client service principal for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
51028
+ * The object id (not appId) of the client service principal for the application that's authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
50451
51029
  */
50452
51030
  clientId?: string;
50453
51031
  /**
50454
- * Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).
51032
+ * Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Nonadmin users might be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).
50455
51033
  */
50456
51034
  consentType?: string;
50457
51035
  /**
@@ -50459,11 +51037,11 @@ export interface OAuth2PermissionGrant extends Entity, Parsable {
50459
51037
  */
50460
51038
  principalId?: string;
50461
51039
  /**
50462
- * The id of the resource service principal to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user. Supports $filter (eq only).
51040
+ * The id of the resource service principal to which access is authorized. This identifies the API that the client is authorized to attempt to call on behalf of a signed-in user. Supports $filter (eq only).
50463
51041
  */
50464
51042
  resourceId?: string;
50465
51043
  /**
50466
- * A space-separated list of the claim values for delegated permissions which should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the oauth2PermissionScopes property of the resource service principal. Must not exceed 3850 characters in length.
51044
+ * A space-separated list of the claim values for delegated permissions that should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the oauth2PermissionScopes property of the resource service principal. Must not exceed 3,850 characters in length.
50467
51045
  */
50468
51046
  scope?: string;
50469
51047
  }
@@ -50787,6 +51365,62 @@ export interface OmaSettingStringXml extends OmaSetting, Parsable {
50787
51365
  */
50788
51366
  value?: string;
50789
51367
  }
51368
+ export interface OnAttributeCollectionExternalUsersSelfServiceSignUp extends OnAttributeCollectionHandler, Parsable {
51369
+ /**
51370
+ * Required. The configuration for how attributes are displayed in the sign up experience defined by a user flow, like the externalUsersSelfServiceSignupEventsFlow, specifically on the attribute collection page.
51371
+ */
51372
+ attributeCollectionPage?: AuthenticationAttributeCollectionPage;
51373
+ /**
51374
+ * The attributes property
51375
+ */
51376
+ attributes?: IdentityUserFlowAttribute[];
51377
+ }
51378
+ export interface OnAttributeCollectionHandler extends AdditionalDataHolder, BackedModel, Parsable {
51379
+ /**
51380
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
51381
+ */
51382
+ additionalData?: Record<string, unknown>;
51383
+ /**
51384
+ * Stores model information.
51385
+ */
51386
+ backingStoreEnabled?: boolean;
51387
+ /**
51388
+ * The OdataType property
51389
+ */
51390
+ odataType?: string;
51391
+ }
51392
+ export interface OnAttributeCollectionListener extends AuthenticationEventListener, Parsable {
51393
+ /**
51394
+ * Required. Configuration for what to invoke if the event resolves to this listener.
51395
+ */
51396
+ handler?: OnAttributeCollectionHandler;
51397
+ }
51398
+ export interface OnAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp extends OnAuthenticationMethodLoadStartHandler, Parsable {
51399
+ /**
51400
+ * The identityProviders property
51401
+ */
51402
+ identityProviders?: IdentityProviderBase[];
51403
+ }
51404
+ export interface OnAuthenticationMethodLoadStartHandler extends AdditionalDataHolder, BackedModel, Parsable {
51405
+ /**
51406
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
51407
+ */
51408
+ additionalData?: Record<string, unknown>;
51409
+ /**
51410
+ * Stores model information.
51411
+ */
51412
+ backingStoreEnabled?: boolean;
51413
+ /**
51414
+ * The OdataType property
51415
+ */
51416
+ odataType?: string;
51417
+ }
51418
+ export interface OnAuthenticationMethodLoadStartListener extends AuthenticationEventListener, Parsable {
51419
+ /**
51420
+ * Required. Configuration for what to invoke if the event resolves to this listener. This lets us define potential handler configurations per-event.
51421
+ */
51422
+ handler?: OnAuthenticationMethodLoadStartHandler;
51423
+ }
50790
51424
  export interface Onenote extends Entity, Parsable {
50791
51425
  /**
50792
51426
  * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable.
@@ -51063,13 +51697,39 @@ export interface OnenoteSectionCollectionResponse extends BaseCollectionPaginati
51063
51697
  }
51064
51698
  export type OnenoteSourceService = (typeof OnenoteSourceServiceObject)[keyof typeof OnenoteSourceServiceObject];
51065
51699
  export type OnenoteUserRole = (typeof OnenoteUserRoleObject)[keyof typeof OnenoteUserRoleObject];
51700
+ export interface OnInteractiveAuthFlowStartExternalUsersSelfServiceSignUp extends OnInteractiveAuthFlowStartHandler, Parsable {
51701
+ /**
51702
+ * Optional. Specifies whether the authentication flow includes an option to sign up (create account) and sign in. Default value is false meaning only sign in is enabled.
51703
+ */
51704
+ isSignUpAllowed?: boolean;
51705
+ }
51706
+ export interface OnInteractiveAuthFlowStartHandler extends AdditionalDataHolder, BackedModel, Parsable {
51707
+ /**
51708
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
51709
+ */
51710
+ additionalData?: Record<string, unknown>;
51711
+ /**
51712
+ * Stores model information.
51713
+ */
51714
+ backingStoreEnabled?: boolean;
51715
+ /**
51716
+ * The OdataType property
51717
+ */
51718
+ odataType?: string;
51719
+ }
51720
+ export interface OnInteractiveAuthFlowStartListener extends AuthenticationEventListener, Parsable {
51721
+ /**
51722
+ * Required. Configuration for what to invoke if the event resolves to this listener. This lets us define potential handler configurations per-event.
51723
+ */
51724
+ handler?: OnInteractiveAuthFlowStartHandler;
51725
+ }
51066
51726
  export interface OnlineMeeting extends OnlineMeetingBase, Parsable {
51067
51727
  /**
51068
- * The attendeeReport property
51728
+ * The content stream of the attendee report of a Microsoft Teams live event. Read-only.
51069
51729
  */
51070
51730
  attendeeReport?: string;
51071
51731
  /**
51072
- * The broadcastSettings property
51732
+ * Settings related to a live event.
51073
51733
  */
51074
51734
  broadcastSettings?: BroadcastMeetingSettings;
51075
51735
  /**
@@ -51085,11 +51745,11 @@ export interface OnlineMeeting extends OnlineMeetingBase, Parsable {
51085
51745
  */
51086
51746
  externalId?: string;
51087
51747
  /**
51088
- * The isBroadcast property
51748
+ * Indicates whether this meeting is a Teams live event.
51089
51749
  */
51090
51750
  isBroadcast?: boolean;
51091
51751
  /**
51092
- * The participants associated with the online meeting. This includes the organizer and the attendees.
51752
+ * The participants associated with the online meeting, including the organizer and the attendees.
51093
51753
  */
51094
51754
  participants?: MeetingParticipants;
51095
51755
  /**
@@ -51167,7 +51827,7 @@ export interface OnlineMeetingBase extends Entity, Parsable {
51167
51827
  */
51168
51828
  recordAutomatically?: boolean;
51169
51829
  /**
51170
- * The shareMeetingChatHistoryDefault property
51830
+ * Specifies whether meeting chat history is shared with participants. Possible values are: all, none, unknownFutureValue.
51171
51831
  */
51172
51832
  shareMeetingChatHistoryDefault?: MeetingChatHistoryDefaultMode;
51173
51833
  /**
@@ -51580,6 +52240,32 @@ export interface OnTokenIssuanceStartReturnClaim extends AdditionalDataHolder, B
51580
52240
  */
51581
52241
  odataType?: string;
51582
52242
  }
52243
+ export interface OnUserCreateStartExternalUsersSelfServiceSignUp extends OnUserCreateStartHandler, Parsable {
52244
+ /**
52245
+ * The type of user to create. Maps to userType property of user object. The possible values are: member, guest, unknownFutureValue.
52246
+ */
52247
+ userTypeToCreate?: UserType;
52248
+ }
52249
+ export interface OnUserCreateStartHandler extends AdditionalDataHolder, BackedModel, Parsable {
52250
+ /**
52251
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
52252
+ */
52253
+ additionalData?: Record<string, unknown>;
52254
+ /**
52255
+ * Stores model information.
52256
+ */
52257
+ backingStoreEnabled?: boolean;
52258
+ /**
52259
+ * The OdataType property
52260
+ */
52261
+ odataType?: string;
52262
+ }
52263
+ export interface OnUserCreateStartListener extends AuthenticationEventListener, Parsable {
52264
+ /**
52265
+ * Required. Configuration for what to invoke if the event resolves to this listener. This lets us define potential handler configurations per-event.
52266
+ */
52267
+ handler?: OnUserCreateStartHandler;
52268
+ }
51583
52269
  export interface OpenShift extends ChangeTrackedEntity, Parsable {
51584
52270
  /**
51585
52271
  * An unpublished open shift.
@@ -51849,7 +52535,7 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
51849
52535
  */
51850
52536
  backgroundColor?: string;
51851
52537
  /**
51852
- * Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster.
52538
+ * Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image reduces bandwidth requirements and make the page load faster.
51853
52539
  */
51854
52540
  backgroundImage?: string;
51855
52541
  /**
@@ -51869,7 +52555,7 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
51869
52555
  */
51870
52556
  cdnList?: string[];
51871
52557
  /**
51872
- * The contentCustomization property
52558
+ * Represents the content options to be customized throughout the authentication flow for a tenant. NOTE: Supported by Microsoft Entra External ID in external tenants only.
51873
52559
  */
51874
52560
  contentCustomization?: ContentCustomization;
51875
52561
  /**
@@ -52172,6 +52858,47 @@ export interface OutlookUser extends Entity, Parsable {
52172
52858
  */
52173
52859
  masterCategories?: OutlookCategory[];
52174
52860
  }
52861
+ /**
52862
+ * The Windows Autopilot Deployment Profile settings used by the device for the out-of-box experience. Supports: $select, $top, $skip. $Search, $orderBy and $filter are not supported.
52863
+ */
52864
+ export interface OutOfBoxExperienceSetting extends AdditionalDataHolder, BackedModel, Parsable {
52865
+ /**
52866
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
52867
+ */
52868
+ additionalData?: Record<string, unknown>;
52869
+ /**
52870
+ * Stores model information.
52871
+ */
52872
+ backingStoreEnabled?: boolean;
52873
+ /**
52874
+ * The deviceUsageType property
52875
+ */
52876
+ deviceUsageType?: WindowsDeviceUsageType;
52877
+ /**
52878
+ * When TRUE, the link that allows user to start over with a different account on company sign-in is hidden. When false, the link that allows user to start over with a different account on company sign-in is available. Default value is FALSE.
52879
+ */
52880
+ escapeLinkHidden?: boolean;
52881
+ /**
52882
+ * When TRUE, EULA is hidden to the end user during OOBE. When FALSE, EULA is shown to the end user during OOBE. Default value is FALSE.
52883
+ */
52884
+ eulaHidden?: boolean;
52885
+ /**
52886
+ * When TRUE, the keyboard selection page is hidden to the end user during OOBE if Language and Region are set. When FALSE, the keyboard selection page is skipped during OOBE.
52887
+ */
52888
+ keyboardSelectionPageSkipped?: boolean;
52889
+ /**
52890
+ * The OdataType property
52891
+ */
52892
+ odataType?: string;
52893
+ /**
52894
+ * When TRUE, privacy settings is hidden to the end user during OOBE. When FALSE, privacy settings is shown to the end user during OOBE. Default value is FALSE.
52895
+ */
52896
+ privacySettingsHidden?: boolean;
52897
+ /**
52898
+ * The userType property
52899
+ */
52900
+ userType?: WindowsUserType;
52901
+ }
52175
52902
  export interface PackageEscaped extends AdditionalDataHolder, BackedModel, Parsable {
52176
52903
  /**
52177
52904
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -52443,7 +53170,7 @@ export interface PasswordCredentialConfiguration extends AdditionalDataHolder, B
52443
53170
  */
52444
53171
  backingStoreEnabled?: boolean;
52445
53172
  /**
52446
- * The maxLifetime property
53173
+ * Value that can be used as the maximum number for setting password expiration time in days, hours, minutes or seconds. Defined in ISO 8601 format for Durations. For example, 'P4DT12H30M5S' represents a duration of four days, twelve hours, thirty minutes, and five seconds. This property is required when restriction type is set to passwordLifetime.
52447
53174
  */
52448
53175
  maxLifetime?: Duration;
52449
53176
  /**
@@ -52672,7 +53399,7 @@ export interface PayloadDetail extends AdditionalDataHolder, BackedModel, Parsab
52672
53399
  */
52673
53400
  backingStoreEnabled?: boolean;
52674
53401
  /**
52675
- * Payload coachmark details.
53402
+ * The coachmarks property
52676
53403
  */
52677
53404
  coachmarks?: PayloadCoachmark[];
52678
53405
  /**
@@ -52742,11 +53469,11 @@ export interface Permission extends Entity, Parsable {
52742
53469
  */
52743
53470
  expirationDateTime?: Date;
52744
53471
  /**
52745
- * The grantedTo property
53472
+ * For user type permissions, the details of the users and applications for this permission. Read-only.
52746
53473
  */
52747
53474
  grantedTo?: IdentitySet;
52748
53475
  /**
52749
- * The grantedToIdentities property
53476
+ * For type permissions, the details of the users to whom permission was granted. Read-only.
52750
53477
  */
52751
53478
  grantedToIdentities?: IdentitySet[];
52752
53479
  /**
@@ -53545,7 +54272,7 @@ export interface PlannerPlan extends Entity, Parsable {
53545
54272
  */
53546
54273
  details?: PlannerPlanDetails;
53547
54274
  /**
53548
- * The owner property
54275
+ * Use the container property instead. ID of the group that owns the plan. After it's set, this property can’t be updated. This property won't return a valid group ID if the container of the plan isn't a group.
53549
54276
  */
53550
54277
  owner?: string;
53551
54278
  /**
@@ -54387,7 +55114,7 @@ export interface PrinterDefaults extends AdditionalDataHolder, BackedModel, Pars
54387
55114
  */
54388
55115
  fitPdfToPage?: boolean;
54389
55116
  /**
54390
- * The inputBin property
55117
+ * The default input bin that serves as the paper source.
54391
55118
  */
54392
55119
  inputBin?: string;
54393
55120
  /**
@@ -54676,7 +55403,7 @@ export interface PrintJobConfiguration extends AdditionalDataHolder, BackedModel
54676
55403
  */
54677
55404
  finishings?: PrintFinishing[];
54678
55405
  /**
54679
- * The fitPdfToPage property
55406
+ * True to fit each page of a PDF document to a physical sheet of media; false to let the printer decide how to lay out impressions.
54680
55407
  */
54681
55408
  fitPdfToPage?: boolean;
54682
55409
  /**
@@ -54688,15 +55415,15 @@ export interface PrintJobConfiguration extends AdditionalDataHolder, BackedModel
54688
55415
  */
54689
55416
  margin?: PrintMargin;
54690
55417
  /**
54691
- * The media size to use when printing. Supports standard size names for ISO and ANSI media sizes.
55418
+ * The media size to use when printing. Supports standard size names for ISO and ANSI media sizes. Valid values listed in the printerCapabilities topic.
54692
55419
  */
54693
55420
  mediaSize?: string;
54694
55421
  /**
54695
- * The mediaType property
55422
+ * The default media (such as paper) type to print the document on.
54696
55423
  */
54697
55424
  mediaType?: string;
54698
55425
  /**
54699
- * The multipageLayout property
55426
+ * The direction to lay out pages when multiple pages are being printed per sheet. Valid values are described in the following table.
54700
55427
  */
54701
55428
  multipageLayout?: PrintMultipageLayout;
54702
55429
  /**
@@ -54704,27 +55431,27 @@ export interface PrintJobConfiguration extends AdditionalDataHolder, BackedModel
54704
55431
  */
54705
55432
  odataType?: string;
54706
55433
  /**
54707
- * The orientation property
55434
+ * The orientation setting the printer should use when printing the job. Valid values are described in the following table.
54708
55435
  */
54709
55436
  orientation?: PrintOrientation;
54710
55437
  /**
54711
- * The outputBin property
55438
+ * The output bin to place completed prints into. See the printer's capabilities for a list of supported output bins.
54712
55439
  */
54713
55440
  outputBin?: string;
54714
55441
  /**
54715
- * The pageRanges property
55442
+ * The page ranges to print. Read-only.
54716
55443
  */
54717
55444
  pageRanges?: IntegerRange[];
54718
55445
  /**
54719
- * The pagesPerSheet property
55446
+ * The number of document pages to print on each sheet.
54720
55447
  */
54721
55448
  pagesPerSheet?: number;
54722
55449
  /**
54723
- * The quality property
55450
+ * The print quality to use when printing the job. Valid values are described in the table below. Read-only.
54724
55451
  */
54725
55452
  quality?: PrintQuality;
54726
55453
  /**
54727
- * The scaling property
55454
+ * Specifies how the printer should scale the document data to fit the requested media. Valid values are described in the following table.
54728
55455
  */
54729
55456
  scaling?: PrintScaling;
54730
55457
  }
@@ -55010,7 +55737,7 @@ export interface PrintUsage extends Entity, Parsable {
55010
55737
  }
55011
55738
  export interface PrintUsageByPrinter extends Parsable, PrintUsage {
55012
55739
  /**
55013
- * The printerId property
55740
+ * The ID of the printer represented by these statistics.
55014
55741
  */
55015
55742
  printerId?: string;
55016
55743
  /**
@@ -57349,7 +58076,7 @@ export interface RiskServicePrincipalActivity extends AdditionalDataHolder, Back
57349
58076
  */
57350
58077
  odataType?: string;
57351
58078
  /**
57352
- * The riskEventTypes property
58079
+ * The type of risk event detected. The possible values are: investigationsThreatIntelligence, generic, adminConfirmedServicePrincipalCompromised, suspiciousSignins, leakedCredentials, anomalousServicePrincipalActivity, maliciousApplication, suspiciousApplication.
57353
58080
  */
57354
58081
  riskEventTypes?: string[];
57355
58082
  }
@@ -58027,7 +58754,7 @@ export interface ScheduleInformation extends AdditionalDataHolder, BackedModel,
58027
58754
  */
58028
58755
  additionalData?: Record<string, unknown>;
58029
58756
  /**
58030
- * Represents a merged view of availability of all the items in scheduleItems. The view consists of time slots. Availability during each time slot is indicated with: 0= free, 1= tentative, 2= busy, 3= out of office, 4= working elsewhere.
58757
+ * Represents a merged view of availability of all the items in scheduleItems. The view consists of time slots. Availability during each time slot is indicated with: 0= free or working elswhere, 1= tentative, 2= busy, 3= out of office.Note: Working elsewhere is set to 0 instead of 4 for backward compatibility. For details, see the Q&A.
58031
58758
  */
58032
58759
  availabilityView?: string;
58033
58760
  /**
@@ -58684,23 +59411,23 @@ export interface SecureScoreControlProfile extends Entity, Parsable {
58684
59411
  */
58685
59412
  service?: string;
58686
59413
  /**
58687
- * List of threats the control mitigates (accountBreach, dataDeletion, dataExfiltration, dataSpillage,
59414
+ * List of threats the control mitigates (accountBreach, dataDeletion, dataExfiltration, dataSpillage, elevationOfPrivilege, maliciousInsider, passwordCracking, phishingOrWhaling, spoofing).
58688
59415
  */
58689
59416
  threats?: string[];
58690
59417
  /**
58691
- * The tier property
59418
+ * Control tier (Core, Defense in Depth, Advanced.)
58692
59419
  */
58693
59420
  tier?: string;
58694
59421
  /**
58695
- * The title property
59422
+ * Title of the control.
58696
59423
  */
58697
59424
  title?: string;
58698
59425
  /**
58699
- * The userImpact property
59426
+ * User impact of implementing control (low, moderate, high).
58700
59427
  */
58701
59428
  userImpact?: string;
58702
59429
  /**
58703
- * The vendorInformation property
59430
+ * Complex type containing details about the security product/service vendor, provider, and subprovider (for example, vendor=Microsoft; provider=SecureScore). Required.
58704
59431
  */
58705
59432
  vendorInformation?: SecurityVendorInformation;
58706
59433
  }
@@ -58883,23 +59610,23 @@ export interface SelfSignedCertificate extends AdditionalDataHolder, BackedModel
58883
59610
  */
58884
59611
  backingStoreEnabled?: boolean;
58885
59612
  /**
58886
- * The customKeyIdentifier property
59613
+ * Custom key identifier.
58887
59614
  */
58888
59615
  customKeyIdentifier?: string;
58889
59616
  /**
58890
- * The displayName property
59617
+ * The friendly name for the key.
58891
59618
  */
58892
59619
  displayName?: string;
58893
59620
  /**
58894
- * The endDateTime property
59621
+ * The date and time at which the credential expires. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on January 1, 2014 is 2014-01-01T00:00:00Z.
58895
59622
  */
58896
59623
  endDateTime?: Date;
58897
59624
  /**
58898
- * The key property
59625
+ * The value for the key credential. Should be a Base-64 encoded value.
58899
59626
  */
58900
59627
  key?: string;
58901
59628
  /**
58902
- * The keyId property
59629
+ * The unique identifier (GUID) for the key.
58903
59630
  */
58904
59631
  keyId?: Guid;
58905
59632
  /**
@@ -58907,19 +59634,19 @@ export interface SelfSignedCertificate extends AdditionalDataHolder, BackedModel
58907
59634
  */
58908
59635
  odataType?: string;
58909
59636
  /**
58910
- * The startDateTime property
59637
+ * The date and time at which the credential becomes valid. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on January 1, 2014 is 2014-01-01T00:00:00Z.
58911
59638
  */
58912
59639
  startDateTime?: Date;
58913
59640
  /**
58914
- * The thumbprint property
59641
+ * The thumbprint value for the key.
58915
59642
  */
58916
59643
  thumbprint?: string;
58917
59644
  /**
58918
- * The type property
59645
+ * The type of key credential. AsymmetricX509Cert.
58919
59646
  */
58920
59647
  type?: string;
58921
59648
  /**
58922
- * The usage property
59649
+ * A string that describes the purpose for which the key can be used. The possible value is Verify.
58923
59650
  */
58924
59651
  usage?: string;
58925
59652
  }
@@ -60088,6 +60815,26 @@ export declare function serializeAuditResource(writer: SerializationWriter, audi
60088
60815
  * @param writer Serialization writer to use to serialize this model
60089
60816
  */
60090
60817
  export declare function serializeAuthentication(writer: SerializationWriter, authentication?: Partial<Authentication> | undefined): void;
60818
+ /**
60819
+ * Serializes information the current object
60820
+ * @param writer Serialization writer to use to serialize this model
60821
+ */
60822
+ export declare function serializeAuthenticationAttributeCollectionInputConfiguration(writer: SerializationWriter, authenticationAttributeCollectionInputConfiguration?: Partial<AuthenticationAttributeCollectionInputConfiguration> | undefined): void;
60823
+ /**
60824
+ * Serializes information the current object
60825
+ * @param writer Serialization writer to use to serialize this model
60826
+ */
60827
+ export declare function serializeAuthenticationAttributeCollectionOptionConfiguration(writer: SerializationWriter, authenticationAttributeCollectionOptionConfiguration?: Partial<AuthenticationAttributeCollectionOptionConfiguration> | undefined): void;
60828
+ /**
60829
+ * Serializes information the current object
60830
+ * @param writer Serialization writer to use to serialize this model
60831
+ */
60832
+ export declare function serializeAuthenticationAttributeCollectionPage(writer: SerializationWriter, authenticationAttributeCollectionPage?: Partial<AuthenticationAttributeCollectionPage> | undefined): void;
60833
+ /**
60834
+ * Serializes information the current object
60835
+ * @param writer Serialization writer to use to serialize this model
60836
+ */
60837
+ export declare function serializeAuthenticationAttributeCollectionPageViewConfiguration(writer: SerializationWriter, authenticationAttributeCollectionPageViewConfiguration?: Partial<AuthenticationAttributeCollectionPageViewConfiguration> | undefined): void;
60091
60838
  /**
60092
60839
  * Serializes information the current object
60093
60840
  * @param writer Serialization writer to use to serialize this model
@@ -60103,6 +60850,11 @@ export declare function serializeAuthenticationCombinationConfigurationCollectio
60103
60850
  * @param writer Serialization writer to use to serialize this model
60104
60851
  */
60105
60852
  export declare function serializeAuthenticationConditionApplication(writer: SerializationWriter, authenticationConditionApplication?: Partial<AuthenticationConditionApplication> | undefined): void;
60853
+ /**
60854
+ * Serializes information the current object
60855
+ * @param writer Serialization writer to use to serialize this model
60856
+ */
60857
+ export declare function serializeAuthenticationConditionApplicationCollectionResponse(writer: SerializationWriter, authenticationConditionApplicationCollectionResponse?: Partial<AuthenticationConditionApplicationCollectionResponse> | undefined): void;
60106
60858
  /**
60107
60859
  * Serializes information the current object
60108
60860
  * @param writer Serialization writer to use to serialize this model
@@ -60138,6 +60890,16 @@ export declare function serializeAuthenticationEventListener(writer: Serializati
60138
60890
  * @param writer Serialization writer to use to serialize this model
60139
60891
  */
60140
60892
  export declare function serializeAuthenticationEventListenerCollectionResponse(writer: SerializationWriter, authenticationEventListenerCollectionResponse?: Partial<AuthenticationEventListenerCollectionResponse> | undefined): void;
60893
+ /**
60894
+ * Serializes information the current object
60895
+ * @param writer Serialization writer to use to serialize this model
60896
+ */
60897
+ export declare function serializeAuthenticationEventsFlow(writer: SerializationWriter, authenticationEventsFlow?: Partial<AuthenticationEventsFlow> | undefined): void;
60898
+ /**
60899
+ * Serializes information the current object
60900
+ * @param writer Serialization writer to use to serialize this model
60901
+ */
60902
+ export declare function serializeAuthenticationEventsFlowCollectionResponse(writer: SerializationWriter, authenticationEventsFlowCollectionResponse?: Partial<AuthenticationEventsFlowCollectionResponse> | undefined): void;
60141
60903
  /**
60142
60904
  * Serializes information the current object
60143
60905
  * @param writer Serialization writer to use to serialize this model
@@ -63008,6 +63770,16 @@ export declare function serializeExternalLink(writer: SerializationWriter, exter
63008
63770
  * @param writer Serialization writer to use to serialize this model
63009
63771
  */
63010
63772
  export declare function serializeExternalSponsors(writer: SerializationWriter, externalSponsors?: Partial<ExternalSponsors> | undefined): void;
63773
+ /**
63774
+ * Serializes information the current object
63775
+ * @param writer Serialization writer to use to serialize this model
63776
+ */
63777
+ export declare function serializeExternalUsersSelfServiceSignUpEventsFlow(writer: SerializationWriter, externalUsersSelfServiceSignUpEventsFlow?: Partial<ExternalUsersSelfServiceSignUpEventsFlow> | undefined): void;
63778
+ /**
63779
+ * Serializes information the current object
63780
+ * @param writer Serialization writer to use to serialize this model
63781
+ */
63782
+ export declare function serializeExternalUsersSelfServiceSignUpEventsFlowCollectionResponse(writer: SerializationWriter, externalUsersSelfServiceSignUpEventsFlowCollectionResponse?: Partial<ExternalUsersSelfServiceSignUpEventsFlowCollectionResponse> | undefined): void;
63011
63783
  /**
63012
63784
  * Serializes information the current object
63013
63785
  * @param writer Serialization writer to use to serialize this model
@@ -63098,6 +63870,31 @@ export declare function serializeFileHash(writer: SerializationWriter, fileHash?
63098
63870
  * @param writer Serialization writer to use to serialize this model
63099
63871
  */
63100
63872
  export declare function serializeFileSecurityState(writer: SerializationWriter, fileSecurityState?: Partial<FileSecurityState> | undefined): void;
63873
+ /**
63874
+ * Serializes information the current object
63875
+ * @param writer Serialization writer to use to serialize this model
63876
+ */
63877
+ export declare function serializeFileStorage(writer: SerializationWriter, fileStorage?: Partial<FileStorage> | undefined): void;
63878
+ /**
63879
+ * Serializes information the current object
63880
+ * @param writer Serialization writer to use to serialize this model
63881
+ */
63882
+ export declare function serializeFileStorageContainer(writer: SerializationWriter, fileStorageContainer?: Partial<FileStorageContainer> | undefined): void;
63883
+ /**
63884
+ * Serializes information the current object
63885
+ * @param writer Serialization writer to use to serialize this model
63886
+ */
63887
+ export declare function serializeFileStorageContainerCollectionResponse(writer: SerializationWriter, fileStorageContainerCollectionResponse?: Partial<FileStorageContainerCollectionResponse> | undefined): void;
63888
+ /**
63889
+ * Serializes information the current object
63890
+ * @param writer Serialization writer to use to serialize this model
63891
+ */
63892
+ export declare function serializeFileStorageContainerCustomPropertyDictionary(writer: SerializationWriter, fileStorageContainerCustomPropertyDictionary?: Partial<FileStorageContainerCustomPropertyDictionary> | undefined): void;
63893
+ /**
63894
+ * Serializes information the current object
63895
+ * @param writer Serialization writer to use to serialize this model
63896
+ */
63897
+ export declare function serializeFileStorageContainerViewpoint(writer: SerializationWriter, fileStorageContainerViewpoint?: Partial<FileStorageContainerViewpoint> | undefined): void;
63101
63898
  /**
63102
63899
  * Serializes information the current object
63103
63900
  * @param writer Serialization writer to use to serialize this model
@@ -63838,11 +64635,6 @@ export declare function serializeJoinMeetingIdMeetingInfo(writer: SerializationW
63838
64635
  * @param writer Serialization writer to use to serialize this model
63839
64636
  */
63840
64637
  export declare function serializeJoinMeetingIdSettings(writer: SerializationWriter, joinMeetingIdSettings?: Partial<JoinMeetingIdSettings> | undefined): void;
63841
- /**
63842
- * Serializes information the current object
63843
- * @param writer Serialization writer to use to serialize this model
63844
- */
63845
- export declare function serializeJson(writer: SerializationWriter, json?: Partial<Json> | undefined): void;
63846
64638
  /**
63847
64639
  * Serializes information the current object
63848
64640
  * @param writer Serialization writer to use to serialize this model
@@ -64998,6 +65790,36 @@ export declare function serializeOmaSettingString(writer: SerializationWriter, o
64998
65790
  * @param writer Serialization writer to use to serialize this model
64999
65791
  */
65000
65792
  export declare function serializeOmaSettingStringXml(writer: SerializationWriter, omaSettingStringXml?: Partial<OmaSettingStringXml> | undefined): void;
65793
+ /**
65794
+ * Serializes information the current object
65795
+ * @param writer Serialization writer to use to serialize this model
65796
+ */
65797
+ export declare function serializeOnAttributeCollectionExternalUsersSelfServiceSignUp(writer: SerializationWriter, onAttributeCollectionExternalUsersSelfServiceSignUp?: Partial<OnAttributeCollectionExternalUsersSelfServiceSignUp> | undefined): void;
65798
+ /**
65799
+ * Serializes information the current object
65800
+ * @param writer Serialization writer to use to serialize this model
65801
+ */
65802
+ export declare function serializeOnAttributeCollectionHandler(writer: SerializationWriter, onAttributeCollectionHandler?: Partial<OnAttributeCollectionHandler> | undefined): void;
65803
+ /**
65804
+ * Serializes information the current object
65805
+ * @param writer Serialization writer to use to serialize this model
65806
+ */
65807
+ export declare function serializeOnAttributeCollectionListener(writer: SerializationWriter, onAttributeCollectionListener?: Partial<OnAttributeCollectionListener> | undefined): void;
65808
+ /**
65809
+ * Serializes information the current object
65810
+ * @param writer Serialization writer to use to serialize this model
65811
+ */
65812
+ export declare function serializeOnAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp(writer: SerializationWriter, onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp?: Partial<OnAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp> | undefined): void;
65813
+ /**
65814
+ * Serializes information the current object
65815
+ * @param writer Serialization writer to use to serialize this model
65816
+ */
65817
+ export declare function serializeOnAuthenticationMethodLoadStartHandler(writer: SerializationWriter, onAuthenticationMethodLoadStartHandler?: Partial<OnAuthenticationMethodLoadStartHandler> | undefined): void;
65818
+ /**
65819
+ * Serializes information the current object
65820
+ * @param writer Serialization writer to use to serialize this model
65821
+ */
65822
+ export declare function serializeOnAuthenticationMethodLoadStartListener(writer: SerializationWriter, onAuthenticationMethodLoadStartListener?: Partial<OnAuthenticationMethodLoadStartListener> | undefined): void;
65001
65823
  /**
65002
65824
  * Serializes information the current object
65003
65825
  * @param writer Serialization writer to use to serialize this model
@@ -65078,6 +65900,21 @@ export declare function serializeOnenoteSection(writer: SerializationWriter, one
65078
65900
  * @param writer Serialization writer to use to serialize this model
65079
65901
  */
65080
65902
  export declare function serializeOnenoteSectionCollectionResponse(writer: SerializationWriter, onenoteSectionCollectionResponse?: Partial<OnenoteSectionCollectionResponse> | undefined): void;
65903
+ /**
65904
+ * Serializes information the current object
65905
+ * @param writer Serialization writer to use to serialize this model
65906
+ */
65907
+ export declare function serializeOnInteractiveAuthFlowStartExternalUsersSelfServiceSignUp(writer: SerializationWriter, onInteractiveAuthFlowStartExternalUsersSelfServiceSignUp?: Partial<OnInteractiveAuthFlowStartExternalUsersSelfServiceSignUp> | undefined): void;
65908
+ /**
65909
+ * Serializes information the current object
65910
+ * @param writer Serialization writer to use to serialize this model
65911
+ */
65912
+ export declare function serializeOnInteractiveAuthFlowStartHandler(writer: SerializationWriter, onInteractiveAuthFlowStartHandler?: Partial<OnInteractiveAuthFlowStartHandler> | undefined): void;
65913
+ /**
65914
+ * Serializes information the current object
65915
+ * @param writer Serialization writer to use to serialize this model
65916
+ */
65917
+ export declare function serializeOnInteractiveAuthFlowStartListener(writer: SerializationWriter, onInteractiveAuthFlowStartListener?: Partial<OnInteractiveAuthFlowStartListener> | undefined): void;
65081
65918
  /**
65082
65919
  * Serializes information the current object
65083
65920
  * @param writer Serialization writer to use to serialize this model
@@ -65168,6 +66005,21 @@ export declare function serializeOnTokenIssuanceStartListener(writer: Serializat
65168
66005
  * @param writer Serialization writer to use to serialize this model
65169
66006
  */
65170
66007
  export declare function serializeOnTokenIssuanceStartReturnClaim(writer: SerializationWriter, onTokenIssuanceStartReturnClaim?: Partial<OnTokenIssuanceStartReturnClaim> | undefined): void;
66008
+ /**
66009
+ * Serializes information the current object
66010
+ * @param writer Serialization writer to use to serialize this model
66011
+ */
66012
+ export declare function serializeOnUserCreateStartExternalUsersSelfServiceSignUp(writer: SerializationWriter, onUserCreateStartExternalUsersSelfServiceSignUp?: Partial<OnUserCreateStartExternalUsersSelfServiceSignUp> | undefined): void;
66013
+ /**
66014
+ * Serializes information the current object
66015
+ * @param writer Serialization writer to use to serialize this model
66016
+ */
66017
+ export declare function serializeOnUserCreateStartHandler(writer: SerializationWriter, onUserCreateStartHandler?: Partial<OnUserCreateStartHandler> | undefined): void;
66018
+ /**
66019
+ * Serializes information the current object
66020
+ * @param writer Serialization writer to use to serialize this model
66021
+ */
66022
+ export declare function serializeOnUserCreateStartListener(writer: SerializationWriter, onUserCreateStartListener?: Partial<OnUserCreateStartListener> | undefined): void;
65171
66023
  /**
65172
66024
  * Serializes information the current object
65173
66025
  * @param writer Serialization writer to use to serialize this model
@@ -65298,6 +66150,11 @@ export declare function serializeOutlookItem(writer: SerializationWriter, outloo
65298
66150
  * @param writer Serialization writer to use to serialize this model
65299
66151
  */
65300
66152
  export declare function serializeOutlookUser(writer: SerializationWriter, outlookUser?: Partial<OutlookUser> | undefined): void;
66153
+ /**
66154
+ * Serializes information the current object
66155
+ * @param writer Serialization writer to use to serialize this model
66156
+ */
66157
+ export declare function serializeOutOfBoxExperienceSetting(writer: SerializationWriter, outOfBoxExperienceSetting?: Partial<OutOfBoxExperienceSetting> | undefined): void;
65301
66158
  /**
65302
66159
  * Serializes information the current object
65303
66160
  * @param writer Serialization writer to use to serialize this model
@@ -67133,6 +67990,11 @@ export declare function serializeSingleValueLegacyExtendedProperty(writer: Seria
67133
67990
  * @param writer Serialization writer to use to serialize this model
67134
67991
  */
67135
67992
  export declare function serializeSite(writer: SerializationWriter, site?: Partial<Site> | undefined): void;
67993
+ /**
67994
+ * Serializes information the current object
67995
+ * @param writer Serialization writer to use to serialize this model
67996
+ */
67997
+ export declare function serializeSiteArchivalDetails(writer: SerializationWriter, siteArchivalDetails?: Partial<SiteArchivalDetails> | undefined): void;
67136
67998
  /**
67137
67999
  * Serializes information the current object
67138
68000
  * @param writer Serialization writer to use to serialize this model
@@ -67253,6 +68115,11 @@ export declare function serializeStartHoldMusicOperation(writer: SerializationWr
67253
68115
  * @param writer Serialization writer to use to serialize this model
67254
68116
  */
67255
68117
  export declare function serializeStopHoldMusicOperation(writer: SerializationWriter, stopHoldMusicOperation?: Partial<StopHoldMusicOperation> | undefined): void;
68118
+ /**
68119
+ * Serializes information the current object
68120
+ * @param writer Serialization writer to use to serialize this model
68121
+ */
68122
+ export declare function serializeStorage(writer: SerializationWriter, storage?: Partial<Storage> | undefined): void;
67256
68123
  /**
67257
68124
  * Serializes information the current object
67258
68125
  * @param writer Serialization writer to use to serialize this model
@@ -69093,6 +69960,16 @@ export declare function serializeWindowsAppXAppAssignmentSettings(writer: Serial
69093
69960
  * @param writer Serialization writer to use to serialize this model
69094
69961
  */
69095
69962
  export declare function serializeWindowsAppXCollectionResponse(writer: SerializationWriter, windowsAppXCollectionResponse?: Partial<WindowsAppXCollectionResponse> | undefined): void;
69963
+ /**
69964
+ * Serializes information the current object
69965
+ * @param writer Serialization writer to use to serialize this model
69966
+ */
69967
+ export declare function serializeWindowsAutopilotDeploymentProfile(writer: SerializationWriter, windowsAutopilotDeploymentProfile?: Partial<WindowsAutopilotDeploymentProfile> | undefined): void;
69968
+ /**
69969
+ * Serializes information the current object
69970
+ * @param writer Serialization writer to use to serialize this model
69971
+ */
69972
+ export declare function serializeWindowsAutopilotDeploymentProfileAssignment(writer: SerializationWriter, windowsAutopilotDeploymentProfileAssignment?: Partial<WindowsAutopilotDeploymentProfileAssignment> | undefined): void;
69096
69973
  /**
69097
69974
  * Serializes information the current object
69098
69975
  * @param writer Serialization writer to use to serialize this model
@@ -69733,6 +70610,11 @@ export declare function serializeX509CertificateAuthenticationMethodConfiguratio
69733
70610
  * @param writer Serialization writer to use to serialize this model
69734
70611
  */
69735
70612
  export declare function serializeX509CertificateAuthenticationModeConfiguration(writer: SerializationWriter, x509CertificateAuthenticationModeConfiguration?: Partial<X509CertificateAuthenticationModeConfiguration> | undefined): void;
70613
+ /**
70614
+ * Serializes information the current object
70615
+ * @param writer Serialization writer to use to serialize this model
70616
+ */
70617
+ export declare function serializeX509CertificateCombinationConfiguration(writer: SerializationWriter, x509CertificateCombinationConfiguration?: Partial<X509CertificateCombinationConfiguration> | undefined): void;
69736
70618
  /**
69737
70619
  * Serializes information the current object
69738
70620
  * @param writer Serialization writer to use to serialize this model
@@ -70987,7 +71869,7 @@ export interface SharingDetail extends AdditionalDataHolder, BackedModel, Parsab
70987
71869
  */
70988
71870
  sharedDateTime?: Date;
70989
71871
  /**
70990
- * The sharingReference property
71872
+ * Reference properties of the document, such as the URL and type of the document. Read-only
70991
71873
  */
70992
71874
  sharingReference?: ResourceReference;
70993
71875
  /**
@@ -70995,7 +71877,7 @@ export interface SharingDetail extends AdditionalDataHolder, BackedModel, Parsab
70995
71877
  */
70996
71878
  sharingSubject?: string;
70997
71879
  /**
70998
- * Determines the way the document was shared, can be by a 'Link', 'Attachment', 'Group', 'Site'.
71880
+ * Determines the way the document was shared. Can be by a 1Link1, 1Attachment1, 1Group1, 1Site1.
70999
71881
  */
71000
71882
  sharingType?: string;
71001
71883
  }
@@ -71280,7 +72162,7 @@ export interface SignInActivity extends AdditionalDataHolder, BackedModel, Parsa
71280
72162
  */
71281
72163
  backingStoreEnabled?: boolean;
71282
72164
  /**
71283
- * The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client attempted (either successfully or unsuccessfully) to sign in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp 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'. Microsoft Entra ID maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see Manage inactive user accounts in Microsoft Entra ID.
72165
+ * The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client attempted (either successfully or unsuccessfully) to sign in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. 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. Microsoft Entra ID maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see Manage inactive user accounts in Microsoft Entra ID.
71284
72166
  */
71285
72167
  lastNonInteractiveSignInDateTime?: Date;
71286
72168
  /**
@@ -71288,13 +72170,21 @@ export interface SignInActivity extends AdditionalDataHolder, BackedModel, Parsa
71288
72170
  */
71289
72171
  lastNonInteractiveSignInRequestId?: string;
71290
72172
  /**
71291
- * The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user attempted (either successfully or unsuccessfully) to sign in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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'. Microsoft Entra ID maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Microsoft Entra ID.
72173
+ * The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user attempted (either successfully or unsuccessfully) to sign in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. 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. Microsoft Entra ID maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Microsoft Entra ID.
71292
72174
  */
71293
72175
  lastSignInDateTime?: Date;
71294
72176
  /**
71295
72177
  * Request identifier of the last interactive sign-in performed by this user.
71296
72178
  */
71297
72179
  lastSignInRequestId?: string;
72180
+ /**
72181
+ * The date and time of the user's most recent successful sign-in activity. 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.
72182
+ */
72183
+ lastSuccessfulSignInDateTime?: Date;
72184
+ /**
72185
+ * The request ID of the last successful sign-in.
72186
+ */
72187
+ lastSuccessfulSignInRequestId?: string;
71298
72188
  /**
71299
72189
  * The OdataType property
71300
72190
  */
@@ -71803,11 +72693,34 @@ export interface Site extends BaseItem, Parsable {
71803
72693
  */
71804
72694
  termStores?: Store[];
71805
72695
  }
72696
+ export interface SiteArchivalDetails extends AdditionalDataHolder, BackedModel, Parsable {
72697
+ /**
72698
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
72699
+ */
72700
+ additionalData?: Record<string, unknown>;
72701
+ /**
72702
+ * Represents the current archive status of the site collection. Returned only on $select. The possible values are: recentlyArchived, fullyArchived, reactivating, unknownFutureValue.
72703
+ */
72704
+ archiveStatus?: SiteArchiveStatus;
72705
+ /**
72706
+ * Stores model information.
72707
+ */
72708
+ backingStoreEnabled?: boolean;
72709
+ /**
72710
+ * The OdataType property
72711
+ */
72712
+ odataType?: string;
72713
+ }
72714
+ export type SiteArchiveStatus = (typeof SiteArchiveStatusObject)[keyof typeof SiteArchiveStatusObject];
71806
72715
  export interface SiteCollection extends AdditionalDataHolder, BackedModel, Parsable {
71807
72716
  /**
71808
72717
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
71809
72718
  */
71810
72719
  additionalData?: Record<string, unknown>;
72720
+ /**
72721
+ * Represents whether the site collection is recently archived, fully archived, or reactivating. Possible values are: recentlyArchived, fullyArchived, reactivating, unknownFutureValue.
72722
+ */
72723
+ archivalDetails?: SiteArchivalDetails;
71811
72724
  /**
71812
72725
  * Stores model information.
71813
72726
  */
@@ -72192,6 +73105,24 @@ export type StateManagementSetting = (typeof StateManagementSettingObject)[keyof
72192
73105
  export type Status = (typeof StatusObject)[keyof typeof StatusObject];
72193
73106
  export interface StopHoldMusicOperation extends CommsOperation, Parsable {
72194
73107
  }
73108
+ export interface Storage extends AdditionalDataHolder, BackedModel, Parsable {
73109
+ /**
73110
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
73111
+ */
73112
+ additionalData?: Record<string, unknown>;
73113
+ /**
73114
+ * Stores model information.
73115
+ */
73116
+ backingStoreEnabled?: boolean;
73117
+ /**
73118
+ * The fileStorage property
73119
+ */
73120
+ fileStorage?: FileStorage;
73121
+ /**
73122
+ * The OdataType property
73123
+ */
73124
+ odataType?: string;
73125
+ }
72195
73126
  export interface StoragePlanInformation extends AdditionalDataHolder, BackedModel, Parsable {
72196
73127
  /**
72197
73128
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -72636,7 +73567,7 @@ export interface SubscribedSku extends Entity, Parsable {
72636
73567
  */
72637
73568
  skuPartNumber?: string;
72638
73569
  /**
72639
- * The subscriptionIds property
73570
+ * A list of all subscription IDs associated with this SKU.
72640
73571
  */
72641
73572
  subscriptionIds?: string[];
72642
73573
  }
@@ -75566,7 +76497,7 @@ export type TrainingStatus = (typeof TrainingStatusObject)[keyof typeof Training
75566
76497
  export type TrainingType = (typeof TrainingTypeObject)[keyof typeof TrainingTypeObject];
75567
76498
  export interface Trending extends Entity, Parsable {
75568
76499
  /**
75569
- * The lastModifiedDateTime property
76500
+ * 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
75570
76501
  */
75571
76502
  lastModifiedDateTime?: Date;
75572
76503
  /**
@@ -76522,11 +77453,11 @@ export interface User extends DirectoryObject, Parsable {
76522
77453
  */
76523
77454
  agreementAcceptances?: AgreementAcceptance[];
76524
77455
  /**
76525
- * Represents the app roles a user has been granted for an application. Supports $expand.
77456
+ * Represents the app roles a user is granted for an application. Supports $expand.
76526
77457
  */
76527
77458
  appRoleAssignments?: AppRoleAssignment[];
76528
77459
  /**
76529
- * The licenses that are assigned to the user, including inherited (group-based) licenses. This property doesn't differentiate between directly assigned and inherited licenses. Use the licenseAssignmentStates property to identify the directly assigned and inherited licenses. Not nullable. Returned only on $select. Supports $filter (eq, not, /$count eq 0, /$count ne 0).
77460
+ * The licenses that are assigned to the user, including inherited (group-based) licenses. This property doesn't differentiate between directly assigned and inherited licenses. Use the licenseAssignmentStates property to identify the directly assigned and inherited licenses. Not nullable. Returned only on $select. Supports $filter (eq, not, /$count eq 0, /$count ne 0).
76530
77461
  */
76531
77462
  assignedLicenses?: AssignedLicense[];
76532
77463
  /**
@@ -76546,7 +77477,7 @@ export interface User extends DirectoryObject, Parsable {
76546
77477
  */
76547
77478
  birthday?: Date;
76548
77479
  /**
76549
- * The telephone numbers for the user. NOTE: Although it is a string collection, only one number can be set for this property. Read-only for users synced from the on-premises directory. Returned by default. Supports $filter (eq, not, ge, le, startsWith).
77480
+ * The telephone numbers for the user. NOTE: Although it's a string collection, only one number can be set for this property. Read-only for users synced from the on-premises directory. Returned by default. Supports $filter (eq, not, ge, le, startsWith).
76550
77481
  */
76551
77482
  businessPhones?: string[];
76552
77483
  /**
@@ -76578,11 +77509,11 @@ export interface User extends DirectoryObject, Parsable {
76578
77509
  */
76579
77510
  cloudClipboard?: CloudClipboardRoot;
76580
77511
  /**
76581
- * The name of the company that the user is associated with. This property can be useful for describing the company that an external user comes from. The maximum length is 64 characters.Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).
77512
+ * The name of the company that the user is associated with. This property can be useful for describing the company that a guest comes from. The maximum length is 64 characters.Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).
76582
77513
  */
76583
77514
  companyName?: string;
76584
77515
  /**
76585
- * Sets whether consent was obtained for minors. Allowed values: null, Granted, Denied and NotRequired. Refer to the legal age group property definitions for further information. Returned only on $select. Supports $filter (eq, ne, not, and in).
77516
+ * Sets whether consent was obtained for minors. Allowed values: null, Granted, Denied, and NotRequired. For more information, see legal age group property definitions. Returned only on $select. Supports $filter (eq, ne, not, and in).
76586
77517
  */
76587
77518
  consentProvidedForMinor?: string;
76588
77519
  /**
@@ -76594,11 +77525,11 @@ export interface User extends DirectoryObject, Parsable {
76594
77525
  */
76595
77526
  contacts?: Contact[];
76596
77527
  /**
76597
- * The country or region where the user is located; for example, US or UK. Maximum length is 128 characters. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).
77528
+ * The country/region where the user is located; for example, US or UK. Maximum length is 128 characters. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).
76598
77529
  */
76599
77530
  country?: string;
76600
77531
  /**
76601
- * The date and time the user was created, in ISO 8601 format and UTC. The value cannot be modified and is automatically populated when the entity is created. Nullable. For on-premises users, the value represents when they were first created in Microsoft Entra ID. Property is null for some users created before June 2018 and on-premises users that were synced to Microsoft Entra ID before June 2018. Read-only. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in).
77532
+ * The date and time the user was created, in ISO 8601 format and UTC. The value can't be modified and is automatically populated when the entity is created. Nullable. For on-premises users, the value represents when they were first created in Microsoft Entra ID. Property is null for some users created before June 2018 and on-premises users that were synced to Microsoft Entra ID before June 2018. Read-only. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in).
76602
77533
  */
76603
77534
  createdDateTime?: Date;
76604
77535
  /**
@@ -76606,7 +77537,7 @@ export interface User extends DirectoryObject, Parsable {
76606
77537
  */
76607
77538
  createdObjects?: DirectoryObject[];
76608
77539
  /**
76609
- * Indicates whether the user account was created through one of the following methods: As a regular school or work account (null). As an external account (Invitation). As a local account for an Azure Active Directory B2C tenant (LocalAccount). Through self-service sign-up by an internal user using email verification (EmailVerified). Through self-service sign-up by an external user signing up through a link that is part of a user flow (SelfServiceSignUp). Read-only.Returned only on $select. Supports $filter (eq, ne, not, in).
77540
+ * Indicates whether the user account was created through one of the following methods: As a regular school or work account (null). As an external account (Invitation). As a local account for an Azure Active Directory B2C tenant (LocalAccount). Through self-service sign-up by an internal user using email verification (EmailVerified). Through self-service sign-up by a guest signing up through a link that is part of a user flow (SelfServiceSignUp). Read-only.Returned only on $select. Supports $filter (eq, ne, not, in).
76610
77541
  */
76611
77542
  creationType?: string;
76612
77543
  /**
@@ -76630,7 +77561,7 @@ export interface User extends DirectoryObject, Parsable {
76630
77561
  */
76631
77562
  directReports?: DirectoryObject[];
76632
77563
  /**
76633
- * The name displayed in the address book for the user. This is usually the combination of the user's first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values), $orderby, and $search.
77564
+ * The name displayed in the address book for the user. This value is usually the combination of the user's first name, middle initial, and family name. This property is required when a user is created and it can't be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values), $orderby, and $search.
76634
77565
  */
76635
77566
  displayName?: string;
76636
77567
  /**
@@ -76654,7 +77585,7 @@ export interface User extends DirectoryObject, Parsable {
76654
77585
  */
76655
77586
  employeeId?: string;
76656
77587
  /**
76657
- * The date and time when the user left or will leave the organization. To read this property, the calling app must be assigned the User-LifeCycleInfo.Read.All permission. To write this property, the calling app must be assigned the User.Read.All and User-LifeCycleInfo.ReadWrite.All permissions. To read this property in delegated scenarios, the admin needs one of the following Microsoft Entra roles: Lifecycle Workflows Administrator, Global Reader, or Global Administrator. To write this property in delegated scenarios, the admin needs the Global Administrator role. Supports $filter (eq, ne, not , ge, le, in). For more information, see Configure the employeeLeaveDateTime property for a user.
77588
+ * The date and time when the user left or will leave the organization. To read this property, the calling app must be assigned the User-LifeCycleInfo.Read.All permission. To write this property, the calling app must be assigned the User.Read.All and User-LifeCycleInfo.ReadWrite.All permissions. To read this property in delegated scenarios, the admin needs at least one of the following Microsoft Entra roles: Lifecycle Workflows Administrator, Global Reader. To write this property in delegated scenarios, the admin needs the Global Administrator role. Supports $filter (eq, ne, not , ge, le, in). For more information, see Configure the employeeLeaveDateTime property for a user.
76658
77589
  */
76659
77590
  employeeLeaveDateTime?: Date;
76660
77591
  /**
@@ -76674,7 +77605,7 @@ export interface User extends DirectoryObject, Parsable {
76674
77605
  */
76675
77606
  extensions?: Extension[];
76676
77607
  /**
76677
- * For an external user invited to the tenant using the invitation API, this property represents the invited user's invitation status. For invited users, the state can be PendingAcceptance or Accepted, or null for all other users. Returned only on $select. Supports $filter (eq, ne, not , in).
77608
+ * For a guest invited to the tenant using the invitation API, this property represents the invited user's invitation status. For invited users, the state can be PendingAcceptance or Accepted, or null for all other users. Returned only on $select. Supports $filter (eq, ne, not , in).
76678
77609
  */
76679
77610
  externalUserState?: string;
76680
77611
  /**
@@ -76694,11 +77625,11 @@ export interface User extends DirectoryObject, Parsable {
76694
77625
  */
76695
77626
  givenName?: string;
76696
77627
  /**
76697
- * The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.
77628
+ * The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint in Microsoft 365. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.
76698
77629
  */
76699
77630
  hireDate?: Date;
76700
77631
  /**
76701
- * Represents the identities that can be used to sign in to this user account. Microsoft (also known as a local account), organizations, or social identity providers such as Facebook, Google, and Microsoft can provide identity and tie it to a user account. It may contain multiple items with the same signInType value. Returned only on $select. Supports $filter (eq) with limitations.
77632
+ * Represents the identities that can be used to sign in to this user account. Microsoft (also known as a local account), organizations, or social identity providers such as Facebook, Google, and Microsoft can provide identity and tie it to a user account. It might contain multiple items with the same signInType value. Returned only on $select. Supports $filter (eq) with limitations.
76702
77633
  */
76703
77634
  identities?: ObjectIdentity[];
76704
77635
  /**
@@ -76718,7 +77649,7 @@ export interface User extends DirectoryObject, Parsable {
76718
77649
  */
76719
77650
  interests?: string[];
76720
77651
  /**
76721
- * Do not use – reserved for future use.
77652
+ * Don't use – reserved for future use.
76722
77653
  */
76723
77654
  isResourceAccount?: boolean;
76724
77655
  /**
@@ -76734,11 +77665,11 @@ export interface User extends DirectoryObject, Parsable {
76734
77665
  */
76735
77666
  lastPasswordChangeDateTime?: Date;
76736
77667
  /**
76737
- * Used by enterprise applications to determine the legal age group of the user. This property is read-only and calculated based on ageGroup and consentProvidedForMinor properties. Allowed values: null, MinorWithOutParentalConsent, MinorWithParentalConsent, MinorNoParentalConsentRequired, NotAdult, and Adult. Refer to the legal age group property definitions for further information. Returned only on $select.
77668
+ * Used by enterprise applications to determine the legal age group of the user. This property is read-only and calculated based on ageGroup and consentProvidedForMinor properties. Allowed values: null, MinorWithOutParentalConsent, MinorWithParentalConsent, MinorNoParentalConsentRequired, NotAdult, and Adult. For more information, see legal age group property definitions. Returned only on $select.
76738
77669
  */
76739
77670
  legalAgeGroupClassification?: string;
76740
77671
  /**
76741
- * State of license assignments for this user. Also indicates licenses that are directly assigned or the user has inherited through group memberships. Read-only. Returned only on $select.
77672
+ * State of license assignments for this user. Also indicates licenses that are directly assigned or the user inherited through group memberships. Read-only. Returned only on $select.
76742
77673
  */
76743
77674
  licenseAssignmentStates?: LicenseAssignmentState[];
76744
77675
  /**
@@ -76818,7 +77749,7 @@ export interface User extends DirectoryObject, Parsable {
76818
77749
  */
76819
77750
  onPremisesExtensionAttributes?: OnPremisesExtensionAttributes;
76820
77751
  /**
76821
- * This property is used to associate an on-premises Active Directory user account to their Microsoft Entra user object. This property must be specified when creating a new user account in the Graph if you're using a federated domain for the user's userPrincipalName (UPN) property. NOTE: The $ and _ characters can't be used when specifying this property. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in)..
77752
+ * This property is used to associate an on-premises Active Directory user account to their Microsoft Entra user object. This property must be specified when creating a new user account in the Graph if you're using a federated domain for the user's userPrincipalName (UPN) property. NOTE: The $ and _ characters can't be used when specifying this property. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in).
76822
77753
  */
76823
77754
  onPremisesImmutableId?: string;
76824
77755
  /**
@@ -76834,7 +77765,7 @@ export interface User extends DirectoryObject, Parsable {
76834
77765
  */
76835
77766
  onPremisesSamAccountName?: string;
76836
77767
  /**
76837
- * Contains the on-premises security identifier (SID) for the user that was synchronized from on-premises to the cloud. Read-only. Returned only on $select. Supports $filter (eq including on null values).
77768
+ * Contains the on-premises security identifier (SID) for the user that was synchronized from on-premises to the cloud. Read-only. Returned only on $select. Supports $filter (eq including on null values).
76838
77769
  */
76839
77770
  onPremisesSecurityIdentifier?: string;
76840
77771
  /**
@@ -76846,7 +77777,7 @@ export interface User extends DirectoryObject, Parsable {
76846
77777
  */
76847
77778
  onPremisesUserPrincipalName?: string;
76848
77779
  /**
76849
- * A list of additional email addresses for the user; for example: ['bob@contoso.com', 'Robert@fabrikam.com']. NOTE: This property can't contain accent characters. Returned only on $select. Supports $filter (eq, not, ge, le, in, startsWith, endsWith, /$count eq 0, /$count ne 0).
77780
+ * A list of other email addresses for the user; for example: ['bob@contoso.com', 'Robert@fabrikam.com']. NOTE: This property can't contain accent characters. Returned only on $select. Supports $filter (eq, not, ge, le, in, startsWith, endsWith, /$count eq 0, /$count ne 0).
76850
77781
  */
76851
77782
  otherMails?: string[];
76852
77783
  /**
@@ -76854,15 +77785,15 @@ export interface User extends DirectoryObject, Parsable {
76854
77785
  */
76855
77786
  outlook?: OutlookUser;
76856
77787
  /**
76857
- * Devices that are owned by the user. Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
77788
+ * Devices the user owns. Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
76858
77789
  */
76859
77790
  ownedDevices?: DirectoryObject[];
76860
77791
  /**
76861
- * Directory objects that are owned by the user. Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
77792
+ * Directory objects the user owns. Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
76862
77793
  */
76863
77794
  ownedObjects?: DirectoryObject[];
76864
77795
  /**
76865
- * Specifies password policies for the user. This value is an enumeration with one possible value being DisableStrongPassword, which allows weaker passwords than the default policy to be specified. DisablePasswordExpiration can also be specified. The two may be specified together; for example: DisablePasswordExpiration, DisableStrongPassword. Returned only on $select. For more information on the default password policies, see Microsoft Entra password policies. Supports $filter (ne, not, and eq on null values).
77796
+ * Specifies password policies for the user. This value is an enumeration with one possible value being DisableStrongPassword, which allows weaker passwords than the default policy to be specified. DisablePasswordExpiration can also be specified. The two might be specified together; for example: DisablePasswordExpiration, DisableStrongPassword. Returned only on $select. For more information on the default password policies, see Microsoft Entra password policies. Supports $filter (ne, not, and eq on null values).
76866
77797
  */
76867
77798
  passwordPolicies?: string;
76868
77799
  /**
@@ -76902,7 +77833,7 @@ export interface User extends DirectoryObject, Parsable {
76902
77833
  */
76903
77834
  preferredDataLocation?: string;
76904
77835
  /**
76905
- * The preferred language for the user. The preferred language format is based on RFC 4646. The name is a combination of an ISO 639 two-letter lowercase culture code associated with the language and an ISO 3166 two-letter uppercase subculture code associated with the country or region. Example: 'en-US', or 'es-ES'. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values)
77836
+ * The preferred language for the user. The preferred language format is based on RFC 4646. The name is a combination of an ISO 639 two-letter lowercase culture code associated with the language, and an ISO 3166 two-letter uppercase subculture code associated with the country or region. Example: 'en-US', or 'es-ES'. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values)
76906
77837
  */
76907
77838
  preferredLanguage?: string;
76908
77839
  /**
@@ -76922,7 +77853,7 @@ export interface User extends DirectoryObject, Parsable {
76922
77853
  */
76923
77854
  provisionedPlans?: ProvisionedPlan[];
76924
77855
  /**
76925
- * For example: ['SMTP: bob@contoso.com', 'smtp: bob@sales.contoso.com']. Changes to the mail property will also update this collection to include the value as an SMTP address. For more information, see mail and proxyAddresses properties. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of 10 unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith, endsWith, /$count eq 0, /$count ne 0).
77856
+ * For example: ['SMTP: bob@contoso.com', 'smtp: bob@sales.contoso.com']. Changes to the mail property update this collection to include the value as an SMTP address. For more information, see mail and proxyAddresses properties. The proxy address prefixed with SMTP (capitalized) is the primary proxy address, while those addresses prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of 10 unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith, endsWith, /$count eq 0, /$count ne 0).
76926
77857
  */
76927
77858
  proxyAddresses?: string[];
76928
77859
  /**
@@ -76934,7 +77865,7 @@ export interface User extends DirectoryObject, Parsable {
76934
77865
  */
76935
77866
  responsibilities?: string[];
76936
77867
  /**
76937
- * A list for the user to enumerate the schools they have attended. Returned only on $select.
77868
+ * A list for the user to enumerate the schools they attended. Returned only on $select.
76938
77869
  */
76939
77870
  schools?: string[];
76940
77871
  /**
@@ -76946,7 +77877,7 @@ export interface User extends DirectoryObject, Parsable {
76946
77877
  */
76947
77878
  securityIdentifier?: string;
76948
77879
  /**
76949
- * Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance).
77880
+ * Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance).
76950
77881
  */
76951
77882
  serviceProvisioningErrors?: ServiceProvisioningError[];
76952
77883
  /**
@@ -76958,11 +77889,11 @@ export interface User extends DirectoryObject, Parsable {
76958
77889
  */
76959
77890
  showInAddressList?: boolean;
76960
77891
  /**
76961
- * Get the last signed-in date and request ID of the sign-in for a given user. Read-only.Returned only on $select. Supports $filter (eq, ne, not, ge, le) but not with any other filterable properties. Note: Details for this property require a Microsoft Entra ID P1 or P2 license and the AuditLog.Read.All permission.This property is not returned for a user who has never signed in or last signed in before April 2020.
77892
+ * Get the last signed-in date and request ID of the sign-in for a given user. Read-only.Returned only on $select. Supports $filter (eq, ne, not, ge, le) but not with any other filterable properties. Note: Details for this property require a Microsoft Entra ID P1 or P2 license and the AuditLog.Read.All permission.This property isn't returned for a user who never signed in or last signed in before April 2020.
76962
77893
  */
76963
77894
  signInActivity?: SignInActivity;
76964
77895
  /**
76965
- * Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application needs to acquire a new refresh token by requesting the authorized endpoint. Read-only. Use revokeSignInSessions to reset. Returned only on $select.
77896
+ * Any refresh tokens or session tokens (session cookies) issued before this time are invalid. Applications get an error when using an invalid refresh or session token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application needs to acquire a new refresh token by requesting the authorized endpoint. Read-only. Use revokeSignInSessions to reset. Returned only on $select.
76966
77897
  */
76967
77898
  signInSessionsValidFromDateTime?: Date;
76968
77899
  /**
@@ -76970,7 +77901,7 @@ export interface User extends DirectoryObject, Parsable {
76970
77901
  */
76971
77902
  skills?: string[];
76972
77903
  /**
76973
- * The users and groups responsible for this guest user's privileges in the tenant and keep the guest user's information and access updated. (HTTP Methods: GET, POST, DELETE.). Supports $expand.
77904
+ * The users and groups responsible for this guest's privileges in the tenant and keeping the guest's information and access updated. (HTTP Methods: GET, POST, DELETE.). Supports $expand.
76974
77905
  */
76975
77906
  sponsors?: DirectoryObject[];
76976
77907
  /**
@@ -76978,7 +77909,7 @@ export interface User extends DirectoryObject, Parsable {
76978
77909
  */
76979
77910
  state?: string;
76980
77911
  /**
76981
- * The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).
77912
+ * The street address of the user's place of business. Maximum length is 1,024 characters. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).
76982
77913
  */
76983
77914
  streetAddress?: string;
76984
77915
  /**
@@ -76998,15 +77929,15 @@ export interface User extends DirectoryObject, Parsable {
76998
77929
  */
76999
77930
  transitiveMemberOf?: DirectoryObject[];
77000
77931
  /**
77001
- * A two-letter country code (ISO standard 3166). Required for users that are assigned licenses due to legal requirements to check for availability of services in countries. Examples include: US, JP, and GB. Not nullable. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).
77932
+ * A two-letter country code (ISO standard 3166). Required for users that are assigned licenses due to legal requirements to check for availability of services in countries. Examples include: US, JP, and GB. Not nullable. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).
77002
77933
  */
77003
77934
  usageLocation?: string;
77004
77935
  /**
77005
- * The user principal name (UPN) of the user. The UPN is an Internet-style sign-in name for the user based on the Internet standard RFC 822. By convention, this should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, ' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby.
77936
+ * The user principal name (UPN) of the user. The UPN is an Internet-style sign-in name for the user based on the Internet standard RFC 822. By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, ' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby.
77006
77937
  */
77007
77938
  userPrincipalName?: string;
77008
77939
  /**
77009
- * A string value that can be used to classify user types in your directory. The possible values are Member and Guest. Returned only on $select. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for member and guest users, see What are the default user permissions in Microsoft Entra ID?
77940
+ * A string value that can be used to classify user types in your directory. The possible values are Member and Guest. Returned only on $select. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for members and guests, see What are the default user permissions in Microsoft Entra ID?
77010
77941
  */
77011
77942
  userType?: string;
77012
77943
  }
@@ -77031,7 +77962,7 @@ export interface UserActivity extends Entity, Parsable {
77031
77962
  /**
77032
77963
  * Optional. A custom piece of data - JSON-LD extensible description of content according to schema.org syntax.
77033
77964
  */
77034
- contentInfo?: Json;
77965
+ contentInfo?: UntypedNode;
77035
77966
  /**
77036
77967
  * Optional. Used in the event the content can be rendered outside of a native or web-based app experience (for example, a pointer to an item in an RSS feed).
77037
77968
  */
@@ -78488,7 +79419,7 @@ export interface UserFlowLanguagePageCollectionResponse extends BaseCollectionPa
78488
79419
  export type UserFlowType = (typeof UserFlowTypeObject)[keyof typeof UserFlowTypeObject];
78489
79420
  export interface UserIdentity extends Identity, Parsable {
78490
79421
  /**
78491
- * Indicates the client IP address used by user performing the activity (audit log only).
79422
+ * Indicates the client IP address associated with the user performing the activity (audit log only).
78492
79423
  */
78493
79424
  ipAddress?: string;
78494
79425
  /**
@@ -79035,6 +79966,7 @@ export interface UserTrainingStatusInfo extends AdditionalDataHolder, BackedMode
79035
79966
  */
79036
79967
  trainingStatus?: TrainingStatus;
79037
79968
  }
79969
+ export type UserType = (typeof UserTypeObject)[keyof typeof UserTypeObject];
79038
79970
  export interface VerifiedDomain extends AdditionalDataHolder, BackedModel, Parsable {
79039
79971
  /**
79040
79972
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -79369,7 +80301,7 @@ export interface VisualInfo extends AdditionalDataHolder, BackedModel, Parsable
79369
80301
  /**
79370
80302
  * Optional. Custom piece of data - JSON object used to provide custom content to render the activity in the Windows Shell UI
79371
80303
  */
79372
- content?: Json;
80304
+ content?: UntypedNode;
79373
80305
  /**
79374
80306
  * Optional. Longer text description of the user's unique activity (example: document name, first sentence, and/or metadata)
79375
80307
  */
@@ -79606,7 +80538,7 @@ export interface WebPartData extends AdditionalDataHolder, BackedModel, Parsable
79606
80538
  /**
79607
80539
  * Properties bag of the web part.
79608
80540
  */
79609
- properties?: Json;
80541
+ properties?: UntypedNode;
79610
80542
  /**
79611
80543
  * Contains collections of data that can be processed by server side services like search index and link fixup.
79612
80544
  */
@@ -81538,6 +82470,68 @@ export interface WindowsAppXCollectionResponse extends BaseCollectionPaginationC
81538
82470
  value?: WindowsAppX[];
81539
82471
  }
81540
82472
  export type WindowsArchitecture = (typeof WindowsArchitectureObject)[keyof typeof WindowsArchitectureObject];
82473
+ /**
82474
+ * Windows Autopilot Deployment Profile
82475
+ */
82476
+ export interface WindowsAutopilotDeploymentProfile extends Entity, Parsable {
82477
+ /**
82478
+ * The list of assigned devices for the profile.
82479
+ */
82480
+ assignedDevices?: WindowsAutopilotDeviceIdentity[];
82481
+ /**
82482
+ * The date and time of when the deployment profile was created. The value cannot be modified and is automatically populated when the profile was created. 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 would look like this: '2014-01-01T00:00:00Z'. Supports: $select, $top, $skip. $Search, $orderBy and $filter are not supported. Read-Only.
82483
+ */
82484
+ createdDateTime?: Date;
82485
+ /**
82486
+ * A description of the deployment profile. Max allowed length is 1500 chars. Supports: $select, $top, $skip, $orderBy. $Search and $filter are not supported.
82487
+ */
82488
+ description?: string;
82489
+ /**
82490
+ * The template used to name the Autopilot device. This can be a custom text and can also contain either the serial number of the device, or a randomly generated number. The total length of the text generated by the template can be no more than 15 characters. Supports: $select, $top, $skip. $Search, $orderBy and $filter are not supported.
82491
+ */
82492
+ deviceNameTemplate?: string;
82493
+ /**
82494
+ * The deviceType property
82495
+ */
82496
+ deviceType?: WindowsAutopilotDeviceType;
82497
+ /**
82498
+ * The display name of the deployment profile. Max allowed length is 200 chars. Returned by default. Supports: $select, $top, $skip, $orderby. $Search and $filter are not supported.
82499
+ */
82500
+ displayName?: string;
82501
+ /**
82502
+ * Indicates whether the profile supports the extraction of hardware hash values and registration of the device into Windows Autopilot. When TRUE, indicates if hardware extraction and Windows Autopilot registration will happen on the next successful check-in. When FALSE, hardware hash extraction and Windows Autopilot registration will not happen. Default value is FALSE. Supports: $select, $top, $skip. $Search, $orderBy and $filter are not supported.
82503
+ */
82504
+ hardwareHashExtractionEnabled?: boolean;
82505
+ /**
82506
+ * The date and time of when the deployment profile was last modified. The value cannot be updated manually and is automatically populated when any changes are made to the profile. 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 would look like this: '2014-01-01T00:00:00Z'. Supports: $select, $top, $skip. $Search, $orderBy and $filter are not supported Read-Only.
82507
+ */
82508
+ lastModifiedDateTime?: Date;
82509
+ /**
82510
+ * The locale (language) to be used when configuring the device. E.g. en-US. The default value is os-default. Supports: $select, $top, $skip. $Search, $orderBy and $filter are not supported.
82511
+ */
82512
+ locale?: string;
82513
+ /**
82514
+ * The Entra management service App ID which gets used during client device-based enrollment discovery. Supports: $select, $top, $skip. $Search, $orderBy and $filter are not supported.
82515
+ */
82516
+ managementServiceAppId?: string;
82517
+ /**
82518
+ * The Windows Autopilot Deployment Profile settings used by the device for the out-of-box experience. Supports: $select, $top, $skip. $Search, $orderBy and $filter are not supported.
82519
+ */
82520
+ outOfBoxExperienceSetting?: OutOfBoxExperienceSetting;
82521
+ /**
82522
+ * Indicates whether the user is allowed to use Windows Autopilot for pre-provisioned deployment mode during Out of Box experience (OOBE). When TRUE, indicates that Windows Autopilot for pre-provisioned deployment mode for OOBE is allowed to be used. When false, Windows Autopilot for pre-provisioned deployment mode for OOBE is not allowed. The default is FALSE.
82523
+ */
82524
+ preprovisioningAllowed?: boolean;
82525
+ /**
82526
+ * List of role scope tags for the deployment profile.
82527
+ */
82528
+ roleScopeTagIds?: string[];
82529
+ }
82530
+ /**
82531
+ * An assignment of a Windows Autopilot deployment profile to an AAD group.
82532
+ */
82533
+ export interface WindowsAutopilotDeploymentProfileAssignment extends Entity, Parsable {
82534
+ }
81541
82535
  /**
81542
82536
  * The windowsAutopilotDeviceIdentity resource represents a Windows Autopilot Device.
81543
82537
  */
@@ -81613,6 +82607,7 @@ export interface WindowsAutopilotDeviceIdentityCollectionResponse extends BaseCo
81613
82607
  */
81614
82608
  value?: WindowsAutopilotDeviceIdentity[];
81615
82609
  }
82610
+ export type WindowsAutopilotDeviceType = (typeof WindowsAutopilotDeviceTypeObject)[keyof typeof WindowsAutopilotDeviceTypeObject];
81616
82611
  /**
81617
82612
  * Windows Defender AdvancedThreatProtection Configuration.
81618
82613
  */
@@ -81724,6 +82719,7 @@ export interface WindowsDeviceMalwareStateCollectionResponse extends BaseCollect
81724
82719
  value?: WindowsDeviceMalwareState[];
81725
82720
  }
81726
82721
  export type WindowsDeviceType = (typeof WindowsDeviceTypeObject)[keyof typeof WindowsDeviceTypeObject];
82722
+ export type WindowsDeviceUsageType = (typeof WindowsDeviceUsageTypeObject)[keyof typeof WindowsDeviceUsageTypeObject];
81727
82723
  /**
81728
82724
  * Windows Firewall Profile Policies.
81729
82725
  */
@@ -83119,6 +84115,7 @@ export interface WindowsUpdateScheduledInstall extends Parsable, WindowsUpdateIn
83119
84115
  }
83120
84116
  export type WindowsUpdateType = (typeof WindowsUpdateTypeObject)[keyof typeof WindowsUpdateTypeObject];
83121
84117
  export type WindowsUserAccountControlSettings = (typeof WindowsUserAccountControlSettingsObject)[keyof typeof WindowsUserAccountControlSettingsObject];
84118
+ export type WindowsUserType = (typeof WindowsUserTypeObject)[keyof typeof WindowsUserTypeObject];
83122
84119
  /**
83123
84120
  * Contains properties and inherited properties for Windows web apps.
83124
84121
  */
@@ -83256,15 +84253,15 @@ export interface WorkbookChartAxis extends Entity, Parsable {
83256
84253
  /**
83257
84254
  * Represents the interval between two major tick marks. Can be set to a numeric value or an empty string. The returned value is always a number.
83258
84255
  */
83259
- majorUnit?: Json;
84256
+ majorUnit?: UntypedNode;
83260
84257
  /**
83261
84258
  * Represents the maximum value on the value axis. Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number.
83262
84259
  */
83263
- maximum?: Json;
84260
+ maximum?: UntypedNode;
83264
84261
  /**
83265
84262
  * Represents the minimum value on the value axis. Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number.
83266
84263
  */
83267
- minimum?: Json;
84264
+ minimum?: UntypedNode;
83268
84265
  /**
83269
84266
  * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only.
83270
84267
  */
@@ -83272,7 +84269,7 @@ export interface WorkbookChartAxis extends Entity, Parsable {
83272
84269
  /**
83273
84270
  * Represents the interval between two minor tick marks. 'Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number.
83274
84271
  */
83275
- minorUnit?: Json;
84272
+ minorUnit?: UntypedNode;
83276
84273
  /**
83277
84274
  * Represents the axis title. Read-only.
83278
84275
  */
@@ -83448,7 +84445,7 @@ export interface WorkbookChartPoint extends Entity, Parsable {
83448
84445
  /**
83449
84446
  * Returns the value of a chart point. Read-only.
83450
84447
  */
83451
- value?: Json;
84448
+ value?: UntypedNode;
83452
84449
  }
83453
84450
  export interface WorkbookChartPointCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
83454
84451
  /**
@@ -83572,27 +84569,27 @@ export interface WorkbookFilterCriteria extends AdditionalDataHolder, BackedMode
83572
84569
  */
83573
84570
  backingStoreEnabled?: boolean;
83574
84571
  /**
83575
- * The color property
84572
+ * The color applied to the cell.
83576
84573
  */
83577
84574
  color?: string;
83578
84575
  /**
83579
- * The criterion1 property
84576
+ * A custom criterion.
83580
84577
  */
83581
84578
  criterion1?: string;
83582
84579
  /**
83583
- * The criterion2 property
84580
+ * A custom criterion.
83584
84581
  */
83585
84582
  criterion2?: string;
83586
84583
  /**
83587
- * The dynamicCriteria property
84584
+ * A dynamic formula specified in a custom filter.
83588
84585
  */
83589
84586
  dynamicCriteria?: string;
83590
84587
  /**
83591
- * The filterOn property
84588
+ * Indicates whether a filter is applied to a column.
83592
84589
  */
83593
84590
  filterOn?: string;
83594
84591
  /**
83595
- * The icon property
84592
+ * An icon applied to a cell via conditional formatting.
83596
84593
  */
83597
84594
  icon?: WorkbookIcon;
83598
84595
  /**
@@ -83600,13 +84597,13 @@ export interface WorkbookFilterCriteria extends AdditionalDataHolder, BackedMode
83600
84597
  */
83601
84598
  odataType?: string;
83602
84599
  /**
83603
- * The operator property
84600
+ * An operator in a cell; for example, =, >, <, <=, or <>.
83604
84601
  */
83605
84602
  operator?: string;
83606
84603
  /**
83607
- * The values property
84604
+ * The values that appear in the cell.
83608
84605
  */
83609
- values?: Json;
84606
+ values?: UntypedNode;
83610
84607
  }
83611
84608
  export interface WorkbookFormatProtection extends Entity, Parsable {
83612
84609
  /**
@@ -83626,7 +84623,7 @@ export interface WorkbookFunctionResult extends Entity, Parsable {
83626
84623
  /**
83627
84624
  * The value property
83628
84625
  */
83629
- value?: Json;
84626
+ value?: UntypedNode;
83630
84627
  }
83631
84628
  export interface WorkbookFunctions extends Entity, Parsable {
83632
84629
  }
@@ -83672,7 +84669,7 @@ export interface WorkbookNamedItem extends Entity, Parsable {
83672
84669
  /**
83673
84670
  * Represents the formula that the name is defined to refer to. for example, =Sheet14!$B$2:$H$12, =4.75, etc. Read-only.
83674
84671
  */
83675
- value?: Json;
84672
+ value?: UntypedNode;
83676
84673
  /**
83677
84674
  * Specifies whether the object is visible or not.
83678
84675
  */
@@ -83783,15 +84780,15 @@ export interface WorkbookRange extends Entity, Parsable {
83783
84780
  /**
83784
84781
  * Represents the formula in A1-style notation.
83785
84782
  */
83786
- formulas?: Json;
84783
+ formulas?: UntypedNode;
83787
84784
  /**
83788
84785
  * Represents the formula in A1-style notation, in the user's language and number-formatting locale. For example, the English '=SUM(A1, 1.5)' formula would become '=SUMME(A1; 1,5)' in German.
83789
84786
  */
83790
- formulasLocal?: Json;
84787
+ formulasLocal?: UntypedNode;
83791
84788
  /**
83792
84789
  * Represents the formula in R1C1-style notation.
83793
84790
  */
83794
- formulasR1C1?: Json;
84791
+ formulasR1C1?: UntypedNode;
83795
84792
  /**
83796
84793
  * Represents if all cells of the current range are hidden. Read-only.
83797
84794
  */
@@ -83799,7 +84796,7 @@ export interface WorkbookRange extends Entity, Parsable {
83799
84796
  /**
83800
84797
  * Represents Excel's number format code for the given cell.
83801
84798
  */
83802
- numberFormat?: Json;
84799
+ numberFormat?: UntypedNode;
83803
84800
  /**
83804
84801
  * Returns the total number of rows in the range. Read-only.
83805
84802
  */
@@ -83819,15 +84816,15 @@ export interface WorkbookRange extends Entity, Parsable {
83819
84816
  /**
83820
84817
  * Text values of the specified range. The Text value doesn't depend on the cell width. The # sign substitution that happens in Excel UI doesn't affect the text value returned by the API. Read-only.
83821
84818
  */
83822
- text?: Json;
84819
+ text?: UntypedNode;
83823
84820
  /**
83824
84821
  * Represents the raw values of the specified range. The data returned could be of type string, number, or a boolean. Cell that contains an error returns the error string.
83825
84822
  */
83826
- values?: Json;
84823
+ values?: UntypedNode;
83827
84824
  /**
83828
84825
  * Represents the type of data of each cell. The possible values are: Unknown, Empty, String, Integer, Double, Boolean, Error. Read-only.
83829
84826
  */
83830
- valueTypes?: Json;
84827
+ valueTypes?: UntypedNode;
83831
84828
  /**
83832
84829
  * The worksheet containing the current range. Read-only.
83833
84830
  */
@@ -83927,7 +84924,7 @@ export interface WorkbookRangeView extends Entity, Parsable {
83927
84924
  /**
83928
84925
  * Represents the cell addresses
83929
84926
  */
83930
- cellAddresses?: Json;
84927
+ cellAddresses?: UntypedNode;
83931
84928
  /**
83932
84929
  * Returns the number of visible columns. Read-only.
83933
84930
  */
@@ -83935,15 +84932,15 @@ export interface WorkbookRangeView extends Entity, Parsable {
83935
84932
  /**
83936
84933
  * Represents the formula in A1-style notation.
83937
84934
  */
83938
- formulas?: Json;
84935
+ formulas?: UntypedNode;
83939
84936
  /**
83940
84937
  * Represents the formula in A1-style notation, in the user's language and number-formatting locale. For example, the English '=SUM(A1, 1.5)' formula would become '=SUMME(A1; 1,5)' in German.
83941
84938
  */
83942
- formulasLocal?: Json;
84939
+ formulasLocal?: UntypedNode;
83943
84940
  /**
83944
84941
  * Represents the formula in R1C1-style notation.
83945
84942
  */
83946
- formulasR1C1?: Json;
84943
+ formulasR1C1?: UntypedNode;
83947
84944
  /**
83948
84945
  * Index of the range.
83949
84946
  */
@@ -83951,7 +84948,7 @@ export interface WorkbookRangeView extends Entity, Parsable {
83951
84948
  /**
83952
84949
  * Represents Excel's number format code for the given cell. Read-only.
83953
84950
  */
83954
- numberFormat?: Json;
84951
+ numberFormat?: UntypedNode;
83955
84952
  /**
83956
84953
  * Returns the number of visible rows. Read-only.
83957
84954
  */
@@ -83963,15 +84960,15 @@ export interface WorkbookRangeView extends Entity, Parsable {
83963
84960
  /**
83964
84961
  * Text values of the specified range. The Text value won't depend on the cell width. The # sign substitution that happens in Excel UI won't affect the text value returned by the API. Read-only.
83965
84962
  */
83966
- text?: Json;
84963
+ text?: UntypedNode;
83967
84964
  /**
83968
84965
  * Represents the raw values of the specified range view. The data returned could be of type string, number, or a boolean. Cell that contains an error returns the error string.
83969
84966
  */
83970
- values?: Json;
84967
+ values?: UntypedNode;
83971
84968
  /**
83972
84969
  * Represents the type of data of each cell. Read-only. The possible values are: Unknown, Empty, String, Integer, Double, Boolean, Error.
83973
84970
  */
83974
- valueTypes?: Json;
84971
+ valueTypes?: UntypedNode;
83975
84972
  }
83976
84973
  export interface WorkbookSessionInfo extends AdditionalDataHolder, BackedModel, Parsable {
83977
84974
  /**
@@ -84113,7 +85110,7 @@ export interface WorkbookTableColumn extends Entity, Parsable {
84113
85110
  /**
84114
85111
  * Represents the raw values of the specified range. The data returned could be of type string, number, or a boolean. Cell that contain an error will return the error string.
84115
85112
  */
84116
- values?: Json;
85113
+ values?: UntypedNode;
84117
85114
  }
84118
85115
  export interface WorkbookTableColumnCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
84119
85116
  /**
@@ -84129,7 +85126,7 @@ export interface WorkbookTableRow extends Entity, Parsable {
84129
85126
  /**
84130
85127
  * Represents the raw values of the specified range. The data returned could be of type string, number, or a boolean. Cell that contain an error will return the error string.
84131
85128
  */
84132
- values?: Json;
85129
+ values?: UntypedNode;
84133
85130
  }
84134
85131
  export interface WorkbookTableRowCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
84135
85132
  /**
@@ -84345,6 +85342,7 @@ export interface WorkingHours extends AdditionalDataHolder, BackedModel, Parsabl
84345
85342
  */
84346
85343
  timeZone?: TimeZoneBase;
84347
85344
  }
85345
+ export type X509CertificateAffinityLevel = (typeof X509CertificateAffinityLevelObject)[keyof typeof X509CertificateAffinityLevelObject];
84348
85346
  export interface X509CertificateAuthenticationMethodConfiguration extends AuthenticationMethodConfiguration, Parsable {
84349
85347
  /**
84350
85348
  * Defines strong authentication configurations. This configuration includes the default authentication mode and the different rules for strong authentication bindings.
@@ -84381,6 +85379,20 @@ export interface X509CertificateAuthenticationModeConfiguration extends Addition
84381
85379
  * The type of strong authentication mode. The possible values are: x509CertificateSingleFactor, x509CertificateMultiFactor, unknownFutureValue.
84382
85380
  */
84383
85381
  x509CertificateAuthenticationDefaultMode?: X509CertificateAuthenticationMode;
85382
+ /**
85383
+ * The x509CertificateDefaultRequiredAffinityLevel property
85384
+ */
85385
+ x509CertificateDefaultRequiredAffinityLevel?: X509CertificateAffinityLevel;
85386
+ }
85387
+ export interface X509CertificateCombinationConfiguration extends AuthenticationCombinationConfiguration, Parsable {
85388
+ /**
85389
+ * The allowedIssuerSkis property
85390
+ */
85391
+ allowedIssuerSkis?: string[];
85392
+ /**
85393
+ * The allowedPolicyOIDs property
85394
+ */
85395
+ allowedPolicyOIDs?: string[];
84384
85396
  }
84385
85397
  export interface X509CertificateRule extends AdditionalDataHolder, BackedModel, Parsable {
84386
85398
  /**
@@ -84395,14 +85407,26 @@ export interface X509CertificateRule extends AdditionalDataHolder, BackedModel,
84395
85407
  * The identifier of the X.509 certificate. Required.
84396
85408
  */
84397
85409
  identifier?: string;
85410
+ /**
85411
+ * The issuerSubjectIdentifier property
85412
+ */
85413
+ issuerSubjectIdentifier?: string;
84398
85414
  /**
84399
85415
  * The OdataType property
84400
85416
  */
84401
85417
  odataType?: string;
85418
+ /**
85419
+ * The policyOidIdentifier property
85420
+ */
85421
+ policyOidIdentifier?: string;
84402
85422
  /**
84403
85423
  * The type of strong authentication mode. The possible values are: x509CertificateSingleFactor, x509CertificateMultiFactor, unknownFutureValue. Required.
84404
85424
  */
84405
85425
  x509CertificateAuthenticationMode?: X509CertificateAuthenticationMode;
85426
+ /**
85427
+ * The x509CertificateRequiredAffinityLevel property
85428
+ */
85429
+ x509CertificateRequiredAffinityLevel?: X509CertificateAffinityLevel;
84406
85430
  /**
84407
85431
  * The type of the X.509 certificate mode configuration rule. The possible values are: issuerSubject, policyOID, unknownFutureValue. Required.
84408
85432
  */
@@ -84426,6 +85450,10 @@ export interface X509CertificateUserBinding extends AdditionalDataHolder, Backed
84426
85450
  * The priority of the binding. Microsoft Entra ID uses the binding with the highest priority. This value must be a non-negative integer and unique in the collection of objects in the certificateUserBindings property of an x509CertificateAuthenticationMethodConfiguration object. Required
84427
85451
  */
84428
85452
  priority?: number;
85453
+ /**
85454
+ * The trustAffinityLevel property
85455
+ */
85456
+ trustAffinityLevel?: X509CertificateAffinityLevel;
84429
85457
  /**
84430
85458
  * Defines the Microsoft Entra user property of the user object to use for the binding. The possible values are: userPrincipalName, onPremisesUserPrincipalName, certificateUserIds. Required.
84431
85459
  */
@@ -84859,6 +85887,13 @@ export declare const AttributeTypeObject: {
84859
85887
  readonly Boolean: "Boolean";
84860
85888
  readonly DateTime: "DateTime";
84861
85889
  };
85890
+ export declare const AuthenticationAttributeCollectionInputTypeObject: {
85891
+ readonly Text: "text";
85892
+ readonly RadioSingleSelect: "radioSingleSelect";
85893
+ readonly CheckboxMultiSelect: "checkboxMultiSelect";
85894
+ readonly Boolean: "boolean";
85895
+ readonly UnknownFutureValue: "unknownFutureValue";
85896
+ };
84862
85897
  export declare const AuthenticationMethodFeatureObject: {
84863
85898
  readonly SsprRegistered: "ssprRegistered";
84864
85899
  readonly SsprEnabled: "ssprEnabled";
@@ -85610,6 +86645,12 @@ export declare const ConditionalAccessGuestOrExternalUserTypesObject: {
85610
86645
  readonly ServiceProvider: "serviceProvider";
85611
86646
  readonly UnknownFutureValue: "unknownFutureValue";
85612
86647
  };
86648
+ export declare const ConditionalAccessInsiderRiskLevelsObject: {
86649
+ readonly Minor: "minor";
86650
+ readonly Moderate: "moderate";
86651
+ readonly Elevated: "elevated";
86652
+ readonly UnknownFutureValue: "unknownFutureValue";
86653
+ };
85613
86654
  export declare const ConditionalAccessPolicyStateObject: {
85614
86655
  readonly Enabled: "enabled";
85615
86656
  readonly Disabled: "disabled";
@@ -86446,6 +87487,11 @@ export declare const FileHashTypeObject: {
86446
87487
  readonly Ctph: "ctph";
86447
87488
  readonly UnknownFutureValue: "unknownFutureValue";
86448
87489
  };
87490
+ export declare const FileStorageContainerStatusObject: {
87491
+ readonly Inactive: "inactive";
87492
+ readonly Active: "active";
87493
+ readonly UnknownFutureValue: "unknownFutureValue";
87494
+ };
86449
87495
  export declare const FilterModeObject: {
86450
87496
  readonly Include: "include";
86451
87497
  readonly Exclude: "exclude";
@@ -89414,6 +90460,12 @@ export declare const SimulationStatusObject: {
89414
90460
  readonly Excluded: "excluded";
89415
90461
  readonly UnknownFutureValue: "unknownFutureValue";
89416
90462
  };
90463
+ export declare const SiteArchiveStatusObject: {
90464
+ readonly RecentlyArchived: "recentlyArchived";
90465
+ readonly FullyArchived: "fullyArchived";
90466
+ readonly Reactivating: "reactivating";
90467
+ readonly UnknownFutureValue: "unknownFutureValue";
90468
+ };
89417
90469
  /**
89418
90470
  * Possible values for site security level.
89419
90471
  */
@@ -89959,6 +91011,11 @@ export declare const UserSignInRecommendationScopeObject: {
89959
91011
  readonly Application: "application";
89960
91012
  readonly UnknownFutureValue: "unknownFutureValue";
89961
91013
  };
91014
+ export declare const UserTypeObject: {
91015
+ readonly Member: "member";
91016
+ readonly Guest: "guest";
91017
+ readonly UnknownFutureValue: "unknownFutureValue";
91018
+ };
89962
91019
  export declare const VirtualAppointmentMessageTypeObject: {
89963
91020
  readonly Confirmation: "confirmation";
89964
91021
  readonly Reschedule: "reschedule";
@@ -90290,6 +91347,14 @@ export declare const WindowsArchitectureObject: {
90290
91347
  /** Whether or not the Neutral Windows architecture type is supported. */
90291
91348
  readonly Neutral: "neutral";
90292
91349
  };
91350
+ export declare const WindowsAutopilotDeviceTypeObject: {
91351
+ /** Default. Indicates that the device type is a Windows PC. */
91352
+ readonly WindowsPc: "windowsPc";
91353
+ /** Indicates that the device type is a HoloLens. */
91354
+ readonly HoloLens: "holoLens";
91355
+ /** Evolvable enumeration sentinel value. Do not use. */
91356
+ readonly UnknownFutureValue: "unknownFutureValue";
91357
+ };
90293
91358
  /**
90294
91359
  * Product Status of Windows Defender
90295
91360
  */
@@ -90400,6 +91465,14 @@ export declare const WindowsDeviceTypeObject: {
90400
91465
  /** Evolvable enumeration sentinel value. Do not use. */
90401
91466
  readonly UnknownFutureValue: "unknownFutureValue";
90402
91467
  };
91468
+ export declare const WindowsDeviceUsageTypeObject: {
91469
+ /** Default. Indicates that a device is a single-user device. */
91470
+ readonly SingleUser: "singleUser";
91471
+ /** Indicates that a device is a multi-user device. */
91472
+ readonly Shared: "shared";
91473
+ /** Evolvable enumeration sentinel value. Do not use. */
91474
+ readonly UnknownFutureValue: "unknownFutureValue";
91475
+ };
90403
91476
  /**
90404
91477
  * Windows Hello for Business pin usage options
90405
91478
  */
@@ -90734,6 +91807,14 @@ export declare const WindowsUserAccountControlSettingsObject: {
90734
91807
  /** Never notify. */
90735
91808
  readonly NeverNotify: "neverNotify";
90736
91809
  };
91810
+ export declare const WindowsUserTypeObject: {
91811
+ /** Indicates that the user has administrator privileges. */
91812
+ readonly Administrator: "administrator";
91813
+ /** Indicates that the user is a low-rights user without administrator privileges. */
91814
+ readonly Standard: "standard";
91815
+ /** Evolvable enumeration sentinel value. Do not use. */
91816
+ readonly UnknownFutureValue: "unknownFutureValue";
91817
+ };
90737
91818
  export declare const WorkbookOperationStatusObject: {
90738
91819
  readonly NotStarted: "notStarted";
90739
91820
  readonly Running: "running";
@@ -90754,6 +91835,11 @@ export declare const WorkforceIntegrationSupportedEntitiesObject: {
90754
91835
  readonly OfferShiftRequest: "offerShiftRequest";
90755
91836
  readonly UnknownFutureValue: "unknownFutureValue";
90756
91837
  };
91838
+ export declare const X509CertificateAffinityLevelObject: {
91839
+ readonly Low: "low";
91840
+ readonly High: "high";
91841
+ readonly UnknownFutureValue: "unknownFutureValue";
91842
+ };
90757
91843
  export declare const X509CertificateAuthenticationModeObject: {
90758
91844
  readonly X509CertificateSingleFactor: "x509CertificateSingleFactor";
90759
91845
  readonly X509CertificateMultiFactor: "x509CertificateMultiFactor";
@@ -90763,5 +91849,6 @@ export declare const X509CertificateRuleTypeObject: {
90763
91849
  readonly IssuerSubject: "issuerSubject";
90764
91850
  readonly PolicyOID: "policyOID";
90765
91851
  readonly UnknownFutureValue: "unknownFutureValue";
91852
+ readonly IssuerSubjectAndPolicyOID: "issuerSubjectAndPolicyOID";
90766
91853
  };
90767
91854
  //# sourceMappingURL=index.d.ts.map