@microsoft/msgraph-sdk 1.0.0-preview.74 → 1.0.0-preview.75
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/externalConnectors/index.d.ts +1 -1
- package/models/identityGovernance/index.d.ts +192 -1
- package/models/identityGovernance/index.d.ts.map +1 -1
- package/models/identityGovernance/index.js +251 -2
- package/models/identityGovernance/index.js.map +1 -1
- package/models/index.d.ts +1811 -70
- package/models/index.d.ts.map +1 -1
- package/models/index.js +2331 -11
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +349 -1
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +373 -1
- 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.d.ts
CHANGED
|
@@ -2293,7 +2293,7 @@ export interface AiUser extends Entity, Parsable {
|
|
|
2293
2293
|
}
|
|
2294
2294
|
export interface AkamaiAttackGroupActionModel extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2295
2295
|
/**
|
|
2296
|
-
* The action
|
|
2296
|
+
* The action Akamai applies to the attack group when a matching threat is detected. Common values include deny, none or alert.
|
|
2297
2297
|
*/
|
|
2298
2298
|
action?: string | null;
|
|
2299
2299
|
/**
|
|
@@ -2301,7 +2301,7 @@ export interface AkamaiAttackGroupActionModel extends AdditionalDataHolder, Back
|
|
|
2301
2301
|
*/
|
|
2302
2302
|
backingStoreEnabled?: boolean | null;
|
|
2303
2303
|
/**
|
|
2304
|
-
* The group
|
|
2304
|
+
* The name or identifier of the attack group. This value categorizes the type of attack the action applies to.
|
|
2305
2305
|
*/
|
|
2306
2306
|
group?: string | null;
|
|
2307
2307
|
/**
|
|
@@ -2311,7 +2311,7 @@ export interface AkamaiAttackGroupActionModel extends AdditionalDataHolder, Back
|
|
|
2311
2311
|
}
|
|
2312
2312
|
export interface AkamaiCustomRuleModel extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2313
2313
|
/**
|
|
2314
|
-
* The action
|
|
2314
|
+
* The action Akamai applies when the rule matches traffic. Common values include deny, none or alert.
|
|
2315
2315
|
*/
|
|
2316
2316
|
action?: string | null;
|
|
2317
2317
|
/**
|
|
@@ -2319,7 +2319,7 @@ export interface AkamaiCustomRuleModel extends AdditionalDataHolder, BackedModel
|
|
|
2319
2319
|
*/
|
|
2320
2320
|
backingStoreEnabled?: boolean | null;
|
|
2321
2321
|
/**
|
|
2322
|
-
*
|
|
2322
|
+
* Friendly name for the rule, used in UIs or logs to help administrators identify the rule (for example, 'Block suspicious user agents').
|
|
2323
2323
|
*/
|
|
2324
2324
|
name?: string | null;
|
|
2325
2325
|
/**
|
|
@@ -2327,7 +2327,7 @@ export interface AkamaiCustomRuleModel extends AdditionalDataHolder, BackedModel
|
|
|
2327
2327
|
*/
|
|
2328
2328
|
odataType?: string | null;
|
|
2329
2329
|
/**
|
|
2330
|
-
*
|
|
2330
|
+
* Unique identifier assigned to the rule by Akamai or the integration. Use this identifier to reference, update, or remove the rule in API requests.
|
|
2331
2331
|
*/
|
|
2332
2332
|
ruleId?: string | null;
|
|
2333
2333
|
}
|
|
@@ -2337,11 +2337,11 @@ export interface AkamaiRapidRulesModel extends AdditionalDataHolder, BackedModel
|
|
|
2337
2337
|
*/
|
|
2338
2338
|
backingStoreEnabled?: boolean | null;
|
|
2339
2339
|
/**
|
|
2340
|
-
* The
|
|
2340
|
+
* The default action Akamai applies to traffic that matches Rapid Rules. Common values include deny, none or alert.
|
|
2341
2341
|
*/
|
|
2342
2342
|
defaultAction?: string | null;
|
|
2343
2343
|
/**
|
|
2344
|
-
*
|
|
2344
|
+
* Indicates whether Akamai Rapid Rules are enabled for the WAF integration. If true, Rapid Rules are active and applied to incoming traffic.
|
|
2345
2345
|
*/
|
|
2346
2346
|
isEnabled?: boolean | null;
|
|
2347
2347
|
/**
|
|
@@ -2351,33 +2351,33 @@ export interface AkamaiRapidRulesModel extends AdditionalDataHolder, BackedModel
|
|
|
2351
2351
|
}
|
|
2352
2352
|
export interface AkamaiVerifiedDetailsModel extends Parsable, WebApplicationFirewallVerifiedDetails {
|
|
2353
2353
|
/**
|
|
2354
|
-
*
|
|
2354
|
+
* Collection of Akamai attack groups that are currently active for the zone or host, including the action applied to each group (for example, deny, none or alert).
|
|
2355
2355
|
*/
|
|
2356
2356
|
activeAttackGroups?: AkamaiAttackGroupActionModel[] | null;
|
|
2357
2357
|
/**
|
|
2358
|
-
*
|
|
2358
|
+
* Collection of Akamai custom rules that are currently enabled for the zone or host. Each entry includes rule metadata such as the rule identifier, friendly name, and the action taken when the rule matches traffic.
|
|
2359
2359
|
*/
|
|
2360
2360
|
activeCustomRules?: AkamaiCustomRuleModel[] | null;
|
|
2361
2361
|
/**
|
|
2362
|
-
*
|
|
2362
|
+
* Configuration for Akamai Rapid Rules, including whether Rapid Rules are enabled and the default action applied to matching traffic.
|
|
2363
2363
|
*/
|
|
2364
2364
|
rapidRules?: AkamaiRapidRulesModel | null;
|
|
2365
2365
|
}
|
|
2366
2366
|
export interface AkamaiWebApplicationFirewallProvider extends Parsable, WebApplicationFirewallProvider {
|
|
2367
2367
|
/**
|
|
2368
|
-
*
|
|
2368
|
+
* Akamai API access token used to authenticate to the Akamai account. Contact your Akamai Customer Success Manager for assistance with your accessToken.
|
|
2369
2369
|
*/
|
|
2370
2370
|
accessToken?: string | null;
|
|
2371
2371
|
/**
|
|
2372
|
-
*
|
|
2372
|
+
* Akamai API client secret used in conjunction with the client token and access token for authentication. Contact your Akamai Customer Success Manager for assistance with this information.
|
|
2373
2373
|
*/
|
|
2374
2374
|
clientSecret?: string | null;
|
|
2375
2375
|
/**
|
|
2376
|
-
*
|
|
2376
|
+
* Akamai API client token used for authentication to the Akamai account. Contact your Akamai Customer Success Manager for assistance with this information.
|
|
2377
2377
|
*/
|
|
2378
2378
|
clientToken?: string | null;
|
|
2379
2379
|
/**
|
|
2380
|
-
*
|
|
2380
|
+
* Prefix used to identify the host or domain in Akamai configuration operations. This value may be required for certain API calls or configuration scenarios.
|
|
2381
2381
|
*/
|
|
2382
2382
|
hostPrefix?: string | null;
|
|
2383
2383
|
}
|
|
@@ -4365,6 +4365,24 @@ export interface ArchivedPrintJob extends AdditionalDataHolder, BackedModel, Par
|
|
|
4365
4365
|
*/
|
|
4366
4366
|
processingState?: PrintJobProcessingState | null;
|
|
4367
4367
|
}
|
|
4368
|
+
export interface ArkoseFraudProtectionProvider extends FraudProtectionProvider, Parsable {
|
|
4369
|
+
/**
|
|
4370
|
+
* Used to invoke the Arkose service from the client application. Request from your Arkose Customer Success Manager or use the default client-api value.
|
|
4371
|
+
*/
|
|
4372
|
+
clientSubDomain?: string | null;
|
|
4373
|
+
/**
|
|
4374
|
+
* The private key available on the Arkose Portal. Contact your Arkose Customer Success Manager for assistance with your keys.
|
|
4375
|
+
*/
|
|
4376
|
+
privateKey?: string | null;
|
|
4377
|
+
/**
|
|
4378
|
+
* The public key available on the Arkose Portal. Contact your Arkose Customer Success Manager for assistance with your keys.
|
|
4379
|
+
*/
|
|
4380
|
+
publicKey?: string | null;
|
|
4381
|
+
/**
|
|
4382
|
+
* Used to invoke the Arkose service from the Microsoft authentication server. Request from your Arkose Customer Success Manager or use the default verify-api value.
|
|
4383
|
+
*/
|
|
4384
|
+
verifySubDomain?: string | null;
|
|
4385
|
+
}
|
|
4368
4386
|
export interface ArtifactQuery extends AdditionalDataHolder, BackedModel, Parsable {
|
|
4369
4387
|
/**
|
|
4370
4388
|
* The type of artifact to search. The possible values are: message, unknownFutureValue.
|
|
@@ -4420,6 +4438,16 @@ export interface AssignedLicense extends AdditionalDataHolder, BackedModel, Pars
|
|
|
4420
4438
|
*/
|
|
4421
4439
|
skuId?: Guid | null;
|
|
4422
4440
|
}
|
|
4441
|
+
export interface AssignedPlaceMode extends Parsable, PlaceMode {
|
|
4442
|
+
/**
|
|
4443
|
+
* The assignedUserEmailAddress property
|
|
4444
|
+
*/
|
|
4445
|
+
assignedUserEmailAddress?: string | null;
|
|
4446
|
+
/**
|
|
4447
|
+
* The assignedUserId property
|
|
4448
|
+
*/
|
|
4449
|
+
assignedUserId?: string | null;
|
|
4450
|
+
}
|
|
4423
4451
|
export interface AssignedPlan extends AdditionalDataHolder, BackedModel, Parsable {
|
|
4424
4452
|
/**
|
|
4425
4453
|
* The date and time at which the plan was assigned. 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.
|
|
@@ -5697,6 +5725,10 @@ export interface AuthenticationEventListener extends Entity, Parsable {
|
|
|
5697
5725
|
* The conditions on which this authenticationEventListener should trigger.
|
|
5698
5726
|
*/
|
|
5699
5727
|
conditions?: AuthenticationConditions | null;
|
|
5728
|
+
/**
|
|
5729
|
+
* The display name of the listener.
|
|
5730
|
+
*/
|
|
5731
|
+
displayName?: string | null;
|
|
5700
5732
|
}
|
|
5701
5733
|
export interface AuthenticationEventListenerCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
5702
5734
|
/**
|
|
@@ -6467,6 +6499,12 @@ export interface BaseItemVersion extends Entity, Parsable {
|
|
|
6467
6499
|
*/
|
|
6468
6500
|
publication?: PublicationFacet | null;
|
|
6469
6501
|
}
|
|
6502
|
+
export interface BaseMapFeature extends Entity, Parsable {
|
|
6503
|
+
/**
|
|
6504
|
+
* The properties property
|
|
6505
|
+
*/
|
|
6506
|
+
properties?: string | null;
|
|
6507
|
+
}
|
|
6470
6508
|
export interface BaseSitePage extends BaseItem, Parsable {
|
|
6471
6509
|
/**
|
|
6472
6510
|
* The name of the page layout of the page. The possible values are: microsoftReserved, article, home, unknownFutureValue.
|
|
@@ -7716,6 +7754,36 @@ export interface BucketAggregationRange extends AdditionalDataHolder, BackedMode
|
|
|
7716
7754
|
to?: string | null;
|
|
7717
7755
|
}
|
|
7718
7756
|
export type BucketAggregationSortProperty = (typeof BucketAggregationSortPropertyObject)[keyof typeof BucketAggregationSortPropertyObject];
|
|
7757
|
+
export interface Building extends Parsable, Place {
|
|
7758
|
+
/**
|
|
7759
|
+
* The map property
|
|
7760
|
+
*/
|
|
7761
|
+
map?: BuildingMap | null;
|
|
7762
|
+
/**
|
|
7763
|
+
* The resourceLinks property
|
|
7764
|
+
*/
|
|
7765
|
+
resourceLinks?: ResourceLink[] | null;
|
|
7766
|
+
}
|
|
7767
|
+
export interface BuildingCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
7768
|
+
/**
|
|
7769
|
+
* The value property
|
|
7770
|
+
*/
|
|
7771
|
+
value?: Building[] | null;
|
|
7772
|
+
}
|
|
7773
|
+
export interface BuildingMap extends BaseMapFeature, Parsable {
|
|
7774
|
+
/**
|
|
7775
|
+
* The footprints property
|
|
7776
|
+
*/
|
|
7777
|
+
footprints?: FootprintMap[] | null;
|
|
7778
|
+
/**
|
|
7779
|
+
* The levels property
|
|
7780
|
+
*/
|
|
7781
|
+
levels?: LevelMap[] | null;
|
|
7782
|
+
/**
|
|
7783
|
+
* The placeId property
|
|
7784
|
+
*/
|
|
7785
|
+
placeId?: string | null;
|
|
7786
|
+
}
|
|
7719
7787
|
export interface BuiltInIdentityProvider extends IdentityProviderBase, Parsable {
|
|
7720
7788
|
/**
|
|
7721
7789
|
* The identity provider type. For a B2B scenario, possible values: AADSignup, MicrosoftAccount, EmailOTP. Required.
|
|
@@ -8585,7 +8653,7 @@ export interface Channel extends Entity, Parsable {
|
|
|
8585
8653
|
*/
|
|
8586
8654
|
members?: ConversationMember[] | null;
|
|
8587
8655
|
/**
|
|
8588
|
-
* The type of the channel. Can be set during creation and can't be changed. The possible values are: standard, private, unknownFutureValue, shared. The default value is standard. Use the Prefer: include-unknown-enum-members request header to get the following
|
|
8656
|
+
* The type of the channel. Can be set during creation and can't be changed. The possible values are: standard, private, unknownFutureValue, shared. The default value is standard. Use the Prefer: include-unknown-enum-members request header to get the following members in this evolvable enum: shared.
|
|
8589
8657
|
*/
|
|
8590
8658
|
membershipType?: ChannelMembershipType | null;
|
|
8591
8659
|
/**
|
|
@@ -9215,6 +9283,35 @@ export interface ChatViewpoint extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
9215
9283
|
*/
|
|
9216
9284
|
odataType?: string | null;
|
|
9217
9285
|
}
|
|
9286
|
+
export interface CheckInClaim extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9287
|
+
/**
|
|
9288
|
+
* Stores model information.
|
|
9289
|
+
*/
|
|
9290
|
+
backingStoreEnabled?: boolean | null;
|
|
9291
|
+
/**
|
|
9292
|
+
* The calendarEventId property
|
|
9293
|
+
*/
|
|
9294
|
+
calendarEventId?: string | null;
|
|
9295
|
+
/**
|
|
9296
|
+
* The checkInMethod property
|
|
9297
|
+
*/
|
|
9298
|
+
checkInMethod?: CheckInMethod | null;
|
|
9299
|
+
/**
|
|
9300
|
+
* The createdDateTime property
|
|
9301
|
+
*/
|
|
9302
|
+
createdDateTime?: Date | null;
|
|
9303
|
+
/**
|
|
9304
|
+
* The OdataType property
|
|
9305
|
+
*/
|
|
9306
|
+
odataType?: string | null;
|
|
9307
|
+
}
|
|
9308
|
+
export interface CheckInClaimCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
9309
|
+
/**
|
|
9310
|
+
* The value property
|
|
9311
|
+
*/
|
|
9312
|
+
value?: CheckInClaim[] | null;
|
|
9313
|
+
}
|
|
9314
|
+
export type CheckInMethod = (typeof CheckInMethodObject)[keyof typeof CheckInMethodObject];
|
|
9218
9315
|
export interface ChecklistItem extends Entity, Parsable {
|
|
9219
9316
|
/**
|
|
9220
9317
|
* The date and time when the checklistItem was finished.
|
|
@@ -9447,7 +9544,7 @@ export interface CloudCommunications extends AdditionalDataHolder, BackedModel,
|
|
|
9447
9544
|
}
|
|
9448
9545
|
export interface CloudFlareRuleModel extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9449
9546
|
/**
|
|
9450
|
-
* The action
|
|
9547
|
+
* The action Cloudflare applies when the rule matches traffic. Common values include Managed Challenge, Interactive Challenge, Log, Block, JS Challenge, or Skip.
|
|
9451
9548
|
*/
|
|
9452
9549
|
action?: string | null;
|
|
9453
9550
|
/**
|
|
@@ -9455,7 +9552,7 @@ export interface CloudFlareRuleModel extends AdditionalDataHolder, BackedModel,
|
|
|
9455
9552
|
*/
|
|
9456
9553
|
backingStoreEnabled?: boolean | null;
|
|
9457
9554
|
/**
|
|
9458
|
-
*
|
|
9555
|
+
* Friendly name for the rule, used in UIs or logs to help administrators identify the rule.
|
|
9459
9556
|
*/
|
|
9460
9557
|
name?: string | null;
|
|
9461
9558
|
/**
|
|
@@ -9463,7 +9560,7 @@ export interface CloudFlareRuleModel extends AdditionalDataHolder, BackedModel,
|
|
|
9463
9560
|
*/
|
|
9464
9561
|
odataType?: string | null;
|
|
9465
9562
|
/**
|
|
9466
|
-
*
|
|
9563
|
+
* Unique identifier assigned to the rule by Cloudflare or the integration.
|
|
9467
9564
|
*/
|
|
9468
9565
|
ruleId?: string | null;
|
|
9469
9566
|
}
|
|
@@ -9473,7 +9570,7 @@ export interface CloudFlareRulesetModel extends AdditionalDataHolder, BackedMode
|
|
|
9473
9570
|
*/
|
|
9474
9571
|
backingStoreEnabled?: boolean | null;
|
|
9475
9572
|
/**
|
|
9476
|
-
*
|
|
9573
|
+
* Friendly name for the ruleset, used in UIs and logs to help administrators identify the ruleset.
|
|
9477
9574
|
*/
|
|
9478
9575
|
name?: string | null;
|
|
9479
9576
|
/**
|
|
@@ -9481,35 +9578,35 @@ export interface CloudFlareRulesetModel extends AdditionalDataHolder, BackedMode
|
|
|
9481
9578
|
*/
|
|
9482
9579
|
odataType?: string | null;
|
|
9483
9580
|
/**
|
|
9484
|
-
*
|
|
9581
|
+
* Name of the phase during which the ruleset is evaluated (for example, httprequestfirewallmanaged, httprequestfirewallcustom, or provider-specific phase names). This indicates when in the request/response lifecycle the rules apply.
|
|
9485
9582
|
*/
|
|
9486
9583
|
phaseName?: string | null;
|
|
9487
9584
|
/**
|
|
9488
|
-
*
|
|
9585
|
+
* Unique identifier assigned to the ruleset by Cloudflare or the integration.
|
|
9489
9586
|
*/
|
|
9490
9587
|
rulesetId?: string | null;
|
|
9491
9588
|
}
|
|
9492
9589
|
export interface CloudFlareVerifiedDetailsModel extends Parsable, WebApplicationFirewallVerifiedDetails {
|
|
9493
9590
|
/**
|
|
9494
|
-
*
|
|
9591
|
+
* Collection of Cloudflare custom rules that are currently enabled for the zone or host.
|
|
9495
9592
|
*/
|
|
9496
9593
|
enabledCustomRules?: CloudFlareRuleModel[] | null;
|
|
9497
9594
|
/**
|
|
9498
|
-
*
|
|
9595
|
+
* Collection of Cloudflare recommended rulesets that are enabled for the zone or host.
|
|
9499
9596
|
*/
|
|
9500
9597
|
enabledRecommendedRulesets?: CloudFlareRulesetModel[] | null;
|
|
9501
9598
|
/**
|
|
9502
|
-
*
|
|
9599
|
+
* Cloudflare-assigned identifier for the DNS zone associated with the verified host (for example, the Cloudflare Zone ID). This ID is used to correlate verification details with the Cloudflare account and to perform configuration operations via the provider's API.
|
|
9503
9600
|
*/
|
|
9504
9601
|
zoneId?: string | null;
|
|
9505
9602
|
}
|
|
9506
9603
|
export interface CloudFlareWebApplicationFirewallProvider extends Parsable, WebApplicationFirewallProvider {
|
|
9507
9604
|
/**
|
|
9508
|
-
*
|
|
9605
|
+
* Cloudflare API token or credential used by Microsoft services to authenticate to the Cloudflare account. Contact your Cloudflare Customer Success Manager for assistance with your apitoken.
|
|
9509
9606
|
*/
|
|
9510
9607
|
apiToken?: string | null;
|
|
9511
9608
|
/**
|
|
9512
|
-
*
|
|
9609
|
+
* Default Cloudflare Zone ID associated with this provider configuration. This ID identifies the DNS zone in Cloudflare that is commonly used for verification and configuration operations for the provider.
|
|
9513
9610
|
*/
|
|
9514
9611
|
zoneId?: string | null;
|
|
9515
9612
|
}
|
|
@@ -10501,6 +10598,10 @@ export interface CommunicationsApplicationInstanceIdentity extends Identity, Par
|
|
|
10501
10598
|
export interface CommunicationsEncryptedIdentity extends Identity, Parsable {
|
|
10502
10599
|
}
|
|
10503
10600
|
export interface CommunicationsGuestIdentity extends Identity, Parsable {
|
|
10601
|
+
/**
|
|
10602
|
+
* The email of the guest user.
|
|
10603
|
+
*/
|
|
10604
|
+
email?: string | null;
|
|
10504
10605
|
}
|
|
10505
10606
|
export interface CommunicationsIdentitySet extends IdentitySet, Parsable {
|
|
10506
10607
|
/**
|
|
@@ -11941,6 +12042,8 @@ export interface CopilotAdminSetting extends Entity, Parsable {
|
|
|
11941
12042
|
*/
|
|
11942
12043
|
limitedMode?: CopilotAdminLimitedMode | null;
|
|
11943
12044
|
}
|
|
12045
|
+
export interface CopilotReportRoot extends Entity, Parsable {
|
|
12046
|
+
}
|
|
11944
12047
|
export interface CopyNotebookModel extends AdditionalDataHolder, BackedModel, Parsable {
|
|
11945
12048
|
/**
|
|
11946
12049
|
* Stores model information.
|
|
@@ -13221,6 +13324,12 @@ export declare function createAppsInstallationOptionsForWindowsFromDiscriminator
|
|
|
13221
13324
|
* @returns {ArchivedPrintJob}
|
|
13222
13325
|
*/
|
|
13223
13326
|
export declare function createArchivedPrintJobFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13327
|
+
/**
|
|
13328
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13329
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13330
|
+
* @returns {ArkoseFraudProtectionProvider}
|
|
13331
|
+
*/
|
|
13332
|
+
export declare function createArkoseFraudProtectionProviderFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13224
13333
|
/**
|
|
13225
13334
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
13226
13335
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -13239,6 +13348,12 @@ export declare function createAssignedLabelFromDiscriminatorValue(parseNode: Par
|
|
|
13239
13348
|
* @returns {AssignedLicense}
|
|
13240
13349
|
*/
|
|
13241
13350
|
export declare function createAssignedLicenseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13351
|
+
/**
|
|
13352
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13353
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13354
|
+
* @returns {AssignedPlaceMode}
|
|
13355
|
+
*/
|
|
13356
|
+
export declare function createAssignedPlaceModeFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13242
13357
|
/**
|
|
13243
13358
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
13244
13359
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -13905,6 +14020,12 @@ export declare function createBaseItemFromDiscriminatorValue(parseNode: ParseNod
|
|
|
13905
14020
|
* @returns {BaseItemVersion}
|
|
13906
14021
|
*/
|
|
13907
14022
|
export declare function createBaseItemVersionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14023
|
+
/**
|
|
14024
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14025
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14026
|
+
* @returns {BaseMapFeature}
|
|
14027
|
+
*/
|
|
14028
|
+
export declare function createBaseMapFeatureFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13908
14029
|
/**
|
|
13909
14030
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
13910
14031
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14193,6 +14314,24 @@ export declare function createBucketAggregationDefinitionFromDiscriminatorValue(
|
|
|
14193
14314
|
* @returns {BucketAggregationRange}
|
|
14194
14315
|
*/
|
|
14195
14316
|
export declare function createBucketAggregationRangeFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14317
|
+
/**
|
|
14318
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14319
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14320
|
+
* @returns {BuildingCollectionResponse}
|
|
14321
|
+
*/
|
|
14322
|
+
export declare function createBuildingCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14323
|
+
/**
|
|
14324
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14325
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14326
|
+
* @returns {Building}
|
|
14327
|
+
*/
|
|
14328
|
+
export declare function createBuildingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14329
|
+
/**
|
|
14330
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14331
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14332
|
+
* @returns {BuildingMap}
|
|
14333
|
+
*/
|
|
14334
|
+
export declare function createBuildingMapFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14196
14335
|
/**
|
|
14197
14336
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14198
14337
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14631,6 +14770,18 @@ export declare function createChatRestrictionsFromDiscriminatorValue(parseNode:
|
|
|
14631
14770
|
* @returns {ChatViewpoint}
|
|
14632
14771
|
*/
|
|
14633
14772
|
export declare function createChatViewpointFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14773
|
+
/**
|
|
14774
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14775
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14776
|
+
* @returns {CheckInClaimCollectionResponse}
|
|
14777
|
+
*/
|
|
14778
|
+
export declare function createCheckInClaimCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14779
|
+
/**
|
|
14780
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14781
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14782
|
+
* @returns {CheckInClaim}
|
|
14783
|
+
*/
|
|
14784
|
+
export declare function createCheckInClaimFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14634
14785
|
/**
|
|
14635
14786
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14636
14787
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -15441,6 +15592,12 @@ export declare function createCopilotAdminLimitedModeFromDiscriminatorValue(pars
|
|
|
15441
15592
|
* @returns {CopilotAdminSetting}
|
|
15442
15593
|
*/
|
|
15443
15594
|
export declare function createCopilotAdminSettingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15595
|
+
/**
|
|
15596
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
15597
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
15598
|
+
* @returns {CopilotReportRoot}
|
|
15599
|
+
*/
|
|
15600
|
+
export declare function createCopilotReportRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15444
15601
|
/**
|
|
15445
15602
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
15446
15603
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -15897,6 +16054,18 @@ export declare function createDeleteUserFromSharedAppleDeviceActionResultFromDis
|
|
|
15897
16054
|
* @returns {DeltaParticipants}
|
|
15898
16055
|
*/
|
|
15899
16056
|
export declare function createDeltaParticipantsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16057
|
+
/**
|
|
16058
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16059
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16060
|
+
* @returns {DeskCollectionResponse}
|
|
16061
|
+
*/
|
|
16062
|
+
export declare function createDeskCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16063
|
+
/**
|
|
16064
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16065
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16066
|
+
* @returns {Desk}
|
|
16067
|
+
*/
|
|
16068
|
+
export declare function createDeskFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15900
16069
|
/**
|
|
15901
16070
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
15902
16071
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -16725,6 +16894,12 @@ export declare function createDriveRestoreArtifactsBulkAdditionRequestCollection
|
|
|
16725
16894
|
* @returns {DriveRestoreArtifactsBulkAdditionRequest}
|
|
16726
16895
|
*/
|
|
16727
16896
|
export declare function createDriveRestoreArtifactsBulkAdditionRequestFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16897
|
+
/**
|
|
16898
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16899
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16900
|
+
* @returns {DropInPlaceMode}
|
|
16901
|
+
*/
|
|
16902
|
+
export declare function createDropInPlaceModeFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16728
16903
|
/**
|
|
16729
16904
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
16730
16905
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -17397,6 +17572,30 @@ export declare function createEngagementConversationSystemMessageFromDiscriminat
|
|
|
17397
17572
|
* @returns {EngagementIdentitySet}
|
|
17398
17573
|
*/
|
|
17399
17574
|
export declare function createEngagementIdentitySetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17575
|
+
/**
|
|
17576
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17577
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17578
|
+
* @returns {EngagementRoleCollectionResponse}
|
|
17579
|
+
*/
|
|
17580
|
+
export declare function createEngagementRoleCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17581
|
+
/**
|
|
17582
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17583
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17584
|
+
* @returns {EngagementRole}
|
|
17585
|
+
*/
|
|
17586
|
+
export declare function createEngagementRoleFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17587
|
+
/**
|
|
17588
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17589
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17590
|
+
* @returns {EngagementRoleMemberCollectionResponse}
|
|
17591
|
+
*/
|
|
17592
|
+
export declare function createEngagementRoleMemberCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17593
|
+
/**
|
|
17594
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17595
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17596
|
+
* @returns {EngagementRoleMember}
|
|
17597
|
+
*/
|
|
17598
|
+
export declare function createEngagementRoleMemberFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17400
17599
|
/**
|
|
17401
17600
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
17402
17601
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -17793,6 +17992,30 @@ export declare function createFilterOperatorSchemaCollectionResponseFromDiscrimi
|
|
|
17793
17992
|
* @returns {FilterOperatorSchema}
|
|
17794
17993
|
*/
|
|
17795
17994
|
export declare function createFilterOperatorSchemaFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17995
|
+
/**
|
|
17996
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17997
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17998
|
+
* @returns {FixtureMapCollectionResponse}
|
|
17999
|
+
*/
|
|
18000
|
+
export declare function createFixtureMapCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18001
|
+
/**
|
|
18002
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18003
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18004
|
+
* @returns {FixtureMap}
|
|
18005
|
+
*/
|
|
18006
|
+
export declare function createFixtureMapFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18007
|
+
/**
|
|
18008
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18009
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18010
|
+
* @returns {FloorCollectionResponse}
|
|
18011
|
+
*/
|
|
18012
|
+
export declare function createFloorCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18013
|
+
/**
|
|
18014
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18015
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18016
|
+
* @returns {Floor}
|
|
18017
|
+
*/
|
|
18018
|
+
export declare function createFloorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17796
18019
|
/**
|
|
17797
18020
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
17798
18021
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -17811,6 +18034,42 @@ export declare function createFolderViewFromDiscriminatorValue(parseNode: ParseN
|
|
|
17811
18034
|
* @returns {FollowupFlag}
|
|
17812
18035
|
*/
|
|
17813
18036
|
export declare function createFollowupFlagFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18037
|
+
/**
|
|
18038
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18039
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18040
|
+
* @returns {FootprintMapCollectionResponse}
|
|
18041
|
+
*/
|
|
18042
|
+
export declare function createFootprintMapCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18043
|
+
/**
|
|
18044
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18045
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18046
|
+
* @returns {FootprintMap}
|
|
18047
|
+
*/
|
|
18048
|
+
export declare function createFootprintMapFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18049
|
+
/**
|
|
18050
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18051
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18052
|
+
* @returns {FraudProtectionConfiguration}
|
|
18053
|
+
*/
|
|
18054
|
+
export declare function createFraudProtectionConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18055
|
+
/**
|
|
18056
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18057
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18058
|
+
* @returns {FraudProtectionProviderCollectionResponse}
|
|
18059
|
+
*/
|
|
18060
|
+
export declare function createFraudProtectionProviderCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18061
|
+
/**
|
|
18062
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18063
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18064
|
+
* @returns {FraudProtectionProviderConfiguration}
|
|
18065
|
+
*/
|
|
18066
|
+
export declare function createFraudProtectionProviderConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18067
|
+
/**
|
|
18068
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18069
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18070
|
+
* @returns {FraudProtectionProvider}
|
|
18071
|
+
*/
|
|
18072
|
+
export declare function createFraudProtectionProviderFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17814
18073
|
/**
|
|
17815
18074
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
17816
18075
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -17991,6 +18250,12 @@ export declare function createHostSecurityStateFromDiscriminatorValue(parseNode:
|
|
|
17991
18250
|
* @returns {HttpRequestEndpoint}
|
|
17992
18251
|
*/
|
|
17993
18252
|
export declare function createHttpRequestEndpointFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18253
|
+
/**
|
|
18254
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18255
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18256
|
+
* @returns {HumanSecurityFraudProtectionProvider}
|
|
18257
|
+
*/
|
|
18258
|
+
export declare function createHumanSecurityFraudProtectionProviderFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17994
18259
|
/**
|
|
17995
18260
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
17996
18261
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -18777,6 +19042,18 @@ export declare function createLearningProviderFromDiscriminatorValue(parseNode:
|
|
|
18777
19042
|
* @returns {LearningSelfInitiatedCourse}
|
|
18778
19043
|
*/
|
|
18779
19044
|
export declare function createLearningSelfInitiatedCourseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19045
|
+
/**
|
|
19046
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
19047
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
19048
|
+
* @returns {LevelMapCollectionResponse}
|
|
19049
|
+
*/
|
|
19050
|
+
export declare function createLevelMapCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19051
|
+
/**
|
|
19052
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
19053
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
19054
|
+
* @returns {LevelMap}
|
|
19055
|
+
*/
|
|
19056
|
+
export declare function createLevelMapFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18780
19057
|
/**
|
|
18781
19058
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
18782
19059
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -19065,6 +19342,12 @@ export declare function createMacOSOfficeSuiteAppFromDiscriminatorValue(parseNod
|
|
|
19065
19342
|
* @returns {MailAssessmentRequest}
|
|
19066
19343
|
*/
|
|
19067
19344
|
export declare function createMailAssessmentRequestFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19345
|
+
/**
|
|
19346
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
19347
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
19348
|
+
* @returns {MailboxDetails}
|
|
19349
|
+
*/
|
|
19350
|
+
export declare function createMailboxDetailsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19068
19351
|
/**
|
|
19069
19352
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
19070
19353
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -20349,6 +20632,24 @@ export declare function createOnenoteSectionCollectionResponseFromDiscriminatorV
|
|
|
20349
20632
|
* @returns {OnenoteSection}
|
|
20350
20633
|
*/
|
|
20351
20634
|
export declare function createOnenoteSectionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20635
|
+
/**
|
|
20636
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20637
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20638
|
+
* @returns {OnFraudProtectionLoadStartExternalUsersAuthHandler}
|
|
20639
|
+
*/
|
|
20640
|
+
export declare function createOnFraudProtectionLoadStartExternalUsersAuthHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20641
|
+
/**
|
|
20642
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20643
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20644
|
+
* @returns {OnFraudProtectionLoadStartHandler}
|
|
20645
|
+
*/
|
|
20646
|
+
export declare function createOnFraudProtectionLoadStartHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20647
|
+
/**
|
|
20648
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20649
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20650
|
+
* @returns {OnFraudProtectionLoadStartListener}
|
|
20651
|
+
*/
|
|
20652
|
+
export declare function createOnFraudProtectionLoadStartListenerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20352
20653
|
/**
|
|
20353
20654
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
20354
20655
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -20991,6 +21292,12 @@ export declare function createPkcs12CertificateInformationFromDiscriminatorValue
|
|
|
20991
21292
|
* @returns {Place}
|
|
20992
21293
|
*/
|
|
20993
21294
|
export declare function createPlaceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21295
|
+
/**
|
|
21296
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21297
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21298
|
+
* @returns {PlaceMode}
|
|
21299
|
+
*/
|
|
21300
|
+
export declare function createPlaceModeFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20994
21301
|
/**
|
|
20995
21302
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
20996
21303
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -22161,6 +22468,12 @@ export declare function createRequiredResourceAccessFromDiscriminatorValue(parse
|
|
|
22161
22468
|
* @returns {ResellerDelegatedAdminRelationship}
|
|
22162
22469
|
*/
|
|
22163
22470
|
export declare function createResellerDelegatedAdminRelationshipFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22471
|
+
/**
|
|
22472
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
22473
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
22474
|
+
* @returns {ReservablePlaceMode}
|
|
22475
|
+
*/
|
|
22476
|
+
export declare function createReservablePlaceModeFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22164
22477
|
/**
|
|
22165
22478
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
22166
22479
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -22179,6 +22492,12 @@ export declare function createResourceAccessFromDiscriminatorValue(parseNode: Pa
|
|
|
22179
22492
|
* @returns {ResourceAction}
|
|
22180
22493
|
*/
|
|
22181
22494
|
export declare function createResourceActionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22495
|
+
/**
|
|
22496
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
22497
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
22498
|
+
* @returns {ResourceLink}
|
|
22499
|
+
*/
|
|
22500
|
+
export declare function createResourceLinkFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22182
22501
|
/**
|
|
22183
22502
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
22184
22503
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -22683,6 +23002,18 @@ export declare function createSearchResponseFromDiscriminatorValue(parseNode: Pa
|
|
|
22683
23002
|
* @returns {SearchResult}
|
|
22684
23003
|
*/
|
|
22685
23004
|
export declare function createSearchResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23005
|
+
/**
|
|
23006
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23007
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23008
|
+
* @returns {SectionCollectionResponse}
|
|
23009
|
+
*/
|
|
23010
|
+
export declare function createSectionCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23011
|
+
/**
|
|
23012
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23013
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23014
|
+
* @returns {Section}
|
|
23015
|
+
*/
|
|
23016
|
+
export declare function createSectionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22686
23017
|
/**
|
|
22687
23018
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
22688
23019
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -22701,6 +23032,18 @@ export declare function createSectionGroupFromDiscriminatorValue(parseNode: Pars
|
|
|
22701
23032
|
* @returns {SectionLinks}
|
|
22702
23033
|
*/
|
|
22703
23034
|
export declare function createSectionLinksFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23035
|
+
/**
|
|
23036
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23037
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23038
|
+
* @returns {SectionMapCollectionResponse}
|
|
23039
|
+
*/
|
|
23040
|
+
export declare function createSectionMapCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23041
|
+
/**
|
|
23042
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23043
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23044
|
+
* @returns {SectionMap}
|
|
23045
|
+
*/
|
|
23046
|
+
export declare function createSectionMapFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22704
23047
|
/**
|
|
22705
23048
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
22706
23049
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -23085,6 +23428,84 @@ export declare function createSharePointIdentitySetFromDiscriminatorValue(parseN
|
|
|
23085
23428
|
* @returns {SharepointIds}
|
|
23086
23429
|
*/
|
|
23087
23430
|
export declare function createSharepointIdsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23431
|
+
/**
|
|
23432
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23433
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23434
|
+
* @returns {SharePointMigrationContainerInfo}
|
|
23435
|
+
*/
|
|
23436
|
+
export declare function createSharePointMigrationContainerInfoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23437
|
+
/**
|
|
23438
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23439
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23440
|
+
* @returns {SharePointMigrationEventCollectionResponse}
|
|
23441
|
+
*/
|
|
23442
|
+
export declare function createSharePointMigrationEventCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23443
|
+
/**
|
|
23444
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23445
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23446
|
+
* @returns {SharePointMigrationEvent}
|
|
23447
|
+
*/
|
|
23448
|
+
export declare function createSharePointMigrationEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23449
|
+
/**
|
|
23450
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23451
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23452
|
+
* @returns {SharePointMigrationFinishManifestFileUploadEvent}
|
|
23453
|
+
*/
|
|
23454
|
+
export declare function createSharePointMigrationFinishManifestFileUploadEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23455
|
+
/**
|
|
23456
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23457
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23458
|
+
* @returns {SharePointMigrationJobCancelledEvent}
|
|
23459
|
+
*/
|
|
23460
|
+
export declare function createSharePointMigrationJobCancelledEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23461
|
+
/**
|
|
23462
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23463
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23464
|
+
* @returns {SharePointMigrationJobCollectionResponse}
|
|
23465
|
+
*/
|
|
23466
|
+
export declare function createSharePointMigrationJobCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23467
|
+
/**
|
|
23468
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23469
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23470
|
+
* @returns {SharePointMigrationJobDeletedEvent}
|
|
23471
|
+
*/
|
|
23472
|
+
export declare function createSharePointMigrationJobDeletedEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23473
|
+
/**
|
|
23474
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23475
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23476
|
+
* @returns {SharePointMigrationJobErrorEvent}
|
|
23477
|
+
*/
|
|
23478
|
+
export declare function createSharePointMigrationJobErrorEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23479
|
+
/**
|
|
23480
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23481
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23482
|
+
* @returns {SharePointMigrationJob}
|
|
23483
|
+
*/
|
|
23484
|
+
export declare function createSharePointMigrationJobFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23485
|
+
/**
|
|
23486
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23487
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23488
|
+
* @returns {SharePointMigrationJobPostponedEvent}
|
|
23489
|
+
*/
|
|
23490
|
+
export declare function createSharePointMigrationJobPostponedEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23491
|
+
/**
|
|
23492
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23493
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23494
|
+
* @returns {SharePointMigrationJobProgressEvent}
|
|
23495
|
+
*/
|
|
23496
|
+
export declare function createSharePointMigrationJobProgressEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23497
|
+
/**
|
|
23498
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23499
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23500
|
+
* @returns {SharePointMigrationJobQueuedEvent}
|
|
23501
|
+
*/
|
|
23502
|
+
export declare function createSharePointMigrationJobQueuedEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23503
|
+
/**
|
|
23504
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23505
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23506
|
+
* @returns {SharePointMigrationJobStartEvent}
|
|
23507
|
+
*/
|
|
23508
|
+
export declare function createSharePointMigrationJobStartEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23088
23509
|
/**
|
|
23089
23510
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
23090
23511
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -24909,6 +25330,18 @@ export declare function createUnifiedRoleScheduleInstanceBaseFromDiscriminatorVa
|
|
|
24909
25330
|
* @returns {UnifiedStorageQuota}
|
|
24910
25331
|
*/
|
|
24911
25332
|
export declare function createUnifiedStorageQuotaFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
25333
|
+
/**
|
|
25334
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
25335
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
25336
|
+
* @returns {UnitMapCollectionResponse}
|
|
25337
|
+
*/
|
|
25338
|
+
export declare function createUnitMapCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
25339
|
+
/**
|
|
25340
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
25341
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
25342
|
+
* @returns {UnitMap}
|
|
25343
|
+
*/
|
|
25344
|
+
export declare function createUnitMapFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
24912
25345
|
/**
|
|
24913
25346
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
24914
25347
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -26805,6 +27238,18 @@ export declare function createWorkingHoursFromDiscriminatorValue(parseNode: Pars
|
|
|
26805
27238
|
* @returns {WorkingTimeSchedule}
|
|
26806
27239
|
*/
|
|
26807
27240
|
export declare function createWorkingTimeScheduleFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
27241
|
+
/**
|
|
27242
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
27243
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
27244
|
+
* @returns {WorkspaceCollectionResponse}
|
|
27245
|
+
*/
|
|
27246
|
+
export declare function createWorkspaceCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
27247
|
+
/**
|
|
27248
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
27249
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
27250
|
+
* @returns {Workspace}
|
|
27251
|
+
*/
|
|
27252
|
+
export declare function createWorkspaceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
26808
27253
|
/**
|
|
26809
27254
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
26810
27255
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -29158,6 +29603,12 @@ export declare function deserializeIntoAppsInstallationOptionsForWindows(appsIns
|
|
|
29158
29603
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29159
29604
|
*/
|
|
29160
29605
|
export declare function deserializeIntoArchivedPrintJob(archivedPrintJob?: Partial<ArchivedPrintJob> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29606
|
+
/**
|
|
29607
|
+
* The deserialization information for the current model
|
|
29608
|
+
* @param ArkoseFraudProtectionProvider The instance to deserialize into.
|
|
29609
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29610
|
+
*/
|
|
29611
|
+
export declare function deserializeIntoArkoseFraudProtectionProvider(arkoseFraudProtectionProvider?: Partial<ArkoseFraudProtectionProvider> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29161
29612
|
/**
|
|
29162
29613
|
* The deserialization information for the current model
|
|
29163
29614
|
* @param ArtifactQuery The instance to deserialize into.
|
|
@@ -29176,6 +29627,12 @@ export declare function deserializeIntoAssignedLabel(assignedLabel?: Partial<Ass
|
|
|
29176
29627
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29177
29628
|
*/
|
|
29178
29629
|
export declare function deserializeIntoAssignedLicense(assignedLicense?: Partial<AssignedLicense> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29630
|
+
/**
|
|
29631
|
+
* The deserialization information for the current model
|
|
29632
|
+
* @param AssignedPlaceMode The instance to deserialize into.
|
|
29633
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29634
|
+
*/
|
|
29635
|
+
export declare function deserializeIntoAssignedPlaceMode(assignedPlaceMode?: Partial<AssignedPlaceMode> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29179
29636
|
/**
|
|
29180
29637
|
* The deserialization information for the current model
|
|
29181
29638
|
* @param AssignedPlan The instance to deserialize into.
|
|
@@ -29842,6 +30299,12 @@ export declare function deserializeIntoBaseItemCollectionResponse(baseItemCollec
|
|
|
29842
30299
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29843
30300
|
*/
|
|
29844
30301
|
export declare function deserializeIntoBaseItemVersion(baseItemVersion?: Partial<BaseItemVersion> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30302
|
+
/**
|
|
30303
|
+
* The deserialization information for the current model
|
|
30304
|
+
* @param BaseMapFeature The instance to deserialize into.
|
|
30305
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30306
|
+
*/
|
|
30307
|
+
export declare function deserializeIntoBaseMapFeature(baseMapFeature?: Partial<BaseMapFeature> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29845
30308
|
/**
|
|
29846
30309
|
* The deserialization information for the current model
|
|
29847
30310
|
* @param BaseSitePage The instance to deserialize into.
|
|
@@ -30130,6 +30593,24 @@ export declare function deserializeIntoBucketAggregationDefinition(bucketAggrega
|
|
|
30130
30593
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30131
30594
|
*/
|
|
30132
30595
|
export declare function deserializeIntoBucketAggregationRange(bucketAggregationRange?: Partial<BucketAggregationRange> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30596
|
+
/**
|
|
30597
|
+
* The deserialization information for the current model
|
|
30598
|
+
* @param Building The instance to deserialize into.
|
|
30599
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30600
|
+
*/
|
|
30601
|
+
export declare function deserializeIntoBuilding(building?: Partial<Building> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30602
|
+
/**
|
|
30603
|
+
* The deserialization information for the current model
|
|
30604
|
+
* @param BuildingCollectionResponse The instance to deserialize into.
|
|
30605
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30606
|
+
*/
|
|
30607
|
+
export declare function deserializeIntoBuildingCollectionResponse(buildingCollectionResponse?: Partial<BuildingCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30608
|
+
/**
|
|
30609
|
+
* The deserialization information for the current model
|
|
30610
|
+
* @param BuildingMap The instance to deserialize into.
|
|
30611
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30612
|
+
*/
|
|
30613
|
+
export declare function deserializeIntoBuildingMap(buildingMap?: Partial<BuildingMap> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30133
30614
|
/**
|
|
30134
30615
|
* The deserialization information for the current model
|
|
30135
30616
|
* @param BuiltInIdentityProvider The instance to deserialize into.
|
|
@@ -30568,6 +31049,18 @@ export declare function deserializeIntoChatRestrictions(chatRestrictions?: Parti
|
|
|
30568
31049
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30569
31050
|
*/
|
|
30570
31051
|
export declare function deserializeIntoChatViewpoint(chatViewpoint?: Partial<ChatViewpoint> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31052
|
+
/**
|
|
31053
|
+
* The deserialization information for the current model
|
|
31054
|
+
* @param CheckInClaim The instance to deserialize into.
|
|
31055
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31056
|
+
*/
|
|
31057
|
+
export declare function deserializeIntoCheckInClaim(checkInClaim?: Partial<CheckInClaim> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31058
|
+
/**
|
|
31059
|
+
* The deserialization information for the current model
|
|
31060
|
+
* @param CheckInClaimCollectionResponse The instance to deserialize into.
|
|
31061
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31062
|
+
*/
|
|
31063
|
+
export declare function deserializeIntoCheckInClaimCollectionResponse(checkInClaimCollectionResponse?: Partial<CheckInClaimCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30571
31064
|
/**
|
|
30572
31065
|
* The deserialization information for the current model
|
|
30573
31066
|
* @param ChecklistItem The instance to deserialize into.
|
|
@@ -31378,6 +31871,12 @@ export declare function deserializeIntoCopilotAdminLimitedMode(copilotAdminLimit
|
|
|
31378
31871
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31379
31872
|
*/
|
|
31380
31873
|
export declare function deserializeIntoCopilotAdminSetting(copilotAdminSetting?: Partial<CopilotAdminSetting> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31874
|
+
/**
|
|
31875
|
+
* The deserialization information for the current model
|
|
31876
|
+
* @param CopilotReportRoot The instance to deserialize into.
|
|
31877
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31878
|
+
*/
|
|
31879
|
+
export declare function deserializeIntoCopilotReportRoot(copilotReportRoot?: Partial<CopilotReportRoot> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31381
31880
|
/**
|
|
31382
31881
|
* The deserialization information for the current model
|
|
31383
31882
|
* @param CopyNotebookModel The instance to deserialize into.
|
|
@@ -31834,6 +32333,18 @@ export declare function deserializeIntoDeleteUserFromSharedAppleDeviceActionResu
|
|
|
31834
32333
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31835
32334
|
*/
|
|
31836
32335
|
export declare function deserializeIntoDeltaParticipants(deltaParticipants?: Partial<DeltaParticipants> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32336
|
+
/**
|
|
32337
|
+
* The deserialization information for the current model
|
|
32338
|
+
* @param Desk The instance to deserialize into.
|
|
32339
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32340
|
+
*/
|
|
32341
|
+
export declare function deserializeIntoDesk(desk?: Partial<Desk> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32342
|
+
/**
|
|
32343
|
+
* The deserialization information for the current model
|
|
32344
|
+
* @param DeskCollectionResponse The instance to deserialize into.
|
|
32345
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32346
|
+
*/
|
|
32347
|
+
export declare function deserializeIntoDeskCollectionResponse(deskCollectionResponse?: Partial<DeskCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31837
32348
|
/**
|
|
31838
32349
|
* The deserialization information for the current model
|
|
31839
32350
|
* @param DetailsInfo The instance to deserialize into.
|
|
@@ -32662,6 +33173,12 @@ export declare function deserializeIntoDriveRestoreArtifactsBulkAdditionRequest(
|
|
|
32662
33173
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32663
33174
|
*/
|
|
32664
33175
|
export declare function deserializeIntoDriveRestoreArtifactsBulkAdditionRequestCollectionResponse(driveRestoreArtifactsBulkAdditionRequestCollectionResponse?: Partial<DriveRestoreArtifactsBulkAdditionRequestCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33176
|
+
/**
|
|
33177
|
+
* The deserialization information for the current model
|
|
33178
|
+
* @param DropInPlaceMode The instance to deserialize into.
|
|
33179
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33180
|
+
*/
|
|
33181
|
+
export declare function deserializeIntoDropInPlaceMode(dropInPlaceMode?: Partial<DropInPlaceMode> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32665
33182
|
/**
|
|
32666
33183
|
* The deserialization information for the current model
|
|
32667
33184
|
* @param EBookInstallSummary The instance to deserialize into.
|
|
@@ -33334,6 +33851,30 @@ export declare function deserializeIntoEngagementConversationSystemMessage(engag
|
|
|
33334
33851
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33335
33852
|
*/
|
|
33336
33853
|
export declare function deserializeIntoEngagementIdentitySet(engagementIdentitySet?: Partial<EngagementIdentitySet> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33854
|
+
/**
|
|
33855
|
+
* The deserialization information for the current model
|
|
33856
|
+
* @param EngagementRole The instance to deserialize into.
|
|
33857
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33858
|
+
*/
|
|
33859
|
+
export declare function deserializeIntoEngagementRole(engagementRole?: Partial<EngagementRole> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33860
|
+
/**
|
|
33861
|
+
* The deserialization information for the current model
|
|
33862
|
+
* @param EngagementRoleCollectionResponse The instance to deserialize into.
|
|
33863
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33864
|
+
*/
|
|
33865
|
+
export declare function deserializeIntoEngagementRoleCollectionResponse(engagementRoleCollectionResponse?: Partial<EngagementRoleCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33866
|
+
/**
|
|
33867
|
+
* The deserialization information for the current model
|
|
33868
|
+
* @param EngagementRoleMember The instance to deserialize into.
|
|
33869
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33870
|
+
*/
|
|
33871
|
+
export declare function deserializeIntoEngagementRoleMember(engagementRoleMember?: Partial<EngagementRoleMember> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33872
|
+
/**
|
|
33873
|
+
* The deserialization information for the current model
|
|
33874
|
+
* @param EngagementRoleMemberCollectionResponse The instance to deserialize into.
|
|
33875
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33876
|
+
*/
|
|
33877
|
+
export declare function deserializeIntoEngagementRoleMemberCollectionResponse(engagementRoleMemberCollectionResponse?: Partial<EngagementRoleMemberCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33337
33878
|
/**
|
|
33338
33879
|
* The deserialization information for the current model
|
|
33339
33880
|
* @param EnrollmentConfigurationAssignment The instance to deserialize into.
|
|
@@ -33730,6 +34271,30 @@ export declare function deserializeIntoFilterOperatorSchema(filterOperatorSchema
|
|
|
33730
34271
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33731
34272
|
*/
|
|
33732
34273
|
export declare function deserializeIntoFilterOperatorSchemaCollectionResponse(filterOperatorSchemaCollectionResponse?: Partial<FilterOperatorSchemaCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34274
|
+
/**
|
|
34275
|
+
* The deserialization information for the current model
|
|
34276
|
+
* @param FixtureMap The instance to deserialize into.
|
|
34277
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34278
|
+
*/
|
|
34279
|
+
export declare function deserializeIntoFixtureMap(fixtureMap?: Partial<FixtureMap> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34280
|
+
/**
|
|
34281
|
+
* The deserialization information for the current model
|
|
34282
|
+
* @param FixtureMapCollectionResponse The instance to deserialize into.
|
|
34283
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34284
|
+
*/
|
|
34285
|
+
export declare function deserializeIntoFixtureMapCollectionResponse(fixtureMapCollectionResponse?: Partial<FixtureMapCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34286
|
+
/**
|
|
34287
|
+
* The deserialization information for the current model
|
|
34288
|
+
* @param Floor The instance to deserialize into.
|
|
34289
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34290
|
+
*/
|
|
34291
|
+
export declare function deserializeIntoFloor(floor?: Partial<Floor> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34292
|
+
/**
|
|
34293
|
+
* The deserialization information for the current model
|
|
34294
|
+
* @param FloorCollectionResponse The instance to deserialize into.
|
|
34295
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34296
|
+
*/
|
|
34297
|
+
export declare function deserializeIntoFloorCollectionResponse(floorCollectionResponse?: Partial<FloorCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33733
34298
|
/**
|
|
33734
34299
|
* The deserialization information for the current model
|
|
33735
34300
|
* @param Folder The instance to deserialize into.
|
|
@@ -33748,6 +34313,42 @@ export declare function deserializeIntoFolderView(folderView?: Partial<FolderVie
|
|
|
33748
34313
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33749
34314
|
*/
|
|
33750
34315
|
export declare function deserializeIntoFollowupFlag(followupFlag?: Partial<FollowupFlag> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34316
|
+
/**
|
|
34317
|
+
* The deserialization information for the current model
|
|
34318
|
+
* @param FootprintMap The instance to deserialize into.
|
|
34319
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34320
|
+
*/
|
|
34321
|
+
export declare function deserializeIntoFootprintMap(footprintMap?: Partial<FootprintMap> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34322
|
+
/**
|
|
34323
|
+
* The deserialization information for the current model
|
|
34324
|
+
* @param FootprintMapCollectionResponse The instance to deserialize into.
|
|
34325
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34326
|
+
*/
|
|
34327
|
+
export declare function deserializeIntoFootprintMapCollectionResponse(footprintMapCollectionResponse?: Partial<FootprintMapCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34328
|
+
/**
|
|
34329
|
+
* The deserialization information for the current model
|
|
34330
|
+
* @param FraudProtectionConfiguration The instance to deserialize into.
|
|
34331
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34332
|
+
*/
|
|
34333
|
+
export declare function deserializeIntoFraudProtectionConfiguration(fraudProtectionConfiguration?: Partial<FraudProtectionConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34334
|
+
/**
|
|
34335
|
+
* The deserialization information for the current model
|
|
34336
|
+
* @param FraudProtectionProvider The instance to deserialize into.
|
|
34337
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34338
|
+
*/
|
|
34339
|
+
export declare function deserializeIntoFraudProtectionProvider(fraudProtectionProvider?: Partial<FraudProtectionProvider> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34340
|
+
/**
|
|
34341
|
+
* The deserialization information for the current model
|
|
34342
|
+
* @param FraudProtectionProviderCollectionResponse The instance to deserialize into.
|
|
34343
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34344
|
+
*/
|
|
34345
|
+
export declare function deserializeIntoFraudProtectionProviderCollectionResponse(fraudProtectionProviderCollectionResponse?: Partial<FraudProtectionProviderCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34346
|
+
/**
|
|
34347
|
+
* The deserialization information for the current model
|
|
34348
|
+
* @param FraudProtectionProviderConfiguration The instance to deserialize into.
|
|
34349
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34350
|
+
*/
|
|
34351
|
+
export declare function deserializeIntoFraudProtectionProviderConfiguration(fraudProtectionProviderConfiguration?: Partial<FraudProtectionProviderConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33751
34352
|
/**
|
|
33752
34353
|
* The deserialization information for the current model
|
|
33753
34354
|
* @param FreeBusyError The instance to deserialize into.
|
|
@@ -33928,6 +34529,12 @@ export declare function deserializeIntoHostSecurityState(hostSecurityState?: Par
|
|
|
33928
34529
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33929
34530
|
*/
|
|
33930
34531
|
export declare function deserializeIntoHttpRequestEndpoint(httpRequestEndpoint?: Partial<HttpRequestEndpoint> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34532
|
+
/**
|
|
34533
|
+
* The deserialization information for the current model
|
|
34534
|
+
* @param HumanSecurityFraudProtectionProvider The instance to deserialize into.
|
|
34535
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34536
|
+
*/
|
|
34537
|
+
export declare function deserializeIntoHumanSecurityFraudProtectionProvider(humanSecurityFraudProtectionProvider?: Partial<HumanSecurityFraudProtectionProvider> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33931
34538
|
/**
|
|
33932
34539
|
* The deserialization information for the current model
|
|
33933
34540
|
* @param HyperlinkOrPictureColumn The instance to deserialize into.
|
|
@@ -34714,6 +35321,18 @@ export declare function deserializeIntoLearningProviderCollectionResponse(learni
|
|
|
34714
35321
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34715
35322
|
*/
|
|
34716
35323
|
export declare function deserializeIntoLearningSelfInitiatedCourse(learningSelfInitiatedCourse?: Partial<LearningSelfInitiatedCourse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35324
|
+
/**
|
|
35325
|
+
* The deserialization information for the current model
|
|
35326
|
+
* @param LevelMap The instance to deserialize into.
|
|
35327
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35328
|
+
*/
|
|
35329
|
+
export declare function deserializeIntoLevelMap(levelMap?: Partial<LevelMap> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35330
|
+
/**
|
|
35331
|
+
* The deserialization information for the current model
|
|
35332
|
+
* @param LevelMapCollectionResponse The instance to deserialize into.
|
|
35333
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35334
|
+
*/
|
|
35335
|
+
export declare function deserializeIntoLevelMapCollectionResponse(levelMapCollectionResponse?: Partial<LevelMapCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34717
35336
|
/**
|
|
34718
35337
|
* The deserialization information for the current model
|
|
34719
35338
|
* @param LicenseAssignmentState The instance to deserialize into.
|
|
@@ -35002,6 +35621,12 @@ export declare function deserializeIntoMacOSOfficeSuiteApp(macOSOfficeSuiteApp?:
|
|
|
35002
35621
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35003
35622
|
*/
|
|
35004
35623
|
export declare function deserializeIntoMailAssessmentRequest(mailAssessmentRequest?: Partial<MailAssessmentRequest> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35624
|
+
/**
|
|
35625
|
+
* The deserialization information for the current model
|
|
35626
|
+
* @param MailboxDetails The instance to deserialize into.
|
|
35627
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35628
|
+
*/
|
|
35629
|
+
export declare function deserializeIntoMailboxDetails(mailboxDetails?: Partial<MailboxDetails> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35005
35630
|
/**
|
|
35006
35631
|
* The deserialization information for the current model
|
|
35007
35632
|
* @param MailboxProtectionRule The instance to deserialize into.
|
|
@@ -36286,6 +36911,24 @@ export declare function deserializeIntoOnenoteSection(onenoteSection?: Partial<O
|
|
|
36286
36911
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36287
36912
|
*/
|
|
36288
36913
|
export declare function deserializeIntoOnenoteSectionCollectionResponse(onenoteSectionCollectionResponse?: Partial<OnenoteSectionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36914
|
+
/**
|
|
36915
|
+
* The deserialization information for the current model
|
|
36916
|
+
* @param OnFraudProtectionLoadStartExternalUsersAuthHandler The instance to deserialize into.
|
|
36917
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36918
|
+
*/
|
|
36919
|
+
export declare function deserializeIntoOnFraudProtectionLoadStartExternalUsersAuthHandler(onFraudProtectionLoadStartExternalUsersAuthHandler?: Partial<OnFraudProtectionLoadStartExternalUsersAuthHandler> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36920
|
+
/**
|
|
36921
|
+
* The deserialization information for the current model
|
|
36922
|
+
* @param OnFraudProtectionLoadStartHandler The instance to deserialize into.
|
|
36923
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36924
|
+
*/
|
|
36925
|
+
export declare function deserializeIntoOnFraudProtectionLoadStartHandler(onFraudProtectionLoadStartHandler?: Partial<OnFraudProtectionLoadStartHandler> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36926
|
+
/**
|
|
36927
|
+
* The deserialization information for the current model
|
|
36928
|
+
* @param OnFraudProtectionLoadStartListener The instance to deserialize into.
|
|
36929
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36930
|
+
*/
|
|
36931
|
+
export declare function deserializeIntoOnFraudProtectionLoadStartListener(onFraudProtectionLoadStartListener?: Partial<OnFraudProtectionLoadStartListener> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36289
36932
|
/**
|
|
36290
36933
|
* The deserialization information for the current model
|
|
36291
36934
|
* @param OnInteractiveAuthFlowStartExternalUsersSelfServiceSignUp The instance to deserialize into.
|
|
@@ -36928,6 +37571,12 @@ export declare function deserializeIntoPkcs12CertificateInformation(pkcs12Certif
|
|
|
36928
37571
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36929
37572
|
*/
|
|
36930
37573
|
export declare function deserializeIntoPlace(place?: Partial<Place> | undefined): Record<string, (node: ParseNode) => void>;
|
|
37574
|
+
/**
|
|
37575
|
+
* The deserialization information for the current model
|
|
37576
|
+
* @param PlaceMode The instance to deserialize into.
|
|
37577
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
37578
|
+
*/
|
|
37579
|
+
export declare function deserializeIntoPlaceMode(placeMode?: Partial<PlaceMode> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36931
37580
|
/**
|
|
36932
37581
|
* The deserialization information for the current model
|
|
36933
37582
|
* @param Planner The instance to deserialize into.
|
|
@@ -38098,6 +38747,12 @@ export declare function deserializeIntoRequiredResourceAccess(requiredResourceAc
|
|
|
38098
38747
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
38099
38748
|
*/
|
|
38100
38749
|
export declare function deserializeIntoResellerDelegatedAdminRelationship(resellerDelegatedAdminRelationship?: Partial<ResellerDelegatedAdminRelationship> | undefined): Record<string, (node: ParseNode) => void>;
|
|
38750
|
+
/**
|
|
38751
|
+
* The deserialization information for the current model
|
|
38752
|
+
* @param ReservablePlaceMode The instance to deserialize into.
|
|
38753
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
38754
|
+
*/
|
|
38755
|
+
export declare function deserializeIntoReservablePlaceMode(reservablePlaceMode?: Partial<ReservablePlaceMode> | undefined): Record<string, (node: ParseNode) => void>;
|
|
38101
38756
|
/**
|
|
38102
38757
|
* The deserialization information for the current model
|
|
38103
38758
|
* @param ResetPasscodeActionResult The instance to deserialize into.
|
|
@@ -38116,6 +38771,12 @@ export declare function deserializeIntoResourceAccess(resourceAccess?: Partial<R
|
|
|
38116
38771
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
38117
38772
|
*/
|
|
38118
38773
|
export declare function deserializeIntoResourceAction(resourceAction?: Partial<ResourceAction> | undefined): Record<string, (node: ParseNode) => void>;
|
|
38774
|
+
/**
|
|
38775
|
+
* The deserialization information for the current model
|
|
38776
|
+
* @param ResourceLink The instance to deserialize into.
|
|
38777
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
38778
|
+
*/
|
|
38779
|
+
export declare function deserializeIntoResourceLink(resourceLink?: Partial<ResourceLink> | undefined): Record<string, (node: ParseNode) => void>;
|
|
38119
38780
|
/**
|
|
38120
38781
|
* The deserialization information for the current model
|
|
38121
38782
|
* @param ResourceOperation The instance to deserialize into.
|
|
@@ -38620,6 +39281,18 @@ export declare function deserializeIntoSearchResponse(searchResponse?: Partial<S
|
|
|
38620
39281
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
38621
39282
|
*/
|
|
38622
39283
|
export declare function deserializeIntoSearchResult(searchResult?: Partial<SearchResult> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39284
|
+
/**
|
|
39285
|
+
* The deserialization information for the current model
|
|
39286
|
+
* @param Section The instance to deserialize into.
|
|
39287
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39288
|
+
*/
|
|
39289
|
+
export declare function deserializeIntoSection(section?: Partial<Section> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39290
|
+
/**
|
|
39291
|
+
* The deserialization information for the current model
|
|
39292
|
+
* @param SectionCollectionResponse The instance to deserialize into.
|
|
39293
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39294
|
+
*/
|
|
39295
|
+
export declare function deserializeIntoSectionCollectionResponse(sectionCollectionResponse?: Partial<SectionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
38623
39296
|
/**
|
|
38624
39297
|
* The deserialization information for the current model
|
|
38625
39298
|
* @param SectionGroup The instance to deserialize into.
|
|
@@ -38638,6 +39311,18 @@ export declare function deserializeIntoSectionGroupCollectionResponse(sectionGro
|
|
|
38638
39311
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
38639
39312
|
*/
|
|
38640
39313
|
export declare function deserializeIntoSectionLinks(sectionLinks?: Partial<SectionLinks> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39314
|
+
/**
|
|
39315
|
+
* The deserialization information for the current model
|
|
39316
|
+
* @param SectionMap The instance to deserialize into.
|
|
39317
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39318
|
+
*/
|
|
39319
|
+
export declare function deserializeIntoSectionMap(sectionMap?: Partial<SectionMap> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39320
|
+
/**
|
|
39321
|
+
* The deserialization information for the current model
|
|
39322
|
+
* @param SectionMapCollectionResponse The instance to deserialize into.
|
|
39323
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39324
|
+
*/
|
|
39325
|
+
export declare function deserializeIntoSectionMapCollectionResponse(sectionMapCollectionResponse?: Partial<SectionMapCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
38641
39326
|
/**
|
|
38642
39327
|
* The deserialization information for the current model
|
|
38643
39328
|
* @param SecureScore The instance to deserialize into.
|
|
@@ -39022,6 +39707,84 @@ export declare function deserializeIntoSharePointIdentitySet(sharePointIdentityS
|
|
|
39022
39707
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39023
39708
|
*/
|
|
39024
39709
|
export declare function deserializeIntoSharepointIds(sharepointIds?: Partial<SharepointIds> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39710
|
+
/**
|
|
39711
|
+
* The deserialization information for the current model
|
|
39712
|
+
* @param SharePointMigrationContainerInfo The instance to deserialize into.
|
|
39713
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39714
|
+
*/
|
|
39715
|
+
export declare function deserializeIntoSharePointMigrationContainerInfo(sharePointMigrationContainerInfo?: Partial<SharePointMigrationContainerInfo> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39716
|
+
/**
|
|
39717
|
+
* The deserialization information for the current model
|
|
39718
|
+
* @param SharePointMigrationEvent The instance to deserialize into.
|
|
39719
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39720
|
+
*/
|
|
39721
|
+
export declare function deserializeIntoSharePointMigrationEvent(sharePointMigrationEvent?: Partial<SharePointMigrationEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39722
|
+
/**
|
|
39723
|
+
* The deserialization information for the current model
|
|
39724
|
+
* @param SharePointMigrationEventCollectionResponse The instance to deserialize into.
|
|
39725
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39726
|
+
*/
|
|
39727
|
+
export declare function deserializeIntoSharePointMigrationEventCollectionResponse(sharePointMigrationEventCollectionResponse?: Partial<SharePointMigrationEventCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39728
|
+
/**
|
|
39729
|
+
* The deserialization information for the current model
|
|
39730
|
+
* @param SharePointMigrationFinishManifestFileUploadEvent The instance to deserialize into.
|
|
39731
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39732
|
+
*/
|
|
39733
|
+
export declare function deserializeIntoSharePointMigrationFinishManifestFileUploadEvent(sharePointMigrationFinishManifestFileUploadEvent?: Partial<SharePointMigrationFinishManifestFileUploadEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39734
|
+
/**
|
|
39735
|
+
* The deserialization information for the current model
|
|
39736
|
+
* @param SharePointMigrationJob The instance to deserialize into.
|
|
39737
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39738
|
+
*/
|
|
39739
|
+
export declare function deserializeIntoSharePointMigrationJob(sharePointMigrationJob?: Partial<SharePointMigrationJob> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39740
|
+
/**
|
|
39741
|
+
* The deserialization information for the current model
|
|
39742
|
+
* @param SharePointMigrationJobCancelledEvent The instance to deserialize into.
|
|
39743
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39744
|
+
*/
|
|
39745
|
+
export declare function deserializeIntoSharePointMigrationJobCancelledEvent(sharePointMigrationJobCancelledEvent?: Partial<SharePointMigrationJobCancelledEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39746
|
+
/**
|
|
39747
|
+
* The deserialization information for the current model
|
|
39748
|
+
* @param SharePointMigrationJobCollectionResponse The instance to deserialize into.
|
|
39749
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39750
|
+
*/
|
|
39751
|
+
export declare function deserializeIntoSharePointMigrationJobCollectionResponse(sharePointMigrationJobCollectionResponse?: Partial<SharePointMigrationJobCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39752
|
+
/**
|
|
39753
|
+
* The deserialization information for the current model
|
|
39754
|
+
* @param SharePointMigrationJobDeletedEvent The instance to deserialize into.
|
|
39755
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39756
|
+
*/
|
|
39757
|
+
export declare function deserializeIntoSharePointMigrationJobDeletedEvent(sharePointMigrationJobDeletedEvent?: Partial<SharePointMigrationJobDeletedEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39758
|
+
/**
|
|
39759
|
+
* The deserialization information for the current model
|
|
39760
|
+
* @param SharePointMigrationJobErrorEvent The instance to deserialize into.
|
|
39761
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39762
|
+
*/
|
|
39763
|
+
export declare function deserializeIntoSharePointMigrationJobErrorEvent(sharePointMigrationJobErrorEvent?: Partial<SharePointMigrationJobErrorEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39764
|
+
/**
|
|
39765
|
+
* The deserialization information for the current model
|
|
39766
|
+
* @param SharePointMigrationJobPostponedEvent The instance to deserialize into.
|
|
39767
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39768
|
+
*/
|
|
39769
|
+
export declare function deserializeIntoSharePointMigrationJobPostponedEvent(sharePointMigrationJobPostponedEvent?: Partial<SharePointMigrationJobPostponedEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39770
|
+
/**
|
|
39771
|
+
* The deserialization information for the current model
|
|
39772
|
+
* @param SharePointMigrationJobProgressEvent The instance to deserialize into.
|
|
39773
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39774
|
+
*/
|
|
39775
|
+
export declare function deserializeIntoSharePointMigrationJobProgressEvent(sharePointMigrationJobProgressEvent?: Partial<SharePointMigrationJobProgressEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39776
|
+
/**
|
|
39777
|
+
* The deserialization information for the current model
|
|
39778
|
+
* @param SharePointMigrationJobQueuedEvent The instance to deserialize into.
|
|
39779
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39780
|
+
*/
|
|
39781
|
+
export declare function deserializeIntoSharePointMigrationJobQueuedEvent(sharePointMigrationJobQueuedEvent?: Partial<SharePointMigrationJobQueuedEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39782
|
+
/**
|
|
39783
|
+
* The deserialization information for the current model
|
|
39784
|
+
* @param SharePointMigrationJobStartEvent The instance to deserialize into.
|
|
39785
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39786
|
+
*/
|
|
39787
|
+
export declare function deserializeIntoSharePointMigrationJobStartEvent(sharePointMigrationJobStartEvent?: Partial<SharePointMigrationJobStartEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39025
39788
|
/**
|
|
39026
39789
|
* The deserialization information for the current model
|
|
39027
39790
|
* @param SharePointOneDriveOptions The instance to deserialize into.
|
|
@@ -40846,6 +41609,18 @@ export declare function deserializeIntoUnifiedRoleScheduleInstanceBase(unifiedRo
|
|
|
40846
41609
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
40847
41610
|
*/
|
|
40848
41611
|
export declare function deserializeIntoUnifiedStorageQuota(unifiedStorageQuota?: Partial<UnifiedStorageQuota> | undefined): Record<string, (node: ParseNode) => void>;
|
|
41612
|
+
/**
|
|
41613
|
+
* The deserialization information for the current model
|
|
41614
|
+
* @param UnitMap The instance to deserialize into.
|
|
41615
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
41616
|
+
*/
|
|
41617
|
+
export declare function deserializeIntoUnitMap(unitMap?: Partial<UnitMap> | undefined): Record<string, (node: ParseNode) => void>;
|
|
41618
|
+
/**
|
|
41619
|
+
* The deserialization information for the current model
|
|
41620
|
+
* @param UnitMapCollectionResponse The instance to deserialize into.
|
|
41621
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
41622
|
+
*/
|
|
41623
|
+
export declare function deserializeIntoUnitMapCollectionResponse(unitMapCollectionResponse?: Partial<UnitMapCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
40849
41624
|
/**
|
|
40850
41625
|
* The deserialization information for the current model
|
|
40851
41626
|
* @param UnmuteParticipantOperation The instance to deserialize into.
|
|
@@ -42742,6 +43517,18 @@ export declare function deserializeIntoWorkingHours(workingHours?: Partial<Worki
|
|
|
42742
43517
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
42743
43518
|
*/
|
|
42744
43519
|
export declare function deserializeIntoWorkingTimeSchedule(workingTimeSchedule?: Partial<WorkingTimeSchedule> | undefined): Record<string, (node: ParseNode) => void>;
|
|
43520
|
+
/**
|
|
43521
|
+
* The deserialization information for the current model
|
|
43522
|
+
* @param Workspace The instance to deserialize into.
|
|
43523
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
43524
|
+
*/
|
|
43525
|
+
export declare function deserializeIntoWorkspace(workspace?: Partial<Workspace> | undefined): Record<string, (node: ParseNode) => void>;
|
|
43526
|
+
/**
|
|
43527
|
+
* The deserialization information for the current model
|
|
43528
|
+
* @param WorkspaceCollectionResponse The instance to deserialize into.
|
|
43529
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
43530
|
+
*/
|
|
43531
|
+
export declare function deserializeIntoWorkspaceCollectionResponse(workspaceCollectionResponse?: Partial<WorkspaceCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
42745
43532
|
/**
|
|
42746
43533
|
* The deserialization information for the current model
|
|
42747
43534
|
* @param X509CertificateAuthenticationMethodConfiguration The instance to deserialize into.
|
|
@@ -42778,6 +43565,26 @@ export declare function deserializeIntoX509CertificateRule(x509CertificateRule?:
|
|
|
42778
43565
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
42779
43566
|
*/
|
|
42780
43567
|
export declare function deserializeIntoX509CertificateUserBinding(x509CertificateUserBinding?: Partial<X509CertificateUserBinding> | undefined): Record<string, (node: ParseNode) => void>;
|
|
43568
|
+
export interface Desk extends Parsable, Place {
|
|
43569
|
+
/**
|
|
43570
|
+
* The displayDeviceName property
|
|
43571
|
+
*/
|
|
43572
|
+
displayDeviceName?: string | null;
|
|
43573
|
+
/**
|
|
43574
|
+
* The mailboxDetails property
|
|
43575
|
+
*/
|
|
43576
|
+
mailboxDetails?: MailboxDetails | null;
|
|
43577
|
+
/**
|
|
43578
|
+
* The mode property
|
|
43579
|
+
*/
|
|
43580
|
+
mode?: PlaceMode | null;
|
|
43581
|
+
}
|
|
43582
|
+
export interface DeskCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
43583
|
+
/**
|
|
43584
|
+
* The value property
|
|
43585
|
+
*/
|
|
43586
|
+
value?: Desk[] | null;
|
|
43587
|
+
}
|
|
42781
43588
|
export type DestinationType = (typeof DestinationTypeObject)[keyof typeof DestinationTypeObject];
|
|
42782
43589
|
export interface DetailsInfo extends AdditionalDataHolder, BackedModel, Parsable {
|
|
42783
43590
|
/**
|
|
@@ -46233,6 +47040,8 @@ export interface DriveRestoreArtifactsBulkAdditionRequestCollectionResponse exte
|
|
|
46233
47040
|
*/
|
|
46234
47041
|
value?: DriveRestoreArtifactsBulkAdditionRequest[] | null;
|
|
46235
47042
|
}
|
|
47043
|
+
export interface DropInPlaceMode extends Parsable, PlaceMode {
|
|
47044
|
+
}
|
|
46236
47045
|
/**
|
|
46237
47046
|
* Contains properties for the installation summary of a book for a device.
|
|
46238
47047
|
*/
|
|
@@ -46541,7 +47350,7 @@ export interface EducationAssignment extends Entity, Parsable {
|
|
|
46541
47350
|
*/
|
|
46542
47351
|
rubric?: EducationRubric | null;
|
|
46543
47352
|
/**
|
|
46544
|
-
* Status of the assignment. You can't PATCH this value. Possible values are: draft, scheduled, published, assigned, unknownFutureValue, inactive. Use the Prefer: include-unknown-enum-members request header to get the following
|
|
47353
|
+
* Status of the assignment. You can't PATCH this value. Possible values are: draft, scheduled, published, assigned, unknownFutureValue, inactive. Use the Prefer: include-unknown-enum-members request header to get the following members in this evolvable enum: inactive.
|
|
46545
47354
|
*/
|
|
46546
47355
|
status?: EducationAssignmentStatus | null;
|
|
46547
47356
|
/**
|
|
@@ -46567,7 +47376,7 @@ export interface EducationAssignmentDefaults extends Entity, Parsable {
|
|
|
46567
47376
|
*/
|
|
46568
47377
|
addedStudentAction?: EducationAddedStudentAction | null;
|
|
46569
47378
|
/**
|
|
46570
|
-
* 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. Use the Prefer: include-unknown-enum-members request header to get the following
|
|
47379
|
+
* 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. Use the Prefer: include-unknown-enum-members request header to get the following members in this evolvable enum: studentsOnly. The default value is none.
|
|
46571
47380
|
*/
|
|
46572
47381
|
addToCalendarAction?: EducationAddToCalendarOptions | null;
|
|
46573
47382
|
/**
|
|
@@ -47961,8 +48770,16 @@ export interface EmployeeExperience extends AdditionalDataHolder, BackedModel, P
|
|
|
47961
48770
|
* The OdataType property
|
|
47962
48771
|
*/
|
|
47963
48772
|
odataType?: string | null;
|
|
48773
|
+
/**
|
|
48774
|
+
* A collection of roles in Viva Engage.
|
|
48775
|
+
*/
|
|
48776
|
+
roles?: EngagementRole[] | null;
|
|
47964
48777
|
}
|
|
47965
48778
|
export interface EmployeeExperienceUser extends Entity, Parsable {
|
|
48779
|
+
/**
|
|
48780
|
+
* Represents the collection of Viva Engage roles assigned to a user.
|
|
48781
|
+
*/
|
|
48782
|
+
assignedRoles?: EngagementRole[] | null;
|
|
47966
48783
|
/**
|
|
47967
48784
|
* The learningCourseActivities property
|
|
47968
48785
|
*/
|
|
@@ -48275,6 +49092,48 @@ export interface EngagementIdentitySet extends IdentitySet, Parsable {
|
|
|
48275
49092
|
*/
|
|
48276
49093
|
group?: Identity | null;
|
|
48277
49094
|
}
|
|
49095
|
+
/**
|
|
49096
|
+
* Represents a Viva Engage role and its members
|
|
49097
|
+
*/
|
|
49098
|
+
export interface EngagementRole extends Entity, Parsable {
|
|
49099
|
+
/**
|
|
49100
|
+
* The name of the role.
|
|
49101
|
+
*/
|
|
49102
|
+
displayName?: string | null;
|
|
49103
|
+
/**
|
|
49104
|
+
* Users that have this role assigned.
|
|
49105
|
+
*/
|
|
49106
|
+
members?: EngagementRoleMember[] | null;
|
|
49107
|
+
}
|
|
49108
|
+
export interface EngagementRoleCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
49109
|
+
/**
|
|
49110
|
+
* The value property
|
|
49111
|
+
*/
|
|
49112
|
+
value?: EngagementRole[] | null;
|
|
49113
|
+
}
|
|
49114
|
+
/**
|
|
49115
|
+
* Entity to represent the assignment of a role to a user.
|
|
49116
|
+
*/
|
|
49117
|
+
export interface EngagementRoleMember extends Entity, Parsable {
|
|
49118
|
+
/**
|
|
49119
|
+
* The date and time when the role was assigned to 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.
|
|
49120
|
+
*/
|
|
49121
|
+
createdDateTime?: Date | null;
|
|
49122
|
+
/**
|
|
49123
|
+
* The user who has this role assigned.
|
|
49124
|
+
*/
|
|
49125
|
+
user?: User | null;
|
|
49126
|
+
/**
|
|
49127
|
+
* The Microsoft Entra ID of the user who has the role assigned.
|
|
49128
|
+
*/
|
|
49129
|
+
userId?: string | null;
|
|
49130
|
+
}
|
|
49131
|
+
export interface EngagementRoleMemberCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
49132
|
+
/**
|
|
49133
|
+
* The value property
|
|
49134
|
+
*/
|
|
49135
|
+
value?: EngagementRoleMember[] | null;
|
|
49136
|
+
}
|
|
48278
49137
|
/**
|
|
48279
49138
|
* Enrollment Configuration Assignment
|
|
48280
49139
|
*/
|
|
@@ -49324,6 +50183,10 @@ export interface FileStorageContainer extends Entity, Parsable {
|
|
|
49324
50183
|
* Indicates the lock state of the fileStorageContainer. The possible values are unlocked and lockedReadOnly. Read-only.
|
|
49325
50184
|
*/
|
|
49326
50185
|
lockState?: SiteLockState | null;
|
|
50186
|
+
/**
|
|
50187
|
+
* The collection of sharePointMigrationJob objects local to the container. Read-write.
|
|
50188
|
+
*/
|
|
50189
|
+
migrationJobs?: SharePointMigrationJob[] | null;
|
|
49327
50190
|
/**
|
|
49328
50191
|
* 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.
|
|
49329
50192
|
*/
|
|
@@ -49512,6 +50375,30 @@ export interface FilterOperatorSchemaCollectionResponse extends BaseCollectionPa
|
|
|
49512
50375
|
export type FirewallCertificateRevocationListCheckMethodType = (typeof FirewallCertificateRevocationListCheckMethodTypeObject)[keyof typeof FirewallCertificateRevocationListCheckMethodTypeObject];
|
|
49513
50376
|
export type FirewallPacketQueueingMethodType = (typeof FirewallPacketQueueingMethodTypeObject)[keyof typeof FirewallPacketQueueingMethodTypeObject];
|
|
49514
50377
|
export type FirewallPreSharedKeyEncodingMethodType = (typeof FirewallPreSharedKeyEncodingMethodTypeObject)[keyof typeof FirewallPreSharedKeyEncodingMethodTypeObject];
|
|
50378
|
+
export interface FixtureMap extends BaseMapFeature, Parsable {
|
|
50379
|
+
/**
|
|
50380
|
+
* The placeId property
|
|
50381
|
+
*/
|
|
50382
|
+
placeId?: string | null;
|
|
50383
|
+
}
|
|
50384
|
+
export interface FixtureMapCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
50385
|
+
/**
|
|
50386
|
+
* The value property
|
|
50387
|
+
*/
|
|
50388
|
+
value?: FixtureMap[] | null;
|
|
50389
|
+
}
|
|
50390
|
+
export interface Floor extends Parsable, Place {
|
|
50391
|
+
/**
|
|
50392
|
+
* The sortOrder property
|
|
50393
|
+
*/
|
|
50394
|
+
sortOrder?: number | null;
|
|
50395
|
+
}
|
|
50396
|
+
export interface FloorCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
50397
|
+
/**
|
|
50398
|
+
* The value property
|
|
50399
|
+
*/
|
|
50400
|
+
value?: Floor[] | null;
|
|
50401
|
+
}
|
|
49515
50402
|
export interface Folder extends AdditionalDataHolder, BackedModel, Parsable {
|
|
49516
50403
|
/**
|
|
49517
50404
|
* Stores model information.
|
|
@@ -49579,6 +50466,42 @@ export interface FollowupFlag extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
49579
50466
|
startDateTime?: DateTimeTimeZone | null;
|
|
49580
50467
|
}
|
|
49581
50468
|
export type FollowupFlagStatus = (typeof FollowupFlagStatusObject)[keyof typeof FollowupFlagStatusObject];
|
|
50469
|
+
export interface FootprintMap extends BaseMapFeature, Parsable {
|
|
50470
|
+
}
|
|
50471
|
+
export interface FootprintMapCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
50472
|
+
/**
|
|
50473
|
+
* The value property
|
|
50474
|
+
*/
|
|
50475
|
+
value?: FootprintMap[] | null;
|
|
50476
|
+
}
|
|
50477
|
+
export interface FraudProtectionConfiguration extends AdditionalDataHolder, BackedModel, Parsable {
|
|
50478
|
+
/**
|
|
50479
|
+
* Stores model information.
|
|
50480
|
+
*/
|
|
50481
|
+
backingStoreEnabled?: boolean | null;
|
|
50482
|
+
/**
|
|
50483
|
+
* The OdataType property
|
|
50484
|
+
*/
|
|
50485
|
+
odataType?: string | null;
|
|
50486
|
+
}
|
|
50487
|
+
export interface FraudProtectionProvider extends Entity, Parsable {
|
|
50488
|
+
/**
|
|
50489
|
+
* The display name of the fraud protection provider configuration.
|
|
50490
|
+
*/
|
|
50491
|
+
displayName?: string | null;
|
|
50492
|
+
}
|
|
50493
|
+
export interface FraudProtectionProviderCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
50494
|
+
/**
|
|
50495
|
+
* The value property
|
|
50496
|
+
*/
|
|
50497
|
+
value?: FraudProtectionProvider[] | null;
|
|
50498
|
+
}
|
|
50499
|
+
export interface FraudProtectionProviderConfiguration extends FraudProtectionConfiguration, Parsable {
|
|
50500
|
+
/**
|
|
50501
|
+
* The fraudProtectionProvider property
|
|
50502
|
+
*/
|
|
50503
|
+
fraudProtectionProvider?: FraudProtectionProvider | null;
|
|
50504
|
+
}
|
|
49582
50505
|
export interface FreeBusyError extends AdditionalDataHolder, BackedModel, Parsable {
|
|
49583
50506
|
/**
|
|
49584
50507
|
* Stores model information.
|
|
@@ -50185,6 +51108,16 @@ export interface HttpRequestEndpoint extends CustomExtensionEndpointConfiguratio
|
|
|
50185
51108
|
*/
|
|
50186
51109
|
targetUrl?: string | null;
|
|
50187
51110
|
}
|
|
51111
|
+
export interface HumanSecurityFraudProtectionProvider extends FraudProtectionProvider, Parsable {
|
|
51112
|
+
/**
|
|
51113
|
+
* Unique identifier for an individual application. You can retrieve this from the HUMAN Security Admin Console or request it from your HUMAN Security Customer Success Manager.
|
|
51114
|
+
*/
|
|
51115
|
+
appId?: string | null;
|
|
51116
|
+
/**
|
|
51117
|
+
* Unique identifier used to authenticate API calls between the Server side integration and the HUMAN platform. You can retrieve this from the HUMAN Security Admin Console or request it from your HUMAN Security Customer Success Manager.
|
|
51118
|
+
*/
|
|
51119
|
+
serverToken?: string | null;
|
|
51120
|
+
}
|
|
50188
51121
|
export interface HyperlinkOrPictureColumn extends AdditionalDataHolder, BackedModel, Parsable {
|
|
50189
51122
|
/**
|
|
50190
51123
|
* Stores model information.
|
|
@@ -50269,7 +51202,7 @@ export interface IdentityContainer extends Entity, Parsable {
|
|
|
50269
51202
|
*/
|
|
50270
51203
|
identityProviders?: IdentityProviderBase[] | null;
|
|
50271
51204
|
/**
|
|
50272
|
-
*
|
|
51205
|
+
* Represents the entry point for fraud and risk prevention configurations in Microsoft Entra External ID, including third-party provider settings.
|
|
50273
51206
|
*/
|
|
50274
51207
|
riskPrevention?: RiskPreventionContainer | null;
|
|
50275
51208
|
/**
|
|
@@ -53084,6 +54017,30 @@ export interface LearningSelfInitiatedCourse extends LearningCourseActivity, Par
|
|
|
53084
54017
|
startedDateTime?: Date | null;
|
|
53085
54018
|
}
|
|
53086
54019
|
export type Level = (typeof LevelObject)[keyof typeof LevelObject];
|
|
54020
|
+
export interface LevelMap extends BaseMapFeature, Parsable {
|
|
54021
|
+
/**
|
|
54022
|
+
* The fixtures property
|
|
54023
|
+
*/
|
|
54024
|
+
fixtures?: FixtureMap[] | null;
|
|
54025
|
+
/**
|
|
54026
|
+
* The placeId property
|
|
54027
|
+
*/
|
|
54028
|
+
placeId?: string | null;
|
|
54029
|
+
/**
|
|
54030
|
+
* The sections property
|
|
54031
|
+
*/
|
|
54032
|
+
sections?: SectionMap[] | null;
|
|
54033
|
+
/**
|
|
54034
|
+
* The units property
|
|
54035
|
+
*/
|
|
54036
|
+
units?: UnitMap[] | null;
|
|
54037
|
+
}
|
|
54038
|
+
export interface LevelMapCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
54039
|
+
/**
|
|
54040
|
+
* The value property
|
|
54041
|
+
*/
|
|
54042
|
+
value?: LevelMap[] | null;
|
|
54043
|
+
}
|
|
53087
54044
|
export interface LicenseAssignmentState extends AdditionalDataHolder, BackedModel, Parsable {
|
|
53088
54045
|
/**
|
|
53089
54046
|
* The assignedByGroup property
|
|
@@ -54057,6 +55014,24 @@ export interface MailAssessmentRequest extends Parsable, ThreatAssessmentRequest
|
|
|
54057
55014
|
*/
|
|
54058
55015
|
recipientEmail?: string | null;
|
|
54059
55016
|
}
|
|
55017
|
+
export interface MailboxDetails extends AdditionalDataHolder, BackedModel, Parsable {
|
|
55018
|
+
/**
|
|
55019
|
+
* Stores model information.
|
|
55020
|
+
*/
|
|
55021
|
+
backingStoreEnabled?: boolean | null;
|
|
55022
|
+
/**
|
|
55023
|
+
* The emailAddress property
|
|
55024
|
+
*/
|
|
55025
|
+
emailAddress?: string | null;
|
|
55026
|
+
/**
|
|
55027
|
+
* The externalDirectoryObjectId property
|
|
55028
|
+
*/
|
|
55029
|
+
externalDirectoryObjectId?: string | null;
|
|
55030
|
+
/**
|
|
55031
|
+
* The OdataType property
|
|
55032
|
+
*/
|
|
55033
|
+
odataType?: string | null;
|
|
55034
|
+
}
|
|
54060
55035
|
export interface MailboxProtectionRule extends Parsable, ProtectionRuleBase {
|
|
54061
55036
|
/**
|
|
54062
55037
|
* Contains a mailbox expression. For examples, see mailboxExpression examples.
|
|
@@ -58182,6 +59157,28 @@ export interface OnenoteSectionCollectionResponse extends BaseCollectionPaginati
|
|
|
58182
59157
|
}
|
|
58183
59158
|
export type OnenoteSourceService = (typeof OnenoteSourceServiceObject)[keyof typeof OnenoteSourceServiceObject];
|
|
58184
59159
|
export type OnenoteUserRole = (typeof OnenoteUserRoleObject)[keyof typeof OnenoteUserRoleObject];
|
|
59160
|
+
export interface OnFraudProtectionLoadStartExternalUsersAuthHandler extends OnFraudProtectionLoadStartHandler, Parsable {
|
|
59161
|
+
/**
|
|
59162
|
+
* Specifies the fraud protection configuration for sign-up events.
|
|
59163
|
+
*/
|
|
59164
|
+
signUp?: FraudProtectionConfiguration | null;
|
|
59165
|
+
}
|
|
59166
|
+
export interface OnFraudProtectionLoadStartHandler extends AdditionalDataHolder, BackedModel, Parsable {
|
|
59167
|
+
/**
|
|
59168
|
+
* Stores model information.
|
|
59169
|
+
*/
|
|
59170
|
+
backingStoreEnabled?: boolean | null;
|
|
59171
|
+
/**
|
|
59172
|
+
* The OdataType property
|
|
59173
|
+
*/
|
|
59174
|
+
odataType?: string | null;
|
|
59175
|
+
}
|
|
59176
|
+
export interface OnFraudProtectionLoadStartListener extends AuthenticationEventListener, Parsable {
|
|
59177
|
+
/**
|
|
59178
|
+
* Configuration for what to invoke if the event resolves to this listener.
|
|
59179
|
+
*/
|
|
59180
|
+
handler?: OnFraudProtectionLoadStartHandler | null;
|
|
59181
|
+
}
|
|
58185
59182
|
export interface OnInteractiveAuthFlowStartExternalUsersSelfServiceSignUp extends OnInteractiveAuthFlowStartHandler, Parsable {
|
|
58186
59183
|
/**
|
|
58187
59184
|
* 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.
|
|
@@ -60485,6 +61482,10 @@ export interface Place extends Entity, Parsable {
|
|
|
60485
61482
|
* The street address of the place.
|
|
60486
61483
|
*/
|
|
60487
61484
|
address?: PhysicalAddress | null;
|
|
61485
|
+
/**
|
|
61486
|
+
* The checkIns property
|
|
61487
|
+
*/
|
|
61488
|
+
checkIns?: CheckInClaim[] | null;
|
|
60488
61489
|
/**
|
|
60489
61490
|
* The name associated with the place.
|
|
60490
61491
|
*/
|
|
@@ -60493,10 +61494,36 @@ export interface Place extends Entity, Parsable {
|
|
|
60493
61494
|
* Specifies the place location in latitude, longitude, and (optionally) altitude coordinates.
|
|
60494
61495
|
*/
|
|
60495
61496
|
geoCoordinates?: OutlookGeoCoordinates | null;
|
|
61497
|
+
/**
|
|
61498
|
+
* The isWheelChairAccessible property
|
|
61499
|
+
*/
|
|
61500
|
+
isWheelChairAccessible?: boolean | null;
|
|
61501
|
+
/**
|
|
61502
|
+
* The label property
|
|
61503
|
+
*/
|
|
61504
|
+
label?: string | null;
|
|
61505
|
+
/**
|
|
61506
|
+
* The parentId property
|
|
61507
|
+
*/
|
|
61508
|
+
parentId?: string | null;
|
|
60496
61509
|
/**
|
|
60497
61510
|
* The phone number of the place.
|
|
60498
61511
|
*/
|
|
60499
61512
|
phone?: string | null;
|
|
61513
|
+
/**
|
|
61514
|
+
* The tags property
|
|
61515
|
+
*/
|
|
61516
|
+
tags?: string[] | null;
|
|
61517
|
+
}
|
|
61518
|
+
export interface PlaceMode extends AdditionalDataHolder, BackedModel, Parsable {
|
|
61519
|
+
/**
|
|
61520
|
+
* Stores model information.
|
|
61521
|
+
*/
|
|
61522
|
+
backingStoreEnabled?: boolean | null;
|
|
61523
|
+
/**
|
|
61524
|
+
* The OdataType property
|
|
61525
|
+
*/
|
|
61526
|
+
odataType?: string | null;
|
|
60500
61527
|
}
|
|
60501
61528
|
export interface Planner extends Entity, Parsable {
|
|
60502
61529
|
/**
|
|
@@ -60773,7 +61800,7 @@ export interface PlannerPlanContainer extends AdditionalDataHolder, BackedModel,
|
|
|
60773
61800
|
*/
|
|
60774
61801
|
odataType?: string | null;
|
|
60775
61802
|
/**
|
|
60776
|
-
* The type of the resource that contains the plan. For supported types, see the previous table. Possible values are: group, unknownFutureValue, roster. Use the Prefer: include-unknown-enum-members request header to get the following
|
|
61803
|
+
* The type of the resource that contains the plan. For supported types, see the previous table. Possible values are: group, unknownFutureValue, roster. Use the Prefer: include-unknown-enum-members request header to get the following members in this evolvable enum: roster. Optional.
|
|
60777
61804
|
*/
|
|
60778
61805
|
type?: PlannerContainerType | null;
|
|
60779
61806
|
/**
|
|
@@ -64568,6 +65595,8 @@ export interface ResellerDelegatedAdminRelationship extends DelegatedAdminRelati
|
|
|
64568
65595
|
*/
|
|
64569
65596
|
isPartnerConsentPending?: boolean | null;
|
|
64570
65597
|
}
|
|
65598
|
+
export interface ReservablePlaceMode extends Parsable, PlaceMode {
|
|
65599
|
+
}
|
|
64571
65600
|
/**
|
|
64572
65601
|
* Reset passcode action result
|
|
64573
65602
|
*/
|
|
@@ -64620,6 +65649,29 @@ export interface ResourceAction extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
64620
65649
|
*/
|
|
64621
65650
|
odataType?: string | null;
|
|
64622
65651
|
}
|
|
65652
|
+
export interface ResourceLink extends AdditionalDataHolder, BackedModel, Parsable {
|
|
65653
|
+
/**
|
|
65654
|
+
* Stores model information.
|
|
65655
|
+
*/
|
|
65656
|
+
backingStoreEnabled?: boolean | null;
|
|
65657
|
+
/**
|
|
65658
|
+
* The linkType property
|
|
65659
|
+
*/
|
|
65660
|
+
linkType?: ResourceLinkType | null;
|
|
65661
|
+
/**
|
|
65662
|
+
* The name property
|
|
65663
|
+
*/
|
|
65664
|
+
name?: string | null;
|
|
65665
|
+
/**
|
|
65666
|
+
* The OdataType property
|
|
65667
|
+
*/
|
|
65668
|
+
odataType?: string | null;
|
|
65669
|
+
/**
|
|
65670
|
+
* The value property
|
|
65671
|
+
*/
|
|
65672
|
+
value?: string | null;
|
|
65673
|
+
}
|
|
65674
|
+
export type ResourceLinkType = (typeof ResourceLinkTypeObject)[keyof typeof ResourceLinkTypeObject];
|
|
64623
65675
|
/**
|
|
64624
65676
|
* Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC).
|
|
64625
65677
|
*/
|
|
@@ -64991,7 +66043,7 @@ export interface RestoreSessionBase extends Entity, Parsable {
|
|
|
64991
66043
|
*/
|
|
64992
66044
|
restoreSessionArtifactCount?: RestoreSessionArtifactCount | null;
|
|
64993
66045
|
/**
|
|
64994
|
-
* Status of the restore session. The value is an aggregated status of the restored artifacts. The possible values are: draft, activating, active, completedWithError, completed, unknownFutureValue, failed. Use the Prefer: include-unknown-enum-members request header to get the following
|
|
66046
|
+
* Status of the restore session. The value is an aggregated status of the restored artifacts. The possible values are: draft, activating, active, completedWithError, completed, unknownFutureValue, failed. Use the Prefer: include-unknown-enum-members request header to get the following members in this evolvable enum: failed.
|
|
64995
66047
|
*/
|
|
64996
66048
|
status?: RestoreSessionStatus | null;
|
|
64997
66049
|
}
|
|
@@ -65196,7 +66248,7 @@ export interface RiskDetection extends Entity, Parsable {
|
|
|
65196
66248
|
*/
|
|
65197
66249
|
requestId?: string | null;
|
|
65198
66250
|
/**
|
|
65199
|
-
* Details of the detected risk.
|
|
66251
|
+
* Details of the detected risk.
|
|
65200
66252
|
*/
|
|
65201
66253
|
riskDetail?: RiskDetail | null;
|
|
65202
66254
|
/**
|
|
@@ -65246,16 +66298,20 @@ export interface RiskPreventionContainer extends AdditionalDataHolder, BackedMod
|
|
|
65246
66298
|
* Stores model information.
|
|
65247
66299
|
*/
|
|
65248
66300
|
backingStoreEnabled?: boolean | null;
|
|
66301
|
+
/**
|
|
66302
|
+
* Represents entry point for fraud protection provider configurations for Microsoft Entra External ID tenants.
|
|
66303
|
+
*/
|
|
66304
|
+
fraudProtectionProviders?: FraudProtectionProvider[] | null;
|
|
65249
66305
|
/**
|
|
65250
66306
|
* The OdataType property
|
|
65251
66307
|
*/
|
|
65252
66308
|
odataType?: string | null;
|
|
65253
66309
|
/**
|
|
65254
|
-
*
|
|
66310
|
+
* Collection of WAF provider configurations registered in the External ID tenant.
|
|
65255
66311
|
*/
|
|
65256
66312
|
webApplicationFirewallProviders?: WebApplicationFirewallProvider[] | null;
|
|
65257
66313
|
/**
|
|
65258
|
-
*
|
|
66314
|
+
* Collection of verification operations performed for domains or hosts with WAF providers registered in the External ID tenant.
|
|
65259
66315
|
*/
|
|
65260
66316
|
webApplicationFirewallVerifications?: WebApplicationFirewallVerificationModel[] | null;
|
|
65261
66317
|
}
|
|
@@ -65265,7 +66321,7 @@ export interface RiskServicePrincipalActivity extends AdditionalDataHolder, Back
|
|
|
65265
66321
|
*/
|
|
65266
66322
|
backingStoreEnabled?: boolean | null;
|
|
65267
66323
|
/**
|
|
65268
|
-
* Details of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden.
|
|
66324
|
+
* Details of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden.
|
|
65269
66325
|
*/
|
|
65270
66326
|
detail?: RiskDetail | null;
|
|
65271
66327
|
/**
|
|
@@ -65284,7 +66340,7 @@ export interface RiskUserActivity extends AdditionalDataHolder, BackedModel, Par
|
|
|
65284
66340
|
*/
|
|
65285
66341
|
backingStoreEnabled?: boolean | null;
|
|
65286
66342
|
/**
|
|
65287
|
-
*
|
|
66343
|
+
* For more information, see riskDetail.
|
|
65288
66344
|
*/
|
|
65289
66345
|
detail?: RiskDetail | null;
|
|
65290
66346
|
/**
|
|
@@ -65318,7 +66374,7 @@ export interface RiskyServicePrincipal extends Entity, Parsable {
|
|
|
65318
66374
|
*/
|
|
65319
66375
|
isProcessing?: boolean | null;
|
|
65320
66376
|
/**
|
|
65321
|
-
* Details of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden.
|
|
66377
|
+
* Details of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden.
|
|
65322
66378
|
*/
|
|
65323
66379
|
riskDetail?: RiskDetail | null;
|
|
65324
66380
|
/**
|
|
@@ -65374,7 +66430,7 @@ export interface RiskyUser extends Entity, Parsable {
|
|
|
65374
66430
|
*/
|
|
65375
66431
|
isProcessing?: boolean | null;
|
|
65376
66432
|
/**
|
|
65377
|
-
*
|
|
66433
|
+
* Details of the detected risk.
|
|
65378
66434
|
*/
|
|
65379
66435
|
riskDetail?: RiskDetail | null;
|
|
65380
66436
|
/**
|
|
@@ -65550,22 +66606,10 @@ export interface Room extends Parsable, Place {
|
|
|
65550
66606
|
* Specifies the floor number that the room is on.
|
|
65551
66607
|
*/
|
|
65552
66608
|
floorNumber?: number | null;
|
|
65553
|
-
/**
|
|
65554
|
-
* Specifies whether the room is wheelchair accessible.
|
|
65555
|
-
*/
|
|
65556
|
-
isWheelChairAccessible?: boolean | null;
|
|
65557
|
-
/**
|
|
65558
|
-
* Specifies a descriptive label for the room, for example, a number or name.
|
|
65559
|
-
*/
|
|
65560
|
-
label?: string | null;
|
|
65561
66609
|
/**
|
|
65562
66610
|
* Specifies a nickname for the room, for example, 'conf room'.
|
|
65563
66611
|
*/
|
|
65564
66612
|
nickname?: string | null;
|
|
65565
|
-
/**
|
|
65566
|
-
* Specifies other features of the room, for example, details like the type of view or furniture type.
|
|
65567
|
-
*/
|
|
65568
|
-
tags?: string[] | null;
|
|
65569
66613
|
/**
|
|
65570
66614
|
* Specifies the name of the video device in the room.
|
|
65571
66615
|
*/
|
|
@@ -65586,6 +66630,10 @@ export interface RoomList extends Parsable, Place {
|
|
|
65586
66630
|
* The rooms property
|
|
65587
66631
|
*/
|
|
65588
66632
|
rooms?: Room[] | null;
|
|
66633
|
+
/**
|
|
66634
|
+
* The workspaces property
|
|
66635
|
+
*/
|
|
66636
|
+
workspaces?: Workspace[] | null;
|
|
65589
66637
|
}
|
|
65590
66638
|
export interface RoomListCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
65591
66639
|
/**
|
|
@@ -66305,7 +67353,7 @@ export interface SearchRequest extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
66305
67353
|
*/
|
|
66306
67354
|
enableTopResults?: boolean | null;
|
|
66307
67355
|
/**
|
|
66308
|
-
* One or more types of resources expected in the response. Possible values are: event, message, driveItem, externalItem, site, list, listItem, drive, chatMessage, person, acronym, bookmark. Use the Prefer: include-unknown-enum-members request header to get the following
|
|
67356
|
+
* One or more types of resources expected in the response. Possible values are: event, message, driveItem, externalItem, site, list, listItem, drive, chatMessage, person, acronym, bookmark. Use the Prefer: include-unknown-enum-members request header to get the following members in this evolvable enum: chatMessage, person, acronym, bookmark. See known limitations for those combinations of two or more entity types that are supported in the same search request. Required.
|
|
66309
67357
|
*/
|
|
66310
67358
|
entityTypes?: EntityType[] | null;
|
|
66311
67359
|
/**
|
|
@@ -66389,6 +67437,14 @@ export interface SearchResult extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
66389
67437
|
*/
|
|
66390
67438
|
onClickTelemetryUrl?: string | null;
|
|
66391
67439
|
}
|
|
67440
|
+
export interface Section extends Parsable, Place {
|
|
67441
|
+
}
|
|
67442
|
+
export interface SectionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
67443
|
+
/**
|
|
67444
|
+
* The value property
|
|
67445
|
+
*/
|
|
67446
|
+
value?: Section[] | null;
|
|
67447
|
+
}
|
|
66392
67448
|
export type SectionEmphasisType = (typeof SectionEmphasisTypeObject)[keyof typeof SectionEmphasisTypeObject];
|
|
66393
67449
|
export interface SectionGroup extends OnenoteEntityHierarchyModel, Parsable {
|
|
66394
67450
|
/**
|
|
@@ -66440,6 +67496,18 @@ export interface SectionLinks extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
66440
67496
|
*/
|
|
66441
67497
|
oneNoteWebUrl?: ExternalLink | null;
|
|
66442
67498
|
}
|
|
67499
|
+
export interface SectionMap extends BaseMapFeature, Parsable {
|
|
67500
|
+
/**
|
|
67501
|
+
* The placeId property
|
|
67502
|
+
*/
|
|
67503
|
+
placeId?: string | null;
|
|
67504
|
+
}
|
|
67505
|
+
export interface SectionMapCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
67506
|
+
/**
|
|
67507
|
+
* The value property
|
|
67508
|
+
*/
|
|
67509
|
+
value?: SectionMap[] | null;
|
|
67510
|
+
}
|
|
66443
67511
|
export interface SecureScore extends Entity, Parsable {
|
|
66444
67512
|
/**
|
|
66445
67513
|
* Active user count of the given tenant.
|
|
@@ -68255,6 +69323,13 @@ export declare function serializeAppsInstallationOptionsForWindows(writer: Seria
|
|
|
68255
69323
|
* @param writer Serialization writer to use to serialize this model
|
|
68256
69324
|
*/
|
|
68257
69325
|
export declare function serializeArchivedPrintJob(writer: SerializationWriter, archivedPrintJob?: Partial<ArchivedPrintJob> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
69326
|
+
/**
|
|
69327
|
+
* Serializes information the current object
|
|
69328
|
+
* @param ArkoseFraudProtectionProvider The instance to serialize from.
|
|
69329
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
69330
|
+
* @param writer Serialization writer to use to serialize this model
|
|
69331
|
+
*/
|
|
69332
|
+
export declare function serializeArkoseFraudProtectionProvider(writer: SerializationWriter, arkoseFraudProtectionProvider?: Partial<ArkoseFraudProtectionProvider> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
68258
69333
|
/**
|
|
68259
69334
|
* Serializes information the current object
|
|
68260
69335
|
* @param ArtifactQuery The instance to serialize from.
|
|
@@ -68276,6 +69351,13 @@ export declare function serializeAssignedLabel(writer: SerializationWriter, assi
|
|
|
68276
69351
|
* @param writer Serialization writer to use to serialize this model
|
|
68277
69352
|
*/
|
|
68278
69353
|
export declare function serializeAssignedLicense(writer: SerializationWriter, assignedLicense?: Partial<AssignedLicense> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
69354
|
+
/**
|
|
69355
|
+
* Serializes information the current object
|
|
69356
|
+
* @param AssignedPlaceMode The instance to serialize from.
|
|
69357
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
69358
|
+
* @param writer Serialization writer to use to serialize this model
|
|
69359
|
+
*/
|
|
69360
|
+
export declare function serializeAssignedPlaceMode(writer: SerializationWriter, assignedPlaceMode?: Partial<AssignedPlaceMode> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
68279
69361
|
/**
|
|
68280
69362
|
* Serializes information the current object
|
|
68281
69363
|
* @param AssignedPlan The instance to serialize from.
|
|
@@ -69053,6 +70135,13 @@ export declare function serializeBaseItemCollectionResponse(writer: Serializatio
|
|
|
69053
70135
|
* @param writer Serialization writer to use to serialize this model
|
|
69054
70136
|
*/
|
|
69055
70137
|
export declare function serializeBaseItemVersion(writer: SerializationWriter, baseItemVersion?: Partial<BaseItemVersion> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
70138
|
+
/**
|
|
70139
|
+
* Serializes information the current object
|
|
70140
|
+
* @param BaseMapFeature The instance to serialize from.
|
|
70141
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
70142
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70143
|
+
*/
|
|
70144
|
+
export declare function serializeBaseMapFeature(writer: SerializationWriter, baseMapFeature?: Partial<BaseMapFeature> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
69056
70145
|
/**
|
|
69057
70146
|
* Serializes information the current object
|
|
69058
70147
|
* @param BaseSitePage The instance to serialize from.
|
|
@@ -69389,6 +70478,27 @@ export declare function serializeBucketAggregationDefinition(writer: Serializati
|
|
|
69389
70478
|
* @param writer Serialization writer to use to serialize this model
|
|
69390
70479
|
*/
|
|
69391
70480
|
export declare function serializeBucketAggregationRange(writer: SerializationWriter, bucketAggregationRange?: Partial<BucketAggregationRange> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
70481
|
+
/**
|
|
70482
|
+
* Serializes information the current object
|
|
70483
|
+
* @param Building The instance to serialize from.
|
|
70484
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
70485
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70486
|
+
*/
|
|
70487
|
+
export declare function serializeBuilding(writer: SerializationWriter, building?: Partial<Building> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
70488
|
+
/**
|
|
70489
|
+
* Serializes information the current object
|
|
70490
|
+
* @param BuildingCollectionResponse The instance to serialize from.
|
|
70491
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
70492
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70493
|
+
*/
|
|
70494
|
+
export declare function serializeBuildingCollectionResponse(writer: SerializationWriter, buildingCollectionResponse?: Partial<BuildingCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
70495
|
+
/**
|
|
70496
|
+
* Serializes information the current object
|
|
70497
|
+
* @param BuildingMap The instance to serialize from.
|
|
70498
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
70499
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70500
|
+
*/
|
|
70501
|
+
export declare function serializeBuildingMap(writer: SerializationWriter, buildingMap?: Partial<BuildingMap> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
69392
70502
|
/**
|
|
69393
70503
|
* Serializes information the current object
|
|
69394
70504
|
* @param BuiltInIdentityProvider The instance to serialize from.
|
|
@@ -69900,6 +71010,20 @@ export declare function serializeChatRestrictions(writer: SerializationWriter, c
|
|
|
69900
71010
|
* @param writer Serialization writer to use to serialize this model
|
|
69901
71011
|
*/
|
|
69902
71012
|
export declare function serializeChatViewpoint(writer: SerializationWriter, chatViewpoint?: Partial<ChatViewpoint> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
71013
|
+
/**
|
|
71014
|
+
* Serializes information the current object
|
|
71015
|
+
* @param CheckInClaim The instance to serialize from.
|
|
71016
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
71017
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71018
|
+
*/
|
|
71019
|
+
export declare function serializeCheckInClaim(writer: SerializationWriter, checkInClaim?: Partial<CheckInClaim> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
71020
|
+
/**
|
|
71021
|
+
* Serializes information the current object
|
|
71022
|
+
* @param CheckInClaimCollectionResponse The instance to serialize from.
|
|
71023
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
71024
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71025
|
+
*/
|
|
71026
|
+
export declare function serializeCheckInClaimCollectionResponse(writer: SerializationWriter, checkInClaimCollectionResponse?: Partial<CheckInClaimCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
69903
71027
|
/**
|
|
69904
71028
|
* Serializes information the current object
|
|
69905
71029
|
* @param ChecklistItem The instance to serialize from.
|
|
@@ -70845,6 +71969,13 @@ export declare function serializeCopilotAdminLimitedMode(writer: SerializationWr
|
|
|
70845
71969
|
* @param writer Serialization writer to use to serialize this model
|
|
70846
71970
|
*/
|
|
70847
71971
|
export declare function serializeCopilotAdminSetting(writer: SerializationWriter, copilotAdminSetting?: Partial<CopilotAdminSetting> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
71972
|
+
/**
|
|
71973
|
+
* Serializes information the current object
|
|
71974
|
+
* @param CopilotReportRoot The instance to serialize from.
|
|
71975
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
71976
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71977
|
+
*/
|
|
71978
|
+
export declare function serializeCopilotReportRoot(writer: SerializationWriter, copilotReportRoot?: Partial<CopilotReportRoot> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
70848
71979
|
/**
|
|
70849
71980
|
* Serializes information the current object
|
|
70850
71981
|
* @param CopyNotebookModel The instance to serialize from.
|
|
@@ -71377,6 +72508,20 @@ export declare function serializeDeleteUserFromSharedAppleDeviceActionResult(wri
|
|
|
71377
72508
|
* @param writer Serialization writer to use to serialize this model
|
|
71378
72509
|
*/
|
|
71379
72510
|
export declare function serializeDeltaParticipants(writer: SerializationWriter, deltaParticipants?: Partial<DeltaParticipants> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72511
|
+
/**
|
|
72512
|
+
* Serializes information the current object
|
|
72513
|
+
* @param Desk The instance to serialize from.
|
|
72514
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72515
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72516
|
+
*/
|
|
72517
|
+
export declare function serializeDesk(writer: SerializationWriter, desk?: Partial<Desk> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72518
|
+
/**
|
|
72519
|
+
* Serializes information the current object
|
|
72520
|
+
* @param DeskCollectionResponse The instance to serialize from.
|
|
72521
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72522
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72523
|
+
*/
|
|
72524
|
+
export declare function serializeDeskCollectionResponse(writer: SerializationWriter, deskCollectionResponse?: Partial<DeskCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
71380
72525
|
/**
|
|
71381
72526
|
* Serializes information the current object
|
|
71382
72527
|
* @param DetailsInfo The instance to serialize from.
|
|
@@ -72343,6 +73488,13 @@ export declare function serializeDriveRestoreArtifactsBulkAdditionRequest(writer
|
|
|
72343
73488
|
* @param writer Serialization writer to use to serialize this model
|
|
72344
73489
|
*/
|
|
72345
73490
|
export declare function serializeDriveRestoreArtifactsBulkAdditionRequestCollectionResponse(writer: SerializationWriter, driveRestoreArtifactsBulkAdditionRequestCollectionResponse?: Partial<DriveRestoreArtifactsBulkAdditionRequestCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
73491
|
+
/**
|
|
73492
|
+
* Serializes information the current object
|
|
73493
|
+
* @param DropInPlaceMode The instance to serialize from.
|
|
73494
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
73495
|
+
* @param writer Serialization writer to use to serialize this model
|
|
73496
|
+
*/
|
|
73497
|
+
export declare function serializeDropInPlaceMode(writer: SerializationWriter, dropInPlaceMode?: Partial<DropInPlaceMode> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72346
73498
|
/**
|
|
72347
73499
|
* Serializes information the current object
|
|
72348
73500
|
* @param EBookInstallSummary The instance to serialize from.
|
|
@@ -73127,6 +74279,34 @@ export declare function serializeEngagementConversationSystemMessage(writer: Ser
|
|
|
73127
74279
|
* @param writer Serialization writer to use to serialize this model
|
|
73128
74280
|
*/
|
|
73129
74281
|
export declare function serializeEngagementIdentitySet(writer: SerializationWriter, engagementIdentitySet?: Partial<EngagementIdentitySet> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74282
|
+
/**
|
|
74283
|
+
* Serializes information the current object
|
|
74284
|
+
* @param EngagementRole The instance to serialize from.
|
|
74285
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74286
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74287
|
+
*/
|
|
74288
|
+
export declare function serializeEngagementRole(writer: SerializationWriter, engagementRole?: Partial<EngagementRole> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74289
|
+
/**
|
|
74290
|
+
* Serializes information the current object
|
|
74291
|
+
* @param EngagementRoleCollectionResponse The instance to serialize from.
|
|
74292
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74293
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74294
|
+
*/
|
|
74295
|
+
export declare function serializeEngagementRoleCollectionResponse(writer: SerializationWriter, engagementRoleCollectionResponse?: Partial<EngagementRoleCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74296
|
+
/**
|
|
74297
|
+
* Serializes information the current object
|
|
74298
|
+
* @param EngagementRoleMember The instance to serialize from.
|
|
74299
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74300
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74301
|
+
*/
|
|
74302
|
+
export declare function serializeEngagementRoleMember(writer: SerializationWriter, engagementRoleMember?: Partial<EngagementRoleMember> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74303
|
+
/**
|
|
74304
|
+
* Serializes information the current object
|
|
74305
|
+
* @param EngagementRoleMemberCollectionResponse The instance to serialize from.
|
|
74306
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74307
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74308
|
+
*/
|
|
74309
|
+
export declare function serializeEngagementRoleMemberCollectionResponse(writer: SerializationWriter, engagementRoleMemberCollectionResponse?: Partial<EngagementRoleMemberCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
73130
74310
|
/**
|
|
73131
74311
|
* Serializes information the current object
|
|
73132
74312
|
* @param EnrollmentConfigurationAssignment The instance to serialize from.
|
|
@@ -73589,6 +74769,34 @@ export declare function serializeFilterOperatorSchema(writer: SerializationWrite
|
|
|
73589
74769
|
* @param writer Serialization writer to use to serialize this model
|
|
73590
74770
|
*/
|
|
73591
74771
|
export declare function serializeFilterOperatorSchemaCollectionResponse(writer: SerializationWriter, filterOperatorSchemaCollectionResponse?: Partial<FilterOperatorSchemaCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74772
|
+
/**
|
|
74773
|
+
* Serializes information the current object
|
|
74774
|
+
* @param FixtureMap The instance to serialize from.
|
|
74775
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74776
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74777
|
+
*/
|
|
74778
|
+
export declare function serializeFixtureMap(writer: SerializationWriter, fixtureMap?: Partial<FixtureMap> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74779
|
+
/**
|
|
74780
|
+
* Serializes information the current object
|
|
74781
|
+
* @param FixtureMapCollectionResponse The instance to serialize from.
|
|
74782
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74783
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74784
|
+
*/
|
|
74785
|
+
export declare function serializeFixtureMapCollectionResponse(writer: SerializationWriter, fixtureMapCollectionResponse?: Partial<FixtureMapCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74786
|
+
/**
|
|
74787
|
+
* Serializes information the current object
|
|
74788
|
+
* @param Floor The instance to serialize from.
|
|
74789
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74790
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74791
|
+
*/
|
|
74792
|
+
export declare function serializeFloor(writer: SerializationWriter, floor?: Partial<Floor> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74793
|
+
/**
|
|
74794
|
+
* Serializes information the current object
|
|
74795
|
+
* @param FloorCollectionResponse The instance to serialize from.
|
|
74796
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74797
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74798
|
+
*/
|
|
74799
|
+
export declare function serializeFloorCollectionResponse(writer: SerializationWriter, floorCollectionResponse?: Partial<FloorCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
73592
74800
|
/**
|
|
73593
74801
|
* Serializes information the current object
|
|
73594
74802
|
* @param Folder The instance to serialize from.
|
|
@@ -73610,6 +74818,48 @@ export declare function serializeFolderView(writer: SerializationWriter, folderV
|
|
|
73610
74818
|
* @param writer Serialization writer to use to serialize this model
|
|
73611
74819
|
*/
|
|
73612
74820
|
export declare function serializeFollowupFlag(writer: SerializationWriter, followupFlag?: Partial<FollowupFlag> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74821
|
+
/**
|
|
74822
|
+
* Serializes information the current object
|
|
74823
|
+
* @param FootprintMap The instance to serialize from.
|
|
74824
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74825
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74826
|
+
*/
|
|
74827
|
+
export declare function serializeFootprintMap(writer: SerializationWriter, footprintMap?: Partial<FootprintMap> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74828
|
+
/**
|
|
74829
|
+
* Serializes information the current object
|
|
74830
|
+
* @param FootprintMapCollectionResponse The instance to serialize from.
|
|
74831
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74832
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74833
|
+
*/
|
|
74834
|
+
export declare function serializeFootprintMapCollectionResponse(writer: SerializationWriter, footprintMapCollectionResponse?: Partial<FootprintMapCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74835
|
+
/**
|
|
74836
|
+
* Serializes information the current object
|
|
74837
|
+
* @param FraudProtectionConfiguration The instance to serialize from.
|
|
74838
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74839
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74840
|
+
*/
|
|
74841
|
+
export declare function serializeFraudProtectionConfiguration(writer: SerializationWriter, fraudProtectionConfiguration?: Partial<FraudProtectionConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74842
|
+
/**
|
|
74843
|
+
* Serializes information the current object
|
|
74844
|
+
* @param FraudProtectionProvider The instance to serialize from.
|
|
74845
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74846
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74847
|
+
*/
|
|
74848
|
+
export declare function serializeFraudProtectionProvider(writer: SerializationWriter, fraudProtectionProvider?: Partial<FraudProtectionProvider> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74849
|
+
/**
|
|
74850
|
+
* Serializes information the current object
|
|
74851
|
+
* @param FraudProtectionProviderCollectionResponse The instance to serialize from.
|
|
74852
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74853
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74854
|
+
*/
|
|
74855
|
+
export declare function serializeFraudProtectionProviderCollectionResponse(writer: SerializationWriter, fraudProtectionProviderCollectionResponse?: Partial<FraudProtectionProviderCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74856
|
+
/**
|
|
74857
|
+
* Serializes information the current object
|
|
74858
|
+
* @param FraudProtectionProviderConfiguration The instance to serialize from.
|
|
74859
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74860
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74861
|
+
*/
|
|
74862
|
+
export declare function serializeFraudProtectionProviderConfiguration(writer: SerializationWriter, fraudProtectionProviderConfiguration?: Partial<FraudProtectionProviderConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
73613
74863
|
/**
|
|
73614
74864
|
* Serializes information the current object
|
|
73615
74865
|
* @param FreeBusyError The instance to serialize from.
|
|
@@ -73820,6 +75070,13 @@ export declare function serializeHostSecurityState(writer: SerializationWriter,
|
|
|
73820
75070
|
* @param writer Serialization writer to use to serialize this model
|
|
73821
75071
|
*/
|
|
73822
75072
|
export declare function serializeHttpRequestEndpoint(writer: SerializationWriter, httpRequestEndpoint?: Partial<HttpRequestEndpoint> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
75073
|
+
/**
|
|
75074
|
+
* Serializes information the current object
|
|
75075
|
+
* @param HumanSecurityFraudProtectionProvider The instance to serialize from.
|
|
75076
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
75077
|
+
* @param writer Serialization writer to use to serialize this model
|
|
75078
|
+
*/
|
|
75079
|
+
export declare function serializeHumanSecurityFraudProtectionProvider(writer: SerializationWriter, humanSecurityFraudProtectionProvider?: Partial<HumanSecurityFraudProtectionProvider> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
73823
75080
|
/**
|
|
73824
75081
|
* Serializes information the current object
|
|
73825
75082
|
* @param HyperlinkOrPictureColumn The instance to serialize from.
|
|
@@ -74737,6 +75994,20 @@ export declare function serializeLearningProviderCollectionResponse(writer: Seri
|
|
|
74737
75994
|
* @param writer Serialization writer to use to serialize this model
|
|
74738
75995
|
*/
|
|
74739
75996
|
export declare function serializeLearningSelfInitiatedCourse(writer: SerializationWriter, learningSelfInitiatedCourse?: Partial<LearningSelfInitiatedCourse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
75997
|
+
/**
|
|
75998
|
+
* Serializes information the current object
|
|
75999
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
76000
|
+
* @param LevelMap The instance to serialize from.
|
|
76001
|
+
* @param writer Serialization writer to use to serialize this model
|
|
76002
|
+
*/
|
|
76003
|
+
export declare function serializeLevelMap(writer: SerializationWriter, levelMap?: Partial<LevelMap> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
76004
|
+
/**
|
|
76005
|
+
* Serializes information the current object
|
|
76006
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
76007
|
+
* @param LevelMapCollectionResponse The instance to serialize from.
|
|
76008
|
+
* @param writer Serialization writer to use to serialize this model
|
|
76009
|
+
*/
|
|
76010
|
+
export declare function serializeLevelMapCollectionResponse(writer: SerializationWriter, levelMapCollectionResponse?: Partial<LevelMapCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74740
76011
|
/**
|
|
74741
76012
|
* Serializes information the current object
|
|
74742
76013
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -75073,6 +76344,13 @@ export declare function serializeMacOSOfficeSuiteApp(writer: SerializationWriter
|
|
|
75073
76344
|
* @param writer Serialization writer to use to serialize this model
|
|
75074
76345
|
*/
|
|
75075
76346
|
export declare function serializeMailAssessmentRequest(writer: SerializationWriter, mailAssessmentRequest?: Partial<MailAssessmentRequest> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
76347
|
+
/**
|
|
76348
|
+
* Serializes information the current object
|
|
76349
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
76350
|
+
* @param MailboxDetails The instance to serialize from.
|
|
76351
|
+
* @param writer Serialization writer to use to serialize this model
|
|
76352
|
+
*/
|
|
76353
|
+
export declare function serializeMailboxDetails(writer: SerializationWriter, mailboxDetails?: Partial<MailboxDetails> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
75076
76354
|
/**
|
|
75077
76355
|
* Serializes information the current object
|
|
75078
76356
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -76571,6 +77849,27 @@ export declare function serializeOnenoteSection(writer: SerializationWriter, one
|
|
|
76571
77849
|
* @param writer Serialization writer to use to serialize this model
|
|
76572
77850
|
*/
|
|
76573
77851
|
export declare function serializeOnenoteSectionCollectionResponse(writer: SerializationWriter, onenoteSectionCollectionResponse?: Partial<OnenoteSectionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
77852
|
+
/**
|
|
77853
|
+
* Serializes information the current object
|
|
77854
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
77855
|
+
* @param OnFraudProtectionLoadStartExternalUsersAuthHandler The instance to serialize from.
|
|
77856
|
+
* @param writer Serialization writer to use to serialize this model
|
|
77857
|
+
*/
|
|
77858
|
+
export declare function serializeOnFraudProtectionLoadStartExternalUsersAuthHandler(writer: SerializationWriter, onFraudProtectionLoadStartExternalUsersAuthHandler?: Partial<OnFraudProtectionLoadStartExternalUsersAuthHandler> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
77859
|
+
/**
|
|
77860
|
+
* Serializes information the current object
|
|
77861
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
77862
|
+
* @param OnFraudProtectionLoadStartHandler The instance to serialize from.
|
|
77863
|
+
* @param writer Serialization writer to use to serialize this model
|
|
77864
|
+
*/
|
|
77865
|
+
export declare function serializeOnFraudProtectionLoadStartHandler(writer: SerializationWriter, onFraudProtectionLoadStartHandler?: Partial<OnFraudProtectionLoadStartHandler> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
77866
|
+
/**
|
|
77867
|
+
* Serializes information the current object
|
|
77868
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
77869
|
+
* @param OnFraudProtectionLoadStartListener The instance to serialize from.
|
|
77870
|
+
* @param writer Serialization writer to use to serialize this model
|
|
77871
|
+
*/
|
|
77872
|
+
export declare function serializeOnFraudProtectionLoadStartListener(writer: SerializationWriter, onFraudProtectionLoadStartListener?: Partial<OnFraudProtectionLoadStartListener> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
76574
77873
|
/**
|
|
76575
77874
|
* Serializes information the current object
|
|
76576
77875
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -77320,6 +78619,13 @@ export declare function serializePkcs12CertificateInformation(writer: Serializat
|
|
|
77320
78619
|
* @param writer Serialization writer to use to serialize this model
|
|
77321
78620
|
*/
|
|
77322
78621
|
export declare function serializePlace(writer: SerializationWriter, place?: Partial<Place> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
78622
|
+
/**
|
|
78623
|
+
* Serializes information the current object
|
|
78624
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
78625
|
+
* @param PlaceMode The instance to serialize from.
|
|
78626
|
+
* @param writer Serialization writer to use to serialize this model
|
|
78627
|
+
*/
|
|
78628
|
+
export declare function serializePlaceMode(writer: SerializationWriter, placeMode?: Partial<PlaceMode> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
77323
78629
|
/**
|
|
77324
78630
|
* Serializes information the current object
|
|
77325
78631
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -78685,6 +79991,13 @@ export declare function serializeRequiredResourceAccess(writer: SerializationWri
|
|
|
78685
79991
|
* @param writer Serialization writer to use to serialize this model
|
|
78686
79992
|
*/
|
|
78687
79993
|
export declare function serializeResellerDelegatedAdminRelationship(writer: SerializationWriter, resellerDelegatedAdminRelationship?: Partial<ResellerDelegatedAdminRelationship> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
79994
|
+
/**
|
|
79995
|
+
* Serializes information the current object
|
|
79996
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
79997
|
+
* @param ReservablePlaceMode The instance to serialize from.
|
|
79998
|
+
* @param writer Serialization writer to use to serialize this model
|
|
79999
|
+
*/
|
|
80000
|
+
export declare function serializeReservablePlaceMode(writer: SerializationWriter, reservablePlaceMode?: Partial<ReservablePlaceMode> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
78688
80001
|
/**
|
|
78689
80002
|
* Serializes information the current object
|
|
78690
80003
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -78706,6 +80019,13 @@ export declare function serializeResourceAccess(writer: SerializationWriter, res
|
|
|
78706
80019
|
* @param writer Serialization writer to use to serialize this model
|
|
78707
80020
|
*/
|
|
78708
80021
|
export declare function serializeResourceAction(writer: SerializationWriter, resourceAction?: Partial<ResourceAction> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
80022
|
+
/**
|
|
80023
|
+
* Serializes information the current object
|
|
80024
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
80025
|
+
* @param ResourceLink The instance to serialize from.
|
|
80026
|
+
* @param writer Serialization writer to use to serialize this model
|
|
80027
|
+
*/
|
|
80028
|
+
export declare function serializeResourceLink(writer: SerializationWriter, resourceLink?: Partial<ResourceLink> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
78709
80029
|
/**
|
|
78710
80030
|
* Serializes information the current object
|
|
78711
80031
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -79294,6 +80614,20 @@ export declare function serializeSearchResponse(writer: SerializationWriter, sea
|
|
|
79294
80614
|
* @param writer Serialization writer to use to serialize this model
|
|
79295
80615
|
*/
|
|
79296
80616
|
export declare function serializeSearchResult(writer: SerializationWriter, searchResult?: Partial<SearchResult> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
80617
|
+
/**
|
|
80618
|
+
* Serializes information the current object
|
|
80619
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
80620
|
+
* @param Section The instance to serialize from.
|
|
80621
|
+
* @param writer Serialization writer to use to serialize this model
|
|
80622
|
+
*/
|
|
80623
|
+
export declare function serializeSection(writer: SerializationWriter, section?: Partial<Section> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
80624
|
+
/**
|
|
80625
|
+
* Serializes information the current object
|
|
80626
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
80627
|
+
* @param SectionCollectionResponse The instance to serialize from.
|
|
80628
|
+
* @param writer Serialization writer to use to serialize this model
|
|
80629
|
+
*/
|
|
80630
|
+
export declare function serializeSectionCollectionResponse(writer: SerializationWriter, sectionCollectionResponse?: Partial<SectionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
79297
80631
|
/**
|
|
79298
80632
|
* Serializes information the current object
|
|
79299
80633
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -79315,6 +80649,20 @@ export declare function serializeSectionGroupCollectionResponse(writer: Serializ
|
|
|
79315
80649
|
* @param writer Serialization writer to use to serialize this model
|
|
79316
80650
|
*/
|
|
79317
80651
|
export declare function serializeSectionLinks(writer: SerializationWriter, sectionLinks?: Partial<SectionLinks> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
80652
|
+
/**
|
|
80653
|
+
* Serializes information the current object
|
|
80654
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
80655
|
+
* @param SectionMap The instance to serialize from.
|
|
80656
|
+
* @param writer Serialization writer to use to serialize this model
|
|
80657
|
+
*/
|
|
80658
|
+
export declare function serializeSectionMap(writer: SerializationWriter, sectionMap?: Partial<SectionMap> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
80659
|
+
/**
|
|
80660
|
+
* Serializes information the current object
|
|
80661
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
80662
|
+
* @param SectionMapCollectionResponse The instance to serialize from.
|
|
80663
|
+
* @param writer Serialization writer to use to serialize this model
|
|
80664
|
+
*/
|
|
80665
|
+
export declare function serializeSectionMapCollectionResponse(writer: SerializationWriter, sectionMapCollectionResponse?: Partial<SectionMapCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
79318
80666
|
/**
|
|
79319
80667
|
* Serializes information the current object
|
|
79320
80668
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -79763,6 +81111,97 @@ export declare function serializeSharePointIdentitySet(writer: SerializationWrit
|
|
|
79763
81111
|
* @param writer Serialization writer to use to serialize this model
|
|
79764
81112
|
*/
|
|
79765
81113
|
export declare function serializeSharepointIds(writer: SerializationWriter, sharepointIds?: Partial<SharepointIds> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
81114
|
+
/**
|
|
81115
|
+
* Serializes information the current object
|
|
81116
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
81117
|
+
* @param SharePointMigrationContainerInfo The instance to serialize from.
|
|
81118
|
+
* @param writer Serialization writer to use to serialize this model
|
|
81119
|
+
*/
|
|
81120
|
+
export declare function serializeSharePointMigrationContainerInfo(writer: SerializationWriter, sharePointMigrationContainerInfo?: Partial<SharePointMigrationContainerInfo> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
81121
|
+
/**
|
|
81122
|
+
* Serializes information the current object
|
|
81123
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
81124
|
+
* @param SharePointMigrationEvent The instance to serialize from.
|
|
81125
|
+
* @param writer Serialization writer to use to serialize this model
|
|
81126
|
+
*/
|
|
81127
|
+
export declare function serializeSharePointMigrationEvent(writer: SerializationWriter, sharePointMigrationEvent?: Partial<SharePointMigrationEvent> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
81128
|
+
/**
|
|
81129
|
+
* Serializes information the current object
|
|
81130
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
81131
|
+
* @param SharePointMigrationEventCollectionResponse The instance to serialize from.
|
|
81132
|
+
* @param writer Serialization writer to use to serialize this model
|
|
81133
|
+
*/
|
|
81134
|
+
export declare function serializeSharePointMigrationEventCollectionResponse(writer: SerializationWriter, sharePointMigrationEventCollectionResponse?: Partial<SharePointMigrationEventCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
81135
|
+
/**
|
|
81136
|
+
* Serializes information the current object
|
|
81137
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
81138
|
+
* @param SharePointMigrationFinishManifestFileUploadEvent The instance to serialize from.
|
|
81139
|
+
* @param writer Serialization writer to use to serialize this model
|
|
81140
|
+
*/
|
|
81141
|
+
export declare function serializeSharePointMigrationFinishManifestFileUploadEvent(writer: SerializationWriter, sharePointMigrationFinishManifestFileUploadEvent?: Partial<SharePointMigrationFinishManifestFileUploadEvent> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
81142
|
+
/**
|
|
81143
|
+
* Serializes information the current object
|
|
81144
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
81145
|
+
* @param SharePointMigrationJob The instance to serialize from.
|
|
81146
|
+
* @param writer Serialization writer to use to serialize this model
|
|
81147
|
+
*/
|
|
81148
|
+
export declare function serializeSharePointMigrationJob(writer: SerializationWriter, sharePointMigrationJob?: Partial<SharePointMigrationJob> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
81149
|
+
/**
|
|
81150
|
+
* Serializes information the current object
|
|
81151
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
81152
|
+
* @param SharePointMigrationJobCancelledEvent The instance to serialize from.
|
|
81153
|
+
* @param writer Serialization writer to use to serialize this model
|
|
81154
|
+
*/
|
|
81155
|
+
export declare function serializeSharePointMigrationJobCancelledEvent(writer: SerializationWriter, sharePointMigrationJobCancelledEvent?: Partial<SharePointMigrationJobCancelledEvent> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
81156
|
+
/**
|
|
81157
|
+
* Serializes information the current object
|
|
81158
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
81159
|
+
* @param SharePointMigrationJobCollectionResponse The instance to serialize from.
|
|
81160
|
+
* @param writer Serialization writer to use to serialize this model
|
|
81161
|
+
*/
|
|
81162
|
+
export declare function serializeSharePointMigrationJobCollectionResponse(writer: SerializationWriter, sharePointMigrationJobCollectionResponse?: Partial<SharePointMigrationJobCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
81163
|
+
/**
|
|
81164
|
+
* Serializes information the current object
|
|
81165
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
81166
|
+
* @param SharePointMigrationJobDeletedEvent The instance to serialize from.
|
|
81167
|
+
* @param writer Serialization writer to use to serialize this model
|
|
81168
|
+
*/
|
|
81169
|
+
export declare function serializeSharePointMigrationJobDeletedEvent(writer: SerializationWriter, sharePointMigrationJobDeletedEvent?: Partial<SharePointMigrationJobDeletedEvent> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
81170
|
+
/**
|
|
81171
|
+
* Serializes information the current object
|
|
81172
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
81173
|
+
* @param SharePointMigrationJobErrorEvent The instance to serialize from.
|
|
81174
|
+
* @param writer Serialization writer to use to serialize this model
|
|
81175
|
+
*/
|
|
81176
|
+
export declare function serializeSharePointMigrationJobErrorEvent(writer: SerializationWriter, sharePointMigrationJobErrorEvent?: Partial<SharePointMigrationJobErrorEvent> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
81177
|
+
/**
|
|
81178
|
+
* Serializes information the current object
|
|
81179
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
81180
|
+
* @param SharePointMigrationJobPostponedEvent The instance to serialize from.
|
|
81181
|
+
* @param writer Serialization writer to use to serialize this model
|
|
81182
|
+
*/
|
|
81183
|
+
export declare function serializeSharePointMigrationJobPostponedEvent(writer: SerializationWriter, sharePointMigrationJobPostponedEvent?: Partial<SharePointMigrationJobPostponedEvent> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
81184
|
+
/**
|
|
81185
|
+
* Serializes information the current object
|
|
81186
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
81187
|
+
* @param SharePointMigrationJobProgressEvent The instance to serialize from.
|
|
81188
|
+
* @param writer Serialization writer to use to serialize this model
|
|
81189
|
+
*/
|
|
81190
|
+
export declare function serializeSharePointMigrationJobProgressEvent(writer: SerializationWriter, sharePointMigrationJobProgressEvent?: Partial<SharePointMigrationJobProgressEvent> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
81191
|
+
/**
|
|
81192
|
+
* Serializes information the current object
|
|
81193
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
81194
|
+
* @param SharePointMigrationJobQueuedEvent The instance to serialize from.
|
|
81195
|
+
* @param writer Serialization writer to use to serialize this model
|
|
81196
|
+
*/
|
|
81197
|
+
export declare function serializeSharePointMigrationJobQueuedEvent(writer: SerializationWriter, sharePointMigrationJobQueuedEvent?: Partial<SharePointMigrationJobQueuedEvent> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
81198
|
+
/**
|
|
81199
|
+
* Serializes information the current object
|
|
81200
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
81201
|
+
* @param SharePointMigrationJobStartEvent The instance to serialize from.
|
|
81202
|
+
* @param writer Serialization writer to use to serialize this model
|
|
81203
|
+
*/
|
|
81204
|
+
export declare function serializeSharePointMigrationJobStartEvent(writer: SerializationWriter, sharePointMigrationJobStartEvent?: Partial<SharePointMigrationJobStartEvent> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
79766
81205
|
/**
|
|
79767
81206
|
* Serializes information the current object
|
|
79768
81207
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -81891,6 +83330,20 @@ export declare function serializeUnifiedRoleScheduleInstanceBase(writer: Seriali
|
|
|
81891
83330
|
* @param writer Serialization writer to use to serialize this model
|
|
81892
83331
|
*/
|
|
81893
83332
|
export declare function serializeUnifiedStorageQuota(writer: SerializationWriter, unifiedStorageQuota?: Partial<UnifiedStorageQuota> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
83333
|
+
/**
|
|
83334
|
+
* Serializes information the current object
|
|
83335
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
83336
|
+
* @param UnitMap The instance to serialize from.
|
|
83337
|
+
* @param writer Serialization writer to use to serialize this model
|
|
83338
|
+
*/
|
|
83339
|
+
export declare function serializeUnitMap(writer: SerializationWriter, unitMap?: Partial<UnitMap> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
83340
|
+
/**
|
|
83341
|
+
* Serializes information the current object
|
|
83342
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
83343
|
+
* @param UnitMapCollectionResponse The instance to serialize from.
|
|
83344
|
+
* @param writer Serialization writer to use to serialize this model
|
|
83345
|
+
*/
|
|
83346
|
+
export declare function serializeUnitMapCollectionResponse(writer: SerializationWriter, unitMapCollectionResponse?: Partial<UnitMapCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
81894
83347
|
/**
|
|
81895
83348
|
* Serializes information the current object
|
|
81896
83349
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -84103,6 +85556,20 @@ export declare function serializeWorkingHours(writer: SerializationWriter, worki
|
|
|
84103
85556
|
* @param writer Serialization writer to use to serialize this model
|
|
84104
85557
|
*/
|
|
84105
85558
|
export declare function serializeWorkingTimeSchedule(writer: SerializationWriter, workingTimeSchedule?: Partial<WorkingTimeSchedule> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
85559
|
+
/**
|
|
85560
|
+
* Serializes information the current object
|
|
85561
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
85562
|
+
* @param Workspace The instance to serialize from.
|
|
85563
|
+
* @param writer Serialization writer to use to serialize this model
|
|
85564
|
+
*/
|
|
85565
|
+
export declare function serializeWorkspace(writer: SerializationWriter, workspace?: Partial<Workspace> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
85566
|
+
/**
|
|
85567
|
+
* Serializes information the current object
|
|
85568
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
85569
|
+
* @param WorkspaceCollectionResponse The instance to serialize from.
|
|
85570
|
+
* @param writer Serialization writer to use to serialize this model
|
|
85571
|
+
*/
|
|
85572
|
+
export declare function serializeWorkspaceCollectionResponse(writer: SerializationWriter, workspaceCollectionResponse?: Partial<WorkspaceCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
84106
85573
|
/**
|
|
84107
85574
|
* Serializes information the current object
|
|
84108
85575
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -84643,7 +86110,7 @@ export interface ServicePrincipalLockConfiguration extends AdditionalDataHolder,
|
|
|
84643
86110
|
}
|
|
84644
86111
|
export interface ServicePrincipalRiskDetection extends Entity, Parsable {
|
|
84645
86112
|
/**
|
|
84646
|
-
* Indicates the activity type the detected risk is linked to. The possible values are: signin, servicePrincipal. Use the Prefer: include-unknown-enum-members request header to get the following
|
|
86113
|
+
* Indicates the activity type the detected risk is linked to. The possible values are: signin, servicePrincipal. Use the Prefer: include-unknown-enum-members request header to get the following members in this evolvable enum: servicePrincipal.
|
|
84647
86114
|
*/
|
|
84648
86115
|
activity?: ActivityType | null;
|
|
84649
86116
|
/**
|
|
@@ -84691,7 +86158,7 @@ export interface ServicePrincipalRiskDetection extends Entity, Parsable {
|
|
|
84691
86158
|
*/
|
|
84692
86159
|
requestId?: string | null;
|
|
84693
86160
|
/**
|
|
84694
|
-
* Details of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden.
|
|
86161
|
+
* Details of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden.
|
|
84695
86162
|
*/
|
|
84696
86163
|
riskDetail?: RiskDetail | null;
|
|
84697
86164
|
/**
|
|
@@ -85267,6 +86734,210 @@ export interface SharepointIds extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
85267
86734
|
*/
|
|
85268
86735
|
webId?: string | null;
|
|
85269
86736
|
}
|
|
86737
|
+
export interface SharePointMigrationContainerInfo extends AdditionalDataHolder, BackedModel, Parsable {
|
|
86738
|
+
/**
|
|
86739
|
+
* Stores model information.
|
|
86740
|
+
*/
|
|
86741
|
+
backingStoreEnabled?: boolean | null;
|
|
86742
|
+
/**
|
|
86743
|
+
* A valid URL with a SAS token for accessing the Azure blob storage container that contains the file content. Read-only.
|
|
86744
|
+
*/
|
|
86745
|
+
dataContainerUri?: string | null;
|
|
86746
|
+
/**
|
|
86747
|
+
* Provides the AES-256-CBC encryption key if files stored in Azure blob containers are encrypted. The key is Base64-encoded. Read-only.
|
|
86748
|
+
*/
|
|
86749
|
+
encryptionKey?: string | null;
|
|
86750
|
+
/**
|
|
86751
|
+
* A valid URL with a SAS token for accessing the Azure blob storage container that contains the file metadata. Read-only.
|
|
86752
|
+
*/
|
|
86753
|
+
metadataContainerUri?: string | null;
|
|
86754
|
+
/**
|
|
86755
|
+
* The OdataType property
|
|
86756
|
+
*/
|
|
86757
|
+
odataType?: string | null;
|
|
86758
|
+
}
|
|
86759
|
+
export interface SharePointMigrationEvent extends Entity, Parsable {
|
|
86760
|
+
/**
|
|
86761
|
+
* The correlation ID of a migration job. Read-only.
|
|
86762
|
+
*/
|
|
86763
|
+
correlationId?: string | null;
|
|
86764
|
+
/**
|
|
86765
|
+
* The date and time when the job status changes. 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. Read-only.
|
|
86766
|
+
*/
|
|
86767
|
+
eventDateTime?: Date | null;
|
|
86768
|
+
/**
|
|
86769
|
+
* The unique identifier of a migration job. Read-only.
|
|
86770
|
+
*/
|
|
86771
|
+
jobId?: string | null;
|
|
86772
|
+
}
|
|
86773
|
+
export interface SharePointMigrationEventCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
86774
|
+
/**
|
|
86775
|
+
* The value property
|
|
86776
|
+
*/
|
|
86777
|
+
value?: SharePointMigrationEvent[] | null;
|
|
86778
|
+
}
|
|
86779
|
+
export interface SharePointMigrationFinishManifestFileUploadEvent extends Parsable, SharePointMigrationEvent {
|
|
86780
|
+
/**
|
|
86781
|
+
* The exported manifest file name. Read-only.
|
|
86782
|
+
*/
|
|
86783
|
+
manifestFileName?: string | null;
|
|
86784
|
+
}
|
|
86785
|
+
export interface SharePointMigrationJob extends Entity, Parsable {
|
|
86786
|
+
/**
|
|
86787
|
+
* The containerInfo property
|
|
86788
|
+
*/
|
|
86789
|
+
containerInfo?: SharePointMigrationContainerInfo | null;
|
|
86790
|
+
/**
|
|
86791
|
+
* A collection of migration events that reflects the job status changes.
|
|
86792
|
+
*/
|
|
86793
|
+
progressEvents?: SharePointMigrationEvent[] | null;
|
|
86794
|
+
}
|
|
86795
|
+
export interface SharePointMigrationJobCancelledEvent extends Parsable, SharePointMigrationEvent {
|
|
86796
|
+
/**
|
|
86797
|
+
* True when a user cancels the job; otherwise, false. Read-only.
|
|
86798
|
+
*/
|
|
86799
|
+
isCancelledByUser?: boolean | null;
|
|
86800
|
+
/**
|
|
86801
|
+
* The current retry count of the job. Read-only.
|
|
86802
|
+
*/
|
|
86803
|
+
totalRetryCount?: number | null;
|
|
86804
|
+
}
|
|
86805
|
+
export interface SharePointMigrationJobCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
86806
|
+
/**
|
|
86807
|
+
* The value property
|
|
86808
|
+
*/
|
|
86809
|
+
value?: SharePointMigrationJob[] | null;
|
|
86810
|
+
}
|
|
86811
|
+
export interface SharePointMigrationJobDeletedEvent extends Parsable, SharePointMigrationEvent {
|
|
86812
|
+
}
|
|
86813
|
+
export interface SharePointMigrationJobErrorEvent extends Parsable, SharePointMigrationEvent {
|
|
86814
|
+
/**
|
|
86815
|
+
* The error property
|
|
86816
|
+
*/
|
|
86817
|
+
errorEscaped?: PublicError | null;
|
|
86818
|
+
/**
|
|
86819
|
+
* The errorLevel property
|
|
86820
|
+
*/
|
|
86821
|
+
errorLevel?: SharePointMigrationJobErrorLevel | null;
|
|
86822
|
+
/**
|
|
86823
|
+
* The object ID. Read-only.
|
|
86824
|
+
*/
|
|
86825
|
+
objectId?: string | null;
|
|
86826
|
+
/**
|
|
86827
|
+
* The objectType property
|
|
86828
|
+
*/
|
|
86829
|
+
objectType?: SharePointMigrationObjectType | null;
|
|
86830
|
+
/**
|
|
86831
|
+
* The object URL. Read-only.
|
|
86832
|
+
*/
|
|
86833
|
+
objectUrl?: string | null;
|
|
86834
|
+
/**
|
|
86835
|
+
* The current retry count of the job. Read-only.
|
|
86836
|
+
*/
|
|
86837
|
+
totalRetryCount?: number | null;
|
|
86838
|
+
}
|
|
86839
|
+
export type SharePointMigrationJobErrorLevel = (typeof SharePointMigrationJobErrorLevelObject)[keyof typeof SharePointMigrationJobErrorLevelObject];
|
|
86840
|
+
export interface SharePointMigrationJobPostponedEvent extends Parsable, SharePointMigrationEvent {
|
|
86841
|
+
/**
|
|
86842
|
+
* The number of migration jobs in the queue of the current database. Read-only.
|
|
86843
|
+
*/
|
|
86844
|
+
jobsInQueue?: number | null;
|
|
86845
|
+
/**
|
|
86846
|
+
* The date and time that indicate when this job is picked up next. 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. Read-only.
|
|
86847
|
+
*/
|
|
86848
|
+
nextPickupDateTime?: Date | null;
|
|
86849
|
+
/**
|
|
86850
|
+
* The reason for the postponement. Read-only.
|
|
86851
|
+
*/
|
|
86852
|
+
reason?: string | null;
|
|
86853
|
+
/**
|
|
86854
|
+
* The current retry count of the job. Read-only.
|
|
86855
|
+
*/
|
|
86856
|
+
totalRetryCount?: number | null;
|
|
86857
|
+
}
|
|
86858
|
+
export interface SharePointMigrationJobProgressEvent extends Parsable, SharePointMigrationEvent {
|
|
86859
|
+
/**
|
|
86860
|
+
* The number of bytes processed. Read-only.
|
|
86861
|
+
*/
|
|
86862
|
+
bytesProcessed?: number | null;
|
|
86863
|
+
/**
|
|
86864
|
+
* The number of bytes processed with version history excluded. Read-only.
|
|
86865
|
+
*/
|
|
86866
|
+
bytesProcessedOnlyCurrentVersion?: number | null;
|
|
86867
|
+
/**
|
|
86868
|
+
* CPU duration in milliseconds. Read-only.
|
|
86869
|
+
*/
|
|
86870
|
+
cpuDurationMs?: number | null;
|
|
86871
|
+
/**
|
|
86872
|
+
* The number of files processed. Read-only.
|
|
86873
|
+
*/
|
|
86874
|
+
filesProcessed?: number | null;
|
|
86875
|
+
/**
|
|
86876
|
+
* The number of files processed with version history excluded. Read-only.
|
|
86877
|
+
*/
|
|
86878
|
+
filesProcessedOnlyCurrentVersion?: number | null;
|
|
86879
|
+
/**
|
|
86880
|
+
* True if the job status is End. False if the job is In progress. Read-only.
|
|
86881
|
+
*/
|
|
86882
|
+
isCompleted?: boolean | null;
|
|
86883
|
+
/**
|
|
86884
|
+
* The unique identifier of the last object processed. Read-only.
|
|
86885
|
+
*/
|
|
86886
|
+
lastProcessedObjectId?: string | null;
|
|
86887
|
+
/**
|
|
86888
|
+
* The number of objects processed. Read-only.
|
|
86889
|
+
*/
|
|
86890
|
+
objectsProcessed?: number | null;
|
|
86891
|
+
/**
|
|
86892
|
+
* SQL duration in milliseconds. Read-only.
|
|
86893
|
+
*/
|
|
86894
|
+
sqlDurationMs?: number | null;
|
|
86895
|
+
/**
|
|
86896
|
+
* SQL query count. Read-only.
|
|
86897
|
+
*/
|
|
86898
|
+
sqlQueryCount?: number | null;
|
|
86899
|
+
/**
|
|
86900
|
+
* Total duration time in milliseconds. Read-only.
|
|
86901
|
+
*/
|
|
86902
|
+
totalDurationMs?: number | null;
|
|
86903
|
+
/**
|
|
86904
|
+
* Total errors. Read-only.
|
|
86905
|
+
*/
|
|
86906
|
+
totalErrors?: number | null;
|
|
86907
|
+
/**
|
|
86908
|
+
* Total bytes to be processed. Read-only.
|
|
86909
|
+
*/
|
|
86910
|
+
totalExpectedBytes?: number | null;
|
|
86911
|
+
/**
|
|
86912
|
+
* The number of objects to process. Read-only.
|
|
86913
|
+
*/
|
|
86914
|
+
totalExpectedObjects?: number | null;
|
|
86915
|
+
/**
|
|
86916
|
+
* The current retry count of the job. Read-only.
|
|
86917
|
+
*/
|
|
86918
|
+
totalRetryCount?: number | null;
|
|
86919
|
+
/**
|
|
86920
|
+
* Total warnings. Read-only.
|
|
86921
|
+
*/
|
|
86922
|
+
totalWarnings?: number | null;
|
|
86923
|
+
/**
|
|
86924
|
+
* Waiting time due to SQL throttling, in milliseconds. Read-only.
|
|
86925
|
+
*/
|
|
86926
|
+
waitTimeOnSqlThrottlingMs?: number | null;
|
|
86927
|
+
}
|
|
86928
|
+
export interface SharePointMigrationJobQueuedEvent extends Parsable, SharePointMigrationEvent {
|
|
86929
|
+
}
|
|
86930
|
+
export interface SharePointMigrationJobStartEvent extends Parsable, SharePointMigrationEvent {
|
|
86931
|
+
/**
|
|
86932
|
+
* True if the job is restarted. False if it's the initial start. Read-only.
|
|
86933
|
+
*/
|
|
86934
|
+
isRestarted?: boolean | null;
|
|
86935
|
+
/**
|
|
86936
|
+
* The current retry count of the job. Read-only.
|
|
86937
|
+
*/
|
|
86938
|
+
totalRetryCount?: number | null;
|
|
86939
|
+
}
|
|
86940
|
+
export type SharePointMigrationObjectType = (typeof SharePointMigrationObjectTypeObject)[keyof typeof SharePointMigrationObjectTypeObject];
|
|
85270
86941
|
export interface SharePointOneDriveOptions extends AdditionalDataHolder, BackedModel, Parsable {
|
|
85271
86942
|
/**
|
|
85272
86943
|
* Stores model information.
|
|
@@ -85685,7 +87356,7 @@ export interface SignIn extends Entity, Parsable {
|
|
|
85685
87356
|
*/
|
|
85686
87357
|
resourceId?: string | null;
|
|
85687
87358
|
/**
|
|
85688
|
-
* The reason behind a specific state of a risky user, sign-in, or a risk event. The
|
|
87359
|
+
* The reason behind a specific state of a risky user, sign-in, or a risk event. The value none means that Microsoft Entra risk detection did not flag the user or the sign-in as a risky event so far. Supports $filter (eq). Note: Details for this property are only available for Microsoft Entra ID P2 customers. All other customers are returned hidden.
|
|
85689
87360
|
*/
|
|
85690
87361
|
riskDetail?: RiskDetail | null;
|
|
85691
87362
|
/**
|
|
@@ -87185,7 +88856,7 @@ export interface SubjectRightsRequestHistory extends AdditionalDataHolder, Backe
|
|
|
87185
88856
|
*/
|
|
87186
88857
|
odataType?: string | null;
|
|
87187
88858
|
/**
|
|
87188
|
-
* The stage when the entity was changed. Possible values are: contentRetrieval, contentReview, generateReport, contentDeletion, caseResolved, unknownFutureValue, approval. Use the Prefer: include-unknown-enum-members request header to get the following
|
|
88859
|
+
* The stage when the entity was changed. Possible values are: contentRetrieval, contentReview, generateReport, contentDeletion, caseResolved, unknownFutureValue, approval. Use the Prefer: include-unknown-enum-members request header to get the following members in this evolvable enum: approval.
|
|
87189
88860
|
*/
|
|
87190
88861
|
stage?: SubjectRightsRequestStage | null;
|
|
87191
88862
|
/**
|
|
@@ -87232,7 +88903,7 @@ export interface SubjectRightsRequestStageDetail extends AdditionalDataHolder, B
|
|
|
87232
88903
|
*/
|
|
87233
88904
|
odataType?: string | null;
|
|
87234
88905
|
/**
|
|
87235
|
-
* The stage of the subject rights request. Possible values are: contentRetrieval, contentReview, generateReport, contentDeletion, caseResolved, unknownFutureValue, approval. Use the Prefer: include-unknown-enum-members request header to get the following
|
|
88906
|
+
* The stage of the subject rights request. Possible values are: contentRetrieval, contentReview, generateReport, contentDeletion, caseResolved, unknownFutureValue, approval. Use the Prefer: include-unknown-enum-members request header to get the following members in this evolvable enum: approval.
|
|
87236
88907
|
*/
|
|
87237
88908
|
stage?: SubjectRightsRequestStage | null;
|
|
87238
88909
|
/**
|
|
@@ -90941,6 +92612,18 @@ export interface UnifiedStorageQuota extends Entity, Parsable {
|
|
|
90941
92612
|
*/
|
|
90942
92613
|
used?: number | null;
|
|
90943
92614
|
}
|
|
92615
|
+
export interface UnitMap extends BaseMapFeature, Parsable {
|
|
92616
|
+
/**
|
|
92617
|
+
* The placeId property
|
|
92618
|
+
*/
|
|
92619
|
+
placeId?: string | null;
|
|
92620
|
+
}
|
|
92621
|
+
export interface UnitMapCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
92622
|
+
/**
|
|
92623
|
+
* The value property
|
|
92624
|
+
*/
|
|
92625
|
+
value?: UnitMap[] | null;
|
|
92626
|
+
}
|
|
90944
92627
|
export interface UnmuteParticipantOperation extends CommsOperation, Parsable {
|
|
90945
92628
|
}
|
|
90946
92629
|
export interface UpdateAllowedCombinationsResult extends AdditionalDataHolder, BackedModel, Parsable {
|
|
@@ -94406,15 +96089,15 @@ export interface WebApplicationFirewallDnsConfiguration extends AdditionalDataHo
|
|
|
94406
96089
|
*/
|
|
94407
96090
|
backingStoreEnabled?: boolean | null;
|
|
94408
96091
|
/**
|
|
94409
|
-
*
|
|
96092
|
+
* Indicates whether the domain owning this DNS record has been verified by the WAF provider.
|
|
94410
96093
|
*/
|
|
94411
96094
|
isDomainVerified?: boolean | null;
|
|
94412
96095
|
/**
|
|
94413
|
-
*
|
|
96096
|
+
* Indicates whether traffic for this DNS record is proxied through the WAF provider's network (for example, using a CDN or reverse proxy).
|
|
94414
96097
|
*/
|
|
94415
96098
|
isProxied?: boolean | null;
|
|
94416
96099
|
/**
|
|
94417
|
-
* The name
|
|
96100
|
+
* The DNS record name (for example, www.contoso.com or contoso.com). This is the host or zone name to which the configuration applies.
|
|
94418
96101
|
*/
|
|
94419
96102
|
name?: string | null;
|
|
94420
96103
|
/**
|
|
@@ -94426,14 +96109,14 @@ export interface WebApplicationFirewallDnsConfiguration extends AdditionalDataHo
|
|
|
94426
96109
|
*/
|
|
94427
96110
|
recordType?: WebApplicationFirewallDnsRecordType | null;
|
|
94428
96111
|
/**
|
|
94429
|
-
* The value
|
|
96112
|
+
* The value of the DNS record.
|
|
94430
96113
|
*/
|
|
94431
96114
|
value?: string | null;
|
|
94432
96115
|
}
|
|
94433
96116
|
export type WebApplicationFirewallDnsRecordType = (typeof WebApplicationFirewallDnsRecordTypeObject)[keyof typeof WebApplicationFirewallDnsRecordTypeObject];
|
|
94434
96117
|
export interface WebApplicationFirewallProvider extends Entity, Parsable {
|
|
94435
96118
|
/**
|
|
94436
|
-
* The
|
|
96119
|
+
* The display name of the WAF provider.
|
|
94437
96120
|
*/
|
|
94438
96121
|
displayName?: string | null;
|
|
94439
96122
|
}
|
|
@@ -94446,7 +96129,7 @@ export interface WebApplicationFirewallProviderCollectionResponse extends BaseCo
|
|
|
94446
96129
|
export type WebApplicationFirewallProviderType = (typeof WebApplicationFirewallProviderTypeObject)[keyof typeof WebApplicationFirewallProviderTypeObject];
|
|
94447
96130
|
export interface WebApplicationFirewallVerificationModel extends Entity, Parsable {
|
|
94448
96131
|
/**
|
|
94449
|
-
*
|
|
96132
|
+
* Reference to a provider resource associated with this verification model. Represents a WAF provider that can be used to verify or manage the host.
|
|
94450
96133
|
*/
|
|
94451
96134
|
provider?: WebApplicationFirewallProvider | null;
|
|
94452
96135
|
/**
|
|
@@ -94454,15 +96137,15 @@ export interface WebApplicationFirewallVerificationModel extends Entity, Parsabl
|
|
|
94454
96137
|
*/
|
|
94455
96138
|
providerType?: WebApplicationFirewallProviderType | null;
|
|
94456
96139
|
/**
|
|
94457
|
-
*
|
|
96140
|
+
* An object describing the outcome of the verification operation, including status, errors or warnings
|
|
94458
96141
|
*/
|
|
94459
96142
|
verificationResult?: WebApplicationFirewallVerificationResult | null;
|
|
94460
96143
|
/**
|
|
94461
|
-
*
|
|
96144
|
+
* Details of DNS configuration
|
|
94462
96145
|
*/
|
|
94463
96146
|
verifiedDetails?: WebApplicationFirewallVerifiedDetails | null;
|
|
94464
96147
|
/**
|
|
94465
|
-
* The
|
|
96148
|
+
* The host (domain or subdomain) that was verified as part of this verification operation.
|
|
94466
96149
|
*/
|
|
94467
96150
|
verifiedHost?: string | null;
|
|
94468
96151
|
}
|
|
@@ -94478,7 +96161,7 @@ export interface WebApplicationFirewallVerificationResult extends AdditionalData
|
|
|
94478
96161
|
*/
|
|
94479
96162
|
backingStoreEnabled?: boolean | null;
|
|
94480
96163
|
/**
|
|
94481
|
-
*
|
|
96164
|
+
* List of errors encountered during the verification process.
|
|
94482
96165
|
*/
|
|
94483
96166
|
errors?: GenericError[] | null;
|
|
94484
96167
|
/**
|
|
@@ -94490,11 +96173,11 @@ export interface WebApplicationFirewallVerificationResult extends AdditionalData
|
|
|
94490
96173
|
*/
|
|
94491
96174
|
status?: WebApplicationFirewallVerificationStatus | null;
|
|
94492
96175
|
/**
|
|
94493
|
-
*
|
|
96176
|
+
* UTC timestamp when the verification was performed or last updated. This indicates when the verification result was produced.
|
|
94494
96177
|
*/
|
|
94495
96178
|
verifiedOnDateTime?: Date | null;
|
|
94496
96179
|
/**
|
|
94497
|
-
*
|
|
96180
|
+
* List of warnings produced during verification.
|
|
94498
96181
|
*/
|
|
94499
96182
|
warnings?: GenericError[] | null;
|
|
94500
96183
|
}
|
|
@@ -94505,7 +96188,7 @@ export interface WebApplicationFirewallVerifiedDetails extends AdditionalDataHol
|
|
|
94505
96188
|
*/
|
|
94506
96189
|
backingStoreEnabled?: boolean | null;
|
|
94507
96190
|
/**
|
|
94508
|
-
*
|
|
96191
|
+
* DNS-related details discovered during verification for the host, such as the DNS record name, record type, record value, whether the record is proxied through the provider, and whether the domain is verified.
|
|
94509
96192
|
*/
|
|
94510
96193
|
dnsConfiguration?: WebApplicationFirewallDnsConfiguration | null;
|
|
94511
96194
|
/**
|
|
@@ -99191,7 +100874,7 @@ export interface WorkforceIntegration extends ChangeTrackedEntity, Parsable {
|
|
|
99191
100874
|
*/
|
|
99192
100875
|
displayName?: string | null;
|
|
99193
100876
|
/**
|
|
99194
|
-
* Support to view eligibility-filtered results. Possible values are: none, swapRequest, offerShiftRequest, unknownFutureValue, timeOffReason. Use the Prefer: include-unknown-enum-members request header to get the following
|
|
100877
|
+
* Support to view eligibility-filtered results. Possible values are: none, swapRequest, offerShiftRequest, unknownFutureValue, timeOffReason. Use the Prefer: include-unknown-enum-members request header to get the following members in this evolvable enum: timeOffReason.
|
|
99195
100878
|
*/
|
|
99196
100879
|
eligibilityFilteringEnabledEntities?: EligibilityFilteringEnabledEntities[] | null;
|
|
99197
100880
|
/**
|
|
@@ -99265,6 +100948,34 @@ export interface WorkingHours extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
99265
100948
|
}
|
|
99266
100949
|
export interface WorkingTimeSchedule extends Entity, Parsable {
|
|
99267
100950
|
}
|
|
100951
|
+
export interface Workspace extends Parsable, Place {
|
|
100952
|
+
/**
|
|
100953
|
+
* The capacity property
|
|
100954
|
+
*/
|
|
100955
|
+
capacity?: number | null;
|
|
100956
|
+
/**
|
|
100957
|
+
* The displayDeviceName property
|
|
100958
|
+
*/
|
|
100959
|
+
displayDeviceName?: string | null;
|
|
100960
|
+
/**
|
|
100961
|
+
* The emailAddress property
|
|
100962
|
+
*/
|
|
100963
|
+
emailAddress?: string | null;
|
|
100964
|
+
/**
|
|
100965
|
+
* The mode property
|
|
100966
|
+
*/
|
|
100967
|
+
mode?: PlaceMode | null;
|
|
100968
|
+
/**
|
|
100969
|
+
* The nickname property
|
|
100970
|
+
*/
|
|
100971
|
+
nickname?: string | null;
|
|
100972
|
+
}
|
|
100973
|
+
export interface WorkspaceCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
100974
|
+
/**
|
|
100975
|
+
* The value property
|
|
100976
|
+
*/
|
|
100977
|
+
value?: Workspace[] | null;
|
|
100978
|
+
}
|
|
99268
100979
|
export type X509CertificateAffinityLevel = (typeof X509CertificateAffinityLevelObject)[keyof typeof X509CertificateAffinityLevelObject];
|
|
99269
100980
|
export interface X509CertificateAuthenticationMethodConfiguration extends AuthenticationMethodConfiguration, Parsable {
|
|
99270
100981
|
/**
|
|
@@ -100354,6 +102065,13 @@ export declare const ChatTypeObject: {
|
|
|
100354
102065
|
readonly Meeting: "meeting";
|
|
100355
102066
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
100356
102067
|
};
|
|
102068
|
+
export declare const CheckInMethodObject: {
|
|
102069
|
+
readonly Unspecified: "unspecified";
|
|
102070
|
+
readonly Manual: "manual";
|
|
102071
|
+
readonly Inferred: "inferred";
|
|
102072
|
+
readonly Verified: "verified";
|
|
102073
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
102074
|
+
};
|
|
100357
102075
|
export declare const ClickSourceObject: {
|
|
100358
102076
|
readonly Unknown: "unknown";
|
|
100359
102077
|
readonly QrCode: "qrCode";
|
|
@@ -104382,6 +106100,10 @@ export declare const RequiredPasswordTypeObject: {
|
|
|
104382
106100
|
/** Numeric password required. */
|
|
104383
106101
|
readonly Numeric: "numeric";
|
|
104384
106102
|
};
|
|
106103
|
+
export declare const ResourceLinkTypeObject: {
|
|
106104
|
+
readonly Url: "url";
|
|
106105
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
106106
|
+
};
|
|
104385
106107
|
export declare const ResponseEmotionTypeObject: {
|
|
104386
106108
|
readonly None: "none";
|
|
104387
106109
|
readonly Confident: "confident";
|
|
@@ -104789,6 +106511,25 @@ export declare const SharedPCAllowedAccountTypeObject: {
|
|
|
104789
106511
|
/** Only domain-joined accounts. */
|
|
104790
106512
|
readonly Domain: "domain";
|
|
104791
106513
|
};
|
|
106514
|
+
export declare const SharePointMigrationJobErrorLevelObject: {
|
|
106515
|
+
readonly Important: "important";
|
|
106516
|
+
readonly Warning: "warning";
|
|
106517
|
+
readonly ErrorEscaped: "error";
|
|
106518
|
+
readonly FatalError: "fatalError";
|
|
106519
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
106520
|
+
};
|
|
106521
|
+
export declare const SharePointMigrationObjectTypeObject: {
|
|
106522
|
+
readonly Site: "site";
|
|
106523
|
+
readonly Web: "web";
|
|
106524
|
+
readonly Folder: "folder";
|
|
106525
|
+
readonly List: "list";
|
|
106526
|
+
readonly ListItem: "listItem";
|
|
106527
|
+
readonly File: "file";
|
|
106528
|
+
readonly Alert: "alert";
|
|
106529
|
+
readonly SharedWithObject: "sharedWithObject";
|
|
106530
|
+
readonly Invalid: "invalid";
|
|
106531
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
106532
|
+
};
|
|
104792
106533
|
export declare const SharingCapabilitiesObject: {
|
|
104793
106534
|
readonly Disabled: "disabled";
|
|
104794
106535
|
readonly ExternalUserSharingOnly: "externalUserSharingOnly";
|