@microsoft/msgraph-sdk 1.0.0-preview.73 → 1.0.0-preview.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/models/index.d.ts +755 -49
- package/models/index.d.ts.map +1 -1
- package/models/index.js +834 -45
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +26 -0
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +23 -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
|
@@ -11,7 +11,7 @@ export interface AadUserConversationMember extends ConversationMember, Parsable
|
|
|
11
11
|
*/
|
|
12
12
|
email?: string | null;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* The tenant ID of the Microsoft Entra user.
|
|
15
15
|
*/
|
|
16
16
|
tenantId?: string | null;
|
|
17
17
|
/**
|
|
@@ -19,7 +19,7 @@ export interface AadUserConversationMember extends ConversationMember, Parsable
|
|
|
19
19
|
*/
|
|
20
20
|
user?: User | null;
|
|
21
21
|
/**
|
|
22
|
-
* The
|
|
22
|
+
* The user ID of the Microsoft Entra user.
|
|
23
23
|
*/
|
|
24
24
|
userId?: string | null;
|
|
25
25
|
}
|
|
@@ -2291,6 +2291,96 @@ export interface AiUser extends Entity, Parsable {
|
|
|
2291
2291
|
*/
|
|
2292
2292
|
interactionHistory?: AiInteractionHistory | null;
|
|
2293
2293
|
}
|
|
2294
|
+
export interface AkamaiAttackGroupActionModel extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2295
|
+
/**
|
|
2296
|
+
* The action property
|
|
2297
|
+
*/
|
|
2298
|
+
action?: string | null;
|
|
2299
|
+
/**
|
|
2300
|
+
* Stores model information.
|
|
2301
|
+
*/
|
|
2302
|
+
backingStoreEnabled?: boolean | null;
|
|
2303
|
+
/**
|
|
2304
|
+
* The group property
|
|
2305
|
+
*/
|
|
2306
|
+
group?: string | null;
|
|
2307
|
+
/**
|
|
2308
|
+
* The OdataType property
|
|
2309
|
+
*/
|
|
2310
|
+
odataType?: string | null;
|
|
2311
|
+
}
|
|
2312
|
+
export interface AkamaiCustomRuleModel extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2313
|
+
/**
|
|
2314
|
+
* The action property
|
|
2315
|
+
*/
|
|
2316
|
+
action?: string | null;
|
|
2317
|
+
/**
|
|
2318
|
+
* Stores model information.
|
|
2319
|
+
*/
|
|
2320
|
+
backingStoreEnabled?: boolean | null;
|
|
2321
|
+
/**
|
|
2322
|
+
* The name property
|
|
2323
|
+
*/
|
|
2324
|
+
name?: string | null;
|
|
2325
|
+
/**
|
|
2326
|
+
* The OdataType property
|
|
2327
|
+
*/
|
|
2328
|
+
odataType?: string | null;
|
|
2329
|
+
/**
|
|
2330
|
+
* The ruleId property
|
|
2331
|
+
*/
|
|
2332
|
+
ruleId?: string | null;
|
|
2333
|
+
}
|
|
2334
|
+
export interface AkamaiRapidRulesModel extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2335
|
+
/**
|
|
2336
|
+
* Stores model information.
|
|
2337
|
+
*/
|
|
2338
|
+
backingStoreEnabled?: boolean | null;
|
|
2339
|
+
/**
|
|
2340
|
+
* The defaultAction property
|
|
2341
|
+
*/
|
|
2342
|
+
defaultAction?: string | null;
|
|
2343
|
+
/**
|
|
2344
|
+
* The isEnabled property
|
|
2345
|
+
*/
|
|
2346
|
+
isEnabled?: boolean | null;
|
|
2347
|
+
/**
|
|
2348
|
+
* The OdataType property
|
|
2349
|
+
*/
|
|
2350
|
+
odataType?: string | null;
|
|
2351
|
+
}
|
|
2352
|
+
export interface AkamaiVerifiedDetailsModel extends Parsable, WebApplicationFirewallVerifiedDetails {
|
|
2353
|
+
/**
|
|
2354
|
+
* The activeAttackGroups property
|
|
2355
|
+
*/
|
|
2356
|
+
activeAttackGroups?: AkamaiAttackGroupActionModel[] | null;
|
|
2357
|
+
/**
|
|
2358
|
+
* The activeCustomRules property
|
|
2359
|
+
*/
|
|
2360
|
+
activeCustomRules?: AkamaiCustomRuleModel[] | null;
|
|
2361
|
+
/**
|
|
2362
|
+
* The rapidRules property
|
|
2363
|
+
*/
|
|
2364
|
+
rapidRules?: AkamaiRapidRulesModel | null;
|
|
2365
|
+
}
|
|
2366
|
+
export interface AkamaiWebApplicationFirewallProvider extends Parsable, WebApplicationFirewallProvider {
|
|
2367
|
+
/**
|
|
2368
|
+
* The accessToken property
|
|
2369
|
+
*/
|
|
2370
|
+
accessToken?: string | null;
|
|
2371
|
+
/**
|
|
2372
|
+
* The clientSecret property
|
|
2373
|
+
*/
|
|
2374
|
+
clientSecret?: string | null;
|
|
2375
|
+
/**
|
|
2376
|
+
* The clientToken property
|
|
2377
|
+
*/
|
|
2378
|
+
clientToken?: string | null;
|
|
2379
|
+
/**
|
|
2380
|
+
* The hostPrefix property
|
|
2381
|
+
*/
|
|
2382
|
+
hostPrefix?: string | null;
|
|
2383
|
+
}
|
|
2294
2384
|
export interface Album extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2295
2385
|
/**
|
|
2296
2386
|
* Stores model information.
|
|
@@ -3823,7 +3913,7 @@ export interface ApplicationServicePrincipal extends AdditionalDataHolder, Backe
|
|
|
3823
3913
|
}
|
|
3824
3914
|
export interface ApplicationTemplate extends Entity, Parsable {
|
|
3825
3915
|
/**
|
|
3826
|
-
* The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer, Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications, Tools, Travel, and Web design & hosting.
|
|
3916
|
+
* The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer, Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications, Tools, Travel, and Web design & hosting. Supports $filter (contains).
|
|
3827
3917
|
*/
|
|
3828
3918
|
categories?: string[] | null;
|
|
3829
3919
|
/**
|
|
@@ -3831,7 +3921,7 @@ export interface ApplicationTemplate extends Entity, Parsable {
|
|
|
3831
3921
|
*/
|
|
3832
3922
|
description?: string | null;
|
|
3833
3923
|
/**
|
|
3834
|
-
* The name of the application.
|
|
3924
|
+
* The name of the application. Supports $filter (contains).
|
|
3835
3925
|
*/
|
|
3836
3926
|
displayName?: string | null;
|
|
3837
3927
|
/**
|
|
@@ -9355,6 +9445,74 @@ export interface CloudCommunications extends AdditionalDataHolder, BackedModel,
|
|
|
9355
9445
|
*/
|
|
9356
9446
|
presences?: Presence[] | null;
|
|
9357
9447
|
}
|
|
9448
|
+
export interface CloudFlareRuleModel extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9449
|
+
/**
|
|
9450
|
+
* The action property
|
|
9451
|
+
*/
|
|
9452
|
+
action?: string | null;
|
|
9453
|
+
/**
|
|
9454
|
+
* Stores model information.
|
|
9455
|
+
*/
|
|
9456
|
+
backingStoreEnabled?: boolean | null;
|
|
9457
|
+
/**
|
|
9458
|
+
* The name property
|
|
9459
|
+
*/
|
|
9460
|
+
name?: string | null;
|
|
9461
|
+
/**
|
|
9462
|
+
* The OdataType property
|
|
9463
|
+
*/
|
|
9464
|
+
odataType?: string | null;
|
|
9465
|
+
/**
|
|
9466
|
+
* The ruleId property
|
|
9467
|
+
*/
|
|
9468
|
+
ruleId?: string | null;
|
|
9469
|
+
}
|
|
9470
|
+
export interface CloudFlareRulesetModel extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9471
|
+
/**
|
|
9472
|
+
* Stores model information.
|
|
9473
|
+
*/
|
|
9474
|
+
backingStoreEnabled?: boolean | null;
|
|
9475
|
+
/**
|
|
9476
|
+
* The name property
|
|
9477
|
+
*/
|
|
9478
|
+
name?: string | null;
|
|
9479
|
+
/**
|
|
9480
|
+
* The OdataType property
|
|
9481
|
+
*/
|
|
9482
|
+
odataType?: string | null;
|
|
9483
|
+
/**
|
|
9484
|
+
* The phaseName property
|
|
9485
|
+
*/
|
|
9486
|
+
phaseName?: string | null;
|
|
9487
|
+
/**
|
|
9488
|
+
* The rulesetId property
|
|
9489
|
+
*/
|
|
9490
|
+
rulesetId?: string | null;
|
|
9491
|
+
}
|
|
9492
|
+
export interface CloudFlareVerifiedDetailsModel extends Parsable, WebApplicationFirewallVerifiedDetails {
|
|
9493
|
+
/**
|
|
9494
|
+
* The enabledCustomRules property
|
|
9495
|
+
*/
|
|
9496
|
+
enabledCustomRules?: CloudFlareRuleModel[] | null;
|
|
9497
|
+
/**
|
|
9498
|
+
* The enabledRecommendedRulesets property
|
|
9499
|
+
*/
|
|
9500
|
+
enabledRecommendedRulesets?: CloudFlareRulesetModel[] | null;
|
|
9501
|
+
/**
|
|
9502
|
+
* The zoneId property
|
|
9503
|
+
*/
|
|
9504
|
+
zoneId?: string | null;
|
|
9505
|
+
}
|
|
9506
|
+
export interface CloudFlareWebApplicationFirewallProvider extends Parsable, WebApplicationFirewallProvider {
|
|
9507
|
+
/**
|
|
9508
|
+
* The apiToken property
|
|
9509
|
+
*/
|
|
9510
|
+
apiToken?: string | null;
|
|
9511
|
+
/**
|
|
9512
|
+
* The zoneId property
|
|
9513
|
+
*/
|
|
9514
|
+
zoneId?: string | null;
|
|
9515
|
+
}
|
|
9358
9516
|
export interface CloudPC extends Entity, Parsable {
|
|
9359
9517
|
/**
|
|
9360
9518
|
* The Microsoft Entra device ID for the Cloud PC, also known as the Azure Active Directory (Azure AD) device ID, that consists of 32 characters in a GUID format. Generated on a VM joined to Microsoft Entra ID. Read-only.
|
|
@@ -12601,6 +12759,36 @@ export declare function createAirPrintSettingsFromDiscriminatorValue(parseNode:
|
|
|
12601
12759
|
* @returns {AiUser}
|
|
12602
12760
|
*/
|
|
12603
12761
|
export declare function createAiUserFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12762
|
+
/**
|
|
12763
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12764
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12765
|
+
* @returns {AkamaiAttackGroupActionModel}
|
|
12766
|
+
*/
|
|
12767
|
+
export declare function createAkamaiAttackGroupActionModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12768
|
+
/**
|
|
12769
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12770
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12771
|
+
* @returns {AkamaiCustomRuleModel}
|
|
12772
|
+
*/
|
|
12773
|
+
export declare function createAkamaiCustomRuleModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12774
|
+
/**
|
|
12775
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12776
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12777
|
+
* @returns {AkamaiRapidRulesModel}
|
|
12778
|
+
*/
|
|
12779
|
+
export declare function createAkamaiRapidRulesModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12780
|
+
/**
|
|
12781
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12782
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12783
|
+
* @returns {AkamaiVerifiedDetailsModel}
|
|
12784
|
+
*/
|
|
12785
|
+
export declare function createAkamaiVerifiedDetailsModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12786
|
+
/**
|
|
12787
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12788
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12789
|
+
* @returns {AkamaiWebApplicationFirewallProvider}
|
|
12790
|
+
*/
|
|
12791
|
+
export declare function createAkamaiWebApplicationFirewallProviderFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12604
12792
|
/**
|
|
12605
12793
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12606
12794
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14539,6 +14727,30 @@ export declare function createCloudClipboardRootFromDiscriminatorValue(parseNode
|
|
|
14539
14727
|
* @returns {CloudCommunications}
|
|
14540
14728
|
*/
|
|
14541
14729
|
export declare function createCloudCommunicationsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14730
|
+
/**
|
|
14731
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14732
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14733
|
+
* @returns {CloudFlareRuleModel}
|
|
14734
|
+
*/
|
|
14735
|
+
export declare function createCloudFlareRuleModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14736
|
+
/**
|
|
14737
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14738
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14739
|
+
* @returns {CloudFlareRulesetModel}
|
|
14740
|
+
*/
|
|
14741
|
+
export declare function createCloudFlareRulesetModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14742
|
+
/**
|
|
14743
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14744
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14745
|
+
* @returns {CloudFlareVerifiedDetailsModel}
|
|
14746
|
+
*/
|
|
14747
|
+
export declare function createCloudFlareVerifiedDetailsModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14748
|
+
/**
|
|
14749
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14750
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14751
|
+
* @returns {CloudFlareWebApplicationFirewallProvider}
|
|
14752
|
+
*/
|
|
14753
|
+
export declare function createCloudFlareWebApplicationFirewallProviderFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14542
14754
|
/**
|
|
14543
14755
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14544
14756
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -16747,6 +16959,24 @@ export declare function createEducationGradingCategoryCollectionResponseFromDisc
|
|
|
16747
16959
|
* @returns {EducationGradingCategory}
|
|
16748
16960
|
*/
|
|
16749
16961
|
export declare function createEducationGradingCategoryFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16962
|
+
/**
|
|
16963
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16964
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16965
|
+
* @returns {EducationGradingSchemeCollectionResponse}
|
|
16966
|
+
*/
|
|
16967
|
+
export declare function createEducationGradingSchemeCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16968
|
+
/**
|
|
16969
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16970
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16971
|
+
* @returns {EducationGradingScheme}
|
|
16972
|
+
*/
|
|
16973
|
+
export declare function createEducationGradingSchemeFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16974
|
+
/**
|
|
16975
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16976
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16977
|
+
* @returns {EducationGradingSchemeGrade}
|
|
16978
|
+
*/
|
|
16979
|
+
export declare function createEducationGradingSchemeGradeFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16750
16980
|
/**
|
|
16751
16981
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
16752
16982
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -18133,12 +18363,6 @@ export declare function createIosCompliancePolicyFromDiscriminatorValue(parseNod
|
|
|
18133
18363
|
* @returns {IosCustomConfiguration}
|
|
18134
18364
|
*/
|
|
18135
18365
|
export declare function createIosCustomConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18136
|
-
/**
|
|
18137
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
18138
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18139
|
-
* @returns {IosDdmLobAppAssignmentSettings}
|
|
18140
|
-
*/
|
|
18141
|
-
export declare function createIosDdmLobAppAssignmentSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18142
18366
|
/**
|
|
18143
18367
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
18144
18368
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -22129,6 +22353,12 @@ export declare function createRiskDetectionCollectionResponseFromDiscriminatorVa
|
|
|
22129
22353
|
* @returns {RiskDetection}
|
|
22130
22354
|
*/
|
|
22131
22355
|
export declare function createRiskDetectionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22356
|
+
/**
|
|
22357
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
22358
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
22359
|
+
* @returns {RiskPreventionContainer}
|
|
22360
|
+
*/
|
|
22361
|
+
export declare function createRiskPreventionContainerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22132
22362
|
/**
|
|
22133
22363
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
22134
22364
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -25549,6 +25779,48 @@ export declare function createWatermarkProtectionValuesFromDiscriminatorValue(pa
|
|
|
25549
25779
|
* @returns {WebApp}
|
|
25550
25780
|
*/
|
|
25551
25781
|
export declare function createWebAppFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
25782
|
+
/**
|
|
25783
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
25784
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
25785
|
+
* @returns {WebApplicationFirewallDnsConfiguration}
|
|
25786
|
+
*/
|
|
25787
|
+
export declare function createWebApplicationFirewallDnsConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
25788
|
+
/**
|
|
25789
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
25790
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
25791
|
+
* @returns {WebApplicationFirewallProviderCollectionResponse}
|
|
25792
|
+
*/
|
|
25793
|
+
export declare function createWebApplicationFirewallProviderCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
25794
|
+
/**
|
|
25795
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
25796
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
25797
|
+
* @returns {WebApplicationFirewallProvider}
|
|
25798
|
+
*/
|
|
25799
|
+
export declare function createWebApplicationFirewallProviderFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
25800
|
+
/**
|
|
25801
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
25802
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
25803
|
+
* @returns {WebApplicationFirewallVerificationModelCollectionResponse}
|
|
25804
|
+
*/
|
|
25805
|
+
export declare function createWebApplicationFirewallVerificationModelCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
25806
|
+
/**
|
|
25807
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
25808
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
25809
|
+
* @returns {WebApplicationFirewallVerificationModel}
|
|
25810
|
+
*/
|
|
25811
|
+
export declare function createWebApplicationFirewallVerificationModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
25812
|
+
/**
|
|
25813
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
25814
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
25815
|
+
* @returns {WebApplicationFirewallVerificationResult}
|
|
25816
|
+
*/
|
|
25817
|
+
export declare function createWebApplicationFirewallVerificationResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
25818
|
+
/**
|
|
25819
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
25820
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
25821
|
+
* @returns {WebApplicationFirewallVerifiedDetails}
|
|
25822
|
+
*/
|
|
25823
|
+
export declare function createWebApplicationFirewallVerifiedDetailsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
25552
25824
|
/**
|
|
25553
25825
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
25554
25826
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -28424,6 +28696,36 @@ export declare function deserializeIntoAirPrintSettings(airPrintSettings?: Parti
|
|
|
28424
28696
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28425
28697
|
*/
|
|
28426
28698
|
export declare function deserializeIntoAiUser(aiUser?: Partial<AiUser> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28699
|
+
/**
|
|
28700
|
+
* The deserialization information for the current model
|
|
28701
|
+
* @param AkamaiAttackGroupActionModel The instance to deserialize into.
|
|
28702
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28703
|
+
*/
|
|
28704
|
+
export declare function deserializeIntoAkamaiAttackGroupActionModel(akamaiAttackGroupActionModel?: Partial<AkamaiAttackGroupActionModel> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28705
|
+
/**
|
|
28706
|
+
* The deserialization information for the current model
|
|
28707
|
+
* @param AkamaiCustomRuleModel The instance to deserialize into.
|
|
28708
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28709
|
+
*/
|
|
28710
|
+
export declare function deserializeIntoAkamaiCustomRuleModel(akamaiCustomRuleModel?: Partial<AkamaiCustomRuleModel> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28711
|
+
/**
|
|
28712
|
+
* The deserialization information for the current model
|
|
28713
|
+
* @param AkamaiRapidRulesModel The instance to deserialize into.
|
|
28714
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28715
|
+
*/
|
|
28716
|
+
export declare function deserializeIntoAkamaiRapidRulesModel(akamaiRapidRulesModel?: Partial<AkamaiRapidRulesModel> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28717
|
+
/**
|
|
28718
|
+
* The deserialization information for the current model
|
|
28719
|
+
* @param AkamaiVerifiedDetailsModel The instance to deserialize into.
|
|
28720
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28721
|
+
*/
|
|
28722
|
+
export declare function deserializeIntoAkamaiVerifiedDetailsModel(akamaiVerifiedDetailsModel?: Partial<AkamaiVerifiedDetailsModel> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28723
|
+
/**
|
|
28724
|
+
* The deserialization information for the current model
|
|
28725
|
+
* @param AkamaiWebApplicationFirewallProvider The instance to deserialize into.
|
|
28726
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28727
|
+
*/
|
|
28728
|
+
export declare function deserializeIntoAkamaiWebApplicationFirewallProvider(akamaiWebApplicationFirewallProvider?: Partial<AkamaiWebApplicationFirewallProvider> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28427
28729
|
/**
|
|
28428
28730
|
* The deserialization information for the current model
|
|
28429
28731
|
* @param Album The instance to deserialize into.
|
|
@@ -30362,6 +30664,30 @@ export declare function deserializeIntoCloudClipboardRoot(cloudClipboardRoot?: P
|
|
|
30362
30664
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30363
30665
|
*/
|
|
30364
30666
|
export declare function deserializeIntoCloudCommunications(cloudCommunications?: Partial<CloudCommunications> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30667
|
+
/**
|
|
30668
|
+
* The deserialization information for the current model
|
|
30669
|
+
* @param CloudFlareRuleModel The instance to deserialize into.
|
|
30670
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30671
|
+
*/
|
|
30672
|
+
export declare function deserializeIntoCloudFlareRuleModel(cloudFlareRuleModel?: Partial<CloudFlareRuleModel> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30673
|
+
/**
|
|
30674
|
+
* The deserialization information for the current model
|
|
30675
|
+
* @param CloudFlareRulesetModel The instance to deserialize into.
|
|
30676
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30677
|
+
*/
|
|
30678
|
+
export declare function deserializeIntoCloudFlareRulesetModel(cloudFlareRulesetModel?: Partial<CloudFlareRulesetModel> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30679
|
+
/**
|
|
30680
|
+
* The deserialization information for the current model
|
|
30681
|
+
* @param CloudFlareVerifiedDetailsModel The instance to deserialize into.
|
|
30682
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30683
|
+
*/
|
|
30684
|
+
export declare function deserializeIntoCloudFlareVerifiedDetailsModel(cloudFlareVerifiedDetailsModel?: Partial<CloudFlareVerifiedDetailsModel> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30685
|
+
/**
|
|
30686
|
+
* The deserialization information for the current model
|
|
30687
|
+
* @param CloudFlareWebApplicationFirewallProvider The instance to deserialize into.
|
|
30688
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30689
|
+
*/
|
|
30690
|
+
export declare function deserializeIntoCloudFlareWebApplicationFirewallProvider(cloudFlareWebApplicationFirewallProvider?: Partial<CloudFlareWebApplicationFirewallProvider> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30365
30691
|
/**
|
|
30366
30692
|
* The deserialization information for the current model
|
|
30367
30693
|
* @param CloudPC The instance to deserialize into.
|
|
@@ -32570,6 +32896,24 @@ export declare function deserializeIntoEducationGradingCategory(educationGrading
|
|
|
32570
32896
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32571
32897
|
*/
|
|
32572
32898
|
export declare function deserializeIntoEducationGradingCategoryCollectionResponse(educationGradingCategoryCollectionResponse?: Partial<EducationGradingCategoryCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32899
|
+
/**
|
|
32900
|
+
* The deserialization information for the current model
|
|
32901
|
+
* @param EducationGradingScheme The instance to deserialize into.
|
|
32902
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32903
|
+
*/
|
|
32904
|
+
export declare function deserializeIntoEducationGradingScheme(educationGradingScheme?: Partial<EducationGradingScheme> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32905
|
+
/**
|
|
32906
|
+
* The deserialization information for the current model
|
|
32907
|
+
* @param EducationGradingSchemeCollectionResponse The instance to deserialize into.
|
|
32908
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32909
|
+
*/
|
|
32910
|
+
export declare function deserializeIntoEducationGradingSchemeCollectionResponse(educationGradingSchemeCollectionResponse?: Partial<EducationGradingSchemeCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32911
|
+
/**
|
|
32912
|
+
* The deserialization information for the current model
|
|
32913
|
+
* @param EducationGradingSchemeGrade The instance to deserialize into.
|
|
32914
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32915
|
+
*/
|
|
32916
|
+
export declare function deserializeIntoEducationGradingSchemeGrade(educationGradingSchemeGrade?: Partial<EducationGradingSchemeGrade> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32573
32917
|
/**
|
|
32574
32918
|
* The deserialization information for the current model
|
|
32575
32919
|
* @param EducationItemBody The instance to deserialize into.
|
|
@@ -33956,12 +34300,6 @@ export declare function deserializeIntoIosCompliancePolicy(iosCompliancePolicy?:
|
|
|
33956
34300
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33957
34301
|
*/
|
|
33958
34302
|
export declare function deserializeIntoIosCustomConfiguration(iosCustomConfiguration?: Partial<IosCustomConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33959
|
-
/**
|
|
33960
|
-
* The deserialization information for the current model
|
|
33961
|
-
* @param IosDdmLobAppAssignmentSettings The instance to deserialize into.
|
|
33962
|
-
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33963
|
-
*/
|
|
33964
|
-
export declare function deserializeIntoIosDdmLobAppAssignmentSettings(iosDdmLobAppAssignmentSettings?: Partial<IosDdmLobAppAssignmentSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33965
34303
|
/**
|
|
33966
34304
|
* The deserialization information for the current model
|
|
33967
34305
|
* @param IosDeviceFeaturesConfiguration The instance to deserialize into.
|
|
@@ -37952,6 +38290,12 @@ export declare function deserializeIntoRiskDetection(riskDetection?: Partial<Ris
|
|
|
37952
38290
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
37953
38291
|
*/
|
|
37954
38292
|
export declare function deserializeIntoRiskDetectionCollectionResponse(riskDetectionCollectionResponse?: Partial<RiskDetectionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
38293
|
+
/**
|
|
38294
|
+
* The deserialization information for the current model
|
|
38295
|
+
* @param RiskPreventionContainer The instance to deserialize into.
|
|
38296
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
38297
|
+
*/
|
|
38298
|
+
export declare function deserializeIntoRiskPreventionContainer(riskPreventionContainer?: Partial<RiskPreventionContainer> | undefined): Record<string, (node: ParseNode) => void>;
|
|
37955
38299
|
/**
|
|
37956
38300
|
* The deserialization information for the current model
|
|
37957
38301
|
* @param RiskServicePrincipalActivity The instance to deserialize into.
|
|
@@ -41378,6 +41722,48 @@ export declare function deserializeIntoWebApp(webApp?: Partial<WebApp> | undefin
|
|
|
41378
41722
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
41379
41723
|
*/
|
|
41380
41724
|
export declare function deserializeIntoWebApplication(webApplication?: Partial<WebApplication> | undefined): Record<string, (node: ParseNode) => void>;
|
|
41725
|
+
/**
|
|
41726
|
+
* The deserialization information for the current model
|
|
41727
|
+
* @param WebApplicationFirewallDnsConfiguration The instance to deserialize into.
|
|
41728
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
41729
|
+
*/
|
|
41730
|
+
export declare function deserializeIntoWebApplicationFirewallDnsConfiguration(webApplicationFirewallDnsConfiguration?: Partial<WebApplicationFirewallDnsConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
41731
|
+
/**
|
|
41732
|
+
* The deserialization information for the current model
|
|
41733
|
+
* @param WebApplicationFirewallProvider The instance to deserialize into.
|
|
41734
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
41735
|
+
*/
|
|
41736
|
+
export declare function deserializeIntoWebApplicationFirewallProvider(webApplicationFirewallProvider?: Partial<WebApplicationFirewallProvider> | undefined): Record<string, (node: ParseNode) => void>;
|
|
41737
|
+
/**
|
|
41738
|
+
* The deserialization information for the current model
|
|
41739
|
+
* @param WebApplicationFirewallProviderCollectionResponse The instance to deserialize into.
|
|
41740
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
41741
|
+
*/
|
|
41742
|
+
export declare function deserializeIntoWebApplicationFirewallProviderCollectionResponse(webApplicationFirewallProviderCollectionResponse?: Partial<WebApplicationFirewallProviderCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
41743
|
+
/**
|
|
41744
|
+
* The deserialization information for the current model
|
|
41745
|
+
* @param WebApplicationFirewallVerificationModel The instance to deserialize into.
|
|
41746
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
41747
|
+
*/
|
|
41748
|
+
export declare function deserializeIntoWebApplicationFirewallVerificationModel(webApplicationFirewallVerificationModel?: Partial<WebApplicationFirewallVerificationModel> | undefined): Record<string, (node: ParseNode) => void>;
|
|
41749
|
+
/**
|
|
41750
|
+
* The deserialization information for the current model
|
|
41751
|
+
* @param WebApplicationFirewallVerificationModelCollectionResponse The instance to deserialize into.
|
|
41752
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
41753
|
+
*/
|
|
41754
|
+
export declare function deserializeIntoWebApplicationFirewallVerificationModelCollectionResponse(webApplicationFirewallVerificationModelCollectionResponse?: Partial<WebApplicationFirewallVerificationModelCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
41755
|
+
/**
|
|
41756
|
+
* The deserialization information for the current model
|
|
41757
|
+
* @param WebApplicationFirewallVerificationResult The instance to deserialize into.
|
|
41758
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
41759
|
+
*/
|
|
41760
|
+
export declare function deserializeIntoWebApplicationFirewallVerificationResult(webApplicationFirewallVerificationResult?: Partial<WebApplicationFirewallVerificationResult> | undefined): Record<string, (node: ParseNode) => void>;
|
|
41761
|
+
/**
|
|
41762
|
+
* The deserialization information for the current model
|
|
41763
|
+
* @param WebApplicationFirewallVerifiedDetails The instance to deserialize into.
|
|
41764
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
41765
|
+
*/
|
|
41766
|
+
export declare function deserializeIntoWebApplicationFirewallVerifiedDetails(webApplicationFirewallVerifiedDetails?: Partial<WebApplicationFirewallVerifiedDetails> | undefined): Record<string, (node: ParseNode) => void>;
|
|
41381
41767
|
/**
|
|
41382
41768
|
* The deserialization information for the current model
|
|
41383
41769
|
* @param WebPart The instance to deserialize into.
|
|
@@ -46114,10 +46500,18 @@ export interface EducationAssignment extends Entity, Parsable {
|
|
|
46114
46500
|
* When set, enables users to weight assignments differently when computing a class average grade.
|
|
46115
46501
|
*/
|
|
46116
46502
|
gradingCategory?: EducationGradingCategory | null;
|
|
46503
|
+
/**
|
|
46504
|
+
* When set, enables users to configure custom string grades based on the percentage of total points earned on this assignment.
|
|
46505
|
+
*/
|
|
46506
|
+
gradingScheme?: EducationGradingScheme | null;
|
|
46117
46507
|
/**
|
|
46118
46508
|
* Instructions for the assignment. The instructions and the display name tell the student what to do.
|
|
46119
46509
|
*/
|
|
46120
46510
|
instructions?: EducationItemBody | null;
|
|
46511
|
+
/**
|
|
46512
|
+
* Specifies the language in which UI notifications for the assignment are displayed. If languageTag isn't provided, the default language is en-US. Optional.
|
|
46513
|
+
*/
|
|
46514
|
+
languageTag?: string | null;
|
|
46121
46515
|
/**
|
|
46122
46516
|
* Who last modified the assignment.
|
|
46123
46517
|
*/
|
|
@@ -46264,10 +46658,18 @@ export interface EducationAssignmentResourceCollectionResponse extends BaseColle
|
|
|
46264
46658
|
value?: EducationAssignmentResource[] | null;
|
|
46265
46659
|
}
|
|
46266
46660
|
export interface EducationAssignmentSettings extends Entity, Parsable {
|
|
46661
|
+
/**
|
|
46662
|
+
* The default grading scheme for assignments created in this class.
|
|
46663
|
+
*/
|
|
46664
|
+
defaultGradingScheme?: EducationGradingScheme | null;
|
|
46267
46665
|
/**
|
|
46268
46666
|
* When set, enables users to weight assignments differently when computing a class average grade.
|
|
46269
46667
|
*/
|
|
46270
46668
|
gradingCategories?: EducationGradingCategory[] | null;
|
|
46669
|
+
/**
|
|
46670
|
+
* The grading schemes that can be attached to assignments created in this class.
|
|
46671
|
+
*/
|
|
46672
|
+
gradingSchemes?: EducationGradingScheme[] | null;
|
|
46271
46673
|
/**
|
|
46272
46674
|
* Indicates whether to show the turn-in celebration animation. If true, indicates to skip the animation. The default value is false.
|
|
46273
46675
|
*/
|
|
@@ -46493,6 +46895,48 @@ export interface EducationGradingCategoryCollectionResponse extends BaseCollecti
|
|
|
46493
46895
|
*/
|
|
46494
46896
|
value?: EducationGradingCategory[] | null;
|
|
46495
46897
|
}
|
|
46898
|
+
export interface EducationGradingScheme extends Entity, Parsable {
|
|
46899
|
+
/**
|
|
46900
|
+
* The name of the grading scheme.
|
|
46901
|
+
*/
|
|
46902
|
+
displayName?: string | null;
|
|
46903
|
+
/**
|
|
46904
|
+
* The grades that make up the scheme.
|
|
46905
|
+
*/
|
|
46906
|
+
grades?: EducationGradingSchemeGrade[] | null;
|
|
46907
|
+
/**
|
|
46908
|
+
* The display setting for the UI. Indicates whether teachers can grade with points in addition to letter grades.
|
|
46909
|
+
*/
|
|
46910
|
+
hidePointsDuringGrading?: boolean | null;
|
|
46911
|
+
}
|
|
46912
|
+
export interface EducationGradingSchemeCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
46913
|
+
/**
|
|
46914
|
+
* The value property
|
|
46915
|
+
*/
|
|
46916
|
+
value?: EducationGradingScheme[] | null;
|
|
46917
|
+
}
|
|
46918
|
+
export interface EducationGradingSchemeGrade extends AdditionalDataHolder, BackedModel, Parsable {
|
|
46919
|
+
/**
|
|
46920
|
+
* Stores model information.
|
|
46921
|
+
*/
|
|
46922
|
+
backingStoreEnabled?: boolean | null;
|
|
46923
|
+
/**
|
|
46924
|
+
* The midpoint of the grade range.
|
|
46925
|
+
*/
|
|
46926
|
+
defaultPercentage?: number | null;
|
|
46927
|
+
/**
|
|
46928
|
+
* The name of this individual grade.
|
|
46929
|
+
*/
|
|
46930
|
+
displayName?: string | null;
|
|
46931
|
+
/**
|
|
46932
|
+
* The minimum percentage of the total points needed to achieve this grade.
|
|
46933
|
+
*/
|
|
46934
|
+
minPercentage?: number | null;
|
|
46935
|
+
/**
|
|
46936
|
+
* The OdataType property
|
|
46937
|
+
*/
|
|
46938
|
+
odataType?: string | null;
|
|
46939
|
+
}
|
|
46496
46940
|
export interface EducationItemBody extends AdditionalDataHolder, BackedModel, Parsable {
|
|
46497
46941
|
/**
|
|
46498
46942
|
* Stores model information.
|
|
@@ -49824,6 +50268,10 @@ export interface IdentityContainer extends Entity, Parsable {
|
|
|
49824
50268
|
* The identityProviders property
|
|
49825
50269
|
*/
|
|
49826
50270
|
identityProviders?: IdentityProviderBase[] | null;
|
|
50271
|
+
/**
|
|
50272
|
+
* The riskPrevention property
|
|
50273
|
+
*/
|
|
50274
|
+
riskPrevention?: RiskPreventionContainer | null;
|
|
49827
50275
|
/**
|
|
49828
50276
|
* Represents entry point for identity userflow attributes.
|
|
49829
50277
|
*/
|
|
@@ -50805,31 +51253,6 @@ export interface IosCustomConfiguration extends DeviceConfiguration, Parsable {
|
|
|
50805
51253
|
*/
|
|
50806
51254
|
payloadName?: string | null;
|
|
50807
51255
|
}
|
|
50808
|
-
/**
|
|
50809
|
-
* Contains properties used to assign an iOS iOS Declarative Device Management (DDM) Line Of Business (LOB) mobile app to a group.
|
|
50810
|
-
*/
|
|
50811
|
-
export interface IosDdmLobAppAssignmentSettings extends MobileAppAssignmentSettings, Parsable {
|
|
50812
|
-
/**
|
|
50813
|
-
* Domain names to associate with the app
|
|
50814
|
-
*/
|
|
50815
|
-
associatedDomains?: string[] | null;
|
|
50816
|
-
/**
|
|
50817
|
-
* When true, the system allows direct downloads for the AssociatedDomains. When false, the system will not allow direct downloads for the AssociatedDomains. Default is false.
|
|
50818
|
-
*/
|
|
50819
|
-
associatedDomainsDirectDownloadAllowed?: boolean | null;
|
|
50820
|
-
/**
|
|
50821
|
-
* When true, indicates that the app should not be backed up to iCloud. When false, indicates that the app may be backed up to iCloud. Default is false.
|
|
50822
|
-
*/
|
|
50823
|
-
preventManagedAppBackup?: boolean | null;
|
|
50824
|
-
/**
|
|
50825
|
-
* When true, the device locks its screen after every transaction that requires a customer’s card PIN. When false, the user can choose the behavior. Default value is false.
|
|
50826
|
-
*/
|
|
50827
|
-
tapToPayScreenLockEnabled?: boolean | null;
|
|
50828
|
-
/**
|
|
50829
|
-
* The unique identifier of the relay to associate with the app.
|
|
50830
|
-
*/
|
|
50831
|
-
vpnConfigurationId?: string | null;
|
|
50832
|
-
}
|
|
50833
51256
|
/**
|
|
50834
51257
|
* iOS Device Features Configuration Profile.
|
|
50835
51258
|
*/
|
|
@@ -55682,7 +56105,7 @@ export interface Message extends OutlookItem, Parsable {
|
|
|
55682
56105
|
*/
|
|
55683
56106
|
uniqueBody?: ItemBody | null;
|
|
55684
56107
|
/**
|
|
55685
|
-
* The URL to open the message in Outlook on the web.You can append an ispopout argument to the end of the URL to change how the message is displayed. If ispopout is not present or if it is set to 1, then the message is shown in a popout window. If ispopout is set to 0, the browser shows the message in the Outlook on the web review pane.The message opens in the browser if you are signed in to your mailbox via Outlook on the web. You are prompted to sign in if you are not already signed in with the browser.This URL cannot be accessed from within an iFrame.
|
|
56108
|
+
* The URL to open the message in Outlook on the web.You can append an ispopout argument to the end of the URL to change how the message is displayed. If ispopout is not present or if it is set to 1, then the message is shown in a popout window. If ispopout is set to 0, the browser shows the message in the Outlook on the web review pane.The message opens in the browser if you are signed in to your mailbox via Outlook on the web. You are prompted to sign in if you are not already signed in with the browser.This URL cannot be accessed from within an iFrame.NOTE: When using this URL to access a message from a mailbox with delegate permissions, both the signed-in user and the target mailbox must be in the same database region. For example, an error is returned when a user with a mailbox in the EUR (Europe) region attempts to access messages from a mailbox in the NAM (North America) region.
|
|
55686
56109
|
*/
|
|
55687
56110
|
webLink?: string | null;
|
|
55688
56111
|
}
|
|
@@ -64818,6 +65241,24 @@ export interface RiskDetectionCollectionResponse extends BaseCollectionPaginatio
|
|
|
64818
65241
|
export type RiskDetectionTimingType = (typeof RiskDetectionTimingTypeObject)[keyof typeof RiskDetectionTimingTypeObject];
|
|
64819
65242
|
export type RiskEventType = (typeof RiskEventTypeObject)[keyof typeof RiskEventTypeObject];
|
|
64820
65243
|
export type RiskLevel = (typeof RiskLevelObject)[keyof typeof RiskLevelObject];
|
|
65244
|
+
export interface RiskPreventionContainer extends AdditionalDataHolder, BackedModel, Parsable {
|
|
65245
|
+
/**
|
|
65246
|
+
* Stores model information.
|
|
65247
|
+
*/
|
|
65248
|
+
backingStoreEnabled?: boolean | null;
|
|
65249
|
+
/**
|
|
65250
|
+
* The OdataType property
|
|
65251
|
+
*/
|
|
65252
|
+
odataType?: string | null;
|
|
65253
|
+
/**
|
|
65254
|
+
* The webApplicationFirewallProviders property
|
|
65255
|
+
*/
|
|
65256
|
+
webApplicationFirewallProviders?: WebApplicationFirewallProvider[] | null;
|
|
65257
|
+
/**
|
|
65258
|
+
* The webApplicationFirewallVerifications property
|
|
65259
|
+
*/
|
|
65260
|
+
webApplicationFirewallVerifications?: WebApplicationFirewallVerificationModel[] | null;
|
|
65261
|
+
}
|
|
64821
65262
|
export interface RiskServicePrincipalActivity extends AdditionalDataHolder, BackedModel, Parsable {
|
|
64822
65263
|
/**
|
|
64823
65264
|
* Stores model information.
|
|
@@ -67275,6 +67716,41 @@ export declare function serializeAirPrintSettings(writer: SerializationWriter, a
|
|
|
67275
67716
|
* @param writer Serialization writer to use to serialize this model
|
|
67276
67717
|
*/
|
|
67277
67718
|
export declare function serializeAiUser(writer: SerializationWriter, aiUser?: Partial<AiUser> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
67719
|
+
/**
|
|
67720
|
+
* Serializes information the current object
|
|
67721
|
+
* @param AkamaiAttackGroupActionModel The instance to serialize from.
|
|
67722
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
67723
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67724
|
+
*/
|
|
67725
|
+
export declare function serializeAkamaiAttackGroupActionModel(writer: SerializationWriter, akamaiAttackGroupActionModel?: Partial<AkamaiAttackGroupActionModel> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
67726
|
+
/**
|
|
67727
|
+
* Serializes information the current object
|
|
67728
|
+
* @param AkamaiCustomRuleModel The instance to serialize from.
|
|
67729
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
67730
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67731
|
+
*/
|
|
67732
|
+
export declare function serializeAkamaiCustomRuleModel(writer: SerializationWriter, akamaiCustomRuleModel?: Partial<AkamaiCustomRuleModel> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
67733
|
+
/**
|
|
67734
|
+
* Serializes information the current object
|
|
67735
|
+
* @param AkamaiRapidRulesModel The instance to serialize from.
|
|
67736
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
67737
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67738
|
+
*/
|
|
67739
|
+
export declare function serializeAkamaiRapidRulesModel(writer: SerializationWriter, akamaiRapidRulesModel?: Partial<AkamaiRapidRulesModel> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
67740
|
+
/**
|
|
67741
|
+
* Serializes information the current object
|
|
67742
|
+
* @param AkamaiVerifiedDetailsModel The instance to serialize from.
|
|
67743
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
67744
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67745
|
+
*/
|
|
67746
|
+
export declare function serializeAkamaiVerifiedDetailsModel(writer: SerializationWriter, akamaiVerifiedDetailsModel?: Partial<AkamaiVerifiedDetailsModel> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
67747
|
+
/**
|
|
67748
|
+
* Serializes information the current object
|
|
67749
|
+
* @param AkamaiWebApplicationFirewallProvider The instance to serialize from.
|
|
67750
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
67751
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67752
|
+
*/
|
|
67753
|
+
export declare function serializeAkamaiWebApplicationFirewallProvider(writer: SerializationWriter, akamaiWebApplicationFirewallProvider?: Partial<AkamaiWebApplicationFirewallProvider> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
67278
67754
|
/**
|
|
67279
67755
|
* Serializes information the current object
|
|
67280
67756
|
* @param Album The instance to serialize from.
|
|
@@ -69536,6 +70012,34 @@ export declare function serializeCloudClipboardRoot(writer: SerializationWriter,
|
|
|
69536
70012
|
* @param writer Serialization writer to use to serialize this model
|
|
69537
70013
|
*/
|
|
69538
70014
|
export declare function serializeCloudCommunications(writer: SerializationWriter, cloudCommunications?: Partial<CloudCommunications> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
70015
|
+
/**
|
|
70016
|
+
* Serializes information the current object
|
|
70017
|
+
* @param CloudFlareRuleModel The instance to serialize from.
|
|
70018
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
70019
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70020
|
+
*/
|
|
70021
|
+
export declare function serializeCloudFlareRuleModel(writer: SerializationWriter, cloudFlareRuleModel?: Partial<CloudFlareRuleModel> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
70022
|
+
/**
|
|
70023
|
+
* Serializes information the current object
|
|
70024
|
+
* @param CloudFlareRulesetModel The instance to serialize from.
|
|
70025
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
70026
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70027
|
+
*/
|
|
70028
|
+
export declare function serializeCloudFlareRulesetModel(writer: SerializationWriter, cloudFlareRulesetModel?: Partial<CloudFlareRulesetModel> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
70029
|
+
/**
|
|
70030
|
+
* Serializes information the current object
|
|
70031
|
+
* @param CloudFlareVerifiedDetailsModel The instance to serialize from.
|
|
70032
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
70033
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70034
|
+
*/
|
|
70035
|
+
export declare function serializeCloudFlareVerifiedDetailsModel(writer: SerializationWriter, cloudFlareVerifiedDetailsModel?: Partial<CloudFlareVerifiedDetailsModel> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
70036
|
+
/**
|
|
70037
|
+
* Serializes information the current object
|
|
70038
|
+
* @param CloudFlareWebApplicationFirewallProvider The instance to serialize from.
|
|
70039
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
70040
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70041
|
+
*/
|
|
70042
|
+
export declare function serializeCloudFlareWebApplicationFirewallProvider(writer: SerializationWriter, cloudFlareWebApplicationFirewallProvider?: Partial<CloudFlareWebApplicationFirewallProvider> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
69539
70043
|
/**
|
|
69540
70044
|
* Serializes information the current object
|
|
69541
70045
|
* @param CloudPC The instance to serialize from.
|
|
@@ -72112,6 +72616,27 @@ export declare function serializeEducationGradingCategory(writer: SerializationW
|
|
|
72112
72616
|
* @param writer Serialization writer to use to serialize this model
|
|
72113
72617
|
*/
|
|
72114
72618
|
export declare function serializeEducationGradingCategoryCollectionResponse(writer: SerializationWriter, educationGradingCategoryCollectionResponse?: Partial<EducationGradingCategoryCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72619
|
+
/**
|
|
72620
|
+
* Serializes information the current object
|
|
72621
|
+
* @param EducationGradingScheme The instance to serialize from.
|
|
72622
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72623
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72624
|
+
*/
|
|
72625
|
+
export declare function serializeEducationGradingScheme(writer: SerializationWriter, educationGradingScheme?: Partial<EducationGradingScheme> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72626
|
+
/**
|
|
72627
|
+
* Serializes information the current object
|
|
72628
|
+
* @param EducationGradingSchemeCollectionResponse The instance to serialize from.
|
|
72629
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72630
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72631
|
+
*/
|
|
72632
|
+
export declare function serializeEducationGradingSchemeCollectionResponse(writer: SerializationWriter, educationGradingSchemeCollectionResponse?: Partial<EducationGradingSchemeCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72633
|
+
/**
|
|
72634
|
+
* Serializes information the current object
|
|
72635
|
+
* @param EducationGradingSchemeGrade The instance to serialize from.
|
|
72636
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72637
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72638
|
+
*/
|
|
72639
|
+
export declare function serializeEducationGradingSchemeGrade(writer: SerializationWriter, educationGradingSchemeGrade?: Partial<EducationGradingSchemeGrade> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72115
72640
|
/**
|
|
72116
72641
|
* Serializes information the current object
|
|
72117
72642
|
* @param EducationItemBody The instance to serialize from.
|
|
@@ -73729,13 +74254,6 @@ export declare function serializeIosCompliancePolicy(writer: SerializationWriter
|
|
|
73729
74254
|
* @param writer Serialization writer to use to serialize this model
|
|
73730
74255
|
*/
|
|
73731
74256
|
export declare function serializeIosCustomConfiguration(writer: SerializationWriter, iosCustomConfiguration?: Partial<IosCustomConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
73732
|
-
/**
|
|
73733
|
-
* Serializes information the current object
|
|
73734
|
-
* @param IosDdmLobAppAssignmentSettings The instance to serialize from.
|
|
73735
|
-
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
73736
|
-
* @param writer Serialization writer to use to serialize this model
|
|
73737
|
-
*/
|
|
73738
|
-
export declare function serializeIosDdmLobAppAssignmentSettings(writer: SerializationWriter, iosDdmLobAppAssignmentSettings?: Partial<IosDdmLobAppAssignmentSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
73739
74257
|
/**
|
|
73740
74258
|
* Serializes information the current object
|
|
73741
74259
|
* @param IosDeviceFeaturesConfiguration The instance to serialize from.
|
|
@@ -78391,6 +78909,13 @@ export declare function serializeRiskDetection(writer: SerializationWriter, risk
|
|
|
78391
78909
|
* @param writer Serialization writer to use to serialize this model
|
|
78392
78910
|
*/
|
|
78393
78911
|
export declare function serializeRiskDetectionCollectionResponse(writer: SerializationWriter, riskDetectionCollectionResponse?: Partial<RiskDetectionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
78912
|
+
/**
|
|
78913
|
+
* Serializes information the current object
|
|
78914
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
78915
|
+
* @param RiskPreventionContainer The instance to serialize from.
|
|
78916
|
+
* @param writer Serialization writer to use to serialize this model
|
|
78917
|
+
*/
|
|
78918
|
+
export declare function serializeRiskPreventionContainer(writer: SerializationWriter, riskPreventionContainer?: Partial<RiskPreventionContainer> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
78394
78919
|
/**
|
|
78395
78920
|
* Serializes information the current object
|
|
78396
78921
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -82388,6 +82913,55 @@ export declare function serializeWebApp(writer: SerializationWriter, webApp?: Pa
|
|
|
82388
82913
|
* @param writer Serialization writer to use to serialize this model
|
|
82389
82914
|
*/
|
|
82390
82915
|
export declare function serializeWebApplication(writer: SerializationWriter, webApplication?: Partial<WebApplication> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
82916
|
+
/**
|
|
82917
|
+
* Serializes information the current object
|
|
82918
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
82919
|
+
* @param WebApplicationFirewallDnsConfiguration The instance to serialize from.
|
|
82920
|
+
* @param writer Serialization writer to use to serialize this model
|
|
82921
|
+
*/
|
|
82922
|
+
export declare function serializeWebApplicationFirewallDnsConfiguration(writer: SerializationWriter, webApplicationFirewallDnsConfiguration?: Partial<WebApplicationFirewallDnsConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
82923
|
+
/**
|
|
82924
|
+
* Serializes information the current object
|
|
82925
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
82926
|
+
* @param WebApplicationFirewallProvider The instance to serialize from.
|
|
82927
|
+
* @param writer Serialization writer to use to serialize this model
|
|
82928
|
+
*/
|
|
82929
|
+
export declare function serializeWebApplicationFirewallProvider(writer: SerializationWriter, webApplicationFirewallProvider?: Partial<WebApplicationFirewallProvider> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
82930
|
+
/**
|
|
82931
|
+
* Serializes information the current object
|
|
82932
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
82933
|
+
* @param WebApplicationFirewallProviderCollectionResponse The instance to serialize from.
|
|
82934
|
+
* @param writer Serialization writer to use to serialize this model
|
|
82935
|
+
*/
|
|
82936
|
+
export declare function serializeWebApplicationFirewallProviderCollectionResponse(writer: SerializationWriter, webApplicationFirewallProviderCollectionResponse?: Partial<WebApplicationFirewallProviderCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
82937
|
+
/**
|
|
82938
|
+
* Serializes information the current object
|
|
82939
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
82940
|
+
* @param WebApplicationFirewallVerificationModel The instance to serialize from.
|
|
82941
|
+
* @param writer Serialization writer to use to serialize this model
|
|
82942
|
+
*/
|
|
82943
|
+
export declare function serializeWebApplicationFirewallVerificationModel(writer: SerializationWriter, webApplicationFirewallVerificationModel?: Partial<WebApplicationFirewallVerificationModel> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
82944
|
+
/**
|
|
82945
|
+
* Serializes information the current object
|
|
82946
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
82947
|
+
* @param WebApplicationFirewallVerificationModelCollectionResponse The instance to serialize from.
|
|
82948
|
+
* @param writer Serialization writer to use to serialize this model
|
|
82949
|
+
*/
|
|
82950
|
+
export declare function serializeWebApplicationFirewallVerificationModelCollectionResponse(writer: SerializationWriter, webApplicationFirewallVerificationModelCollectionResponse?: Partial<WebApplicationFirewallVerificationModelCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
82951
|
+
/**
|
|
82952
|
+
* Serializes information the current object
|
|
82953
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
82954
|
+
* @param WebApplicationFirewallVerificationResult The instance to serialize from.
|
|
82955
|
+
* @param writer Serialization writer to use to serialize this model
|
|
82956
|
+
*/
|
|
82957
|
+
export declare function serializeWebApplicationFirewallVerificationResult(writer: SerializationWriter, webApplicationFirewallVerificationResult?: Partial<WebApplicationFirewallVerificationResult> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
82958
|
+
/**
|
|
82959
|
+
* Serializes information the current object
|
|
82960
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
82961
|
+
* @param WebApplicationFirewallVerifiedDetails The instance to serialize from.
|
|
82962
|
+
* @param writer Serialization writer to use to serialize this model
|
|
82963
|
+
*/
|
|
82964
|
+
export declare function serializeWebApplicationFirewallVerifiedDetails(writer: SerializationWriter, webApplicationFirewallVerifiedDetails?: Partial<WebApplicationFirewallVerifiedDetails> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
82391
82965
|
/**
|
|
82392
82966
|
* Serializes information the current object
|
|
82393
82967
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -90630,6 +91204,10 @@ export interface User extends DirectoryObject, Parsable {
|
|
|
90630
91204
|
* The cloudClipboard property
|
|
90631
91205
|
*/
|
|
90632
91206
|
cloudClipboard?: CloudClipboardRoot | null;
|
|
91207
|
+
/**
|
|
91208
|
+
* The user's Cloud PCs. Read-only. Nullable.
|
|
91209
|
+
*/
|
|
91210
|
+
cloudPCs?: CloudPC[] | null;
|
|
90633
91211
|
/**
|
|
90634
91212
|
* The name of the company that the user is associated with. This property can be useful for describing the company that a guest comes from. The maximum length is 64 characters.Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).
|
|
90635
91213
|
*/
|
|
@@ -93822,6 +94400,119 @@ export interface WebApplication extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
93822
94400
|
*/
|
|
93823
94401
|
redirectUriSettings?: RedirectUriSettings[] | null;
|
|
93824
94402
|
}
|
|
94403
|
+
export interface WebApplicationFirewallDnsConfiguration extends AdditionalDataHolder, BackedModel, Parsable {
|
|
94404
|
+
/**
|
|
94405
|
+
* Stores model information.
|
|
94406
|
+
*/
|
|
94407
|
+
backingStoreEnabled?: boolean | null;
|
|
94408
|
+
/**
|
|
94409
|
+
* The isDomainVerified property
|
|
94410
|
+
*/
|
|
94411
|
+
isDomainVerified?: boolean | null;
|
|
94412
|
+
/**
|
|
94413
|
+
* The isProxied property
|
|
94414
|
+
*/
|
|
94415
|
+
isProxied?: boolean | null;
|
|
94416
|
+
/**
|
|
94417
|
+
* The name property
|
|
94418
|
+
*/
|
|
94419
|
+
name?: string | null;
|
|
94420
|
+
/**
|
|
94421
|
+
* The OdataType property
|
|
94422
|
+
*/
|
|
94423
|
+
odataType?: string | null;
|
|
94424
|
+
/**
|
|
94425
|
+
* The recordType property
|
|
94426
|
+
*/
|
|
94427
|
+
recordType?: WebApplicationFirewallDnsRecordType | null;
|
|
94428
|
+
/**
|
|
94429
|
+
* The value property
|
|
94430
|
+
*/
|
|
94431
|
+
value?: string | null;
|
|
94432
|
+
}
|
|
94433
|
+
export type WebApplicationFirewallDnsRecordType = (typeof WebApplicationFirewallDnsRecordTypeObject)[keyof typeof WebApplicationFirewallDnsRecordTypeObject];
|
|
94434
|
+
export interface WebApplicationFirewallProvider extends Entity, Parsable {
|
|
94435
|
+
/**
|
|
94436
|
+
* The displayName property
|
|
94437
|
+
*/
|
|
94438
|
+
displayName?: string | null;
|
|
94439
|
+
}
|
|
94440
|
+
export interface WebApplicationFirewallProviderCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
94441
|
+
/**
|
|
94442
|
+
* The value property
|
|
94443
|
+
*/
|
|
94444
|
+
value?: WebApplicationFirewallProvider[] | null;
|
|
94445
|
+
}
|
|
94446
|
+
export type WebApplicationFirewallProviderType = (typeof WebApplicationFirewallProviderTypeObject)[keyof typeof WebApplicationFirewallProviderTypeObject];
|
|
94447
|
+
export interface WebApplicationFirewallVerificationModel extends Entity, Parsable {
|
|
94448
|
+
/**
|
|
94449
|
+
* The provider property
|
|
94450
|
+
*/
|
|
94451
|
+
provider?: WebApplicationFirewallProvider | null;
|
|
94452
|
+
/**
|
|
94453
|
+
* The providerType property
|
|
94454
|
+
*/
|
|
94455
|
+
providerType?: WebApplicationFirewallProviderType | null;
|
|
94456
|
+
/**
|
|
94457
|
+
* The verificationResult property
|
|
94458
|
+
*/
|
|
94459
|
+
verificationResult?: WebApplicationFirewallVerificationResult | null;
|
|
94460
|
+
/**
|
|
94461
|
+
* The verifiedDetails property
|
|
94462
|
+
*/
|
|
94463
|
+
verifiedDetails?: WebApplicationFirewallVerifiedDetails | null;
|
|
94464
|
+
/**
|
|
94465
|
+
* The verifiedHost property
|
|
94466
|
+
*/
|
|
94467
|
+
verifiedHost?: string | null;
|
|
94468
|
+
}
|
|
94469
|
+
export interface WebApplicationFirewallVerificationModelCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
94470
|
+
/**
|
|
94471
|
+
* The value property
|
|
94472
|
+
*/
|
|
94473
|
+
value?: WebApplicationFirewallVerificationModel[] | null;
|
|
94474
|
+
}
|
|
94475
|
+
export interface WebApplicationFirewallVerificationResult extends AdditionalDataHolder, BackedModel, Parsable {
|
|
94476
|
+
/**
|
|
94477
|
+
* Stores model information.
|
|
94478
|
+
*/
|
|
94479
|
+
backingStoreEnabled?: boolean | null;
|
|
94480
|
+
/**
|
|
94481
|
+
* The errors property
|
|
94482
|
+
*/
|
|
94483
|
+
errors?: GenericError[] | null;
|
|
94484
|
+
/**
|
|
94485
|
+
* The OdataType property
|
|
94486
|
+
*/
|
|
94487
|
+
odataType?: string | null;
|
|
94488
|
+
/**
|
|
94489
|
+
* The status property
|
|
94490
|
+
*/
|
|
94491
|
+
status?: WebApplicationFirewallVerificationStatus | null;
|
|
94492
|
+
/**
|
|
94493
|
+
* The verifiedOnDateTime property
|
|
94494
|
+
*/
|
|
94495
|
+
verifiedOnDateTime?: Date | null;
|
|
94496
|
+
/**
|
|
94497
|
+
* The warnings property
|
|
94498
|
+
*/
|
|
94499
|
+
warnings?: GenericError[] | null;
|
|
94500
|
+
}
|
|
94501
|
+
export type WebApplicationFirewallVerificationStatus = (typeof WebApplicationFirewallVerificationStatusObject)[keyof typeof WebApplicationFirewallVerificationStatusObject];
|
|
94502
|
+
export interface WebApplicationFirewallVerifiedDetails extends AdditionalDataHolder, BackedModel, Parsable {
|
|
94503
|
+
/**
|
|
94504
|
+
* Stores model information.
|
|
94505
|
+
*/
|
|
94506
|
+
backingStoreEnabled?: boolean | null;
|
|
94507
|
+
/**
|
|
94508
|
+
* The dnsConfiguration property
|
|
94509
|
+
*/
|
|
94510
|
+
dnsConfiguration?: WebApplicationFirewallDnsConfiguration | null;
|
|
94511
|
+
/**
|
|
94512
|
+
* The OdataType property
|
|
94513
|
+
*/
|
|
94514
|
+
odataType?: string | null;
|
|
94515
|
+
}
|
|
93825
94516
|
export type WebBrowserCookieSettings = (typeof WebBrowserCookieSettingsObject)[keyof typeof WebBrowserCookieSettingsObject];
|
|
93826
94517
|
export interface WebPart extends Entity, Parsable {
|
|
93827
94518
|
}
|
|
@@ -104898,6 +105589,21 @@ export declare const WeakAlgorithmsObject: {
|
|
|
104898
105589
|
readonly RsaSha1: "rsaSha1";
|
|
104899
105590
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
104900
105591
|
};
|
|
105592
|
+
export declare const WebApplicationFirewallDnsRecordTypeObject: {
|
|
105593
|
+
readonly Cname: "cname";
|
|
105594
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
105595
|
+
};
|
|
105596
|
+
export declare const WebApplicationFirewallProviderTypeObject: {
|
|
105597
|
+
readonly Akamai: "akamai";
|
|
105598
|
+
readonly Cloudflare: "cloudflare";
|
|
105599
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
105600
|
+
};
|
|
105601
|
+
export declare const WebApplicationFirewallVerificationStatusObject: {
|
|
105602
|
+
readonly Success: "success";
|
|
105603
|
+
readonly Warning: "warning";
|
|
105604
|
+
readonly Failure: "failure";
|
|
105605
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
105606
|
+
};
|
|
104901
105607
|
/**
|
|
104902
105608
|
* Web Browser Cookie Settings.
|
|
104903
105609
|
*/
|