@microsoft/msgraph-sdk 1.0.0-preview.66 → 1.0.0-preview.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/models/index.d.ts +451 -66
- package/models/index.d.ts.map +1 -1
- package/models/index.js +473 -20
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +98 -0
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +90 -2
- package/models/security/index.js.map +1 -1
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/models/index.js
CHANGED
|
@@ -2646,6 +2646,8 @@ export function createAuthenticationEventListenerFromDiscriminatorValue(parseNod
|
|
|
2646
2646
|
return deserializeIntoOnAttributeCollectionSubmitListener;
|
|
2647
2647
|
case "#microsoft.graph.onAuthenticationMethodLoadStartListener":
|
|
2648
2648
|
return deserializeIntoOnAuthenticationMethodLoadStartListener;
|
|
2649
|
+
case "#microsoft.graph.onEmailOtpSendListener":
|
|
2650
|
+
return deserializeIntoOnEmailOtpSendListener;
|
|
2649
2651
|
case "#microsoft.graph.onInteractiveAuthFlowStartListener":
|
|
2650
2652
|
return deserializeIntoOnInteractiveAuthFlowStartListener;
|
|
2651
2653
|
case "#microsoft.graph.onTokenIssuanceStartListener":
|
|
@@ -5935,6 +5937,8 @@ export function createCustomAuthenticationExtensionFromDiscriminatorValue(parseN
|
|
|
5935
5937
|
return deserializeIntoOnAttributeCollectionStartCustomExtension;
|
|
5936
5938
|
case "#microsoft.graph.onAttributeCollectionSubmitCustomExtension":
|
|
5937
5939
|
return deserializeIntoOnAttributeCollectionSubmitCustomExtension;
|
|
5940
|
+
case "#microsoft.graph.onOtpSendCustomExtension":
|
|
5941
|
+
return deserializeIntoOnOtpSendCustomExtension;
|
|
5938
5942
|
case "#microsoft.graph.onTokenIssuanceStartCustomExtension":
|
|
5939
5943
|
return deserializeIntoOnTokenIssuanceStartCustomExtension;
|
|
5940
5944
|
}
|
|
@@ -5977,6 +5981,8 @@ export function createCustomCalloutExtensionFromDiscriminatorValue(parseNode) {
|
|
|
5977
5981
|
return deserializeIntoOnAttributeCollectionStartCustomExtension;
|
|
5978
5982
|
case "#microsoft.graph.onAttributeCollectionSubmitCustomExtension":
|
|
5979
5983
|
return deserializeIntoOnAttributeCollectionSubmitCustomExtension;
|
|
5984
|
+
case "#microsoft.graph.onOtpSendCustomExtension":
|
|
5985
|
+
return deserializeIntoOnOtpSendCustomExtension;
|
|
5980
5986
|
case "#microsoft.graph.onTokenIssuanceStartCustomExtension":
|
|
5981
5987
|
return deserializeIntoOnTokenIssuanceStartCustomExtension;
|
|
5982
5988
|
}
|
|
@@ -6007,6 +6013,27 @@ export function createCustomExtensionAuthenticationConfigurationFromDiscriminato
|
|
|
6007
6013
|
}
|
|
6008
6014
|
return deserializeIntoCustomExtensionAuthenticationConfiguration;
|
|
6009
6015
|
}
|
|
6016
|
+
/**
|
|
6017
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
6018
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
6019
|
+
* @returns {CustomExtensionBehaviorOnError}
|
|
6020
|
+
*/
|
|
6021
|
+
// @ts-ignore
|
|
6022
|
+
export function createCustomExtensionBehaviorOnErrorFromDiscriminatorValue(parseNode) {
|
|
6023
|
+
if (!parseNode)
|
|
6024
|
+
throw new Error("parseNode cannot be undefined");
|
|
6025
|
+
const mappingValueNode = parseNode === null || parseNode === void 0 ? void 0 : parseNode.getChildNode("@odata.type");
|
|
6026
|
+
if (mappingValueNode) {
|
|
6027
|
+
const mappingValue = mappingValueNode.getStringValue();
|
|
6028
|
+
if (mappingValue) {
|
|
6029
|
+
switch (mappingValue) {
|
|
6030
|
+
case "#microsoft.graph.fallbackToMicrosoftProviderOnError":
|
|
6031
|
+
return deserializeIntoFallbackToMicrosoftProviderOnError;
|
|
6032
|
+
}
|
|
6033
|
+
}
|
|
6034
|
+
}
|
|
6035
|
+
return deserializeIntoCustomExtensionBehaviorOnError;
|
|
6036
|
+
}
|
|
6010
6037
|
/**
|
|
6011
6038
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
6012
6039
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -10072,6 +10099,8 @@ export function createEntityFromDiscriminatorValue(parseNode) {
|
|
|
10072
10099
|
return deserializeIntoMobileAppContent;
|
|
10073
10100
|
case "#microsoft.graph.mobileAppContentFile":
|
|
10074
10101
|
return deserializeIntoMobileAppContentFile;
|
|
10102
|
+
case "#microsoft.graph.mobileAppRelationship":
|
|
10103
|
+
return deserializeIntoMobileAppRelationship;
|
|
10075
10104
|
case "#microsoft.graph.mobileAppTroubleshootingEvent":
|
|
10076
10105
|
return deserializeIntoMobileAppTroubleshootingEvent;
|
|
10077
10106
|
case "#microsoft.graph.mobileContainedApp":
|
|
@@ -10122,6 +10151,8 @@ export function createEntityFromDiscriminatorValue(parseNode) {
|
|
|
10122
10151
|
return deserializeIntoOneDriveForBusinessProtectionPolicy;
|
|
10123
10152
|
case "#microsoft.graph.oneDriveForBusinessRestoreSession":
|
|
10124
10153
|
return deserializeIntoOneDriveForBusinessRestoreSession;
|
|
10154
|
+
case "#microsoft.graph.onEmailOtpSendListener":
|
|
10155
|
+
return deserializeIntoOnEmailOtpSendListener;
|
|
10125
10156
|
case "#microsoft.graph.onenote":
|
|
10126
10157
|
return deserializeIntoOnenote;
|
|
10127
10158
|
case "#microsoft.graph.onenoteEntityBaseModel":
|
|
@@ -10144,6 +10175,8 @@ export function createEntityFromDiscriminatorValue(parseNode) {
|
|
|
10144
10175
|
return deserializeIntoOnlineMeeting;
|
|
10145
10176
|
case "#microsoft.graph.onlineMeetingBase":
|
|
10146
10177
|
return deserializeIntoOnlineMeetingBase;
|
|
10178
|
+
case "#microsoft.graph.onOtpSendCustomExtension":
|
|
10179
|
+
return deserializeIntoOnOtpSendCustomExtension;
|
|
10147
10180
|
case "#microsoft.graph.onPremisesConditionalAccessSettings":
|
|
10148
10181
|
return deserializeIntoOnPremisesConditionalAccessSettings;
|
|
10149
10182
|
case "#microsoft.graph.onPremisesDirectorySynchronization":
|
|
@@ -11484,6 +11517,15 @@ export function createExternalUsersSelfServiceSignUpEventsFlowFromDiscriminatorV
|
|
|
11484
11517
|
export function createExtractSensitivityLabelsResultFromDiscriminatorValue(parseNode) {
|
|
11485
11518
|
return deserializeIntoExtractSensitivityLabelsResult;
|
|
11486
11519
|
}
|
|
11520
|
+
/**
|
|
11521
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
11522
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
11523
|
+
* @returns {FallbackToMicrosoftProviderOnError}
|
|
11524
|
+
*/
|
|
11525
|
+
// @ts-ignore
|
|
11526
|
+
export function createFallbackToMicrosoftProviderOnErrorFromDiscriminatorValue(parseNode) {
|
|
11527
|
+
return deserializeIntoFallbackToMicrosoftProviderOnError;
|
|
11528
|
+
}
|
|
11487
11529
|
/**
|
|
11488
11530
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
11489
11531
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -12799,6 +12841,15 @@ export function createIosCompliancePolicyFromDiscriminatorValue(parseNode) {
|
|
|
12799
12841
|
export function createIosCustomConfigurationFromDiscriminatorValue(parseNode) {
|
|
12800
12842
|
return deserializeIntoIosCustomConfiguration;
|
|
12801
12843
|
}
|
|
12844
|
+
/**
|
|
12845
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12846
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12847
|
+
* @returns {IosDdmLobAppAssignmentSettings}
|
|
12848
|
+
*/
|
|
12849
|
+
// @ts-ignore
|
|
12850
|
+
export function createIosDdmLobAppAssignmentSettingsFromDiscriminatorValue(parseNode) {
|
|
12851
|
+
return deserializeIntoIosDdmLobAppAssignmentSettings;
|
|
12852
|
+
}
|
|
12802
12853
|
/**
|
|
12803
12854
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12804
12855
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -15245,6 +15296,8 @@ export function createMobileAppAssignmentSettingsFromDiscriminatorValue(parseNod
|
|
|
15245
15296
|
const mappingValue = mappingValueNode.getStringValue();
|
|
15246
15297
|
if (mappingValue) {
|
|
15247
15298
|
switch (mappingValue) {
|
|
15299
|
+
case "#microsoft.graph.iosDdmLobAppAssignmentSettings":
|
|
15300
|
+
return deserializeIntoIosDdmLobAppAssignmentSettings;
|
|
15248
15301
|
case "#microsoft.graph.iosLobAppAssignmentSettings":
|
|
15249
15302
|
return deserializeIntoIosLobAppAssignmentSettings;
|
|
15250
15303
|
case "#microsoft.graph.iosStoreAppAssignmentSettings":
|
|
@@ -15432,6 +15485,24 @@ export function createMobileAppIdentifierFromDiscriminatorValue(parseNode) {
|
|
|
15432
15485
|
export function createMobileAppInstallTimeSettingsFromDiscriminatorValue(parseNode) {
|
|
15433
15486
|
return deserializeIntoMobileAppInstallTimeSettings;
|
|
15434
15487
|
}
|
|
15488
|
+
/**
|
|
15489
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
15490
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
15491
|
+
* @returns {MobileAppRelationshipCollectionResponse}
|
|
15492
|
+
*/
|
|
15493
|
+
// @ts-ignore
|
|
15494
|
+
export function createMobileAppRelationshipCollectionResponseFromDiscriminatorValue(parseNode) {
|
|
15495
|
+
return deserializeIntoMobileAppRelationshipCollectionResponse;
|
|
15496
|
+
}
|
|
15497
|
+
/**
|
|
15498
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
15499
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
15500
|
+
* @returns {MobileAppRelationship}
|
|
15501
|
+
*/
|
|
15502
|
+
// @ts-ignore
|
|
15503
|
+
export function createMobileAppRelationshipFromDiscriminatorValue(parseNode) {
|
|
15504
|
+
return deserializeIntoMobileAppRelationship;
|
|
15505
|
+
}
|
|
15435
15506
|
/**
|
|
15436
15507
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
15437
15508
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -16183,6 +16254,15 @@ export function createOneDriveForBusinessRestoreSessionCollectionResponseFromDis
|
|
|
16183
16254
|
export function createOneDriveForBusinessRestoreSessionFromDiscriminatorValue(parseNode) {
|
|
16184
16255
|
return deserializeIntoOneDriveForBusinessRestoreSession;
|
|
16185
16256
|
}
|
|
16257
|
+
/**
|
|
16258
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16259
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16260
|
+
* @returns {OnEmailOtpSendListener}
|
|
16261
|
+
*/
|
|
16262
|
+
// @ts-ignore
|
|
16263
|
+
export function createOnEmailOtpSendListenerFromDiscriminatorValue(parseNode) {
|
|
16264
|
+
return deserializeIntoOnEmailOtpSendListener;
|
|
16265
|
+
}
|
|
16186
16266
|
/**
|
|
16187
16267
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
16188
16268
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -16485,6 +16565,45 @@ export function createOnlineMeetingInfoFromDiscriminatorValue(parseNode) {
|
|
|
16485
16565
|
export function createOnlineMeetingRestrictedFromDiscriminatorValue(parseNode) {
|
|
16486
16566
|
return deserializeIntoOnlineMeetingRestricted;
|
|
16487
16567
|
}
|
|
16568
|
+
/**
|
|
16569
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16570
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16571
|
+
* @returns {OnOtpSendCustomExtension}
|
|
16572
|
+
*/
|
|
16573
|
+
// @ts-ignore
|
|
16574
|
+
export function createOnOtpSendCustomExtensionFromDiscriminatorValue(parseNode) {
|
|
16575
|
+
return deserializeIntoOnOtpSendCustomExtension;
|
|
16576
|
+
}
|
|
16577
|
+
/**
|
|
16578
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16579
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16580
|
+
* @returns {OnOtpSendCustomExtensionHandler}
|
|
16581
|
+
*/
|
|
16582
|
+
// @ts-ignore
|
|
16583
|
+
export function createOnOtpSendCustomExtensionHandlerFromDiscriminatorValue(parseNode) {
|
|
16584
|
+
return deserializeIntoOnOtpSendCustomExtensionHandler;
|
|
16585
|
+
}
|
|
16586
|
+
/**
|
|
16587
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16588
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16589
|
+
* @returns {OnOtpSendHandler}
|
|
16590
|
+
*/
|
|
16591
|
+
// @ts-ignore
|
|
16592
|
+
export function createOnOtpSendHandlerFromDiscriminatorValue(parseNode) {
|
|
16593
|
+
if (!parseNode)
|
|
16594
|
+
throw new Error("parseNode cannot be undefined");
|
|
16595
|
+
const mappingValueNode = parseNode === null || parseNode === void 0 ? void 0 : parseNode.getChildNode("@odata.type");
|
|
16596
|
+
if (mappingValueNode) {
|
|
16597
|
+
const mappingValue = mappingValueNode.getStringValue();
|
|
16598
|
+
if (mappingValue) {
|
|
16599
|
+
switch (mappingValue) {
|
|
16600
|
+
case "#microsoft.graph.onOtpSendCustomExtensionHandler":
|
|
16601
|
+
return deserializeIntoOnOtpSendCustomExtensionHandler;
|
|
16602
|
+
}
|
|
16603
|
+
}
|
|
16604
|
+
}
|
|
16605
|
+
return deserializeIntoOnOtpSendHandler;
|
|
16606
|
+
}
|
|
16488
16607
|
/**
|
|
16489
16608
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
16490
16609
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -19620,6 +19739,15 @@ export function createRestorePointSearchResponseFromDiscriminatorValue(parseNode
|
|
|
19620
19739
|
export function createRestorePointSearchResultFromDiscriminatorValue(parseNode) {
|
|
19621
19740
|
return deserializeIntoRestorePointSearchResult;
|
|
19622
19741
|
}
|
|
19742
|
+
/**
|
|
19743
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
19744
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
19745
|
+
* @returns {RestoreSessionArtifactCount}
|
|
19746
|
+
*/
|
|
19747
|
+
// @ts-ignore
|
|
19748
|
+
export function createRestoreSessionArtifactCountFromDiscriminatorValue(parseNode) {
|
|
19749
|
+
return deserializeIntoRestoreSessionArtifactCount;
|
|
19750
|
+
}
|
|
19623
19751
|
/**
|
|
19624
19752
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
19625
19753
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -28259,7 +28387,15 @@ export function deserializeIntoAiInteraction(aiInteraction = {}) {
|
|
|
28259
28387
|
*/
|
|
28260
28388
|
// @ts-ignore
|
|
28261
28389
|
export function deserializeIntoAiInteractionAttachment(aiInteractionAttachment = {}) {
|
|
28262
|
-
return
|
|
28390
|
+
return {
|
|
28391
|
+
"attachmentId": n => { aiInteractionAttachment.attachmentId = n.getStringValue(); },
|
|
28392
|
+
"backingStoreEnabled": n => { aiInteractionAttachment.backingStoreEnabled = true; },
|
|
28393
|
+
"content": n => { aiInteractionAttachment.content = n.getStringValue(); },
|
|
28394
|
+
"contentType": n => { aiInteractionAttachment.contentType = n.getStringValue(); },
|
|
28395
|
+
"contentUrl": n => { aiInteractionAttachment.contentUrl = n.getStringValue(); },
|
|
28396
|
+
"name": n => { aiInteractionAttachment.name = n.getStringValue(); },
|
|
28397
|
+
"@odata.type": n => { aiInteractionAttachment.odataType = n.getStringValue(); },
|
|
28398
|
+
};
|
|
28263
28399
|
}
|
|
28264
28400
|
/**
|
|
28265
28401
|
* The deserialization information for the current model
|
|
@@ -28268,7 +28404,13 @@ export function deserializeIntoAiInteractionAttachment(aiInteractionAttachment =
|
|
|
28268
28404
|
*/
|
|
28269
28405
|
// @ts-ignore
|
|
28270
28406
|
export function deserializeIntoAiInteractionContext(aiInteractionContext = {}) {
|
|
28271
|
-
return
|
|
28407
|
+
return {
|
|
28408
|
+
"backingStoreEnabled": n => { aiInteractionContext.backingStoreEnabled = true; },
|
|
28409
|
+
"contextReference": n => { aiInteractionContext.contextReference = n.getStringValue(); },
|
|
28410
|
+
"contextType": n => { aiInteractionContext.contextType = n.getStringValue(); },
|
|
28411
|
+
"displayName": n => { aiInteractionContext.displayName = n.getStringValue(); },
|
|
28412
|
+
"@odata.type": n => { aiInteractionContext.odataType = n.getStringValue(); },
|
|
28413
|
+
};
|
|
28272
28414
|
}
|
|
28273
28415
|
/**
|
|
28274
28416
|
* The deserialization information for the current model
|
|
@@ -28286,7 +28428,13 @@ export function deserializeIntoAiInteractionHistory(aiInteractionHistory = {}) {
|
|
|
28286
28428
|
*/
|
|
28287
28429
|
// @ts-ignore
|
|
28288
28430
|
export function deserializeIntoAiInteractionLink(aiInteractionLink = {}) {
|
|
28289
|
-
return
|
|
28431
|
+
return {
|
|
28432
|
+
"backingStoreEnabled": n => { aiInteractionLink.backingStoreEnabled = true; },
|
|
28433
|
+
"displayName": n => { aiInteractionLink.displayName = n.getStringValue(); },
|
|
28434
|
+
"linkType": n => { aiInteractionLink.linkType = n.getStringValue(); },
|
|
28435
|
+
"linkUrl": n => { aiInteractionLink.linkUrl = n.getStringValue(); },
|
|
28436
|
+
"@odata.type": n => { aiInteractionLink.odataType = n.getStringValue(); },
|
|
28437
|
+
};
|
|
28290
28438
|
}
|
|
28291
28439
|
/**
|
|
28292
28440
|
* The deserialization information for the current model
|
|
@@ -28295,7 +28443,13 @@ export function deserializeIntoAiInteractionLink(aiInteractionLink = {}) {
|
|
|
28295
28443
|
*/
|
|
28296
28444
|
// @ts-ignore
|
|
28297
28445
|
export function deserializeIntoAiInteractionMention(aiInteractionMention = {}) {
|
|
28298
|
-
return
|
|
28446
|
+
return {
|
|
28447
|
+
"backingStoreEnabled": n => { aiInteractionMention.backingStoreEnabled = true; },
|
|
28448
|
+
"mentioned": n => { aiInteractionMention.mentioned = n.getObjectValue(createAiInteractionMentionedIdentitySetFromDiscriminatorValue); },
|
|
28449
|
+
"mentionId": n => { aiInteractionMention.mentionId = n.getNumberValue(); },
|
|
28450
|
+
"mentionText": n => { aiInteractionMention.mentionText = n.getStringValue(); },
|
|
28451
|
+
"@odata.type": n => { aiInteractionMention.odataType = n.getStringValue(); },
|
|
28452
|
+
};
|
|
28299
28453
|
}
|
|
28300
28454
|
/**
|
|
28301
28455
|
* The deserialization information for the current model
|
|
@@ -33546,7 +33700,7 @@ export function deserializeIntoCustomAppManagementConfiguration(customAppManagem
|
|
|
33546
33700
|
*/
|
|
33547
33701
|
// @ts-ignore
|
|
33548
33702
|
export function deserializeIntoCustomAuthenticationExtension(customAuthenticationExtension = {}) {
|
|
33549
|
-
return Object.assign({}, deserializeIntoCustomCalloutExtension(customAuthenticationExtension));
|
|
33703
|
+
return Object.assign(Object.assign({}, deserializeIntoCustomCalloutExtension(customAuthenticationExtension)), { "behaviorOnError": n => { customAuthenticationExtension.behaviorOnError = n.getObjectValue(createCustomExtensionBehaviorOnErrorFromDiscriminatorValue); } });
|
|
33550
33704
|
}
|
|
33551
33705
|
/**
|
|
33552
33706
|
* The deserialization information for the current model
|
|
@@ -33587,6 +33741,18 @@ export function deserializeIntoCustomExtensionAuthenticationConfiguration(custom
|
|
|
33587
33741
|
"@odata.type": n => { customExtensionAuthenticationConfiguration.odataType = n.getStringValue(); },
|
|
33588
33742
|
};
|
|
33589
33743
|
}
|
|
33744
|
+
/**
|
|
33745
|
+
* The deserialization information for the current model
|
|
33746
|
+
* @param CustomExtensionBehaviorOnError The instance to deserialize into.
|
|
33747
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33748
|
+
*/
|
|
33749
|
+
// @ts-ignore
|
|
33750
|
+
export function deserializeIntoCustomExtensionBehaviorOnError(customExtensionBehaviorOnError = {}) {
|
|
33751
|
+
return {
|
|
33752
|
+
"backingStoreEnabled": n => { customExtensionBehaviorOnError.backingStoreEnabled = true; },
|
|
33753
|
+
"@odata.type": n => { customExtensionBehaviorOnError.odataType = n.getStringValue(); },
|
|
33754
|
+
};
|
|
33755
|
+
}
|
|
33590
33756
|
/**
|
|
33591
33757
|
* The deserialization information for the current model
|
|
33592
33758
|
* @param CustomExtensionCallbackConfiguration The instance to deserialize into.
|
|
@@ -33664,6 +33830,7 @@ export function deserializeIntoCustomExtensionEndpointConfiguration(customExtens
|
|
|
33664
33830
|
export function deserializeIntoCustomExtensionOverwriteConfiguration(customExtensionOverwriteConfiguration = {}) {
|
|
33665
33831
|
return {
|
|
33666
33832
|
"backingStoreEnabled": n => { customExtensionOverwriteConfiguration.backingStoreEnabled = true; },
|
|
33833
|
+
"behaviorOnError": n => { customExtensionOverwriteConfiguration.behaviorOnError = n.getObjectValue(createCustomExtensionBehaviorOnErrorFromDiscriminatorValue); },
|
|
33667
33834
|
"clientConfiguration": n => { customExtensionOverwriteConfiguration.clientConfiguration = n.getObjectValue(createCustomExtensionClientConfigurationFromDiscriminatorValue); },
|
|
33668
33835
|
"@odata.type": n => { customExtensionOverwriteConfiguration.odataType = n.getStringValue(); },
|
|
33669
33836
|
};
|
|
@@ -34273,7 +34440,7 @@ export function deserializeIntoDeviceAndAppManagementRoleDefinition(deviceAndApp
|
|
|
34273
34440
|
*/
|
|
34274
34441
|
// @ts-ignore
|
|
34275
34442
|
export function deserializeIntoDeviceAppManagement(deviceAppManagement = {}) {
|
|
34276
|
-
return Object.assign(Object.assign({}, deserializeIntoEntity(deviceAppManagement)), { "androidManagedAppProtections": n => { deviceAppManagement.androidManagedAppProtections = n.getCollectionOfObjectValues(createAndroidManagedAppProtectionFromDiscriminatorValue); }, "defaultManagedAppProtections": n => { deviceAppManagement.defaultManagedAppProtections = n.getCollectionOfObjectValues(createDefaultManagedAppProtectionFromDiscriminatorValue); }, "iosManagedAppProtections": n => { deviceAppManagement.iosManagedAppProtections = n.getCollectionOfObjectValues(createIosManagedAppProtectionFromDiscriminatorValue); }, "isEnabledForMicrosoftStoreForBusiness": n => { deviceAppManagement.isEnabledForMicrosoftStoreForBusiness = n.getBooleanValue(); }, "managedAppPolicies": n => { deviceAppManagement.managedAppPolicies = n.getCollectionOfObjectValues(createManagedAppPolicyFromDiscriminatorValue); }, "managedAppRegistrations": n => { deviceAppManagement.managedAppRegistrations = n.getCollectionOfObjectValues(createManagedAppRegistrationFromDiscriminatorValue); }, "managedAppStatuses": n => { deviceAppManagement.managedAppStatuses = n.getCollectionOfObjectValues(createManagedAppStatusFromDiscriminatorValue); }, "managedEBooks": n => { deviceAppManagement.managedEBooks = n.getCollectionOfObjectValues(createManagedEBookFromDiscriminatorValue); }, "mdmWindowsInformationProtectionPolicies": n => { deviceAppManagement.mdmWindowsInformationProtectionPolicies = n.getCollectionOfObjectValues(createMdmWindowsInformationProtectionPolicyFromDiscriminatorValue); }, "microsoftStoreForBusinessLanguage": n => { deviceAppManagement.microsoftStoreForBusinessLanguage = n.getStringValue(); }, "microsoftStoreForBusinessLastCompletedApplicationSyncTime": n => { deviceAppManagement.microsoftStoreForBusinessLastCompletedApplicationSyncTime = n.getDateValue(); }, "microsoftStoreForBusinessLastSuccessfulSyncDateTime": n => { deviceAppManagement.microsoftStoreForBusinessLastSuccessfulSyncDateTime = n.getDateValue(); }, "mobileAppCategories": n => { deviceAppManagement.mobileAppCategories = n.getCollectionOfObjectValues(createMobileAppCategoryFromDiscriminatorValue); }, "mobileAppConfigurations": n => { deviceAppManagement.mobileAppConfigurations = n.getCollectionOfObjectValues(createManagedDeviceMobileAppConfigurationFromDiscriminatorValue); }, "mobileApps": n => { deviceAppManagement.mobileApps = n.getCollectionOfObjectValues(createMobileAppFromDiscriminatorValue); }, "targetedManagedAppConfigurations": n => { deviceAppManagement.targetedManagedAppConfigurations = n.getCollectionOfObjectValues(createTargetedManagedAppConfigurationFromDiscriminatorValue); }, "vppTokens": n => { deviceAppManagement.vppTokens = n.getCollectionOfObjectValues(createVppTokenFromDiscriminatorValue); }, "windowsInformationProtectionPolicies": n => { deviceAppManagement.windowsInformationProtectionPolicies = n.getCollectionOfObjectValues(createWindowsInformationProtectionPolicyFromDiscriminatorValue); } });
|
|
34443
|
+
return Object.assign(Object.assign({}, deserializeIntoEntity(deviceAppManagement)), { "androidManagedAppProtections": n => { deviceAppManagement.androidManagedAppProtections = n.getCollectionOfObjectValues(createAndroidManagedAppProtectionFromDiscriminatorValue); }, "defaultManagedAppProtections": n => { deviceAppManagement.defaultManagedAppProtections = n.getCollectionOfObjectValues(createDefaultManagedAppProtectionFromDiscriminatorValue); }, "iosManagedAppProtections": n => { deviceAppManagement.iosManagedAppProtections = n.getCollectionOfObjectValues(createIosManagedAppProtectionFromDiscriminatorValue); }, "isEnabledForMicrosoftStoreForBusiness": n => { deviceAppManagement.isEnabledForMicrosoftStoreForBusiness = n.getBooleanValue(); }, "managedAppPolicies": n => { deviceAppManagement.managedAppPolicies = n.getCollectionOfObjectValues(createManagedAppPolicyFromDiscriminatorValue); }, "managedAppRegistrations": n => { deviceAppManagement.managedAppRegistrations = n.getCollectionOfObjectValues(createManagedAppRegistrationFromDiscriminatorValue); }, "managedAppStatuses": n => { deviceAppManagement.managedAppStatuses = n.getCollectionOfObjectValues(createManagedAppStatusFromDiscriminatorValue); }, "managedEBooks": n => { deviceAppManagement.managedEBooks = n.getCollectionOfObjectValues(createManagedEBookFromDiscriminatorValue); }, "mdmWindowsInformationProtectionPolicies": n => { deviceAppManagement.mdmWindowsInformationProtectionPolicies = n.getCollectionOfObjectValues(createMdmWindowsInformationProtectionPolicyFromDiscriminatorValue); }, "microsoftStoreForBusinessLanguage": n => { deviceAppManagement.microsoftStoreForBusinessLanguage = n.getStringValue(); }, "microsoftStoreForBusinessLastCompletedApplicationSyncTime": n => { deviceAppManagement.microsoftStoreForBusinessLastCompletedApplicationSyncTime = n.getDateValue(); }, "microsoftStoreForBusinessLastSuccessfulSyncDateTime": n => { deviceAppManagement.microsoftStoreForBusinessLastSuccessfulSyncDateTime = n.getDateValue(); }, "mobileAppCategories": n => { deviceAppManagement.mobileAppCategories = n.getCollectionOfObjectValues(createMobileAppCategoryFromDiscriminatorValue); }, "mobileAppConfigurations": n => { deviceAppManagement.mobileAppConfigurations = n.getCollectionOfObjectValues(createManagedDeviceMobileAppConfigurationFromDiscriminatorValue); }, "mobileAppRelationships": n => { deviceAppManagement.mobileAppRelationships = n.getCollectionOfObjectValues(createMobileAppRelationshipFromDiscriminatorValue); }, "mobileApps": n => { deviceAppManagement.mobileApps = n.getCollectionOfObjectValues(createMobileAppFromDiscriminatorValue); }, "targetedManagedAppConfigurations": n => { deviceAppManagement.targetedManagedAppConfigurations = n.getCollectionOfObjectValues(createTargetedManagedAppConfigurationFromDiscriminatorValue); }, "vppTokens": n => { deviceAppManagement.vppTokens = n.getCollectionOfObjectValues(createVppTokenFromDiscriminatorValue); }, "windowsInformationProtectionPolicies": n => { deviceAppManagement.windowsInformationProtectionPolicies = n.getCollectionOfObjectValues(createWindowsInformationProtectionPolicyFromDiscriminatorValue); } });
|
|
34277
34444
|
}
|
|
34278
34445
|
/**
|
|
34279
34446
|
* The deserialization information for the current model
|
|
@@ -36944,6 +37111,15 @@ export function deserializeIntoExtractSensitivityLabelsResult(extractSensitivity
|
|
|
36944
37111
|
"@odata.type": n => { extractSensitivityLabelsResult.odataType = n.getStringValue(); },
|
|
36945
37112
|
};
|
|
36946
37113
|
}
|
|
37114
|
+
/**
|
|
37115
|
+
* The deserialization information for the current model
|
|
37116
|
+
* @param FallbackToMicrosoftProviderOnError The instance to deserialize into.
|
|
37117
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
37118
|
+
*/
|
|
37119
|
+
// @ts-ignore
|
|
37120
|
+
export function deserializeIntoFallbackToMicrosoftProviderOnError(fallbackToMicrosoftProviderOnError = {}) {
|
|
37121
|
+
return Object.assign({}, deserializeIntoCustomExtensionBehaviorOnError(fallbackToMicrosoftProviderOnError));
|
|
37122
|
+
}
|
|
36947
37123
|
/**
|
|
36948
37124
|
* The deserialization information for the current model
|
|
36949
37125
|
* @param FeatureRolloutPolicy The instance to deserialize into.
|
|
@@ -38361,6 +38537,15 @@ export function deserializeIntoIosCompliancePolicy(iosCompliancePolicy = {}) {
|
|
|
38361
38537
|
export function deserializeIntoIosCustomConfiguration(iosCustomConfiguration = {}) {
|
|
38362
38538
|
return Object.assign(Object.assign({}, deserializeIntoDeviceConfiguration(iosCustomConfiguration)), { "payload": n => { iosCustomConfiguration.payload = n.getByteArrayValue(); }, "payloadFileName": n => { iosCustomConfiguration.payloadFileName = n.getStringValue(); }, "payloadName": n => { iosCustomConfiguration.payloadName = n.getStringValue(); } });
|
|
38363
38539
|
}
|
|
38540
|
+
/**
|
|
38541
|
+
* The deserialization information for the current model
|
|
38542
|
+
* @param IosDdmLobAppAssignmentSettings The instance to deserialize into.
|
|
38543
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
38544
|
+
*/
|
|
38545
|
+
// @ts-ignore
|
|
38546
|
+
export function deserializeIntoIosDdmLobAppAssignmentSettings(iosDdmLobAppAssignmentSettings = {}) {
|
|
38547
|
+
return Object.assign(Object.assign({}, deserializeIntoMobileAppAssignmentSettings(iosDdmLobAppAssignmentSettings)), { "associatedDomains": n => { iosDdmLobAppAssignmentSettings.associatedDomains = n.getCollectionOfPrimitiveValues(); }, "associatedDomainsDirectDownloadAllowed": n => { iosDdmLobAppAssignmentSettings.associatedDomainsDirectDownloadAllowed = n.getBooleanValue(); }, "preventManagedAppBackup": n => { iosDdmLobAppAssignmentSettings.preventManagedAppBackup = n.getBooleanValue(); }, "tapToPayScreenLockEnabled": n => { iosDdmLobAppAssignmentSettings.tapToPayScreenLockEnabled = n.getBooleanValue(); }, "vpnConfigurationId": n => { iosDdmLobAppAssignmentSettings.vpnConfigurationId = n.getStringValue(); } });
|
|
38548
|
+
}
|
|
38364
38549
|
/**
|
|
38365
38550
|
* The deserialization information for the current model
|
|
38366
38551
|
* @param IosDeviceFeaturesConfiguration The instance to deserialize into.
|
|
@@ -39693,7 +39878,7 @@ export function deserializeIntoMailboxProtectionUnitsBulkAdditionJobCollectionRe
|
|
|
39693
39878
|
*/
|
|
39694
39879
|
// @ts-ignore
|
|
39695
39880
|
export function deserializeIntoMailboxRestoreArtifact(mailboxRestoreArtifact = {}) {
|
|
39696
|
-
return Object.assign(Object.assign({}, deserializeIntoRestoreArtifactBase(mailboxRestoreArtifact)), { "restoredFolderId": n => { mailboxRestoreArtifact.restoredFolderId = n.getStringValue(); }, "restoredFolderName": n => { mailboxRestoreArtifact.restoredFolderName = n.getStringValue(); } });
|
|
39881
|
+
return Object.assign(Object.assign({}, deserializeIntoRestoreArtifactBase(mailboxRestoreArtifact)), { "restoredFolderId": n => { mailboxRestoreArtifact.restoredFolderId = n.getStringValue(); }, "restoredFolderName": n => { mailboxRestoreArtifact.restoredFolderName = n.getStringValue(); }, "restoredItemCount": n => { mailboxRestoreArtifact.restoredItemCount = n.getNumberValue(); } });
|
|
39697
39882
|
}
|
|
39698
39883
|
/**
|
|
39699
39884
|
* The deserialization information for the current model
|
|
@@ -41024,6 +41209,24 @@ export function deserializeIntoMobileAppInstallTimeSettings(mobileAppInstallTime
|
|
|
41024
41209
|
"useLocalTime": n => { mobileAppInstallTimeSettings.useLocalTime = n.getBooleanValue(); },
|
|
41025
41210
|
};
|
|
41026
41211
|
}
|
|
41212
|
+
/**
|
|
41213
|
+
* The deserialization information for the current model
|
|
41214
|
+
* @param MobileAppRelationship The instance to deserialize into.
|
|
41215
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
41216
|
+
*/
|
|
41217
|
+
// @ts-ignore
|
|
41218
|
+
export function deserializeIntoMobileAppRelationship(mobileAppRelationship = {}) {
|
|
41219
|
+
return Object.assign(Object.assign({}, deserializeIntoEntity(mobileAppRelationship)), { "sourceDisplayName": n => { mobileAppRelationship.sourceDisplayName = n.getStringValue(); }, "sourceDisplayVersion": n => { mobileAppRelationship.sourceDisplayVersion = n.getStringValue(); }, "sourceId": n => { mobileAppRelationship.sourceId = n.getStringValue(); }, "sourcePublisherDisplayName": n => { mobileAppRelationship.sourcePublisherDisplayName = n.getStringValue(); }, "targetDisplayName": n => { mobileAppRelationship.targetDisplayName = n.getStringValue(); }, "targetDisplayVersion": n => { mobileAppRelationship.targetDisplayVersion = n.getStringValue(); }, "targetId": n => { mobileAppRelationship.targetId = n.getStringValue(); }, "targetPublisherDisplayName": n => { mobileAppRelationship.targetPublisherDisplayName = n.getStringValue(); } });
|
|
41220
|
+
}
|
|
41221
|
+
/**
|
|
41222
|
+
* The deserialization information for the current model
|
|
41223
|
+
* @param MobileAppRelationshipCollectionResponse The instance to deserialize into.
|
|
41224
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
41225
|
+
*/
|
|
41226
|
+
// @ts-ignore
|
|
41227
|
+
export function deserializeIntoMobileAppRelationshipCollectionResponse(mobileAppRelationshipCollectionResponse = {}) {
|
|
41228
|
+
return Object.assign(Object.assign({}, deserializeIntoBaseCollectionPaginationCountResponse(mobileAppRelationshipCollectionResponse)), { "value": n => { mobileAppRelationshipCollectionResponse.value = n.getCollectionOfObjectValues(createMobileAppRelationshipFromDiscriminatorValue); } });
|
|
41229
|
+
}
|
|
41027
41230
|
/**
|
|
41028
41231
|
* The deserialization information for the current model
|
|
41029
41232
|
* @param MobileAppTroubleshootingEvent The instance to deserialize into.
|
|
@@ -41739,6 +41942,15 @@ export function deserializeIntoOneDriveForBusinessRestoreSession(oneDriveForBusi
|
|
|
41739
41942
|
export function deserializeIntoOneDriveForBusinessRestoreSessionCollectionResponse(oneDriveForBusinessRestoreSessionCollectionResponse = {}) {
|
|
41740
41943
|
return Object.assign(Object.assign({}, deserializeIntoBaseCollectionPaginationCountResponse(oneDriveForBusinessRestoreSessionCollectionResponse)), { "value": n => { oneDriveForBusinessRestoreSessionCollectionResponse.value = n.getCollectionOfObjectValues(createOneDriveForBusinessRestoreSessionFromDiscriminatorValue); } });
|
|
41741
41944
|
}
|
|
41945
|
+
/**
|
|
41946
|
+
* The deserialization information for the current model
|
|
41947
|
+
* @param OnEmailOtpSendListener The instance to deserialize into.
|
|
41948
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
41949
|
+
*/
|
|
41950
|
+
// @ts-ignore
|
|
41951
|
+
export function deserializeIntoOnEmailOtpSendListener(onEmailOtpSendListener = {}) {
|
|
41952
|
+
return Object.assign(Object.assign({}, deserializeIntoAuthenticationEventListener(onEmailOtpSendListener)), { "handler": n => { onEmailOtpSendListener.handler = n.getObjectValue(createOnOtpSendHandlerFromDiscriminatorValue); } });
|
|
41953
|
+
}
|
|
41742
41954
|
/**
|
|
41743
41955
|
* The deserialization information for the current model
|
|
41744
41956
|
* @param Onenote The instance to deserialize into.
|
|
@@ -41993,6 +42205,36 @@ export function deserializeIntoOnlineMeetingRestricted(onlineMeetingRestricted =
|
|
|
41993
42205
|
"videoDisabled": n => { onlineMeetingRestricted.videoDisabled = n.getCollectionOfEnumValues(OnlineMeetingVideoDisabledReasonObject); },
|
|
41994
42206
|
};
|
|
41995
42207
|
}
|
|
42208
|
+
/**
|
|
42209
|
+
* The deserialization information for the current model
|
|
42210
|
+
* @param OnOtpSendCustomExtension The instance to deserialize into.
|
|
42211
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
42212
|
+
*/
|
|
42213
|
+
// @ts-ignore
|
|
42214
|
+
export function deserializeIntoOnOtpSendCustomExtension(onOtpSendCustomExtension = {}) {
|
|
42215
|
+
return Object.assign({}, deserializeIntoCustomAuthenticationExtension(onOtpSendCustomExtension));
|
|
42216
|
+
}
|
|
42217
|
+
/**
|
|
42218
|
+
* The deserialization information for the current model
|
|
42219
|
+
* @param OnOtpSendCustomExtensionHandler The instance to deserialize into.
|
|
42220
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
42221
|
+
*/
|
|
42222
|
+
// @ts-ignore
|
|
42223
|
+
export function deserializeIntoOnOtpSendCustomExtensionHandler(onOtpSendCustomExtensionHandler = {}) {
|
|
42224
|
+
return Object.assign(Object.assign({}, deserializeIntoOnOtpSendHandler(onOtpSendCustomExtensionHandler)), { "configuration": n => { onOtpSendCustomExtensionHandler.configuration = n.getObjectValue(createCustomExtensionOverwriteConfigurationFromDiscriminatorValue); }, "customExtension": n => { onOtpSendCustomExtensionHandler.customExtension = n.getObjectValue(createOnOtpSendCustomExtensionFromDiscriminatorValue); } });
|
|
42225
|
+
}
|
|
42226
|
+
/**
|
|
42227
|
+
* The deserialization information for the current model
|
|
42228
|
+
* @param OnOtpSendHandler The instance to deserialize into.
|
|
42229
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
42230
|
+
*/
|
|
42231
|
+
// @ts-ignore
|
|
42232
|
+
export function deserializeIntoOnOtpSendHandler(onOtpSendHandler = {}) {
|
|
42233
|
+
return {
|
|
42234
|
+
"backingStoreEnabled": n => { onOtpSendHandler.backingStoreEnabled = true; },
|
|
42235
|
+
"@odata.type": n => { onOtpSendHandler.odataType = n.getStringValue(); },
|
|
42236
|
+
};
|
|
42237
|
+
}
|
|
41996
42238
|
/**
|
|
41997
42239
|
* The deserialization information for the current model
|
|
41998
42240
|
* @param OnPremisesAccidentalDeletionPrevention The instance to deserialize into.
|
|
@@ -45588,6 +45830,22 @@ export function deserializeIntoRestorePointSearchResult(restorePointSearchResult
|
|
|
45588
45830
|
"restorePoint": n => { restorePointSearchResult.restorePoint = n.getObjectValue(createRestorePointFromDiscriminatorValue); },
|
|
45589
45831
|
};
|
|
45590
45832
|
}
|
|
45833
|
+
/**
|
|
45834
|
+
* The deserialization information for the current model
|
|
45835
|
+
* @param RestoreSessionArtifactCount The instance to deserialize into.
|
|
45836
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
45837
|
+
*/
|
|
45838
|
+
// @ts-ignore
|
|
45839
|
+
export function deserializeIntoRestoreSessionArtifactCount(restoreSessionArtifactCount = {}) {
|
|
45840
|
+
return {
|
|
45841
|
+
"backingStoreEnabled": n => { restoreSessionArtifactCount.backingStoreEnabled = true; },
|
|
45842
|
+
"completed": n => { restoreSessionArtifactCount.completed = n.getNumberValue(); },
|
|
45843
|
+
"failed": n => { restoreSessionArtifactCount.failed = n.getNumberValue(); },
|
|
45844
|
+
"inProgress": n => { restoreSessionArtifactCount.inProgress = n.getNumberValue(); },
|
|
45845
|
+
"@odata.type": n => { restoreSessionArtifactCount.odataType = n.getStringValue(); },
|
|
45846
|
+
"total": n => { restoreSessionArtifactCount.total = n.getNumberValue(); },
|
|
45847
|
+
};
|
|
45848
|
+
}
|
|
45591
45849
|
/**
|
|
45592
45850
|
* The deserialization information for the current model
|
|
45593
45851
|
* @param RestoreSessionBase The instance to deserialize into.
|
|
@@ -45595,7 +45853,7 @@ export function deserializeIntoRestorePointSearchResult(restorePointSearchResult
|
|
|
45595
45853
|
*/
|
|
45596
45854
|
// @ts-ignore
|
|
45597
45855
|
export function deserializeIntoRestoreSessionBase(restoreSessionBase = {}) {
|
|
45598
|
-
return Object.assign(Object.assign({}, deserializeIntoEntity(restoreSessionBase)), { "completedDateTime": n => { restoreSessionBase.completedDateTime = n.getDateValue(); }, "createdBy": n => { restoreSessionBase.createdBy = n.getObjectValue(createIdentitySetFromDiscriminatorValue); }, "createdDateTime": n => { restoreSessionBase.createdDateTime = n.getDateValue(); }, "error": n => { restoreSessionBase.errorEscaped = n.getObjectValue(createPublicErrorFromDiscriminatorValue); }, "lastModifiedBy": n => { restoreSessionBase.lastModifiedBy = n.getObjectValue(createIdentitySetFromDiscriminatorValue); }, "lastModifiedDateTime": n => { restoreSessionBase.lastModifiedDateTime = n.getDateValue(); }, "status": n => { restoreSessionBase.status = n.getEnumValue(RestoreSessionStatusObject); } });
|
|
45856
|
+
return Object.assign(Object.assign({}, deserializeIntoEntity(restoreSessionBase)), { "completedDateTime": n => { restoreSessionBase.completedDateTime = n.getDateValue(); }, "createdBy": n => { restoreSessionBase.createdBy = n.getObjectValue(createIdentitySetFromDiscriminatorValue); }, "createdDateTime": n => { restoreSessionBase.createdDateTime = n.getDateValue(); }, "error": n => { restoreSessionBase.errorEscaped = n.getObjectValue(createPublicErrorFromDiscriminatorValue); }, "lastModifiedBy": n => { restoreSessionBase.lastModifiedBy = n.getObjectValue(createIdentitySetFromDiscriminatorValue); }, "lastModifiedDateTime": n => { restoreSessionBase.lastModifiedDateTime = n.getDateValue(); }, "restoreJobType": n => { restoreSessionBase.restoreJobType = n.getEnumValue(RestoreJobTypeObject); }, "restoreSessionArtifactCount": n => { restoreSessionBase.restoreSessionArtifactCount = n.getObjectValue(createRestoreSessionArtifactCountFromDiscriminatorValue); }, "status": n => { restoreSessionBase.status = n.getEnumValue(RestoreSessionStatusObject); } });
|
|
45599
45857
|
}
|
|
45600
45858
|
/**
|
|
45601
45859
|
* The deserialization information for the current model
|
|
@@ -55832,12 +56090,13 @@ export function serializeAiInteractionAttachment(writer, aiInteractionAttachment
|
|
|
55832
56090
|
if (!aiInteractionAttachment || isSerializingDerivedType) {
|
|
55833
56091
|
return;
|
|
55834
56092
|
}
|
|
55835
|
-
serializeEntity(writer, aiInteractionAttachment, isSerializingDerivedType);
|
|
55836
56093
|
writer.writeStringValue("attachmentId", aiInteractionAttachment.attachmentId);
|
|
55837
56094
|
writer.writeStringValue("content", aiInteractionAttachment.content);
|
|
55838
56095
|
writer.writeStringValue("contentType", aiInteractionAttachment.contentType);
|
|
55839
56096
|
writer.writeStringValue("contentUrl", aiInteractionAttachment.contentUrl);
|
|
55840
56097
|
writer.writeStringValue("name", aiInteractionAttachment.name);
|
|
56098
|
+
writer.writeStringValue("@odata.type", aiInteractionAttachment.odataType);
|
|
56099
|
+
writer.writeAdditionalData(aiInteractionAttachment.additionalData);
|
|
55841
56100
|
}
|
|
55842
56101
|
/**
|
|
55843
56102
|
* Serializes information the current object
|
|
@@ -55850,10 +56109,11 @@ export function serializeAiInteractionContext(writer, aiInteractionContext = {},
|
|
|
55850
56109
|
if (!aiInteractionContext || isSerializingDerivedType) {
|
|
55851
56110
|
return;
|
|
55852
56111
|
}
|
|
55853
|
-
serializeEntity(writer, aiInteractionContext, isSerializingDerivedType);
|
|
55854
56112
|
writer.writeStringValue("contextReference", aiInteractionContext.contextReference);
|
|
55855
56113
|
writer.writeStringValue("contextType", aiInteractionContext.contextType);
|
|
55856
56114
|
writer.writeStringValue("displayName", aiInteractionContext.displayName);
|
|
56115
|
+
writer.writeStringValue("@odata.type", aiInteractionContext.odataType);
|
|
56116
|
+
writer.writeAdditionalData(aiInteractionContext.additionalData);
|
|
55857
56117
|
}
|
|
55858
56118
|
/**
|
|
55859
56119
|
* Serializes information the current object
|
|
@@ -55879,10 +56139,11 @@ export function serializeAiInteractionLink(writer, aiInteractionLink = {}, isSer
|
|
|
55879
56139
|
if (!aiInteractionLink || isSerializingDerivedType) {
|
|
55880
56140
|
return;
|
|
55881
56141
|
}
|
|
55882
|
-
serializeEntity(writer, aiInteractionLink, isSerializingDerivedType);
|
|
55883
56142
|
writer.writeStringValue("displayName", aiInteractionLink.displayName);
|
|
55884
56143
|
writer.writeStringValue("linkType", aiInteractionLink.linkType);
|
|
55885
56144
|
writer.writeStringValue("linkUrl", aiInteractionLink.linkUrl);
|
|
56145
|
+
writer.writeStringValue("@odata.type", aiInteractionLink.odataType);
|
|
56146
|
+
writer.writeAdditionalData(aiInteractionLink.additionalData);
|
|
55886
56147
|
}
|
|
55887
56148
|
/**
|
|
55888
56149
|
* Serializes information the current object
|
|
@@ -55895,10 +56156,11 @@ export function serializeAiInteractionMention(writer, aiInteractionMention = {},
|
|
|
55895
56156
|
if (!aiInteractionMention || isSerializingDerivedType) {
|
|
55896
56157
|
return;
|
|
55897
56158
|
}
|
|
55898
|
-
serializeEntity(writer, aiInteractionMention, isSerializingDerivedType);
|
|
55899
56159
|
writer.writeObjectValue("mentioned", aiInteractionMention.mentioned, serializeAiInteractionMentionedIdentitySet);
|
|
55900
56160
|
writer.writeNumberValue("mentionId", aiInteractionMention.mentionId);
|
|
55901
56161
|
writer.writeStringValue("mentionText", aiInteractionMention.mentionText);
|
|
56162
|
+
writer.writeStringValue("@odata.type", aiInteractionMention.odataType);
|
|
56163
|
+
writer.writeAdditionalData(aiInteractionMention.additionalData);
|
|
55902
56164
|
}
|
|
55903
56165
|
/**
|
|
55904
56166
|
* Serializes information the current object
|
|
@@ -58524,6 +58786,9 @@ export function serializeAuthenticationEventListener(writer, authenticationEvent
|
|
|
58524
58786
|
case "#microsoft.graph.onAuthenticationMethodLoadStartListener":
|
|
58525
58787
|
serializeOnAuthenticationMethodLoadStartListener(writer, authenticationEventListener, true);
|
|
58526
58788
|
break;
|
|
58789
|
+
case "#microsoft.graph.onEmailOtpSendListener":
|
|
58790
|
+
serializeOnEmailOtpSendListener(writer, authenticationEventListener, true);
|
|
58791
|
+
break;
|
|
58527
58792
|
case "#microsoft.graph.onInteractiveAuthFlowStartListener":
|
|
58528
58793
|
serializeOnInteractiveAuthFlowStartListener(writer, authenticationEventListener, true);
|
|
58529
58794
|
break;
|
|
@@ -64262,6 +64527,7 @@ export function serializeCustomAuthenticationExtension(writer, customAuthenticat
|
|
|
64262
64527
|
return;
|
|
64263
64528
|
}
|
|
64264
64529
|
serializeCustomCalloutExtension(writer, customAuthenticationExtension, isSerializingDerivedType);
|
|
64530
|
+
writer.writeObjectValue("behaviorOnError", customAuthenticationExtension.behaviorOnError, serializeCustomExtensionBehaviorOnError);
|
|
64265
64531
|
switch (customAuthenticationExtension.odataType) {
|
|
64266
64532
|
case "#microsoft.graph.onAttributeCollectionStartCustomExtension":
|
|
64267
64533
|
serializeOnAttributeCollectionStartCustomExtension(writer, customAuthenticationExtension, true);
|
|
@@ -64269,6 +64535,9 @@ export function serializeCustomAuthenticationExtension(writer, customAuthenticat
|
|
|
64269
64535
|
case "#microsoft.graph.onAttributeCollectionSubmitCustomExtension":
|
|
64270
64536
|
serializeOnAttributeCollectionSubmitCustomExtension(writer, customAuthenticationExtension, true);
|
|
64271
64537
|
break;
|
|
64538
|
+
case "#microsoft.graph.onOtpSendCustomExtension":
|
|
64539
|
+
serializeOnOtpSendCustomExtension(writer, customAuthenticationExtension, true);
|
|
64540
|
+
break;
|
|
64272
64541
|
case "#microsoft.graph.onTokenIssuanceStartCustomExtension":
|
|
64273
64542
|
serializeOnTokenIssuanceStartCustomExtension(writer, customAuthenticationExtension, true);
|
|
64274
64543
|
break;
|
|
@@ -64324,6 +64593,9 @@ export function serializeCustomCalloutExtension(writer, customCalloutExtension =
|
|
|
64324
64593
|
case "#microsoft.graph.onAttributeCollectionSubmitCustomExtension":
|
|
64325
64594
|
serializeOnAttributeCollectionSubmitCustomExtension(writer, customCalloutExtension, true);
|
|
64326
64595
|
break;
|
|
64596
|
+
case "#microsoft.graph.onOtpSendCustomExtension":
|
|
64597
|
+
serializeOnOtpSendCustomExtension(writer, customCalloutExtension, true);
|
|
64598
|
+
break;
|
|
64327
64599
|
case "#microsoft.graph.onTokenIssuanceStartCustomExtension":
|
|
64328
64600
|
serializeOnTokenIssuanceStartCustomExtension(writer, customCalloutExtension, true);
|
|
64329
64601
|
break;
|
|
@@ -64365,6 +64637,25 @@ export function serializeCustomExtensionAuthenticationConfiguration(writer, cust
|
|
|
64365
64637
|
break;
|
|
64366
64638
|
}
|
|
64367
64639
|
}
|
|
64640
|
+
/**
|
|
64641
|
+
* Serializes information the current object
|
|
64642
|
+
* @param CustomExtensionBehaviorOnError The instance to serialize from.
|
|
64643
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
64644
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64645
|
+
*/
|
|
64646
|
+
// @ts-ignore
|
|
64647
|
+
export function serializeCustomExtensionBehaviorOnError(writer, customExtensionBehaviorOnError = {}, isSerializingDerivedType = false) {
|
|
64648
|
+
if (!customExtensionBehaviorOnError || isSerializingDerivedType) {
|
|
64649
|
+
return;
|
|
64650
|
+
}
|
|
64651
|
+
writer.writeStringValue("@odata.type", customExtensionBehaviorOnError.odataType);
|
|
64652
|
+
writer.writeAdditionalData(customExtensionBehaviorOnError.additionalData);
|
|
64653
|
+
switch (customExtensionBehaviorOnError.odataType) {
|
|
64654
|
+
case "#microsoft.graph.fallbackToMicrosoftProviderOnError":
|
|
64655
|
+
serializeFallbackToMicrosoftProviderOnError(writer, customExtensionBehaviorOnError, true);
|
|
64656
|
+
break;
|
|
64657
|
+
}
|
|
64658
|
+
}
|
|
64368
64659
|
/**
|
|
64369
64660
|
* Serializes information the current object
|
|
64370
64661
|
* @param CustomExtensionCallbackConfiguration The instance to serialize from.
|
|
@@ -64478,6 +64769,7 @@ export function serializeCustomExtensionOverwriteConfiguration(writer, customExt
|
|
|
64478
64769
|
if (!customExtensionOverwriteConfiguration || isSerializingDerivedType) {
|
|
64479
64770
|
return;
|
|
64480
64771
|
}
|
|
64772
|
+
writer.writeObjectValue("behaviorOnError", customExtensionOverwriteConfiguration.behaviorOnError, serializeCustomExtensionBehaviorOnError);
|
|
64481
64773
|
writer.writeObjectValue("clientConfiguration", customExtensionOverwriteConfiguration.clientConfiguration, serializeCustomExtensionClientConfiguration);
|
|
64482
64774
|
writer.writeStringValue("@odata.type", customExtensionOverwriteConfiguration.odataType);
|
|
64483
64775
|
writer.writeAdditionalData(customExtensionOverwriteConfiguration.additionalData);
|
|
@@ -65500,6 +65792,7 @@ export function serializeDeviceAppManagement(writer, deviceAppManagement = {}, i
|
|
|
65500
65792
|
writer.writeDateValue("microsoftStoreForBusinessLastSuccessfulSyncDateTime", deviceAppManagement.microsoftStoreForBusinessLastSuccessfulSyncDateTime);
|
|
65501
65793
|
writer.writeCollectionOfObjectValues("mobileAppCategories", deviceAppManagement.mobileAppCategories, serializeMobileAppCategory);
|
|
65502
65794
|
writer.writeCollectionOfObjectValues("mobileAppConfigurations", deviceAppManagement.mobileAppConfigurations, serializeManagedDeviceMobileAppConfiguration);
|
|
65795
|
+
writer.writeCollectionOfObjectValues("mobileAppRelationships", deviceAppManagement.mobileAppRelationships, serializeMobileAppRelationship);
|
|
65503
65796
|
writer.writeCollectionOfObjectValues("mobileApps", deviceAppManagement.mobileApps, serializeMobileApp);
|
|
65504
65797
|
writer.writeCollectionOfObjectValues("targetedManagedAppConfigurations", deviceAppManagement.targetedManagedAppConfigurations, serializeTargetedManagedAppConfiguration);
|
|
65505
65798
|
writer.writeCollectionOfObjectValues("vppTokens", deviceAppManagement.vppTokens, serializeVppToken);
|
|
@@ -71189,6 +71482,9 @@ export function serializeEntity(writer, entity = {}, isSerializingDerivedType =
|
|
|
71189
71482
|
case "#microsoft.graph.mobileAppContentFile":
|
|
71190
71483
|
serializeMobileAppContentFile(writer, entity, true);
|
|
71191
71484
|
break;
|
|
71485
|
+
case "#microsoft.graph.mobileAppRelationship":
|
|
71486
|
+
serializeMobileAppRelationship(writer, entity, true);
|
|
71487
|
+
break;
|
|
71192
71488
|
case "#microsoft.graph.mobileAppTroubleshootingEvent":
|
|
71193
71489
|
serializeMobileAppTroubleshootingEvent(writer, entity, true);
|
|
71194
71490
|
break;
|
|
@@ -71264,6 +71560,9 @@ export function serializeEntity(writer, entity = {}, isSerializingDerivedType =
|
|
|
71264
71560
|
case "#microsoft.graph.oneDriveForBusinessRestoreSession":
|
|
71265
71561
|
serializeOneDriveForBusinessRestoreSession(writer, entity, true);
|
|
71266
71562
|
break;
|
|
71563
|
+
case "#microsoft.graph.onEmailOtpSendListener":
|
|
71564
|
+
serializeOnEmailOtpSendListener(writer, entity, true);
|
|
71565
|
+
break;
|
|
71267
71566
|
case "#microsoft.graph.onenote":
|
|
71268
71567
|
serializeOnenote(writer, entity, true);
|
|
71269
71568
|
break;
|
|
@@ -71297,6 +71596,9 @@ export function serializeEntity(writer, entity = {}, isSerializingDerivedType =
|
|
|
71297
71596
|
case "#microsoft.graph.onlineMeetingBase":
|
|
71298
71597
|
serializeOnlineMeetingBase(writer, entity, true);
|
|
71299
71598
|
break;
|
|
71599
|
+
case "#microsoft.graph.onOtpSendCustomExtension":
|
|
71600
|
+
serializeOnOtpSendCustomExtension(writer, entity, true);
|
|
71601
|
+
break;
|
|
71300
71602
|
case "#microsoft.graph.onPremisesConditionalAccessSettings":
|
|
71301
71603
|
serializeOnPremisesConditionalAccessSettings(writer, entity, true);
|
|
71302
71604
|
break;
|
|
@@ -73358,6 +73660,19 @@ export function serializeExtractSensitivityLabelsResult(writer, extractSensitivi
|
|
|
73358
73660
|
writer.writeStringValue("@odata.type", extractSensitivityLabelsResult.odataType);
|
|
73359
73661
|
writer.writeAdditionalData(extractSensitivityLabelsResult.additionalData);
|
|
73360
73662
|
}
|
|
73663
|
+
/**
|
|
73664
|
+
* Serializes information the current object
|
|
73665
|
+
* @param FallbackToMicrosoftProviderOnError The instance to serialize from.
|
|
73666
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
73667
|
+
* @param writer Serialization writer to use to serialize this model
|
|
73668
|
+
*/
|
|
73669
|
+
// @ts-ignore
|
|
73670
|
+
export function serializeFallbackToMicrosoftProviderOnError(writer, fallbackToMicrosoftProviderOnError = {}, isSerializingDerivedType = false) {
|
|
73671
|
+
if (!fallbackToMicrosoftProviderOnError || isSerializingDerivedType) {
|
|
73672
|
+
return;
|
|
73673
|
+
}
|
|
73674
|
+
serializeCustomExtensionBehaviorOnError(writer, fallbackToMicrosoftProviderOnError, isSerializingDerivedType);
|
|
73675
|
+
}
|
|
73361
73676
|
/**
|
|
73362
73677
|
* Serializes information the current object
|
|
73363
73678
|
* @param FeatureRolloutPolicy The instance to serialize from.
|
|
@@ -75578,6 +75893,24 @@ export function serializeIosCustomConfiguration(writer, iosCustomConfiguration =
|
|
|
75578
75893
|
writer.writeStringValue("payloadFileName", iosCustomConfiguration.payloadFileName);
|
|
75579
75894
|
writer.writeStringValue("payloadName", iosCustomConfiguration.payloadName);
|
|
75580
75895
|
}
|
|
75896
|
+
/**
|
|
75897
|
+
* Serializes information the current object
|
|
75898
|
+
* @param IosDdmLobAppAssignmentSettings The instance to serialize from.
|
|
75899
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
75900
|
+
* @param writer Serialization writer to use to serialize this model
|
|
75901
|
+
*/
|
|
75902
|
+
// @ts-ignore
|
|
75903
|
+
export function serializeIosDdmLobAppAssignmentSettings(writer, iosDdmLobAppAssignmentSettings = {}, isSerializingDerivedType = false) {
|
|
75904
|
+
if (!iosDdmLobAppAssignmentSettings || isSerializingDerivedType) {
|
|
75905
|
+
return;
|
|
75906
|
+
}
|
|
75907
|
+
serializeMobileAppAssignmentSettings(writer, iosDdmLobAppAssignmentSettings, isSerializingDerivedType);
|
|
75908
|
+
writer.writeCollectionOfPrimitiveValues("associatedDomains", iosDdmLobAppAssignmentSettings.associatedDomains);
|
|
75909
|
+
writer.writeBooleanValue("associatedDomainsDirectDownloadAllowed", iosDdmLobAppAssignmentSettings.associatedDomainsDirectDownloadAllowed);
|
|
75910
|
+
writer.writeBooleanValue("preventManagedAppBackup", iosDdmLobAppAssignmentSettings.preventManagedAppBackup);
|
|
75911
|
+
writer.writeBooleanValue("tapToPayScreenLockEnabled", iosDdmLobAppAssignmentSettings.tapToPayScreenLockEnabled);
|
|
75912
|
+
writer.writeStringValue("vpnConfigurationId", iosDdmLobAppAssignmentSettings.vpnConfigurationId);
|
|
75913
|
+
}
|
|
75581
75914
|
/**
|
|
75582
75915
|
* Serializes information the current object
|
|
75583
75916
|
* @param IosDeviceFeaturesConfiguration The instance to serialize from.
|
|
@@ -77824,6 +78157,7 @@ export function serializeMailboxRestoreArtifact(writer, mailboxRestoreArtifact =
|
|
|
77824
78157
|
}
|
|
77825
78158
|
serializeRestoreArtifactBase(writer, mailboxRestoreArtifact, isSerializingDerivedType);
|
|
77826
78159
|
writer.writeStringValue("restoredFolderId", mailboxRestoreArtifact.restoredFolderId);
|
|
78160
|
+
writer.writeNumberValue("restoredItemCount", mailboxRestoreArtifact.restoredItemCount);
|
|
77827
78161
|
switch (mailboxRestoreArtifact.odataType) {
|
|
77828
78162
|
case "#microsoft.graph.granularMailboxRestoreArtifact":
|
|
77829
78163
|
serializeGranularMailboxRestoreArtifact(writer, mailboxRestoreArtifact, true);
|
|
@@ -79994,6 +80328,9 @@ export function serializeMobileAppAssignmentSettings(writer, mobileAppAssignment
|
|
|
79994
80328
|
writer.writeStringValue("@odata.type", mobileAppAssignmentSettings.odataType);
|
|
79995
80329
|
writer.writeAdditionalData(mobileAppAssignmentSettings.additionalData);
|
|
79996
80330
|
switch (mobileAppAssignmentSettings.odataType) {
|
|
80331
|
+
case "#microsoft.graph.iosDdmLobAppAssignmentSettings":
|
|
80332
|
+
serializeIosDdmLobAppAssignmentSettings(writer, mobileAppAssignmentSettings, true);
|
|
80333
|
+
break;
|
|
79997
80334
|
case "#microsoft.graph.iosLobAppAssignmentSettings":
|
|
79998
80335
|
serializeIosLobAppAssignmentSettings(writer, mobileAppAssignmentSettings, true);
|
|
79999
80336
|
break;
|
|
@@ -80163,6 +80500,34 @@ export function serializeMobileAppInstallTimeSettings(writer, mobileAppInstallTi
|
|
|
80163
80500
|
writer.writeBooleanValue("useLocalTime", mobileAppInstallTimeSettings.useLocalTime);
|
|
80164
80501
|
writer.writeAdditionalData(mobileAppInstallTimeSettings.additionalData);
|
|
80165
80502
|
}
|
|
80503
|
+
/**
|
|
80504
|
+
* Serializes information the current object
|
|
80505
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
80506
|
+
* @param MobileAppRelationship The instance to serialize from.
|
|
80507
|
+
* @param writer Serialization writer to use to serialize this model
|
|
80508
|
+
*/
|
|
80509
|
+
// @ts-ignore
|
|
80510
|
+
export function serializeMobileAppRelationship(writer, mobileAppRelationship = {}, isSerializingDerivedType = false) {
|
|
80511
|
+
if (!mobileAppRelationship || isSerializingDerivedType) {
|
|
80512
|
+
return;
|
|
80513
|
+
}
|
|
80514
|
+
serializeEntity(writer, mobileAppRelationship, isSerializingDerivedType);
|
|
80515
|
+
writer.writeStringValue("targetId", mobileAppRelationship.targetId);
|
|
80516
|
+
}
|
|
80517
|
+
/**
|
|
80518
|
+
* Serializes information the current object
|
|
80519
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
80520
|
+
* @param MobileAppRelationshipCollectionResponse The instance to serialize from.
|
|
80521
|
+
* @param writer Serialization writer to use to serialize this model
|
|
80522
|
+
*/
|
|
80523
|
+
// @ts-ignore
|
|
80524
|
+
export function serializeMobileAppRelationshipCollectionResponse(writer, mobileAppRelationshipCollectionResponse = {}, isSerializingDerivedType = false) {
|
|
80525
|
+
if (!mobileAppRelationshipCollectionResponse || isSerializingDerivedType) {
|
|
80526
|
+
return;
|
|
80527
|
+
}
|
|
80528
|
+
serializeBaseCollectionPaginationCountResponse(writer, mobileAppRelationshipCollectionResponse, isSerializingDerivedType);
|
|
80529
|
+
writer.writeCollectionOfObjectValues("value", mobileAppRelationshipCollectionResponse.value, serializeMobileAppRelationship);
|
|
80530
|
+
}
|
|
80166
80531
|
/**
|
|
80167
80532
|
* Serializes information the current object
|
|
80168
80533
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -81316,6 +81681,20 @@ export function serializeOneDriveForBusinessRestoreSessionCollectionResponse(wri
|
|
|
81316
81681
|
serializeBaseCollectionPaginationCountResponse(writer, oneDriveForBusinessRestoreSessionCollectionResponse, isSerializingDerivedType);
|
|
81317
81682
|
writer.writeCollectionOfObjectValues("value", oneDriveForBusinessRestoreSessionCollectionResponse.value, serializeOneDriveForBusinessRestoreSession);
|
|
81318
81683
|
}
|
|
81684
|
+
/**
|
|
81685
|
+
* Serializes information the current object
|
|
81686
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
81687
|
+
* @param OnEmailOtpSendListener The instance to serialize from.
|
|
81688
|
+
* @param writer Serialization writer to use to serialize this model
|
|
81689
|
+
*/
|
|
81690
|
+
// @ts-ignore
|
|
81691
|
+
export function serializeOnEmailOtpSendListener(writer, onEmailOtpSendListener = {}, isSerializingDerivedType = false) {
|
|
81692
|
+
if (!onEmailOtpSendListener || isSerializingDerivedType) {
|
|
81693
|
+
return;
|
|
81694
|
+
}
|
|
81695
|
+
serializeAuthenticationEventListener(writer, onEmailOtpSendListener, isSerializingDerivedType);
|
|
81696
|
+
writer.writeObjectValue("handler", onEmailOtpSendListener.handler, serializeOnOtpSendHandler);
|
|
81697
|
+
}
|
|
81319
81698
|
/**
|
|
81320
81699
|
* Serializes information the current object
|
|
81321
81700
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -81797,6 +82176,53 @@ export function serializeOnlineMeetingRestricted(writer, onlineMeetingRestricted
|
|
|
81797
82176
|
writer.writeEnumValue("videoDisabled", onlineMeetingRestricted.videoDisabled);
|
|
81798
82177
|
writer.writeAdditionalData(onlineMeetingRestricted.additionalData);
|
|
81799
82178
|
}
|
|
82179
|
+
/**
|
|
82180
|
+
* Serializes information the current object
|
|
82181
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
82182
|
+
* @param OnOtpSendCustomExtension The instance to serialize from.
|
|
82183
|
+
* @param writer Serialization writer to use to serialize this model
|
|
82184
|
+
*/
|
|
82185
|
+
// @ts-ignore
|
|
82186
|
+
export function serializeOnOtpSendCustomExtension(writer, onOtpSendCustomExtension = {}, isSerializingDerivedType = false) {
|
|
82187
|
+
if (!onOtpSendCustomExtension || isSerializingDerivedType) {
|
|
82188
|
+
return;
|
|
82189
|
+
}
|
|
82190
|
+
serializeCustomAuthenticationExtension(writer, onOtpSendCustomExtension, isSerializingDerivedType);
|
|
82191
|
+
}
|
|
82192
|
+
/**
|
|
82193
|
+
* Serializes information the current object
|
|
82194
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
82195
|
+
* @param OnOtpSendCustomExtensionHandler The instance to serialize from.
|
|
82196
|
+
* @param writer Serialization writer to use to serialize this model
|
|
82197
|
+
*/
|
|
82198
|
+
// @ts-ignore
|
|
82199
|
+
export function serializeOnOtpSendCustomExtensionHandler(writer, onOtpSendCustomExtensionHandler = {}, isSerializingDerivedType = false) {
|
|
82200
|
+
if (!onOtpSendCustomExtensionHandler || isSerializingDerivedType) {
|
|
82201
|
+
return;
|
|
82202
|
+
}
|
|
82203
|
+
serializeOnOtpSendHandler(writer, onOtpSendCustomExtensionHandler, isSerializingDerivedType);
|
|
82204
|
+
writer.writeObjectValue("configuration", onOtpSendCustomExtensionHandler.configuration, serializeCustomExtensionOverwriteConfiguration);
|
|
82205
|
+
writer.writeObjectValue("customExtension", onOtpSendCustomExtensionHandler.customExtension, serializeOnOtpSendCustomExtension);
|
|
82206
|
+
}
|
|
82207
|
+
/**
|
|
82208
|
+
* Serializes information the current object
|
|
82209
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
82210
|
+
* @param OnOtpSendHandler The instance to serialize from.
|
|
82211
|
+
* @param writer Serialization writer to use to serialize this model
|
|
82212
|
+
*/
|
|
82213
|
+
// @ts-ignore
|
|
82214
|
+
export function serializeOnOtpSendHandler(writer, onOtpSendHandler = {}, isSerializingDerivedType = false) {
|
|
82215
|
+
if (!onOtpSendHandler || isSerializingDerivedType) {
|
|
82216
|
+
return;
|
|
82217
|
+
}
|
|
82218
|
+
writer.writeStringValue("@odata.type", onOtpSendHandler.odataType);
|
|
82219
|
+
writer.writeAdditionalData(onOtpSendHandler.additionalData);
|
|
82220
|
+
switch (onOtpSendHandler.odataType) {
|
|
82221
|
+
case "#microsoft.graph.onOtpSendCustomExtensionHandler":
|
|
82222
|
+
serializeOnOtpSendCustomExtensionHandler(writer, onOtpSendHandler, true);
|
|
82223
|
+
break;
|
|
82224
|
+
}
|
|
82225
|
+
}
|
|
81800
82226
|
/**
|
|
81801
82227
|
* Serializes information the current object
|
|
81802
82228
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -87312,6 +87738,24 @@ export function serializeRestorePointSearchResult(writer, restorePointSearchResu
|
|
|
87312
87738
|
writer.writeObjectValue("restorePoint", restorePointSearchResult.restorePoint, serializeRestorePoint);
|
|
87313
87739
|
writer.writeAdditionalData(restorePointSearchResult.additionalData);
|
|
87314
87740
|
}
|
|
87741
|
+
/**
|
|
87742
|
+
* Serializes information the current object
|
|
87743
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
87744
|
+
* @param RestoreSessionArtifactCount The instance to serialize from.
|
|
87745
|
+
* @param writer Serialization writer to use to serialize this model
|
|
87746
|
+
*/
|
|
87747
|
+
// @ts-ignore
|
|
87748
|
+
export function serializeRestoreSessionArtifactCount(writer, restoreSessionArtifactCount = {}, isSerializingDerivedType = false) {
|
|
87749
|
+
if (!restoreSessionArtifactCount || isSerializingDerivedType) {
|
|
87750
|
+
return;
|
|
87751
|
+
}
|
|
87752
|
+
writer.writeNumberValue("completed", restoreSessionArtifactCount.completed);
|
|
87753
|
+
writer.writeNumberValue("failed", restoreSessionArtifactCount.failed);
|
|
87754
|
+
writer.writeNumberValue("inProgress", restoreSessionArtifactCount.inProgress);
|
|
87755
|
+
writer.writeStringValue("@odata.type", restoreSessionArtifactCount.odataType);
|
|
87756
|
+
writer.writeNumberValue("total", restoreSessionArtifactCount.total);
|
|
87757
|
+
writer.writeAdditionalData(restoreSessionArtifactCount.additionalData);
|
|
87758
|
+
}
|
|
87315
87759
|
/**
|
|
87316
87760
|
* Serializes information the current object
|
|
87317
87761
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -87330,6 +87774,8 @@ export function serializeRestoreSessionBase(writer, restoreSessionBase = {}, isS
|
|
|
87330
87774
|
writer.writeObjectValue("error", restoreSessionBase.errorEscaped, serializePublicError);
|
|
87331
87775
|
writer.writeObjectValue("lastModifiedBy", restoreSessionBase.lastModifiedBy, serializeIdentitySet);
|
|
87332
87776
|
writer.writeDateValue("lastModifiedDateTime", restoreSessionBase.lastModifiedDateTime);
|
|
87777
|
+
writer.writeEnumValue("restoreJobType", restoreSessionBase.restoreJobType);
|
|
87778
|
+
writer.writeObjectValue("restoreSessionArtifactCount", restoreSessionBase.restoreSessionArtifactCount, serializeRestoreSessionArtifactCount);
|
|
87333
87779
|
writer.writeEnumValue("status", restoreSessionBase.status);
|
|
87334
87780
|
switch (restoreSessionBase.odataType) {
|
|
87335
87781
|
case "#microsoft.graph.exchangeRestoreSession":
|
|
@@ -101591,7 +102037,7 @@ export const AutoRestartNotificationDismissalMethodObject = {
|
|
|
101591
102037
|
Automatic: "automatic",
|
|
101592
102038
|
/** User dismissal. Allows the user to dismiss the notification */
|
|
101593
102039
|
User: "user",
|
|
101594
|
-
/** Evolvable
|
|
102040
|
+
/** Evolvable enumeration sentinel value. Do not use. */
|
|
101595
102041
|
UnknownFutureValue: "unknownFutureValue",
|
|
101596
102042
|
};
|
|
101597
102043
|
export const B2bIdentityProvidersTypeObject = {
|
|
@@ -102641,6 +103087,8 @@ export const DeviceEnrollmentTypeObject = {
|
|
|
102641
103087
|
AppleUserEnrollment: "appleUserEnrollment",
|
|
102642
103088
|
/** Indicates the device is enrolled via Apple User Enrollment with Company Portal using a device enrollment manager user. It results in an enrollment with a new partition for managed apps and data and which supports a limited set of management capabilities */
|
|
102643
103089
|
AppleUserEnrollmentWithServiceAccount: "appleUserEnrollmentWithServiceAccount",
|
|
103090
|
+
/** Evolvable enumeration sentinel value. Do not use. */
|
|
103091
|
+
UnknownFutureValue: "unknownFutureValue",
|
|
102644
103092
|
};
|
|
102645
103093
|
/**
|
|
102646
103094
|
* Device Exchange Access State.
|
|
@@ -102922,7 +103370,7 @@ export const DiskTypeObject = {
|
|
|
102922
103370
|
Hdd: "hdd",
|
|
102923
103371
|
/** Enum member for SSD devices. */
|
|
102924
103372
|
Ssd: "ssd",
|
|
102925
|
-
/** Evolvable enumeration sentinel value.Do not use. */
|
|
103373
|
+
/** Evolvable enumeration sentinel value. Do not use. */
|
|
102926
103374
|
UnknownFutureValue: "unknownFutureValue",
|
|
102927
103375
|
};
|
|
102928
103376
|
export const DlpActionObject = {
|
|
@@ -103535,7 +103983,7 @@ export const MailTipsTypeObject = {
|
|
|
103535
103983
|
export const ManagedAppAvailabilityObject = {
|
|
103536
103984
|
/** A globally available app to all tenants. */
|
|
103537
103985
|
Global: "global",
|
|
103538
|
-
/** A line
|
|
103986
|
+
/** A line-of-business apps private to an organization. */
|
|
103539
103987
|
LineOfBusiness: "lineOfBusiness",
|
|
103540
103988
|
};
|
|
103541
103989
|
/**
|
|
@@ -105944,6 +106392,11 @@ export const RestoreArtifactsBulkRequestStatusObject = {
|
|
|
105944
106392
|
CompletedWithErrors: "completedWithErrors",
|
|
105945
106393
|
UnknownFutureValue: "unknownFutureValue",
|
|
105946
106394
|
};
|
|
106395
|
+
export const RestoreJobTypeObject = {
|
|
106396
|
+
Standard: "standard",
|
|
106397
|
+
Bulk: "bulk",
|
|
106398
|
+
UnknownFutureValue: "unknownFutureValue",
|
|
106399
|
+
};
|
|
105947
106400
|
export const RestorePointPreferenceObject = {
|
|
105948
106401
|
Latest: "latest",
|
|
105949
106402
|
Oldest: "oldest",
|
|
@@ -107366,11 +107819,11 @@ export const WindowsDefenderProductStatusObject = {
|
|
|
107366
107819
|
PendingFullScanDueToThreatAction: "pendingFullScanDueToThreatAction",
|
|
107367
107820
|
/** Pending reboot due to threat action */
|
|
107368
107821
|
PendingRebootDueToThreatAction: "pendingRebootDueToThreatAction",
|
|
107369
|
-
/** Pending manual steps due to threat action
|
|
107822
|
+
/** Pending manual steps due to threat action */
|
|
107370
107823
|
PendingManualStepsDueToThreatAction: "pendingManualStepsDueToThreatAction",
|
|
107371
|
-
/** AV signatures out of date */
|
|
107824
|
+
/** Antivirus (AV) signatures out of date */
|
|
107372
107825
|
AvSignaturesOutOfDate: "avSignaturesOutOfDate",
|
|
107373
|
-
/** AS signatures out of date */
|
|
107826
|
+
/** Antisypware (AS) signatures out of date */
|
|
107374
107827
|
AsSignaturesOutOfDate: "asSignaturesOutOfDate",
|
|
107375
107828
|
/** No quick scan has happened for a specified period */
|
|
107376
107829
|
NoQuickScanHappenedForSpecifiedPeriod: "noQuickScanHappenedForSpecifiedPeriod",
|
|
@@ -107754,7 +108207,7 @@ export const WindowsUpdateForBusinessUpdateWeeksObject = {
|
|
|
107754
108207
|
FourthWeek: "fourthWeek",
|
|
107755
108208
|
/** Scheduled the update installation on every week of the month */
|
|
107756
108209
|
EveryWeek: "everyWeek",
|
|
107757
|
-
/** Evolvable
|
|
108210
|
+
/** Evolvable enumeration sentinel value. Do not use. */
|
|
107758
108211
|
UnknownFutureValue: "unknownFutureValue",
|
|
107759
108212
|
};
|
|
107760
108213
|
/**
|
|
@@ -107769,7 +108222,7 @@ export const WindowsUpdateNotificationDisplayOptionObject = {
|
|
|
107769
108222
|
RestartWarningsOnly: "restartWarningsOnly",
|
|
107770
108223
|
/** Turn off all notifications, including restart warnings. */
|
|
107771
108224
|
DisableAllNotifications: "disableAllNotifications",
|
|
107772
|
-
/** Evolvable
|
|
108225
|
+
/** Evolvable enumeration sentinel value. Do not use. */
|
|
107773
108226
|
UnknownFutureValue: "unknownFutureValue",
|
|
107774
108227
|
};
|
|
107775
108228
|
/**
|