@microsoft/typespec-msgraph-reference 1.0.0 → 1.0.2
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/.rush/temp/package-deps_build.json +18 -18
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +4107 -1560
- package/lib/Bleu/V1.0/main.tsp +2646 -643
- package/lib/Delos/Beta/main.tsp +1314 -116
- package/lib/Delos/V1.0/main.tsp +1119 -72
- package/lib/Fairfax/Beta/main.tsp +8944 -8247
- package/lib/Fairfax/V1.0/main.tsp +4665 -4208
- package/lib/GovSG/Beta/main.tsp +121 -116
- package/lib/GovSG/V1.0/main.tsp +73 -72
- package/lib/Mooncake/Beta/main.tsp +5896 -5275
- package/lib/Mooncake/V1.0/main.tsp +2204 -2191
- package/lib/Prod/Beta/main.tsp +12641 -11564
- package/lib/Prod/V1.0/main.tsp +5446 -5359
- package/lib/USNat/Beta/main.tsp +2383 -2375
- package/lib/USNat/V1.0/main.tsp +1889 -1876
- package/lib/USSec/Beta/main.tsp +2403 -2395
- package/lib/USSec/V1.0/main.tsp +1855 -1842
- package/package.json +2 -2
package/lib/USNat/V1.0/main.tsp
CHANGED
|
@@ -2253,6 +2253,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2253
2253
|
value: string | null;
|
|
2254
2254
|
}
|
|
2255
2255
|
|
|
2256
|
+
@complex model openIdConnectSetting {
|
|
2257
|
+
clientId: string;
|
|
2258
|
+
discoveryUrl: string;
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2256
2261
|
@complex model operationError {
|
|
2257
2262
|
code: string | null;
|
|
2258
2263
|
message: string | null;
|
|
@@ -5112,7 +5117,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5112
5117
|
}
|
|
5113
5118
|
|
|
5114
5119
|
@abstract
|
|
5115
|
-
@entity model entity
|
|
5120
|
+
@entity model entity {
|
|
5116
5121
|
@computed @key id: string;
|
|
5117
5122
|
}
|
|
5118
5123
|
|
|
@@ -5256,6 +5261,13 @@ namespace reference.`microsoft.graph` {
|
|
|
5256
5261
|
targetObjects: string[];
|
|
5257
5262
|
}
|
|
5258
5263
|
|
|
5264
|
+
@entity model externalAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
5265
|
+
appId: string;
|
|
5266
|
+
displayName: string;
|
|
5267
|
+
openIdConnectSetting: openIdConnectSetting;
|
|
5268
|
+
@contains includeTargets: authenticationMethodTarget[];
|
|
5269
|
+
}
|
|
5270
|
+
|
|
5259
5271
|
@entity model externalDomainName extends entity {
|
|
5260
5272
|
}
|
|
5261
5273
|
|
|
@@ -7314,6 +7326,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7314
7326
|
@references registeredDevices: directoryObject[];
|
|
7315
7327
|
@contains scopedRoleMemberOf: scopedRoleMembership[];
|
|
7316
7328
|
@contains settings: userSettings | null;
|
|
7329
|
+
@references sponsors: directoryObject[];
|
|
7317
7330
|
@contains teamwork: userTeamwork | null;
|
|
7318
7331
|
@contains todo: todo | null;
|
|
7319
7332
|
@references transitiveMemberOf: directoryObject[];
|
|
@@ -7403,2452 +7416,2452 @@ namespace reference.`microsoft.graph` {
|
|
|
7403
7416
|
}
|
|
7404
7417
|
|
|
7405
7418
|
enum accessPackageAssignmentFilterByCurrentUserOptions {
|
|
7406
|
-
target,
|
|
7407
|
-
createdBy,
|
|
7408
|
-
unknownFutureValue,
|
|
7419
|
+
target: 1,
|
|
7420
|
+
createdBy: 2,
|
|
7421
|
+
unknownFutureValue: 99,
|
|
7409
7422
|
}
|
|
7410
7423
|
|
|
7411
7424
|
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
7412
|
-
target,
|
|
7413
|
-
createdBy,
|
|
7414
|
-
approver,
|
|
7415
|
-
unknownFutureValue,
|
|
7425
|
+
target: 1,
|
|
7426
|
+
createdBy: 2,
|
|
7427
|
+
approver: 3,
|
|
7428
|
+
unknownFutureValue: 99,
|
|
7416
7429
|
}
|
|
7417
7430
|
|
|
7418
7431
|
enum accessPackageAssignmentState {
|
|
7419
|
-
delivering,
|
|
7420
|
-
partiallyDelivered,
|
|
7421
|
-
delivered,
|
|
7422
|
-
expired,
|
|
7423
|
-
deliveryFailed,
|
|
7424
|
-
unknownFutureValue,
|
|
7432
|
+
delivering: 0,
|
|
7433
|
+
partiallyDelivered: 1,
|
|
7434
|
+
delivered: 2,
|
|
7435
|
+
expired: 3,
|
|
7436
|
+
deliveryFailed: 4,
|
|
7437
|
+
unknownFutureValue: 5,
|
|
7425
7438
|
}
|
|
7426
7439
|
|
|
7427
7440
|
enum accessPackageCatalogState {
|
|
7428
|
-
unpublished,
|
|
7429
|
-
published,
|
|
7430
|
-
unknownFutureValue,
|
|
7441
|
+
unpublished: 1,
|
|
7442
|
+
published: 2,
|
|
7443
|
+
unknownFutureValue: 3,
|
|
7431
7444
|
}
|
|
7432
7445
|
|
|
7433
7446
|
enum accessPackageCatalogType {
|
|
7434
|
-
userManaged,
|
|
7435
|
-
serviceDefault,
|
|
7436
|
-
serviceManaged,
|
|
7437
|
-
unknownFutureValue,
|
|
7447
|
+
userManaged: 1,
|
|
7448
|
+
serviceDefault: 2,
|
|
7449
|
+
serviceManaged: 3,
|
|
7450
|
+
unknownFutureValue: 4,
|
|
7438
7451
|
}
|
|
7439
7452
|
|
|
7440
7453
|
enum accessPackageCustomExtensionStage {
|
|
7441
|
-
assignmentRequestCreated,
|
|
7442
|
-
assignmentRequestApproved,
|
|
7443
|
-
assignmentRequestGranted,
|
|
7444
|
-
assignmentRequestRemoved,
|
|
7445
|
-
assignmentFourteenDaysBeforeExpiration,
|
|
7446
|
-
assignmentOneDayBeforeExpiration,
|
|
7447
|
-
unknownFutureValue,
|
|
7454
|
+
assignmentRequestCreated: 1,
|
|
7455
|
+
assignmentRequestApproved: 2,
|
|
7456
|
+
assignmentRequestGranted: 3,
|
|
7457
|
+
assignmentRequestRemoved: 4,
|
|
7458
|
+
assignmentFourteenDaysBeforeExpiration: 5,
|
|
7459
|
+
assignmentOneDayBeforeExpiration: 6,
|
|
7460
|
+
unknownFutureValue: 7,
|
|
7448
7461
|
}
|
|
7449
7462
|
|
|
7450
7463
|
enum accessPackageExternalUserLifecycleAction {
|
|
7451
|
-
none,
|
|
7452
|
-
blockSignIn,
|
|
7453
|
-
blockSignInAndDelete,
|
|
7454
|
-
unknownFutureValue,
|
|
7464
|
+
none: 0,
|
|
7465
|
+
blockSignIn: 1,
|
|
7466
|
+
blockSignInAndDelete: 2,
|
|
7467
|
+
unknownFutureValue: 3,
|
|
7455
7468
|
}
|
|
7456
7469
|
|
|
7457
7470
|
enum accessPackageFilterByCurrentUserOptions {
|
|
7458
|
-
allowedRequestor,
|
|
7459
|
-
unknownFutureValue,
|
|
7471
|
+
allowedRequestor: 1,
|
|
7472
|
+
unknownFutureValue: 99,
|
|
7460
7473
|
}
|
|
7461
7474
|
|
|
7462
7475
|
enum accessPackageRequestState {
|
|
7463
|
-
submitted,
|
|
7464
|
-
pendingApproval,
|
|
7465
|
-
delivering,
|
|
7466
|
-
delivered,
|
|
7467
|
-
deliveryFailed,
|
|
7468
|
-
denied,
|
|
7469
|
-
scheduled,
|
|
7470
|
-
canceled,
|
|
7471
|
-
partiallyDelivered,
|
|
7472
|
-
unknownFutureValue,
|
|
7476
|
+
submitted: 0,
|
|
7477
|
+
pendingApproval: 1,
|
|
7478
|
+
delivering: 2,
|
|
7479
|
+
delivered: 3,
|
|
7480
|
+
deliveryFailed: 4,
|
|
7481
|
+
denied: 5,
|
|
7482
|
+
scheduled: 6,
|
|
7483
|
+
canceled: 7,
|
|
7484
|
+
partiallyDelivered: 8,
|
|
7485
|
+
unknownFutureValue: 9,
|
|
7473
7486
|
}
|
|
7474
7487
|
|
|
7475
7488
|
enum accessPackageRequestType {
|
|
7476
|
-
notSpecified,
|
|
7477
|
-
userAdd,
|
|
7478
|
-
userUpdate,
|
|
7479
|
-
userRemove,
|
|
7480
|
-
adminAdd,
|
|
7481
|
-
adminUpdate,
|
|
7482
|
-
adminRemove,
|
|
7483
|
-
systemAdd,
|
|
7484
|
-
systemUpdate,
|
|
7485
|
-
systemRemove,
|
|
7486
|
-
onBehalfAdd,
|
|
7487
|
-
unknownFutureValue,
|
|
7489
|
+
notSpecified: 0,
|
|
7490
|
+
userAdd: 1,
|
|
7491
|
+
userUpdate: 2,
|
|
7492
|
+
userRemove: 3,
|
|
7493
|
+
adminAdd: 4,
|
|
7494
|
+
adminUpdate: 5,
|
|
7495
|
+
adminRemove: 6,
|
|
7496
|
+
systemAdd: 7,
|
|
7497
|
+
systemUpdate: 8,
|
|
7498
|
+
systemRemove: 9,
|
|
7499
|
+
onBehalfAdd: 10,
|
|
7500
|
+
unknownFutureValue: 11,
|
|
7488
7501
|
}
|
|
7489
7502
|
|
|
7490
7503
|
enum accessPackageSubjectType {
|
|
7491
|
-
notSpecified,
|
|
7492
|
-
user,
|
|
7493
|
-
servicePrincipal,
|
|
7494
|
-
unknownFutureValue,
|
|
7504
|
+
notSpecified: 0,
|
|
7505
|
+
user: 1,
|
|
7506
|
+
servicePrincipal: 2,
|
|
7507
|
+
unknownFutureValue: 3,
|
|
7495
7508
|
}
|
|
7496
7509
|
|
|
7497
7510
|
enum accessReviewExpirationBehavior {
|
|
7498
|
-
keepAccess,
|
|
7499
|
-
removeAccess,
|
|
7500
|
-
acceptAccessRecommendation,
|
|
7501
|
-
unknownFutureValue,
|
|
7511
|
+
keepAccess: 0,
|
|
7512
|
+
removeAccess: 1,
|
|
7513
|
+
acceptAccessRecommendation: 2,
|
|
7514
|
+
unknownFutureValue: 99,
|
|
7502
7515
|
}
|
|
7503
7516
|
|
|
7504
7517
|
enum accessReviewHistoryDecisionFilter {
|
|
7505
|
-
approve,
|
|
7506
|
-
deny,
|
|
7507
|
-
notReviewed,
|
|
7508
|
-
dontKnow,
|
|
7509
|
-
notNotified,
|
|
7510
|
-
unknownFutureValue,
|
|
7518
|
+
approve: 0,
|
|
7519
|
+
deny: 1,
|
|
7520
|
+
notReviewed: 2,
|
|
7521
|
+
dontKnow: 3,
|
|
7522
|
+
notNotified: 4,
|
|
7523
|
+
unknownFutureValue: 5,
|
|
7511
7524
|
}
|
|
7512
7525
|
|
|
7513
7526
|
enum accessReviewHistoryStatus {
|
|
7514
|
-
done,
|
|
7515
|
-
inprogress,
|
|
7516
|
-
error,
|
|
7517
|
-
requested,
|
|
7518
|
-
unknownFutureValue,
|
|
7527
|
+
done: 0,
|
|
7528
|
+
inprogress: 1,
|
|
7529
|
+
error: 2,
|
|
7530
|
+
requested: 3,
|
|
7531
|
+
unknownFutureValue: 4,
|
|
7519
7532
|
}
|
|
7520
7533
|
|
|
7521
7534
|
enum accessReviewInstanceDecisionItemFilterByCurrentUserOptions {
|
|
7522
|
-
reviewer,
|
|
7523
|
-
unknownFutureValue,
|
|
7535
|
+
reviewer: 1,
|
|
7536
|
+
unknownFutureValue: 2,
|
|
7524
7537
|
}
|
|
7525
7538
|
|
|
7526
7539
|
enum accessReviewInstanceFilterByCurrentUserOptions {
|
|
7527
|
-
reviewer,
|
|
7528
|
-
unknownFutureValue,
|
|
7540
|
+
reviewer: 1,
|
|
7541
|
+
unknownFutureValue: 2,
|
|
7529
7542
|
}
|
|
7530
7543
|
|
|
7531
7544
|
enum accessReviewScheduleDefinitionFilterByCurrentUserOptions {
|
|
7532
|
-
reviewer,
|
|
7533
|
-
unknownFutureValue,
|
|
7545
|
+
reviewer: 1,
|
|
7546
|
+
unknownFutureValue: 2,
|
|
7534
7547
|
}
|
|
7535
7548
|
|
|
7536
7549
|
enum accessReviewStageFilterByCurrentUserOptions {
|
|
7537
|
-
reviewer,
|
|
7538
|
-
unknownFutureValue,
|
|
7550
|
+
reviewer: 1,
|
|
7551
|
+
unknownFutureValue: 2,
|
|
7539
7552
|
}
|
|
7540
7553
|
|
|
7541
7554
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7542
7555
|
enum accessScope {
|
|
7543
|
-
inOrganization,
|
|
7544
|
-
notInOrganization,
|
|
7556
|
+
inOrganization: 0,
|
|
7557
|
+
notInOrganization: 1,
|
|
7545
7558
|
}
|
|
7546
7559
|
|
|
7547
7560
|
enum activityType {
|
|
7548
|
-
signin,
|
|
7549
|
-
user,
|
|
7550
|
-
unknownFutureValue,
|
|
7551
|
-
servicePrincipal,
|
|
7561
|
+
signin: 0,
|
|
7562
|
+
user: 1,
|
|
7563
|
+
unknownFutureValue: 2,
|
|
7564
|
+
servicePrincipal: 3,
|
|
7552
7565
|
}
|
|
7553
7566
|
|
|
7554
7567
|
enum advancedConfigState {
|
|
7555
|
-
default,
|
|
7556
|
-
enabled,
|
|
7557
|
-
disabled,
|
|
7558
|
-
unknownFutureValue,
|
|
7568
|
+
default: 0,
|
|
7569
|
+
enabled: 1,
|
|
7570
|
+
disabled: 2,
|
|
7571
|
+
unknownFutureValue: 3,
|
|
7559
7572
|
}
|
|
7560
7573
|
|
|
7561
7574
|
enum agreementAcceptanceState {
|
|
7562
|
-
accepted,
|
|
7563
|
-
declined,
|
|
7564
|
-
unknownFutureValue,
|
|
7575
|
+
accepted: 2,
|
|
7576
|
+
declined: 3,
|
|
7577
|
+
unknownFutureValue: 5,
|
|
7565
7578
|
}
|
|
7566
7579
|
|
|
7567
7580
|
enum alertFeedback {
|
|
7568
|
-
`unknown
|
|
7569
|
-
truePositive,
|
|
7570
|
-
falsePositive,
|
|
7571
|
-
benignPositive,
|
|
7572
|
-
unknownFutureValue,
|
|
7581
|
+
`unknown`: 0,
|
|
7582
|
+
truePositive: 1,
|
|
7583
|
+
falsePositive: 2,
|
|
7584
|
+
benignPositive: 3,
|
|
7585
|
+
unknownFutureValue: 127,
|
|
7573
7586
|
}
|
|
7574
7587
|
|
|
7575
7588
|
enum alertSeverity {
|
|
7576
|
-
`unknown
|
|
7577
|
-
informational,
|
|
7578
|
-
low,
|
|
7579
|
-
medium,
|
|
7580
|
-
high,
|
|
7581
|
-
unknownFutureValue,
|
|
7589
|
+
`unknown`: 0,
|
|
7590
|
+
informational: 1,
|
|
7591
|
+
low: 2,
|
|
7592
|
+
medium: 3,
|
|
7593
|
+
high: 4,
|
|
7594
|
+
unknownFutureValue: 127,
|
|
7582
7595
|
}
|
|
7583
7596
|
|
|
7584
7597
|
enum alertStatus {
|
|
7585
|
-
`unknown
|
|
7586
|
-
newAlert,
|
|
7587
|
-
inProgress,
|
|
7588
|
-
resolved,
|
|
7589
|
-
dismissed,
|
|
7590
|
-
unknownFutureValue,
|
|
7598
|
+
`unknown`: 0,
|
|
7599
|
+
newAlert: 1,
|
|
7600
|
+
inProgress: 2,
|
|
7601
|
+
resolved: 3,
|
|
7602
|
+
dismissed: 4,
|
|
7603
|
+
unknownFutureValue: 127,
|
|
7591
7604
|
}
|
|
7592
7605
|
|
|
7593
7606
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7594
7607
|
enum alignment {
|
|
7595
|
-
left,
|
|
7596
|
-
right,
|
|
7597
|
-
center,
|
|
7608
|
+
left: 0,
|
|
7609
|
+
right: 1,
|
|
7610
|
+
center: 2,
|
|
7598
7611
|
}
|
|
7599
7612
|
|
|
7600
7613
|
enum allowedTargetScope {
|
|
7601
|
-
notSpecified,
|
|
7602
|
-
specificDirectoryUsers,
|
|
7603
|
-
specificConnectedOrganizationUsers,
|
|
7604
|
-
specificDirectoryServicePrincipals,
|
|
7605
|
-
allMemberUsers,
|
|
7606
|
-
allDirectoryUsers,
|
|
7607
|
-
allDirectoryServicePrincipals,
|
|
7608
|
-
allConfiguredConnectedOrganizationUsers,
|
|
7609
|
-
allExternalUsers,
|
|
7610
|
-
unknownFutureValue,
|
|
7614
|
+
notSpecified: 0,
|
|
7615
|
+
specificDirectoryUsers: 1,
|
|
7616
|
+
specificConnectedOrganizationUsers: 2,
|
|
7617
|
+
specificDirectoryServicePrincipals: 3,
|
|
7618
|
+
allMemberUsers: 4,
|
|
7619
|
+
allDirectoryUsers: 5,
|
|
7620
|
+
allDirectoryServicePrincipals: 6,
|
|
7621
|
+
allConfiguredConnectedOrganizationUsers: 7,
|
|
7622
|
+
allExternalUsers: 8,
|
|
7623
|
+
unknownFutureValue: 10,
|
|
7611
7624
|
}
|
|
7612
7625
|
|
|
7613
7626
|
enum allowInvitesFrom {
|
|
7614
|
-
none,
|
|
7615
|
-
adminsAndGuestInviters,
|
|
7616
|
-
adminsGuestInvitersAndAllMembers,
|
|
7617
|
-
everyone,
|
|
7618
|
-
unknownFutureValue,
|
|
7627
|
+
none: 0,
|
|
7628
|
+
adminsAndGuestInviters: 1,
|
|
7629
|
+
adminsGuestInvitersAndAllMembers: 2,
|
|
7630
|
+
everyone: 3,
|
|
7631
|
+
unknownFutureValue: 4,
|
|
7619
7632
|
}
|
|
7620
7633
|
|
|
7621
7634
|
enum appCredentialRestrictionType {
|
|
7622
|
-
passwordAddition,
|
|
7623
|
-
passwordLifetime,
|
|
7624
|
-
symmetricKeyAddition,
|
|
7625
|
-
symmetricKeyLifetime,
|
|
7626
|
-
customPasswordAddition,
|
|
7627
|
-
unknownFutureValue,
|
|
7635
|
+
passwordAddition: 0,
|
|
7636
|
+
passwordLifetime: 1,
|
|
7637
|
+
symmetricKeyAddition: 2,
|
|
7638
|
+
symmetricKeyLifetime: 3,
|
|
7639
|
+
customPasswordAddition: 4,
|
|
7640
|
+
unknownFutureValue: 99,
|
|
7628
7641
|
}
|
|
7629
7642
|
|
|
7630
7643
|
enum appKeyCredentialRestrictionType {
|
|
7631
|
-
asymmetricKeyLifetime,
|
|
7632
|
-
unknownFutureValue,
|
|
7644
|
+
asymmetricKeyLifetime: 0,
|
|
7645
|
+
unknownFutureValue: 99,
|
|
7633
7646
|
}
|
|
7634
7647
|
|
|
7635
7648
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7636
7649
|
enum applicationMode {
|
|
7637
|
-
manual,
|
|
7638
|
-
automatic,
|
|
7639
|
-
recommended,
|
|
7650
|
+
manual: 0,
|
|
7651
|
+
automatic: 1,
|
|
7652
|
+
recommended: 2,
|
|
7640
7653
|
}
|
|
7641
7654
|
|
|
7642
7655
|
enum appliedConditionalAccessPolicyResult {
|
|
7643
|
-
success,
|
|
7644
|
-
failure,
|
|
7645
|
-
notApplied,
|
|
7646
|
-
notEnabled,
|
|
7647
|
-
`unknown
|
|
7648
|
-
unknownFutureValue,
|
|
7649
|
-
reportOnlySuccess,
|
|
7650
|
-
reportOnlyFailure,
|
|
7651
|
-
reportOnlyNotApplied,
|
|
7652
|
-
reportOnlyInterrupted,
|
|
7656
|
+
success: 0,
|
|
7657
|
+
failure: 1,
|
|
7658
|
+
notApplied: 2,
|
|
7659
|
+
notEnabled: 3,
|
|
7660
|
+
`unknown`: 4,
|
|
7661
|
+
unknownFutureValue: 5,
|
|
7662
|
+
reportOnlySuccess: 6,
|
|
7663
|
+
reportOnlyFailure: 7,
|
|
7664
|
+
reportOnlyNotApplied: 8,
|
|
7665
|
+
reportOnlyInterrupted: 9,
|
|
7653
7666
|
}
|
|
7654
7667
|
|
|
7655
7668
|
enum approvalFilterByCurrentUserOptions {
|
|
7656
|
-
target,
|
|
7657
|
-
createdBy,
|
|
7658
|
-
approver,
|
|
7659
|
-
unknownFutureValue,
|
|
7669
|
+
target: 0,
|
|
7670
|
+
createdBy: 1,
|
|
7671
|
+
approver: 2,
|
|
7672
|
+
unknownFutureValue: 3,
|
|
7660
7673
|
}
|
|
7661
7674
|
|
|
7662
7675
|
enum assignmentScheduleFilterByCurrentUserOptions {
|
|
7663
|
-
principal,
|
|
7664
|
-
unknownFutureValue,
|
|
7676
|
+
principal: 1,
|
|
7677
|
+
unknownFutureValue: 2,
|
|
7665
7678
|
}
|
|
7666
7679
|
|
|
7667
7680
|
enum assignmentScheduleInstanceFilterByCurrentUserOptions {
|
|
7668
|
-
principal,
|
|
7669
|
-
unknownFutureValue,
|
|
7681
|
+
principal: 1,
|
|
7682
|
+
unknownFutureValue: 2,
|
|
7670
7683
|
}
|
|
7671
7684
|
|
|
7672
7685
|
enum assignmentScheduleRequestFilterByCurrentUserOptions {
|
|
7673
|
-
principal,
|
|
7674
|
-
createdBy,
|
|
7675
|
-
approver,
|
|
7676
|
-
unknownFutureValue,
|
|
7686
|
+
principal: 1,
|
|
7687
|
+
createdBy: 2,
|
|
7688
|
+
approver: 3,
|
|
7689
|
+
unknownFutureValue: 4,
|
|
7677
7690
|
}
|
|
7678
7691
|
|
|
7679
7692
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7680
7693
|
enum attachmentType {
|
|
7681
|
-
file,
|
|
7682
|
-
item,
|
|
7683
|
-
reference,
|
|
7694
|
+
file: 0,
|
|
7695
|
+
item: 1,
|
|
7696
|
+
reference: 2,
|
|
7684
7697
|
}
|
|
7685
7698
|
|
|
7686
7699
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7687
7700
|
enum attendeeType {
|
|
7688
|
-
required,
|
|
7689
|
-
optional,
|
|
7690
|
-
resource,
|
|
7701
|
+
required: 0,
|
|
7702
|
+
optional: 1,
|
|
7703
|
+
resource: 2,
|
|
7691
7704
|
}
|
|
7692
7705
|
|
|
7693
7706
|
enum attestationLevel {
|
|
7694
|
-
attested,
|
|
7695
|
-
notAttested,
|
|
7696
|
-
unknownFutureValue,
|
|
7707
|
+
attested: 0,
|
|
7708
|
+
notAttested: 1,
|
|
7709
|
+
unknownFutureValue: 2,
|
|
7697
7710
|
}
|
|
7698
7711
|
|
|
7699
7712
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7700
7713
|
enum attributeDefinitionMetadata {
|
|
7701
|
-
BaseAttributeName,
|
|
7702
|
-
ComplexObjectDefinition,
|
|
7703
|
-
IsContainer,
|
|
7704
|
-
IsCustomerDefined,
|
|
7705
|
-
IsDomainQualified,
|
|
7706
|
-
LinkPropertyNames,
|
|
7707
|
-
LinkTypeName,
|
|
7708
|
-
MaximumLength,
|
|
7709
|
-
ReferencedProperty,
|
|
7714
|
+
BaseAttributeName: 0,
|
|
7715
|
+
ComplexObjectDefinition: 1,
|
|
7716
|
+
IsContainer: 2,
|
|
7717
|
+
IsCustomerDefined: 3,
|
|
7718
|
+
IsDomainQualified: 4,
|
|
7719
|
+
LinkPropertyNames: 5,
|
|
7720
|
+
LinkTypeName: 6,
|
|
7721
|
+
MaximumLength: 7,
|
|
7722
|
+
ReferencedProperty: 8,
|
|
7710
7723
|
}
|
|
7711
7724
|
|
|
7712
7725
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7713
7726
|
enum attributeFlowBehavior {
|
|
7714
|
-
FlowWhenChanged,
|
|
7715
|
-
FlowAlways,
|
|
7727
|
+
FlowWhenChanged: 0,
|
|
7728
|
+
FlowAlways: 1,
|
|
7716
7729
|
}
|
|
7717
7730
|
|
|
7718
7731
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7719
7732
|
enum attributeFlowType {
|
|
7720
|
-
Always,
|
|
7721
|
-
ObjectAddOnly,
|
|
7722
|
-
MultiValueAddOnly,
|
|
7733
|
+
Always: 0,
|
|
7734
|
+
ObjectAddOnly: 1,
|
|
7735
|
+
MultiValueAddOnly: 2,
|
|
7723
7736
|
}
|
|
7724
7737
|
|
|
7725
7738
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7726
7739
|
enum attributeMappingSourceType {
|
|
7727
|
-
Attribute,
|
|
7728
|
-
Constant,
|
|
7729
|
-
Function,
|
|
7740
|
+
Attribute: 0,
|
|
7741
|
+
Constant: 1,
|
|
7742
|
+
Function: 2,
|
|
7730
7743
|
}
|
|
7731
7744
|
|
|
7732
7745
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7733
7746
|
enum attributeType {
|
|
7734
|
-
`String
|
|
7735
|
-
`Integer
|
|
7736
|
-
Reference,
|
|
7737
|
-
Binary,
|
|
7738
|
-
`Boolean
|
|
7739
|
-
DateTime,
|
|
7747
|
+
`String`: 0,
|
|
7748
|
+
`Integer`: 1,
|
|
7749
|
+
Reference: 2,
|
|
7750
|
+
Binary: 3,
|
|
7751
|
+
`Boolean`: 4,
|
|
7752
|
+
DateTime: 5,
|
|
7740
7753
|
}
|
|
7741
7754
|
|
|
7742
7755
|
enum authenticationMethodFeature {
|
|
7743
|
-
ssprRegistered,
|
|
7744
|
-
ssprEnabled,
|
|
7745
|
-
ssprCapable,
|
|
7746
|
-
passwordlessCapable,
|
|
7747
|
-
mfaCapable,
|
|
7748
|
-
unknownFutureValue,
|
|
7756
|
+
ssprRegistered: 0,
|
|
7757
|
+
ssprEnabled: 1,
|
|
7758
|
+
ssprCapable: 2,
|
|
7759
|
+
passwordlessCapable: 3,
|
|
7760
|
+
mfaCapable: 4,
|
|
7761
|
+
unknownFutureValue: 5,
|
|
7749
7762
|
}
|
|
7750
7763
|
|
|
7751
7764
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7752
7765
|
enum authenticationMethodKeyStrength {
|
|
7753
|
-
normal,
|
|
7754
|
-
weak,
|
|
7755
|
-
`unknown
|
|
7766
|
+
normal: 0,
|
|
7767
|
+
weak: 1,
|
|
7768
|
+
`unknown`: 2,
|
|
7756
7769
|
}
|
|
7757
7770
|
|
|
7758
7771
|
@graphFlags
|
|
7759
7772
|
enum authenticationMethodModes {
|
|
7760
|
-
password,
|
|
7761
|
-
voice,
|
|
7762
|
-
hardwareOath,
|
|
7763
|
-
softwareOath,
|
|
7764
|
-
sms,
|
|
7765
|
-
fido2,
|
|
7766
|
-
windowsHelloForBusiness,
|
|
7767
|
-
microsoftAuthenticatorPush,
|
|
7768
|
-
deviceBasedPush,
|
|
7769
|
-
temporaryAccessPassOneTime,
|
|
7770
|
-
temporaryAccessPassMultiUse,
|
|
7771
|
-
email,
|
|
7772
|
-
x509CertificateSingleFactor,
|
|
7773
|
-
x509CertificateMultiFactor,
|
|
7774
|
-
federatedSingleFactor,
|
|
7775
|
-
federatedMultiFactor,
|
|
7776
|
-
unknownFutureValue,
|
|
7773
|
+
password: 1,
|
|
7774
|
+
voice: 2,
|
|
7775
|
+
hardwareOath: 4,
|
|
7776
|
+
softwareOath: 8,
|
|
7777
|
+
sms: 16,
|
|
7778
|
+
fido2: 32,
|
|
7779
|
+
windowsHelloForBusiness: 64,
|
|
7780
|
+
microsoftAuthenticatorPush: 128,
|
|
7781
|
+
deviceBasedPush: 256,
|
|
7782
|
+
temporaryAccessPassOneTime: 512,
|
|
7783
|
+
temporaryAccessPassMultiUse: 1024,
|
|
7784
|
+
email: 2048,
|
|
7785
|
+
x509CertificateSingleFactor: 4096,
|
|
7786
|
+
x509CertificateMultiFactor: 8192,
|
|
7787
|
+
federatedSingleFactor: 16384,
|
|
7788
|
+
federatedMultiFactor: 32768,
|
|
7789
|
+
unknownFutureValue: 65536,
|
|
7777
7790
|
}
|
|
7778
7791
|
|
|
7779
7792
|
enum authenticationMethodPlatform {
|
|
7780
|
-
`unknown
|
|
7781
|
-
windows,
|
|
7782
|
-
macOS,
|
|
7783
|
-
iOS,
|
|
7784
|
-
android,
|
|
7785
|
-
linux,
|
|
7786
|
-
unknownFutureValue,
|
|
7793
|
+
`unknown`: 0,
|
|
7794
|
+
windows: 1,
|
|
7795
|
+
macOS: 2,
|
|
7796
|
+
iOS: 3,
|
|
7797
|
+
android: 4,
|
|
7798
|
+
linux: 5,
|
|
7799
|
+
unknownFutureValue: 6,
|
|
7787
7800
|
}
|
|
7788
7801
|
|
|
7789
7802
|
enum authenticationMethodSignInState {
|
|
7790
|
-
notSupported,
|
|
7791
|
-
notAllowedByPolicy,
|
|
7792
|
-
notEnabled,
|
|
7793
|
-
phoneNumberNotUnique,
|
|
7794
|
-
ready,
|
|
7795
|
-
notConfigured,
|
|
7796
|
-
unknownFutureValue,
|
|
7803
|
+
notSupported: 0,
|
|
7804
|
+
notAllowedByPolicy: 1,
|
|
7805
|
+
notEnabled: 2,
|
|
7806
|
+
phoneNumberNotUnique: 3,
|
|
7807
|
+
ready: 4,
|
|
7808
|
+
notConfigured: 5,
|
|
7809
|
+
unknownFutureValue: 6,
|
|
7797
7810
|
}
|
|
7798
7811
|
|
|
7799
7812
|
enum authenticationMethodsPolicyMigrationState {
|
|
7800
|
-
preMigration,
|
|
7801
|
-
migrationInProgress,
|
|
7802
|
-
migrationComplete,
|
|
7803
|
-
unknownFutureValue,
|
|
7813
|
+
preMigration: 0,
|
|
7814
|
+
migrationInProgress: 1,
|
|
7815
|
+
migrationComplete: 2,
|
|
7816
|
+
unknownFutureValue: 3,
|
|
7804
7817
|
}
|
|
7805
7818
|
|
|
7806
7819
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7807
7820
|
enum authenticationMethodState {
|
|
7808
|
-
enabled,
|
|
7809
|
-
disabled,
|
|
7821
|
+
enabled: 0,
|
|
7822
|
+
disabled: 1,
|
|
7810
7823
|
}
|
|
7811
7824
|
|
|
7812
7825
|
enum authenticationMethodTargetType {
|
|
7813
|
-
user,
|
|
7814
|
-
group,
|
|
7815
|
-
unknownFutureValue,
|
|
7826
|
+
user: 0,
|
|
7827
|
+
group: 1,
|
|
7828
|
+
unknownFutureValue: 2,
|
|
7816
7829
|
}
|
|
7817
7830
|
|
|
7818
7831
|
enum authenticationPhoneType {
|
|
7819
|
-
mobile,
|
|
7820
|
-
alternateMobile,
|
|
7821
|
-
office,
|
|
7822
|
-
unknownFutureValue,
|
|
7832
|
+
mobile: 0,
|
|
7833
|
+
alternateMobile: 1,
|
|
7834
|
+
office: 2,
|
|
7835
|
+
unknownFutureValue: 3,
|
|
7823
7836
|
}
|
|
7824
7837
|
|
|
7825
7838
|
enum authenticationProtocol {
|
|
7826
|
-
wsFed,
|
|
7827
|
-
saml,
|
|
7828
|
-
unknownFutureValue,
|
|
7839
|
+
wsFed: 0,
|
|
7840
|
+
saml: 1,
|
|
7841
|
+
unknownFutureValue: 2,
|
|
7829
7842
|
}
|
|
7830
7843
|
|
|
7831
7844
|
enum authenticationStrengthPolicyType {
|
|
7832
|
-
builtIn,
|
|
7833
|
-
custom,
|
|
7834
|
-
unknownFutureValue,
|
|
7845
|
+
builtIn: 0,
|
|
7846
|
+
custom: 1,
|
|
7847
|
+
unknownFutureValue: 2,
|
|
7835
7848
|
}
|
|
7836
7849
|
|
|
7837
7850
|
@graphFlags
|
|
7838
7851
|
enum authenticationStrengthRequirements {
|
|
7839
|
-
none,
|
|
7840
|
-
mfa,
|
|
7841
|
-
unknownFutureValue,
|
|
7852
|
+
none: 0,
|
|
7853
|
+
mfa: 1,
|
|
7854
|
+
unknownFutureValue: 2,
|
|
7842
7855
|
}
|
|
7843
7856
|
|
|
7844
7857
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7845
7858
|
enum automaticRepliesStatus {
|
|
7846
|
-
disabled,
|
|
7847
|
-
alwaysEnabled,
|
|
7848
|
-
scheduled,
|
|
7859
|
+
disabled: 0,
|
|
7860
|
+
alwaysEnabled: 1,
|
|
7861
|
+
scheduled: 2,
|
|
7849
7862
|
}
|
|
7850
7863
|
|
|
7851
7864
|
enum b2bIdentityProvidersType {
|
|
7852
|
-
azureActiveDirectory,
|
|
7853
|
-
externalFederation,
|
|
7854
|
-
socialIdentityProviders,
|
|
7855
|
-
emailOneTimePasscode,
|
|
7856
|
-
microsoftAccount,
|
|
7857
|
-
defaultConfiguredIdp,
|
|
7858
|
-
unknownFutureValue,
|
|
7865
|
+
azureActiveDirectory: 1,
|
|
7866
|
+
externalFederation: 2,
|
|
7867
|
+
socialIdentityProviders: 3,
|
|
7868
|
+
emailOneTimePasscode: 4,
|
|
7869
|
+
microsoftAccount: 5,
|
|
7870
|
+
defaultConfiguredIdp: 6,
|
|
7871
|
+
unknownFutureValue: 7,
|
|
7859
7872
|
}
|
|
7860
7873
|
|
|
7861
7874
|
enum baseAuthenticationMethod {
|
|
7862
|
-
password,
|
|
7863
|
-
voice,
|
|
7864
|
-
hardwareOath,
|
|
7865
|
-
softwareOath,
|
|
7866
|
-
sms,
|
|
7867
|
-
fido2,
|
|
7868
|
-
windowsHelloForBusiness,
|
|
7869
|
-
microsoftAuthenticator,
|
|
7870
|
-
temporaryAccessPass,
|
|
7871
|
-
email,
|
|
7872
|
-
x509Certificate,
|
|
7873
|
-
federation,
|
|
7874
|
-
unknownFutureValue,
|
|
7875
|
+
password: 1,
|
|
7876
|
+
voice: 2,
|
|
7877
|
+
hardwareOath: 3,
|
|
7878
|
+
softwareOath: 4,
|
|
7879
|
+
sms: 5,
|
|
7880
|
+
fido2: 6,
|
|
7881
|
+
windowsHelloForBusiness: 7,
|
|
7882
|
+
microsoftAuthenticator: 8,
|
|
7883
|
+
temporaryAccessPass: 9,
|
|
7884
|
+
email: 10,
|
|
7885
|
+
x509Certificate: 11,
|
|
7886
|
+
federation: 12,
|
|
7887
|
+
unknownFutureValue: 13,
|
|
7875
7888
|
}
|
|
7876
7889
|
|
|
7877
7890
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7878
7891
|
enum bodyType {
|
|
7879
|
-
text,
|
|
7880
|
-
html,
|
|
7892
|
+
text: 0,
|
|
7893
|
+
html: 1,
|
|
7881
7894
|
}
|
|
7882
7895
|
|
|
7883
7896
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7884
7897
|
enum bookingType {
|
|
7885
|
-
`unknown
|
|
7886
|
-
standard,
|
|
7887
|
-
reserved,
|
|
7898
|
+
`unknown`: 0,
|
|
7899
|
+
standard: 1,
|
|
7900
|
+
reserved: 2,
|
|
7888
7901
|
}
|
|
7889
7902
|
|
|
7890
7903
|
enum broadcastMeetingAudience {
|
|
7891
|
-
roleIsAttendee,
|
|
7892
|
-
organization,
|
|
7893
|
-
everyone,
|
|
7894
|
-
unknownFutureValue,
|
|
7904
|
+
roleIsAttendee: 0,
|
|
7905
|
+
organization: 1,
|
|
7906
|
+
everyone: 2,
|
|
7907
|
+
unknownFutureValue: 3,
|
|
7895
7908
|
}
|
|
7896
7909
|
|
|
7897
7910
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7898
7911
|
enum calendarColor {
|
|
7899
|
-
auto,
|
|
7900
|
-
lightBlue,
|
|
7901
|
-
lightGreen,
|
|
7902
|
-
lightOrange,
|
|
7903
|
-
lightGray,
|
|
7904
|
-
lightYellow,
|
|
7905
|
-
lightTeal,
|
|
7906
|
-
lightPink,
|
|
7907
|
-
lightBrown,
|
|
7908
|
-
lightRed,
|
|
7909
|
-
maxColor,
|
|
7912
|
+
auto: -1,
|
|
7913
|
+
lightBlue: 0,
|
|
7914
|
+
lightGreen: 1,
|
|
7915
|
+
lightOrange: 2,
|
|
7916
|
+
lightGray: 3,
|
|
7917
|
+
lightYellow: 4,
|
|
7918
|
+
lightTeal: 5,
|
|
7919
|
+
lightPink: 6,
|
|
7920
|
+
lightBrown: 7,
|
|
7921
|
+
lightRed: 8,
|
|
7922
|
+
maxColor: 9,
|
|
7910
7923
|
}
|
|
7911
7924
|
|
|
7912
7925
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7913
7926
|
enum calendarRoleType {
|
|
7914
|
-
none,
|
|
7915
|
-
freeBusyRead,
|
|
7916
|
-
limitedRead,
|
|
7917
|
-
read,
|
|
7918
|
-
write,
|
|
7919
|
-
delegateWithoutPrivateEventAccess,
|
|
7920
|
-
delegateWithPrivateEventAccess,
|
|
7921
|
-
custom,
|
|
7927
|
+
none: 0,
|
|
7928
|
+
freeBusyRead: 1,
|
|
7929
|
+
limitedRead: 2,
|
|
7930
|
+
read: 3,
|
|
7931
|
+
write: 4,
|
|
7932
|
+
delegateWithoutPrivateEventAccess: 5,
|
|
7933
|
+
delegateWithPrivateEventAccess: 6,
|
|
7934
|
+
custom: 7,
|
|
7922
7935
|
}
|
|
7923
7936
|
|
|
7924
7937
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7925
7938
|
enum calendarSharingAction {
|
|
7926
|
-
accept,
|
|
7927
|
-
acceptAndViewCalendar,
|
|
7928
|
-
viewCalendar,
|
|
7929
|
-
addThisCalendar,
|
|
7939
|
+
accept: 0,
|
|
7940
|
+
acceptAndViewCalendar: 1,
|
|
7941
|
+
viewCalendar: 2,
|
|
7942
|
+
addThisCalendar: 3,
|
|
7930
7943
|
}
|
|
7931
7944
|
|
|
7932
7945
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7933
7946
|
enum calendarSharingActionImportance {
|
|
7934
|
-
primary,
|
|
7935
|
-
secondary,
|
|
7947
|
+
primary: 0,
|
|
7948
|
+
secondary: 1,
|
|
7936
7949
|
}
|
|
7937
7950
|
|
|
7938
7951
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7939
7952
|
enum calendarSharingActionType {
|
|
7940
|
-
accept,
|
|
7953
|
+
accept: 0,
|
|
7941
7954
|
}
|
|
7942
7955
|
|
|
7943
7956
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7944
7957
|
enum callDirection {
|
|
7945
|
-
incoming,
|
|
7946
|
-
outgoing,
|
|
7958
|
+
incoming: 0,
|
|
7959
|
+
outgoing: 1,
|
|
7947
7960
|
}
|
|
7948
7961
|
|
|
7949
7962
|
enum callRecordingStatus {
|
|
7950
|
-
success,
|
|
7951
|
-
failure,
|
|
7952
|
-
initial,
|
|
7953
|
-
chunkFinished,
|
|
7954
|
-
unknownFutureValue,
|
|
7963
|
+
success: 0,
|
|
7964
|
+
failure: 1,
|
|
7965
|
+
initial: 2,
|
|
7966
|
+
chunkFinished: 3,
|
|
7967
|
+
unknownFutureValue: 4,
|
|
7955
7968
|
}
|
|
7956
7969
|
|
|
7957
7970
|
enum callState {
|
|
7958
|
-
incoming,
|
|
7959
|
-
establishing,
|
|
7960
|
-
established,
|
|
7961
|
-
hold,
|
|
7962
|
-
transferring,
|
|
7963
|
-
transferAccepted,
|
|
7964
|
-
redirecting,
|
|
7965
|
-
terminating,
|
|
7966
|
-
terminated,
|
|
7967
|
-
unknownFutureValue,
|
|
7971
|
+
incoming: 0,
|
|
7972
|
+
establishing: 1,
|
|
7973
|
+
established: 3,
|
|
7974
|
+
hold: 4,
|
|
7975
|
+
transferring: 5,
|
|
7976
|
+
transferAccepted: 6,
|
|
7977
|
+
redirecting: 7,
|
|
7978
|
+
terminating: 8,
|
|
7979
|
+
terminated: 9,
|
|
7980
|
+
unknownFutureValue: 10,
|
|
7968
7981
|
}
|
|
7969
7982
|
|
|
7970
7983
|
enum callTranscriptionState {
|
|
7971
|
-
notStarted,
|
|
7972
|
-
active,
|
|
7973
|
-
inactive,
|
|
7974
|
-
unknownFutureValue,
|
|
7984
|
+
notStarted: 0,
|
|
7985
|
+
active: 1,
|
|
7986
|
+
inactive: 2,
|
|
7987
|
+
unknownFutureValue: 3,
|
|
7975
7988
|
}
|
|
7976
7989
|
|
|
7977
7990
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
7978
7991
|
enum categoryColor {
|
|
7979
|
-
none,
|
|
7980
|
-
preset0,
|
|
7981
|
-
preset1,
|
|
7982
|
-
preset2,
|
|
7983
|
-
preset3,
|
|
7984
|
-
preset4,
|
|
7985
|
-
preset5,
|
|
7986
|
-
preset6,
|
|
7987
|
-
preset7,
|
|
7988
|
-
preset8,
|
|
7989
|
-
preset9,
|
|
7990
|
-
preset10,
|
|
7991
|
-
preset11,
|
|
7992
|
-
preset12,
|
|
7993
|
-
preset13,
|
|
7994
|
-
preset14,
|
|
7995
|
-
preset15,
|
|
7996
|
-
preset16,
|
|
7997
|
-
preset17,
|
|
7998
|
-
preset18,
|
|
7999
|
-
preset19,
|
|
8000
|
-
preset20,
|
|
8001
|
-
preset21,
|
|
8002
|
-
preset22,
|
|
8003
|
-
preset23,
|
|
8004
|
-
preset24,
|
|
7992
|
+
none: -1,
|
|
7993
|
+
preset0: 0,
|
|
7994
|
+
preset1: 1,
|
|
7995
|
+
preset2: 2,
|
|
7996
|
+
preset3: 3,
|
|
7997
|
+
preset4: 4,
|
|
7998
|
+
preset5: 5,
|
|
7999
|
+
preset6: 6,
|
|
8000
|
+
preset7: 7,
|
|
8001
|
+
preset8: 8,
|
|
8002
|
+
preset9: 9,
|
|
8003
|
+
preset10: 10,
|
|
8004
|
+
preset11: 11,
|
|
8005
|
+
preset12: 12,
|
|
8006
|
+
preset13: 13,
|
|
8007
|
+
preset14: 14,
|
|
8008
|
+
preset15: 15,
|
|
8009
|
+
preset16: 16,
|
|
8010
|
+
preset17: 17,
|
|
8011
|
+
preset18: 18,
|
|
8012
|
+
preset19: 19,
|
|
8013
|
+
preset20: 20,
|
|
8014
|
+
preset21: 21,
|
|
8015
|
+
preset22: 22,
|
|
8016
|
+
preset23: 23,
|
|
8017
|
+
preset24: 24,
|
|
8005
8018
|
}
|
|
8006
8019
|
|
|
8007
8020
|
enum certificateAuthorityType {
|
|
8008
|
-
root,
|
|
8009
|
-
intermediate,
|
|
8010
|
-
unknownFutureValue,
|
|
8021
|
+
root: 0,
|
|
8022
|
+
intermediate: 1,
|
|
8023
|
+
unknownFutureValue: 2,
|
|
8011
8024
|
}
|
|
8012
8025
|
|
|
8013
8026
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8014
8027
|
enum changeType {
|
|
8015
|
-
created,
|
|
8016
|
-
updated,
|
|
8017
|
-
deleted,
|
|
8028
|
+
created: 0,
|
|
8029
|
+
updated: 1,
|
|
8030
|
+
deleted: 2,
|
|
8018
8031
|
}
|
|
8019
8032
|
|
|
8020
8033
|
enum channelMembershipType {
|
|
8021
|
-
standard,
|
|
8022
|
-
private,
|
|
8023
|
-
unknownFutureValue,
|
|
8024
|
-
shared,
|
|
8034
|
+
standard: 0,
|
|
8035
|
+
private: 1,
|
|
8036
|
+
unknownFutureValue: 2,
|
|
8037
|
+
shared: 3,
|
|
8025
8038
|
}
|
|
8026
8039
|
|
|
8027
8040
|
@graphFlags
|
|
8028
8041
|
enum chatMessageActions {
|
|
8029
|
-
reactionAdded,
|
|
8030
|
-
reactionRemoved,
|
|
8031
|
-
actionUndefined,
|
|
8032
|
-
unknownFutureValue,
|
|
8042
|
+
reactionAdded: 1,
|
|
8043
|
+
reactionRemoved: 2,
|
|
8044
|
+
actionUndefined: 4,
|
|
8045
|
+
unknownFutureValue: 8,
|
|
8033
8046
|
}
|
|
8034
8047
|
|
|
8035
8048
|
enum chatMessageImportance {
|
|
8036
|
-
normal,
|
|
8037
|
-
high,
|
|
8038
|
-
urgent,
|
|
8039
|
-
unknownFutureValue,
|
|
8049
|
+
normal: 0,
|
|
8050
|
+
high: 1,
|
|
8051
|
+
urgent: 2,
|
|
8052
|
+
unknownFutureValue: 3,
|
|
8040
8053
|
}
|
|
8041
8054
|
|
|
8042
8055
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8043
8056
|
@graphFlags
|
|
8044
8057
|
enum chatMessagePolicyViolationDlpActionTypes {
|
|
8045
|
-
none,
|
|
8046
|
-
notifySender,
|
|
8047
|
-
blockAccess,
|
|
8048
|
-
blockAccessExternal,
|
|
8058
|
+
none: 0,
|
|
8059
|
+
notifySender: 1,
|
|
8060
|
+
blockAccess: 2,
|
|
8061
|
+
blockAccessExternal: 4,
|
|
8049
8062
|
}
|
|
8050
8063
|
|
|
8051
8064
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8052
8065
|
@graphFlags
|
|
8053
8066
|
enum chatMessagePolicyViolationUserActionTypes {
|
|
8054
|
-
none,
|
|
8055
|
-
override,
|
|
8056
|
-
reportFalsePositive,
|
|
8067
|
+
none: 0,
|
|
8068
|
+
override: 1,
|
|
8069
|
+
reportFalsePositive: 2,
|
|
8057
8070
|
}
|
|
8058
8071
|
|
|
8059
8072
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8060
8073
|
@graphFlags
|
|
8061
8074
|
enum chatMessagePolicyViolationVerdictDetailsTypes {
|
|
8062
|
-
none,
|
|
8063
|
-
allowFalsePositiveOverride,
|
|
8064
|
-
allowOverrideWithoutJustification,
|
|
8065
|
-
allowOverrideWithJustification,
|
|
8075
|
+
none: 0,
|
|
8076
|
+
allowFalsePositiveOverride: 1,
|
|
8077
|
+
allowOverrideWithoutJustification: 2,
|
|
8078
|
+
allowOverrideWithJustification: 4,
|
|
8066
8079
|
}
|
|
8067
8080
|
|
|
8068
8081
|
enum chatMessageType {
|
|
8069
|
-
message,
|
|
8070
|
-
chatEvent,
|
|
8071
|
-
typing,
|
|
8072
|
-
unknownFutureValue,
|
|
8073
|
-
systemEventMessage,
|
|
8082
|
+
message: 0,
|
|
8083
|
+
chatEvent: 1,
|
|
8084
|
+
typing: 2,
|
|
8085
|
+
unknownFutureValue: 3,
|
|
8086
|
+
systemEventMessage: 4,
|
|
8074
8087
|
}
|
|
8075
8088
|
|
|
8076
8089
|
enum chatType {
|
|
8077
|
-
oneOnOne,
|
|
8078
|
-
group,
|
|
8079
|
-
meeting,
|
|
8080
|
-
unknownFutureValue,
|
|
8090
|
+
oneOnOne: 0,
|
|
8091
|
+
group: 1,
|
|
8092
|
+
meeting: 2,
|
|
8093
|
+
unknownFutureValue: 3,
|
|
8081
8094
|
}
|
|
8082
8095
|
|
|
8083
8096
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8084
8097
|
enum classificationMethod {
|
|
8085
|
-
patternMatch,
|
|
8086
|
-
exactDataMatch,
|
|
8087
|
-
fingerprint,
|
|
8088
|
-
machineLearning,
|
|
8098
|
+
patternMatch: 0,
|
|
8099
|
+
exactDataMatch: 1,
|
|
8100
|
+
fingerprint: 2,
|
|
8101
|
+
machineLearning: 3,
|
|
8089
8102
|
}
|
|
8090
8103
|
|
|
8091
8104
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8092
8105
|
@graphFlags
|
|
8093
8106
|
enum clonableTeamParts {
|
|
8094
|
-
apps,
|
|
8095
|
-
tabs,
|
|
8096
|
-
settings,
|
|
8097
|
-
channels,
|
|
8098
|
-
members,
|
|
8107
|
+
apps: 1,
|
|
8108
|
+
tabs: 2,
|
|
8109
|
+
settings: 4,
|
|
8110
|
+
channels: 8,
|
|
8111
|
+
members: 16,
|
|
8099
8112
|
}
|
|
8100
8113
|
|
|
8101
8114
|
enum cloudAppSecuritySessionControlType {
|
|
8102
|
-
mcasConfigured,
|
|
8103
|
-
monitorOnly,
|
|
8104
|
-
blockDownloads,
|
|
8105
|
-
unknownFutureValue,
|
|
8115
|
+
mcasConfigured: 0,
|
|
8116
|
+
monitorOnly: 1,
|
|
8117
|
+
blockDownloads: 2,
|
|
8118
|
+
unknownFutureValue: 3,
|
|
8106
8119
|
}
|
|
8107
8120
|
|
|
8108
8121
|
enum columnTypes {
|
|
8109
|
-
note,
|
|
8110
|
-
text,
|
|
8111
|
-
choice,
|
|
8112
|
-
multichoice,
|
|
8113
|
-
number,
|
|
8114
|
-
currency,
|
|
8115
|
-
dateTime,
|
|
8116
|
-
lookup,
|
|
8117
|
-
`boolean
|
|
8118
|
-
user,
|
|
8119
|
-
url,
|
|
8120
|
-
calculated,
|
|
8121
|
-
location,
|
|
8122
|
-
geolocation,
|
|
8123
|
-
term,
|
|
8124
|
-
multiterm,
|
|
8125
|
-
thumbnail,
|
|
8126
|
-
approvalStatus,
|
|
8127
|
-
unknownFutureValue,
|
|
8122
|
+
note: 0,
|
|
8123
|
+
text: 1,
|
|
8124
|
+
choice: 2,
|
|
8125
|
+
multichoice: 3,
|
|
8126
|
+
number: 4,
|
|
8127
|
+
currency: 5,
|
|
8128
|
+
dateTime: 6,
|
|
8129
|
+
lookup: 7,
|
|
8130
|
+
`boolean`: 8,
|
|
8131
|
+
user: 9,
|
|
8132
|
+
url: 10,
|
|
8133
|
+
calculated: 11,
|
|
8134
|
+
location: 12,
|
|
8135
|
+
geolocation: 13,
|
|
8136
|
+
term: 14,
|
|
8137
|
+
multiterm: 15,
|
|
8138
|
+
thumbnail: 16,
|
|
8139
|
+
approvalStatus: 17,
|
|
8140
|
+
unknownFutureValue: 18,
|
|
8128
8141
|
}
|
|
8129
8142
|
|
|
8130
8143
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8131
8144
|
enum component {
|
|
8132
|
-
Label,
|
|
8145
|
+
Label: 0,
|
|
8133
8146
|
}
|
|
8134
8147
|
|
|
8135
8148
|
enum conditionalAccessClientApp {
|
|
8136
|
-
all,
|
|
8137
|
-
browser,
|
|
8138
|
-
mobileAppsAndDesktopClients,
|
|
8139
|
-
exchangeActiveSync,
|
|
8140
|
-
easSupported,
|
|
8141
|
-
other,
|
|
8142
|
-
unknownFutureValue,
|
|
8149
|
+
all: 0,
|
|
8150
|
+
browser: 1,
|
|
8151
|
+
mobileAppsAndDesktopClients: 2,
|
|
8152
|
+
exchangeActiveSync: 3,
|
|
8153
|
+
easSupported: 4,
|
|
8154
|
+
other: 5,
|
|
8155
|
+
unknownFutureValue: 6,
|
|
8143
8156
|
}
|
|
8144
8157
|
|
|
8145
8158
|
enum conditionalAccessDevicePlatform {
|
|
8146
|
-
android,
|
|
8147
|
-
iOS,
|
|
8148
|
-
windows,
|
|
8149
|
-
windowsPhone,
|
|
8150
|
-
macOS,
|
|
8151
|
-
all,
|
|
8152
|
-
unknownFutureValue,
|
|
8153
|
-
linux,
|
|
8159
|
+
android: 0,
|
|
8160
|
+
iOS: 1,
|
|
8161
|
+
windows: 2,
|
|
8162
|
+
windowsPhone: 3,
|
|
8163
|
+
macOS: 4,
|
|
8164
|
+
all: 5,
|
|
8165
|
+
unknownFutureValue: 6,
|
|
8166
|
+
linux: 7,
|
|
8154
8167
|
}
|
|
8155
8168
|
|
|
8156
8169
|
enum conditionalAccessExternalTenantsMembershipKind {
|
|
8157
|
-
all,
|
|
8158
|
-
enumerated,
|
|
8159
|
-
unknownFutureValue,
|
|
8170
|
+
all: 0,
|
|
8171
|
+
enumerated: 1,
|
|
8172
|
+
unknownFutureValue: 2,
|
|
8160
8173
|
}
|
|
8161
8174
|
|
|
8162
8175
|
enum conditionalAccessGrantControl {
|
|
8163
|
-
block,
|
|
8164
|
-
mfa,
|
|
8165
|
-
compliantDevice,
|
|
8166
|
-
domainJoinedDevice,
|
|
8167
|
-
approvedApplication,
|
|
8168
|
-
compliantApplication,
|
|
8169
|
-
unknownFutureValue,
|
|
8176
|
+
block: 0,
|
|
8177
|
+
mfa: 1,
|
|
8178
|
+
compliantDevice: 2,
|
|
8179
|
+
domainJoinedDevice: 3,
|
|
8180
|
+
approvedApplication: 4,
|
|
8181
|
+
compliantApplication: 5,
|
|
8182
|
+
unknownFutureValue: 6,
|
|
8170
8183
|
}
|
|
8171
8184
|
|
|
8172
8185
|
@graphFlags
|
|
8173
8186
|
enum conditionalAccessGuestOrExternalUserTypes {
|
|
8174
|
-
none,
|
|
8175
|
-
internalGuest,
|
|
8176
|
-
b2bCollaborationGuest,
|
|
8177
|
-
b2bCollaborationMember,
|
|
8178
|
-
b2bDirectConnectUser,
|
|
8179
|
-
otherExternalUser,
|
|
8180
|
-
serviceProvider,
|
|
8181
|
-
unknownFutureValue,
|
|
8187
|
+
none: 0,
|
|
8188
|
+
internalGuest: 1,
|
|
8189
|
+
b2bCollaborationGuest: 2,
|
|
8190
|
+
b2bCollaborationMember: 4,
|
|
8191
|
+
b2bDirectConnectUser: 8,
|
|
8192
|
+
otherExternalUser: 16,
|
|
8193
|
+
serviceProvider: 32,
|
|
8194
|
+
unknownFutureValue: 64,
|
|
8182
8195
|
}
|
|
8183
8196
|
|
|
8184
8197
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8185
8198
|
enum conditionalAccessPolicyState {
|
|
8186
|
-
enabled,
|
|
8187
|
-
disabled,
|
|
8188
|
-
enabledForReportingButNotEnforced,
|
|
8199
|
+
enabled: 0,
|
|
8200
|
+
disabled: 1,
|
|
8201
|
+
enabledForReportingButNotEnforced: 2,
|
|
8189
8202
|
}
|
|
8190
8203
|
|
|
8191
8204
|
enum conditionalAccessStatus {
|
|
8192
|
-
success,
|
|
8193
|
-
failure,
|
|
8194
|
-
notApplied,
|
|
8195
|
-
unknownFutureValue,
|
|
8205
|
+
success: 0,
|
|
8206
|
+
failure: 1,
|
|
8207
|
+
notApplied: 2,
|
|
8208
|
+
unknownFutureValue: 3,
|
|
8196
8209
|
}
|
|
8197
8210
|
|
|
8198
8211
|
@graphFlags
|
|
8199
8212
|
enum conditionalAccessTransferMethods {
|
|
8200
|
-
none,
|
|
8201
|
-
deviceCodeFlow,
|
|
8202
|
-
authenticationTransfer,
|
|
8203
|
-
unknownFutureValue,
|
|
8213
|
+
none: 0,
|
|
8214
|
+
deviceCodeFlow: 1,
|
|
8215
|
+
authenticationTransfer: 2,
|
|
8216
|
+
unknownFutureValue: 4,
|
|
8204
8217
|
}
|
|
8205
8218
|
|
|
8206
8219
|
enum connectedOrganizationState {
|
|
8207
|
-
configured,
|
|
8208
|
-
proposed,
|
|
8209
|
-
unknownFutureValue,
|
|
8220
|
+
configured: 0,
|
|
8221
|
+
proposed: 1,
|
|
8222
|
+
unknownFutureValue: 2,
|
|
8210
8223
|
}
|
|
8211
8224
|
|
|
8212
8225
|
enum connectionDirection {
|
|
8213
|
-
`unknown
|
|
8214
|
-
inbound,
|
|
8215
|
-
outbound,
|
|
8216
|
-
unknownFutureValue,
|
|
8226
|
+
`unknown`: 0,
|
|
8227
|
+
inbound: 1,
|
|
8228
|
+
outbound: 2,
|
|
8229
|
+
unknownFutureValue: 127,
|
|
8217
8230
|
}
|
|
8218
8231
|
|
|
8219
8232
|
enum connectionStatus {
|
|
8220
|
-
`unknown
|
|
8221
|
-
attempted,
|
|
8222
|
-
succeeded,
|
|
8223
|
-
blocked,
|
|
8224
|
-
failed,
|
|
8225
|
-
unknownFutureValue,
|
|
8233
|
+
`unknown`: 0,
|
|
8234
|
+
attempted: 1,
|
|
8235
|
+
succeeded: 2,
|
|
8236
|
+
blocked: 3,
|
|
8237
|
+
failed: 4,
|
|
8238
|
+
unknownFutureValue: 127,
|
|
8226
8239
|
}
|
|
8227
8240
|
|
|
8228
8241
|
enum consentRequestFilterByCurrentUserOptions {
|
|
8229
|
-
reviewer,
|
|
8230
|
-
unknownFutureValue,
|
|
8242
|
+
reviewer: 0,
|
|
8243
|
+
unknownFutureValue: 1,
|
|
8231
8244
|
}
|
|
8232
8245
|
|
|
8233
8246
|
enum countryLookupMethodType {
|
|
8234
|
-
clientIpAddress,
|
|
8235
|
-
authenticatorAppGps,
|
|
8236
|
-
unknownFutureValue,
|
|
8247
|
+
clientIpAddress: 0,
|
|
8248
|
+
authenticatorAppGps: 1,
|
|
8249
|
+
unknownFutureValue: 2,
|
|
8237
8250
|
}
|
|
8238
8251
|
|
|
8239
8252
|
enum crossTenantAccessPolicyTargetConfigurationAccessType {
|
|
8240
|
-
allowed,
|
|
8241
|
-
blocked,
|
|
8242
|
-
unknownFutureValue,
|
|
8253
|
+
allowed: 1,
|
|
8254
|
+
blocked: 2,
|
|
8255
|
+
unknownFutureValue: 3,
|
|
8243
8256
|
}
|
|
8244
8257
|
|
|
8245
8258
|
enum crossTenantAccessPolicyTargetType {
|
|
8246
|
-
user,
|
|
8247
|
-
group,
|
|
8248
|
-
application,
|
|
8249
|
-
unknownFutureValue,
|
|
8259
|
+
user: 1,
|
|
8260
|
+
group: 2,
|
|
8261
|
+
application: 3,
|
|
8262
|
+
unknownFutureValue: 4,
|
|
8250
8263
|
}
|
|
8251
8264
|
|
|
8252
8265
|
enum customExtensionCalloutInstanceStatus {
|
|
8253
|
-
calloutSent,
|
|
8254
|
-
callbackReceived,
|
|
8255
|
-
calloutFailed,
|
|
8256
|
-
callbackTimedOut,
|
|
8257
|
-
waitingForCallback,
|
|
8258
|
-
unknownFutureValue,
|
|
8266
|
+
calloutSent: 1,
|
|
8267
|
+
callbackReceived: 2,
|
|
8268
|
+
calloutFailed: 3,
|
|
8269
|
+
callbackTimedOut: 4,
|
|
8270
|
+
waitingForCallback: 5,
|
|
8271
|
+
unknownFutureValue: 6,
|
|
8259
8272
|
}
|
|
8260
8273
|
|
|
8261
8274
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8262
8275
|
enum dayOfWeek {
|
|
8263
|
-
sunday,
|
|
8264
|
-
monday,
|
|
8265
|
-
tuesday,
|
|
8266
|
-
wednesday,
|
|
8267
|
-
thursday,
|
|
8268
|
-
friday,
|
|
8269
|
-
saturday,
|
|
8276
|
+
sunday: 0,
|
|
8277
|
+
monday: 1,
|
|
8278
|
+
tuesday: 2,
|
|
8279
|
+
wednesday: 3,
|
|
8280
|
+
thursday: 4,
|
|
8281
|
+
friday: 5,
|
|
8282
|
+
saturday: 6,
|
|
8270
8283
|
}
|
|
8271
8284
|
|
|
8272
8285
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8273
8286
|
enum delegateMeetingMessageDeliveryOptions {
|
|
8274
|
-
sendToDelegateAndInformationToPrincipal,
|
|
8275
|
-
sendToDelegateAndPrincipal,
|
|
8276
|
-
sendToDelegateOnly,
|
|
8287
|
+
sendToDelegateAndInformationToPrincipal: 0,
|
|
8288
|
+
sendToDelegateAndPrincipal: 1,
|
|
8289
|
+
sendToDelegateOnly: 2,
|
|
8277
8290
|
}
|
|
8278
8291
|
|
|
8279
8292
|
@graphFlags
|
|
8280
8293
|
enum directoryDefinitionDiscoverabilities {
|
|
8281
|
-
None,
|
|
8282
|
-
AttributeNames,
|
|
8283
|
-
AttributeDataTypes,
|
|
8284
|
-
AttributeReadOnly,
|
|
8285
|
-
ReferenceAttributes,
|
|
8286
|
-
UnknownFutureValue,
|
|
8294
|
+
None: 0,
|
|
8295
|
+
AttributeNames: 1,
|
|
8296
|
+
AttributeDataTypes: 2,
|
|
8297
|
+
AttributeReadOnly: 4,
|
|
8298
|
+
ReferenceAttributes: 8,
|
|
8299
|
+
UnknownFutureValue: 16,
|
|
8287
8300
|
}
|
|
8288
8301
|
|
|
8289
8302
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8290
8303
|
enum dlpAction {
|
|
8291
|
-
notifyUser,
|
|
8292
|
-
blockAccess,
|
|
8293
|
-
deviceRestriction,
|
|
8304
|
+
notifyUser: 0,
|
|
8305
|
+
blockAccess: 1,
|
|
8306
|
+
deviceRestriction: 2,
|
|
8294
8307
|
}
|
|
8295
8308
|
|
|
8296
8309
|
enum driveItemSourceApplication {
|
|
8297
|
-
teams,
|
|
8298
|
-
yammer,
|
|
8299
|
-
sharePoint,
|
|
8300
|
-
oneDrive,
|
|
8301
|
-
stream,
|
|
8302
|
-
powerPoint,
|
|
8303
|
-
office,
|
|
8304
|
-
loki,
|
|
8305
|
-
loop,
|
|
8306
|
-
other,
|
|
8307
|
-
unknownFutureValue,
|
|
8310
|
+
teams: 0,
|
|
8311
|
+
yammer: 1,
|
|
8312
|
+
sharePoint: 2,
|
|
8313
|
+
oneDrive: 3,
|
|
8314
|
+
stream: 4,
|
|
8315
|
+
powerPoint: 5,
|
|
8316
|
+
office: 6,
|
|
8317
|
+
loki: 7,
|
|
8318
|
+
loop: 8,
|
|
8319
|
+
other: 9,
|
|
8320
|
+
unknownFutureValue: 10,
|
|
8308
8321
|
}
|
|
8309
8322
|
|
|
8310
8323
|
enum eligibilityScheduleFilterByCurrentUserOptions {
|
|
8311
|
-
principal,
|
|
8312
|
-
unknownFutureValue,
|
|
8324
|
+
principal: 1,
|
|
8325
|
+
unknownFutureValue: 2,
|
|
8313
8326
|
}
|
|
8314
8327
|
|
|
8315
8328
|
enum eligibilityScheduleInstanceFilterByCurrentUserOptions {
|
|
8316
|
-
principal,
|
|
8317
|
-
unknownFutureValue,
|
|
8329
|
+
principal: 1,
|
|
8330
|
+
unknownFutureValue: 2,
|
|
8318
8331
|
}
|
|
8319
8332
|
|
|
8320
8333
|
enum eligibilityScheduleRequestFilterByCurrentUserOptions {
|
|
8321
|
-
principal,
|
|
8322
|
-
createdBy,
|
|
8323
|
-
approver,
|
|
8324
|
-
unknownFutureValue,
|
|
8334
|
+
principal: 1,
|
|
8335
|
+
createdBy: 2,
|
|
8336
|
+
approver: 3,
|
|
8337
|
+
unknownFutureValue: 4,
|
|
8325
8338
|
}
|
|
8326
8339
|
|
|
8327
8340
|
enum emailRole {
|
|
8328
|
-
`unknown
|
|
8329
|
-
sender,
|
|
8330
|
-
recipient,
|
|
8331
|
-
unknownFutureValue,
|
|
8341
|
+
`unknown`: 0,
|
|
8342
|
+
sender: 1,
|
|
8343
|
+
recipient: 2,
|
|
8344
|
+
unknownFutureValue: 127,
|
|
8332
8345
|
}
|
|
8333
8346
|
|
|
8334
8347
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8335
8348
|
enum encryptWith {
|
|
8336
|
-
template,
|
|
8337
|
-
userDefinedRights,
|
|
8349
|
+
template: 0,
|
|
8350
|
+
userDefinedRights: 1,
|
|
8338
8351
|
}
|
|
8339
8352
|
|
|
8340
8353
|
enum endpointType {
|
|
8341
|
-
default,
|
|
8342
|
-
voicemail,
|
|
8343
|
-
skypeForBusiness,
|
|
8344
|
-
skypeForBusinessVoipPhone,
|
|
8345
|
-
unknownFutureValue,
|
|
8354
|
+
default: 0,
|
|
8355
|
+
voicemail: 1,
|
|
8356
|
+
skypeForBusiness: 2,
|
|
8357
|
+
skypeForBusinessVoipPhone: 3,
|
|
8358
|
+
unknownFutureValue: 4,
|
|
8346
8359
|
}
|
|
8347
8360
|
|
|
8348
8361
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8349
8362
|
enum entryExportStatus {
|
|
8350
|
-
Noop,
|
|
8351
|
-
Success,
|
|
8352
|
-
RetryableError,
|
|
8353
|
-
PermanentError,
|
|
8354
|
-
Error,
|
|
8363
|
+
Noop: 0,
|
|
8364
|
+
Success: 1,
|
|
8365
|
+
RetryableError: 2,
|
|
8366
|
+
PermanentError: 3,
|
|
8367
|
+
Error: 4,
|
|
8355
8368
|
}
|
|
8356
8369
|
|
|
8357
8370
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8358
8371
|
enum entrySyncOperation {
|
|
8359
|
-
None,
|
|
8360
|
-
Add,
|
|
8361
|
-
Delete,
|
|
8362
|
-
Update,
|
|
8372
|
+
None: 0,
|
|
8373
|
+
Add: 1,
|
|
8374
|
+
Delete: 2,
|
|
8375
|
+
Update: 3,
|
|
8363
8376
|
}
|
|
8364
8377
|
|
|
8365
8378
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8366
8379
|
enum escrowBehavior {
|
|
8367
|
-
Default,
|
|
8368
|
-
IgnoreLookupReferenceResolutionFailure,
|
|
8380
|
+
Default: 1,
|
|
8381
|
+
IgnoreLookupReferenceResolutionFailure: 2,
|
|
8369
8382
|
}
|
|
8370
8383
|
|
|
8371
8384
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8372
8385
|
enum eventType {
|
|
8373
|
-
singleInstance,
|
|
8374
|
-
occurrence,
|
|
8375
|
-
exception,
|
|
8376
|
-
seriesMaster,
|
|
8386
|
+
singleInstance: 0,
|
|
8387
|
+
occurrence: 1,
|
|
8388
|
+
exception: 2,
|
|
8389
|
+
seriesMaster: 3,
|
|
8377
8390
|
}
|
|
8378
8391
|
|
|
8379
8392
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8380
8393
|
enum exchangeIdFormat {
|
|
8381
|
-
entryId,
|
|
8382
|
-
ewsId,
|
|
8383
|
-
immutableEntryId,
|
|
8384
|
-
restId,
|
|
8385
|
-
restImmutableEntryId,
|
|
8394
|
+
entryId: 0,
|
|
8395
|
+
ewsId: 1,
|
|
8396
|
+
immutableEntryId: 2,
|
|
8397
|
+
restId: 3,
|
|
8398
|
+
restImmutableEntryId: 4,
|
|
8386
8399
|
}
|
|
8387
8400
|
|
|
8388
8401
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8389
8402
|
enum expirationPatternType {
|
|
8390
|
-
notSpecified,
|
|
8391
|
-
noExpiration,
|
|
8392
|
-
afterDateTime,
|
|
8393
|
-
afterDuration,
|
|
8403
|
+
notSpecified: 0,
|
|
8404
|
+
noExpiration: 1,
|
|
8405
|
+
afterDateTime: 2,
|
|
8406
|
+
afterDuration: 3,
|
|
8394
8407
|
}
|
|
8395
8408
|
|
|
8396
8409
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8397
8410
|
enum externalAudienceScope {
|
|
8398
|
-
none,
|
|
8399
|
-
contactsOnly,
|
|
8400
|
-
all,
|
|
8411
|
+
none: 0,
|
|
8412
|
+
contactsOnly: 1,
|
|
8413
|
+
all: 2,
|
|
8401
8414
|
}
|
|
8402
8415
|
|
|
8403
8416
|
enum externalEmailOtpState {
|
|
8404
|
-
default,
|
|
8405
|
-
enabled,
|
|
8406
|
-
disabled,
|
|
8407
|
-
unknownFutureValue,
|
|
8417
|
+
default: 0,
|
|
8418
|
+
enabled: 1,
|
|
8419
|
+
disabled: 2,
|
|
8420
|
+
unknownFutureValue: 3,
|
|
8408
8421
|
}
|
|
8409
8422
|
|
|
8410
8423
|
enum featureTargetType {
|
|
8411
|
-
group,
|
|
8412
|
-
administrativeUnit,
|
|
8413
|
-
role,
|
|
8414
|
-
unknownFutureValue,
|
|
8424
|
+
group: 0,
|
|
8425
|
+
administrativeUnit: 1,
|
|
8426
|
+
role: 2,
|
|
8427
|
+
unknownFutureValue: 3,
|
|
8415
8428
|
}
|
|
8416
8429
|
|
|
8417
8430
|
enum federatedIdpMfaBehavior {
|
|
8418
|
-
acceptIfMfaDoneByFederatedIdp,
|
|
8419
|
-
enforceMfaByFederatedIdp,
|
|
8420
|
-
rejectMfaByFederatedIdp,
|
|
8421
|
-
unknownFutureValue,
|
|
8431
|
+
acceptIfMfaDoneByFederatedIdp: 0,
|
|
8432
|
+
enforceMfaByFederatedIdp: 1,
|
|
8433
|
+
rejectMfaByFederatedIdp: 2,
|
|
8434
|
+
unknownFutureValue: 3,
|
|
8422
8435
|
}
|
|
8423
8436
|
|
|
8424
8437
|
enum fido2RestrictionEnforcementType {
|
|
8425
|
-
allow,
|
|
8426
|
-
block,
|
|
8427
|
-
unknownFutureValue,
|
|
8438
|
+
allow: 0,
|
|
8439
|
+
block: 1,
|
|
8440
|
+
unknownFutureValue: 2,
|
|
8428
8441
|
}
|
|
8429
8442
|
|
|
8430
8443
|
enum fileHashType {
|
|
8431
|
-
`unknown
|
|
8432
|
-
sha1,
|
|
8433
|
-
sha256,
|
|
8434
|
-
md5,
|
|
8435
|
-
authenticodeHash256,
|
|
8436
|
-
lsHash,
|
|
8437
|
-
ctph,
|
|
8438
|
-
unknownFutureValue,
|
|
8444
|
+
`unknown`: 0,
|
|
8445
|
+
sha1: 1,
|
|
8446
|
+
sha256: 2,
|
|
8447
|
+
md5: 3,
|
|
8448
|
+
authenticodeHash256: 4,
|
|
8449
|
+
lsHash: 5,
|
|
8450
|
+
ctph: 6,
|
|
8451
|
+
unknownFutureValue: 127,
|
|
8439
8452
|
}
|
|
8440
8453
|
|
|
8441
8454
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8442
8455
|
enum filterMode {
|
|
8443
|
-
include,
|
|
8444
|
-
exclude,
|
|
8456
|
+
include: 0,
|
|
8457
|
+
exclude: 1,
|
|
8445
8458
|
}
|
|
8446
8459
|
|
|
8447
8460
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8448
8461
|
enum followupFlagStatus {
|
|
8449
|
-
notFlagged,
|
|
8450
|
-
complete,
|
|
8451
|
-
flagged,
|
|
8462
|
+
notFlagged: 0,
|
|
8463
|
+
complete: 1,
|
|
8464
|
+
flagged: 2,
|
|
8452
8465
|
}
|
|
8453
8466
|
|
|
8454
8467
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8455
8468
|
enum freeBusyStatus {
|
|
8456
|
-
`unknown
|
|
8457
|
-
free,
|
|
8458
|
-
tentative,
|
|
8459
|
-
busy,
|
|
8460
|
-
oof,
|
|
8461
|
-
workingElsewhere,
|
|
8469
|
+
`unknown`: -1,
|
|
8470
|
+
free: 0,
|
|
8471
|
+
tentative: 1,
|
|
8472
|
+
busy: 2,
|
|
8473
|
+
oof: 3,
|
|
8474
|
+
workingElsewhere: 4,
|
|
8462
8475
|
}
|
|
8463
8476
|
|
|
8464
8477
|
enum giphyRatingType {
|
|
8465
|
-
strict,
|
|
8466
|
-
moderate,
|
|
8467
|
-
unknownFutureValue,
|
|
8478
|
+
strict: 0,
|
|
8479
|
+
moderate: 1,
|
|
8480
|
+
unknownFutureValue: 2,
|
|
8468
8481
|
}
|
|
8469
8482
|
|
|
8470
8483
|
enum groupPrivacy {
|
|
8471
|
-
unspecified,
|
|
8472
|
-
public,
|
|
8473
|
-
private,
|
|
8474
|
-
unknownFutureValue,
|
|
8484
|
+
unspecified: 0,
|
|
8485
|
+
public: 1,
|
|
8486
|
+
private: 2,
|
|
8487
|
+
unknownFutureValue: 3,
|
|
8475
8488
|
}
|
|
8476
8489
|
|
|
8477
8490
|
enum groupType {
|
|
8478
|
-
unifiedGroups,
|
|
8479
|
-
azureAD,
|
|
8480
|
-
unknownFutureValue,
|
|
8491
|
+
unifiedGroups: 0,
|
|
8492
|
+
azureAD: 1,
|
|
8493
|
+
unknownFutureValue: 2,
|
|
8481
8494
|
}
|
|
8482
8495
|
|
|
8483
8496
|
enum horizontalSectionLayoutType {
|
|
8484
|
-
none,
|
|
8485
|
-
oneColumn,
|
|
8486
|
-
twoColumns,
|
|
8487
|
-
threeColumns,
|
|
8488
|
-
oneThirdLeftColumn,
|
|
8489
|
-
oneThirdRightColumn,
|
|
8490
|
-
fullWidth,
|
|
8491
|
-
unknownFutureValue,
|
|
8497
|
+
none: 0,
|
|
8498
|
+
oneColumn: 1,
|
|
8499
|
+
twoColumns: 2,
|
|
8500
|
+
threeColumns: 3,
|
|
8501
|
+
oneThirdLeftColumn: 4,
|
|
8502
|
+
oneThirdRightColumn: 5,
|
|
8503
|
+
fullWidth: 6,
|
|
8504
|
+
unknownFutureValue: 7,
|
|
8492
8505
|
}
|
|
8493
8506
|
|
|
8494
8507
|
enum imageTaggingChoice {
|
|
8495
|
-
disabled,
|
|
8496
|
-
basic,
|
|
8497
|
-
enhanced,
|
|
8498
|
-
unknownFutureValue,
|
|
8508
|
+
disabled: 0,
|
|
8509
|
+
basic: 1,
|
|
8510
|
+
enhanced: 2,
|
|
8511
|
+
unknownFutureValue: 3,
|
|
8499
8512
|
}
|
|
8500
8513
|
|
|
8501
8514
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8502
8515
|
enum importance {
|
|
8503
|
-
low,
|
|
8504
|
-
normal,
|
|
8505
|
-
high,
|
|
8516
|
+
low: 0,
|
|
8517
|
+
normal: 1,
|
|
8518
|
+
high: 2,
|
|
8506
8519
|
}
|
|
8507
8520
|
|
|
8508
8521
|
enum includedUserRoles {
|
|
8509
|
-
all,
|
|
8510
|
-
privilegedAdmin,
|
|
8511
|
-
admin,
|
|
8512
|
-
user,
|
|
8513
|
-
unknownFutureValue,
|
|
8522
|
+
all: 0,
|
|
8523
|
+
privilegedAdmin: 1,
|
|
8524
|
+
admin: 2,
|
|
8525
|
+
user: 3,
|
|
8526
|
+
unknownFutureValue: 4,
|
|
8514
8527
|
}
|
|
8515
8528
|
|
|
8516
8529
|
enum includedUserTypes {
|
|
8517
|
-
all,
|
|
8518
|
-
member,
|
|
8519
|
-
guest,
|
|
8520
|
-
unknownFutureValue,
|
|
8530
|
+
all: 0,
|
|
8531
|
+
member: 1,
|
|
8532
|
+
guest: 2,
|
|
8533
|
+
unknownFutureValue: 3,
|
|
8521
8534
|
}
|
|
8522
8535
|
|
|
8523
8536
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8524
8537
|
enum inferenceClassificationType {
|
|
8525
|
-
focused,
|
|
8526
|
-
other,
|
|
8538
|
+
focused: 0,
|
|
8539
|
+
other: 1,
|
|
8527
8540
|
}
|
|
8528
8541
|
|
|
8529
8542
|
enum initiatorType {
|
|
8530
|
-
user,
|
|
8531
|
-
application,
|
|
8532
|
-
system,
|
|
8533
|
-
unknownFutureValue,
|
|
8543
|
+
user: 0,
|
|
8544
|
+
application: 1,
|
|
8545
|
+
system: 2,
|
|
8546
|
+
unknownFutureValue: 3,
|
|
8534
8547
|
}
|
|
8535
8548
|
|
|
8536
8549
|
enum labelActionSource {
|
|
8537
|
-
manual,
|
|
8538
|
-
automatic,
|
|
8539
|
-
recommended,
|
|
8540
|
-
none,
|
|
8541
|
-
unknownFutureValue,
|
|
8550
|
+
manual: 0,
|
|
8551
|
+
automatic: 1,
|
|
8552
|
+
recommended: 2,
|
|
8553
|
+
none: 3,
|
|
8554
|
+
unknownFutureValue: 4,
|
|
8542
8555
|
}
|
|
8543
8556
|
|
|
8544
8557
|
enum layoutTemplateType {
|
|
8545
|
-
default,
|
|
8546
|
-
verticalSplit,
|
|
8547
|
-
unknownFutureValue,
|
|
8558
|
+
default: 0,
|
|
8559
|
+
verticalSplit: 1,
|
|
8560
|
+
unknownFutureValue: 10,
|
|
8548
8561
|
}
|
|
8549
8562
|
|
|
8550
8563
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8551
8564
|
enum lifecycleEventType {
|
|
8552
|
-
missed,
|
|
8553
|
-
subscriptionRemoved,
|
|
8554
|
-
reauthorizationRequired,
|
|
8565
|
+
missed: 0,
|
|
8566
|
+
subscriptionRemoved: 1,
|
|
8567
|
+
reauthorizationRequired: 2,
|
|
8555
8568
|
}
|
|
8556
8569
|
|
|
8557
8570
|
enum lobbyBypassScope {
|
|
8558
|
-
organizer,
|
|
8559
|
-
organization,
|
|
8560
|
-
organizationAndFederated,
|
|
8561
|
-
everyone,
|
|
8562
|
-
unknownFutureValue,
|
|
8563
|
-
invited,
|
|
8564
|
-
organizationExcludingGuests,
|
|
8571
|
+
organizer: 0,
|
|
8572
|
+
organization: 1,
|
|
8573
|
+
organizationAndFederated: 2,
|
|
8574
|
+
everyone: 3,
|
|
8575
|
+
unknownFutureValue: 4,
|
|
8576
|
+
invited: 5,
|
|
8577
|
+
organizationExcludingGuests: 6,
|
|
8565
8578
|
}
|
|
8566
8579
|
|
|
8567
8580
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8568
8581
|
enum locationType {
|
|
8569
|
-
default,
|
|
8570
|
-
conferenceRoom,
|
|
8571
|
-
homeAddress,
|
|
8572
|
-
businessAddress,
|
|
8573
|
-
geoCoordinates,
|
|
8574
|
-
streetAddress,
|
|
8575
|
-
hotel,
|
|
8576
|
-
restaurant,
|
|
8577
|
-
localBusiness,
|
|
8578
|
-
postalAddress,
|
|
8582
|
+
default: 0,
|
|
8583
|
+
conferenceRoom: 1,
|
|
8584
|
+
homeAddress: 2,
|
|
8585
|
+
businessAddress: 3,
|
|
8586
|
+
geoCoordinates: 4,
|
|
8587
|
+
streetAddress: 5,
|
|
8588
|
+
hotel: 6,
|
|
8589
|
+
restaurant: 7,
|
|
8590
|
+
localBusiness: 8,
|
|
8591
|
+
postalAddress: 9,
|
|
8579
8592
|
}
|
|
8580
8593
|
|
|
8581
8594
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8582
8595
|
enum locationUniqueIdType {
|
|
8583
|
-
`unknown
|
|
8584
|
-
locationStore,
|
|
8585
|
-
directory,
|
|
8586
|
-
private,
|
|
8587
|
-
bing,
|
|
8596
|
+
`unknown`: 0,
|
|
8597
|
+
locationStore: 1,
|
|
8598
|
+
directory: 2,
|
|
8599
|
+
private: 3,
|
|
8600
|
+
bing: 4,
|
|
8588
8601
|
}
|
|
8589
8602
|
|
|
8590
8603
|
enum logonType {
|
|
8591
|
-
`unknown
|
|
8592
|
-
interactive,
|
|
8593
|
-
remoteInteractive,
|
|
8594
|
-
network,
|
|
8595
|
-
batch,
|
|
8596
|
-
service,
|
|
8597
|
-
unknownFutureValue,
|
|
8604
|
+
`unknown`: 0,
|
|
8605
|
+
interactive: 1,
|
|
8606
|
+
remoteInteractive: 2,
|
|
8607
|
+
network: 3,
|
|
8608
|
+
batch: 4,
|
|
8609
|
+
service: 5,
|
|
8610
|
+
unknownFutureValue: 127,
|
|
8598
8611
|
}
|
|
8599
8612
|
|
|
8600
8613
|
enum longRunningOperationStatus {
|
|
8601
|
-
notStarted,
|
|
8602
|
-
running,
|
|
8603
|
-
succeeded,
|
|
8604
|
-
failed,
|
|
8605
|
-
unknownFutureValue,
|
|
8614
|
+
notStarted: 0,
|
|
8615
|
+
running: 1,
|
|
8616
|
+
succeeded: 2,
|
|
8617
|
+
failed: 3,
|
|
8618
|
+
unknownFutureValue: 4,
|
|
8606
8619
|
}
|
|
8607
8620
|
|
|
8608
8621
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8609
8622
|
@graphFlags
|
|
8610
8623
|
enum mailTipsType {
|
|
8611
|
-
automaticReplies,
|
|
8612
|
-
mailboxFullStatus,
|
|
8613
|
-
customMailTip,
|
|
8614
|
-
externalMemberCount,
|
|
8615
|
-
totalMemberCount,
|
|
8616
|
-
maxMessageSize,
|
|
8617
|
-
deliveryRestriction,
|
|
8618
|
-
moderationStatus,
|
|
8619
|
-
recipientScope,
|
|
8620
|
-
recipientSuggestions,
|
|
8624
|
+
automaticReplies: 1,
|
|
8625
|
+
mailboxFullStatus: 2,
|
|
8626
|
+
customMailTip: 4,
|
|
8627
|
+
externalMemberCount: 8,
|
|
8628
|
+
totalMemberCount: 16,
|
|
8629
|
+
maxMessageSize: 32,
|
|
8630
|
+
deliveryRestriction: 64,
|
|
8631
|
+
moderationStatus: 128,
|
|
8632
|
+
recipientScope: 256,
|
|
8633
|
+
recipientSuggestions: 512,
|
|
8621
8634
|
}
|
|
8622
8635
|
|
|
8623
8636
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8624
8637
|
enum mediaDirection {
|
|
8625
|
-
inactive,
|
|
8626
|
-
sendOnly,
|
|
8627
|
-
receiveOnly,
|
|
8628
|
-
sendReceive,
|
|
8638
|
+
inactive: 0,
|
|
8639
|
+
sendOnly: 1,
|
|
8640
|
+
receiveOnly: 2,
|
|
8641
|
+
sendReceive: 3,
|
|
8629
8642
|
}
|
|
8630
8643
|
|
|
8631
8644
|
enum mediaSourceContentCategory {
|
|
8632
|
-
meeting,
|
|
8633
|
-
liveStream,
|
|
8634
|
-
presentation,
|
|
8635
|
-
screenRecording,
|
|
8636
|
-
story,
|
|
8637
|
-
profile,
|
|
8638
|
-
chat,
|
|
8639
|
-
note,
|
|
8640
|
-
comment,
|
|
8641
|
-
unknownFutureValue,
|
|
8645
|
+
meeting: 0,
|
|
8646
|
+
liveStream: 1,
|
|
8647
|
+
presentation: 2,
|
|
8648
|
+
screenRecording: 3,
|
|
8649
|
+
story: 4,
|
|
8650
|
+
profile: 5,
|
|
8651
|
+
chat: 6,
|
|
8652
|
+
note: 7,
|
|
8653
|
+
comment: 8,
|
|
8654
|
+
unknownFutureValue: 9,
|
|
8642
8655
|
}
|
|
8643
8656
|
|
|
8644
8657
|
enum mediaState {
|
|
8645
|
-
active,
|
|
8646
|
-
inactive,
|
|
8647
|
-
unknownFutureValue,
|
|
8658
|
+
active: 0,
|
|
8659
|
+
inactive: 1,
|
|
8660
|
+
unknownFutureValue: 2,
|
|
8648
8661
|
}
|
|
8649
8662
|
|
|
8650
8663
|
enum meetingChatHistoryDefaultMode {
|
|
8651
|
-
none,
|
|
8652
|
-
all,
|
|
8653
|
-
unknownFutureValue,
|
|
8664
|
+
none: 0,
|
|
8665
|
+
all: 1,
|
|
8666
|
+
unknownFutureValue: 2,
|
|
8654
8667
|
}
|
|
8655
8668
|
|
|
8656
8669
|
enum meetingChatMode {
|
|
8657
|
-
enabled,
|
|
8658
|
-
disabled,
|
|
8659
|
-
limited,
|
|
8660
|
-
unknownFutureValue,
|
|
8670
|
+
enabled: 0,
|
|
8671
|
+
disabled: 1,
|
|
8672
|
+
limited: 2,
|
|
8673
|
+
unknownFutureValue: 3,
|
|
8661
8674
|
}
|
|
8662
8675
|
|
|
8663
8676
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8664
8677
|
enum meetingMessageType {
|
|
8665
|
-
none,
|
|
8666
|
-
meetingRequest,
|
|
8667
|
-
meetingCancelled,
|
|
8668
|
-
meetingAccepted,
|
|
8669
|
-
meetingTenativelyAccepted,
|
|
8670
|
-
meetingDeclined,
|
|
8678
|
+
none: 0,
|
|
8679
|
+
meetingRequest: 1,
|
|
8680
|
+
meetingCancelled: 2,
|
|
8681
|
+
meetingAccepted: 3,
|
|
8682
|
+
meetingTenativelyAccepted: 4,
|
|
8683
|
+
meetingDeclined: 5,
|
|
8671
8684
|
}
|
|
8672
8685
|
|
|
8673
8686
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8674
8687
|
enum meetingRequestType {
|
|
8675
|
-
none,
|
|
8676
|
-
newMeetingRequest,
|
|
8677
|
-
fullUpdate,
|
|
8678
|
-
informationalUpdate,
|
|
8679
|
-
silentUpdate,
|
|
8680
|
-
outdated,
|
|
8681
|
-
principalWantsCopy,
|
|
8688
|
+
none: 0,
|
|
8689
|
+
newMeetingRequest: 1,
|
|
8690
|
+
fullUpdate: 65536,
|
|
8691
|
+
informationalUpdate: 131072,
|
|
8692
|
+
silentUpdate: 262144,
|
|
8693
|
+
outdated: 524288,
|
|
8694
|
+
principalWantsCopy: 1048576,
|
|
8682
8695
|
}
|
|
8683
8696
|
|
|
8684
8697
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8685
8698
|
enum messageActionFlag {
|
|
8686
|
-
any,
|
|
8687
|
-
call,
|
|
8688
|
-
doNotForward,
|
|
8689
|
-
followUp,
|
|
8690
|
-
fyi,
|
|
8691
|
-
forward,
|
|
8692
|
-
noResponseNecessary,
|
|
8693
|
-
read,
|
|
8694
|
-
reply,
|
|
8695
|
-
replyToAll,
|
|
8696
|
-
review,
|
|
8699
|
+
any: 0,
|
|
8700
|
+
call: 1,
|
|
8701
|
+
doNotForward: 2,
|
|
8702
|
+
followUp: 3,
|
|
8703
|
+
fyi: 4,
|
|
8704
|
+
forward: 5,
|
|
8705
|
+
noResponseNecessary: 6,
|
|
8706
|
+
read: 7,
|
|
8707
|
+
reply: 8,
|
|
8708
|
+
replyToAll: 9,
|
|
8709
|
+
review: 10,
|
|
8697
8710
|
}
|
|
8698
8711
|
|
|
8699
8712
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8700
8713
|
enum microsoftAuthenticatorAuthenticationMode {
|
|
8701
|
-
deviceBasedPush,
|
|
8702
|
-
push,
|
|
8703
|
-
any,
|
|
8714
|
+
deviceBasedPush: 0,
|
|
8715
|
+
push: 1,
|
|
8716
|
+
any: 2,
|
|
8704
8717
|
}
|
|
8705
8718
|
|
|
8706
8719
|
enum modality {
|
|
8707
|
-
audio,
|
|
8708
|
-
video,
|
|
8709
|
-
videoBasedScreenSharing,
|
|
8710
|
-
data,
|
|
8711
|
-
unknownFutureValue,
|
|
8720
|
+
audio: 1,
|
|
8721
|
+
video: 2,
|
|
8722
|
+
videoBasedScreenSharing: 3,
|
|
8723
|
+
data: 4,
|
|
8724
|
+
unknownFutureValue: 5,
|
|
8712
8725
|
}
|
|
8713
8726
|
|
|
8714
8727
|
enum multiFactorAuthConfiguration {
|
|
8715
|
-
notRequired,
|
|
8716
|
-
required,
|
|
8717
|
-
unknownFutureValue,
|
|
8728
|
+
notRequired: 0,
|
|
8729
|
+
required: 1,
|
|
8730
|
+
unknownFutureValue: 2,
|
|
8718
8731
|
}
|
|
8719
8732
|
|
|
8720
8733
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8721
8734
|
enum mutability {
|
|
8722
|
-
ReadWrite,
|
|
8723
|
-
ReadOnly,
|
|
8724
|
-
Immutable,
|
|
8725
|
-
WriteOnly,
|
|
8735
|
+
ReadWrite: 0,
|
|
8736
|
+
ReadOnly: 1,
|
|
8737
|
+
Immutable: 2,
|
|
8738
|
+
WriteOnly: 3,
|
|
8726
8739
|
}
|
|
8727
8740
|
|
|
8728
8741
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8729
8742
|
enum objectDefinitionMetadata {
|
|
8730
|
-
PropertyNameAccountEnabled,
|
|
8731
|
-
PropertyNameSoftDeleted,
|
|
8732
|
-
IsSoftDeletionSupported,
|
|
8733
|
-
IsSynchronizeAllSupported,
|
|
8734
|
-
ConnectorDataStorageRequired,
|
|
8735
|
-
Extensions,
|
|
8736
|
-
BaseObjectName,
|
|
8743
|
+
PropertyNameAccountEnabled: 0,
|
|
8744
|
+
PropertyNameSoftDeleted: 1,
|
|
8745
|
+
IsSoftDeletionSupported: 2,
|
|
8746
|
+
IsSynchronizeAllSupported: 3,
|
|
8747
|
+
ConnectorDataStorageRequired: 4,
|
|
8748
|
+
Extensions: 5,
|
|
8749
|
+
BaseObjectName: 6,
|
|
8737
8750
|
}
|
|
8738
8751
|
|
|
8739
8752
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8740
8753
|
@graphFlags
|
|
8741
8754
|
enum objectFlowTypes {
|
|
8742
|
-
None,
|
|
8743
|
-
Add,
|
|
8744
|
-
Update,
|
|
8745
|
-
Delete,
|
|
8755
|
+
None: 0,
|
|
8756
|
+
Add: 1,
|
|
8757
|
+
Update: 2,
|
|
8758
|
+
Delete: 4,
|
|
8746
8759
|
}
|
|
8747
8760
|
|
|
8748
8761
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8749
8762
|
enum objectMappingMetadata {
|
|
8750
|
-
EscrowBehavior,
|
|
8751
|
-
DisableMonitoringForChanges,
|
|
8752
|
-
OriginalJoiningProperty,
|
|
8753
|
-
Disposition,
|
|
8754
|
-
IsCustomerDefined,
|
|
8755
|
-
ExcludeFromReporting,
|
|
8756
|
-
Unsynchronized,
|
|
8763
|
+
EscrowBehavior: 0,
|
|
8764
|
+
DisableMonitoringForChanges: 1,
|
|
8765
|
+
OriginalJoiningProperty: 2,
|
|
8766
|
+
Disposition: 3,
|
|
8767
|
+
IsCustomerDefined: 4,
|
|
8768
|
+
ExcludeFromReporting: 5,
|
|
8769
|
+
Unsynchronized: 6,
|
|
8757
8770
|
}
|
|
8758
8771
|
|
|
8759
8772
|
@graphFlags
|
|
8760
8773
|
enum onlineMeetingContentSharingDisabledReason {
|
|
8761
|
-
watermarkProtection,
|
|
8762
|
-
unknownFutureValue,
|
|
8774
|
+
watermarkProtection: 1,
|
|
8775
|
+
unknownFutureValue: 2,
|
|
8763
8776
|
}
|
|
8764
8777
|
|
|
8765
8778
|
enum onlineMeetingPresenters {
|
|
8766
|
-
everyone,
|
|
8767
|
-
organization,
|
|
8768
|
-
roleIsPresenter,
|
|
8769
|
-
organizer,
|
|
8770
|
-
unknownFutureValue,
|
|
8779
|
+
everyone: 0,
|
|
8780
|
+
organization: 1,
|
|
8781
|
+
roleIsPresenter: 2,
|
|
8782
|
+
organizer: 3,
|
|
8783
|
+
unknownFutureValue: 4,
|
|
8771
8784
|
}
|
|
8772
8785
|
|
|
8773
8786
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8774
8787
|
enum onlineMeetingProviderType {
|
|
8775
|
-
`unknown
|
|
8776
|
-
skypeForBusiness,
|
|
8777
|
-
skypeForConsumer,
|
|
8778
|
-
teamsForBusiness,
|
|
8788
|
+
`unknown`: 0,
|
|
8789
|
+
skypeForBusiness: 1,
|
|
8790
|
+
skypeForConsumer: 2,
|
|
8791
|
+
teamsForBusiness: 3,
|
|
8779
8792
|
}
|
|
8780
8793
|
|
|
8781
8794
|
enum onlineMeetingRole {
|
|
8782
|
-
attendee,
|
|
8783
|
-
presenter,
|
|
8784
|
-
unknownFutureValue,
|
|
8785
|
-
producer,
|
|
8786
|
-
coorganizer,
|
|
8795
|
+
attendee: 0,
|
|
8796
|
+
presenter: 1,
|
|
8797
|
+
unknownFutureValue: 2,
|
|
8798
|
+
producer: 3,
|
|
8799
|
+
coorganizer: 4,
|
|
8787
8800
|
}
|
|
8788
8801
|
|
|
8789
8802
|
@graphFlags
|
|
8790
8803
|
enum onlineMeetingVideoDisabledReason {
|
|
8791
|
-
watermarkProtection,
|
|
8792
|
-
unknownFutureValue,
|
|
8804
|
+
watermarkProtection: 1,
|
|
8805
|
+
unknownFutureValue: 2,
|
|
8793
8806
|
}
|
|
8794
8807
|
|
|
8795
8808
|
enum onPremisesDirectorySynchronizationDeletionPreventionType {
|
|
8796
|
-
disabled,
|
|
8797
|
-
enabledForCount,
|
|
8798
|
-
enabledForPercentage,
|
|
8799
|
-
unknownFutureValue,
|
|
8809
|
+
disabled: 0,
|
|
8810
|
+
enabledForCount: 1,
|
|
8811
|
+
enabledForPercentage: 2,
|
|
8812
|
+
unknownFutureValue: 3,
|
|
8800
8813
|
}
|
|
8801
8814
|
|
|
8802
8815
|
enum operationResult {
|
|
8803
|
-
success,
|
|
8804
|
-
failure,
|
|
8805
|
-
timeout,
|
|
8806
|
-
unknownFutureValue,
|
|
8816
|
+
success: 0,
|
|
8817
|
+
failure: 1,
|
|
8818
|
+
timeout: 2,
|
|
8819
|
+
unknownFutureValue: 3,
|
|
8807
8820
|
}
|
|
8808
8821
|
|
|
8809
8822
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8810
8823
|
enum operationStatus {
|
|
8811
|
-
NotStarted,
|
|
8812
|
-
Running,
|
|
8813
|
-
Completed,
|
|
8814
|
-
Failed,
|
|
8824
|
+
NotStarted: 0,
|
|
8825
|
+
Running: 1,
|
|
8826
|
+
Completed: 2,
|
|
8827
|
+
Failed: 3,
|
|
8815
8828
|
}
|
|
8816
8829
|
|
|
8817
8830
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8818
8831
|
enum overrideOption {
|
|
8819
|
-
notAllowed,
|
|
8820
|
-
allowFalsePositiveOverride,
|
|
8821
|
-
allowWithJustification,
|
|
8822
|
-
allowWithoutJustification,
|
|
8832
|
+
notAllowed: 0,
|
|
8833
|
+
allowFalsePositiveOverride: 1,
|
|
8834
|
+
allowWithJustification: 2,
|
|
8835
|
+
allowWithoutJustification: 4,
|
|
8823
8836
|
}
|
|
8824
8837
|
|
|
8825
8838
|
enum pageLayoutType {
|
|
8826
|
-
microsoftReserved,
|
|
8827
|
-
article,
|
|
8828
|
-
home,
|
|
8829
|
-
unknownFutureValue,
|
|
8839
|
+
microsoftReserved: 0,
|
|
8840
|
+
article: 1,
|
|
8841
|
+
home: 2,
|
|
8842
|
+
unknownFutureValue: 3,
|
|
8830
8843
|
}
|
|
8831
8844
|
|
|
8832
8845
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8833
8846
|
enum pageOrientation {
|
|
8834
|
-
horizontal,
|
|
8835
|
-
diagonal,
|
|
8847
|
+
horizontal: 0,
|
|
8848
|
+
diagonal: 1,
|
|
8836
8849
|
}
|
|
8837
8850
|
|
|
8838
8851
|
enum pagePromotionType {
|
|
8839
|
-
microsoftReserved,
|
|
8840
|
-
page,
|
|
8841
|
-
newsPost,
|
|
8842
|
-
unknownFutureValue,
|
|
8852
|
+
microsoftReserved: 0,
|
|
8853
|
+
page: 1,
|
|
8854
|
+
newsPost: 2,
|
|
8855
|
+
unknownFutureValue: 3,
|
|
8843
8856
|
}
|
|
8844
8857
|
|
|
8845
8858
|
enum partnerTenantType {
|
|
8846
|
-
microsoftSupport,
|
|
8847
|
-
syndicatePartner,
|
|
8848
|
-
breadthPartner,
|
|
8849
|
-
breadthPartnerDelegatedAdmin,
|
|
8850
|
-
resellerPartnerDelegatedAdmin,
|
|
8851
|
-
valueAddedResellerPartnerDelegatedAdmin,
|
|
8852
|
-
unknownFutureValue,
|
|
8859
|
+
microsoftSupport: 1,
|
|
8860
|
+
syndicatePartner: 2,
|
|
8861
|
+
breadthPartner: 3,
|
|
8862
|
+
breadthPartnerDelegatedAdmin: 4,
|
|
8863
|
+
resellerPartnerDelegatedAdmin: 5,
|
|
8864
|
+
valueAddedResellerPartnerDelegatedAdmin: 6,
|
|
8865
|
+
unknownFutureValue: 7,
|
|
8853
8866
|
}
|
|
8854
8867
|
|
|
8855
8868
|
enum permissionClassificationType {
|
|
8856
|
-
low,
|
|
8857
|
-
medium,
|
|
8858
|
-
high,
|
|
8859
|
-
unknownFutureValue,
|
|
8869
|
+
low: 1,
|
|
8870
|
+
medium: 2,
|
|
8871
|
+
high: 3,
|
|
8872
|
+
unknownFutureValue: 4,
|
|
8860
8873
|
}
|
|
8861
8874
|
|
|
8862
8875
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8863
8876
|
enum permissionType {
|
|
8864
|
-
delegatedUserConsentable,
|
|
8865
|
-
delegated,
|
|
8866
|
-
application,
|
|
8877
|
+
delegatedUserConsentable: 1,
|
|
8878
|
+
delegated: 2,
|
|
8879
|
+
application: 3,
|
|
8867
8880
|
}
|
|
8868
8881
|
|
|
8869
8882
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8870
8883
|
enum persistentBrowserSessionMode {
|
|
8871
|
-
always,
|
|
8872
|
-
`never
|
|
8884
|
+
always: 0,
|
|
8885
|
+
`never`: 1,
|
|
8873
8886
|
}
|
|
8874
8887
|
|
|
8875
8888
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8876
8889
|
enum phoneType {
|
|
8877
|
-
home,
|
|
8878
|
-
business,
|
|
8879
|
-
mobile,
|
|
8880
|
-
other,
|
|
8881
|
-
assistant,
|
|
8882
|
-
homeFax,
|
|
8883
|
-
businessFax,
|
|
8884
|
-
otherFax,
|
|
8885
|
-
pager,
|
|
8886
|
-
radio,
|
|
8890
|
+
home: 0,
|
|
8891
|
+
business: 1,
|
|
8892
|
+
mobile: 2,
|
|
8893
|
+
other: 3,
|
|
8894
|
+
assistant: 4,
|
|
8895
|
+
homeFax: 5,
|
|
8896
|
+
businessFax: 6,
|
|
8897
|
+
otherFax: 7,
|
|
8898
|
+
pager: 8,
|
|
8899
|
+
radio: 9,
|
|
8887
8900
|
}
|
|
8888
8901
|
|
|
8889
8902
|
enum postType {
|
|
8890
|
-
regular,
|
|
8891
|
-
quick,
|
|
8892
|
-
strategic,
|
|
8893
|
-
unknownFutureValue,
|
|
8903
|
+
regular: 0,
|
|
8904
|
+
quick: 1,
|
|
8905
|
+
strategic: 2,
|
|
8906
|
+
unknownFutureValue: 3,
|
|
8894
8907
|
}
|
|
8895
8908
|
|
|
8896
8909
|
enum privilegedAccessGroupAssignmentType {
|
|
8897
|
-
assigned,
|
|
8898
|
-
activated,
|
|
8899
|
-
unknownFutureValue,
|
|
8910
|
+
assigned: 1,
|
|
8911
|
+
activated: 2,
|
|
8912
|
+
unknownFutureValue: 3,
|
|
8900
8913
|
}
|
|
8901
8914
|
|
|
8902
8915
|
enum privilegedAccessGroupMemberType {
|
|
8903
|
-
direct,
|
|
8904
|
-
group,
|
|
8905
|
-
unknownFutureValue,
|
|
8916
|
+
direct: 1,
|
|
8917
|
+
group: 2,
|
|
8918
|
+
unknownFutureValue: 3,
|
|
8906
8919
|
}
|
|
8907
8920
|
|
|
8908
8921
|
enum privilegedAccessGroupRelationships {
|
|
8909
|
-
owner,
|
|
8910
|
-
member,
|
|
8911
|
-
unknownFutureValue,
|
|
8922
|
+
owner: 1,
|
|
8923
|
+
member: 2,
|
|
8924
|
+
unknownFutureValue: 3,
|
|
8912
8925
|
}
|
|
8913
8926
|
|
|
8914
8927
|
enum processIntegrityLevel {
|
|
8915
|
-
`unknown
|
|
8916
|
-
untrusted,
|
|
8917
|
-
low,
|
|
8918
|
-
medium,
|
|
8919
|
-
high,
|
|
8920
|
-
system,
|
|
8921
|
-
unknownFutureValue,
|
|
8928
|
+
`unknown`: 0,
|
|
8929
|
+
untrusted: 1,
|
|
8930
|
+
low: 2,
|
|
8931
|
+
medium: 3,
|
|
8932
|
+
high: 4,
|
|
8933
|
+
system: 5,
|
|
8934
|
+
unknownFutureValue: 127,
|
|
8922
8935
|
}
|
|
8923
8936
|
|
|
8924
8937
|
enum promptLoginBehavior {
|
|
8925
|
-
translateToFreshPasswordAuthentication,
|
|
8926
|
-
nativeSupport,
|
|
8927
|
-
disabled,
|
|
8928
|
-
unknownFutureValue,
|
|
8938
|
+
translateToFreshPasswordAuthentication: 0,
|
|
8939
|
+
nativeSupport: 1,
|
|
8940
|
+
disabled: 2,
|
|
8941
|
+
unknownFutureValue: 3,
|
|
8929
8942
|
}
|
|
8930
8943
|
|
|
8931
8944
|
enum provisioningAction {
|
|
8932
|
-
other,
|
|
8933
|
-
create,
|
|
8934
|
-
delete,
|
|
8935
|
-
disable,
|
|
8936
|
-
update,
|
|
8937
|
-
stagedDelete,
|
|
8938
|
-
unknownFutureValue,
|
|
8945
|
+
other: 0,
|
|
8946
|
+
create: 1,
|
|
8947
|
+
delete: 2,
|
|
8948
|
+
disable: 3,
|
|
8949
|
+
update: 4,
|
|
8950
|
+
stagedDelete: 5,
|
|
8951
|
+
unknownFutureValue: 6,
|
|
8939
8952
|
}
|
|
8940
8953
|
|
|
8941
8954
|
enum provisioningResult {
|
|
8942
|
-
success,
|
|
8943
|
-
failure,
|
|
8944
|
-
skipped,
|
|
8945
|
-
warning,
|
|
8946
|
-
unknownFutureValue,
|
|
8955
|
+
success: 0,
|
|
8956
|
+
failure: 1,
|
|
8957
|
+
skipped: 2,
|
|
8958
|
+
warning: 3,
|
|
8959
|
+
unknownFutureValue: 4,
|
|
8947
8960
|
}
|
|
8948
8961
|
|
|
8949
8962
|
enum provisioningStatusErrorCategory {
|
|
8950
|
-
failure,
|
|
8951
|
-
nonServiceFailure,
|
|
8952
|
-
success,
|
|
8953
|
-
unknownFutureValue,
|
|
8963
|
+
failure: 0,
|
|
8964
|
+
nonServiceFailure: 1,
|
|
8965
|
+
success: 2,
|
|
8966
|
+
unknownFutureValue: 3,
|
|
8954
8967
|
}
|
|
8955
8968
|
|
|
8956
8969
|
enum provisioningStepType {
|
|
8957
|
-
`import
|
|
8958
|
-
scoping,
|
|
8959
|
-
matching,
|
|
8960
|
-
processing,
|
|
8961
|
-
referenceResolution,
|
|
8962
|
-
export,
|
|
8963
|
-
unknownFutureValue,
|
|
8970
|
+
`import`: 0,
|
|
8971
|
+
scoping: 1,
|
|
8972
|
+
matching: 2,
|
|
8973
|
+
processing: 3,
|
|
8974
|
+
referenceResolution: 4,
|
|
8975
|
+
export: 5,
|
|
8976
|
+
unknownFutureValue: 6,
|
|
8964
8977
|
}
|
|
8965
8978
|
|
|
8966
8979
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8967
8980
|
enum quarantineReason {
|
|
8968
|
-
EncounteredBaseEscrowThreshold,
|
|
8969
|
-
EncounteredTotalEscrowThreshold,
|
|
8970
|
-
EncounteredEscrowProportionThreshold,
|
|
8971
|
-
EncounteredQuarantineException,
|
|
8972
|
-
`Unknown
|
|
8973
|
-
QuarantinedOnDemand,
|
|
8974
|
-
TooManyDeletes,
|
|
8981
|
+
EncounteredBaseEscrowThreshold: 0,
|
|
8982
|
+
EncounteredTotalEscrowThreshold: 1,
|
|
8983
|
+
EncounteredEscrowProportionThreshold: 2,
|
|
8984
|
+
EncounteredQuarantineException: 4,
|
|
8985
|
+
`Unknown`: 8,
|
|
8986
|
+
QuarantinedOnDemand: 16,
|
|
8987
|
+
TooManyDeletes: 32,
|
|
8975
8988
|
}
|
|
8976
8989
|
|
|
8977
8990
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8978
8991
|
@graphFlags
|
|
8979
8992
|
enum recipientScopeType {
|
|
8980
|
-
none,
|
|
8981
|
-
`internal
|
|
8982
|
-
external,
|
|
8983
|
-
externalPartner,
|
|
8984
|
-
externalNonPartner,
|
|
8993
|
+
none: 0,
|
|
8994
|
+
`internal`: 1,
|
|
8995
|
+
external: 2,
|
|
8996
|
+
externalPartner: 4,
|
|
8997
|
+
externalNonPartner: 8,
|
|
8985
8998
|
}
|
|
8986
8999
|
|
|
8987
9000
|
enum recordingStatus {
|
|
8988
|
-
`unknown
|
|
8989
|
-
notRecording,
|
|
8990
|
-
recording,
|
|
8991
|
-
failed,
|
|
8992
|
-
unknownFutureValue,
|
|
9001
|
+
`unknown`: 0,
|
|
9002
|
+
notRecording: 1,
|
|
9003
|
+
recording: 2,
|
|
9004
|
+
failed: 3,
|
|
9005
|
+
unknownFutureValue: 4,
|
|
8993
9006
|
}
|
|
8994
9007
|
|
|
8995
9008
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
8996
9009
|
enum recurrencePatternType {
|
|
8997
|
-
daily,
|
|
8998
|
-
weekly,
|
|
8999
|
-
absoluteMonthly,
|
|
9000
|
-
relativeMonthly,
|
|
9001
|
-
absoluteYearly,
|
|
9002
|
-
relativeYearly,
|
|
9010
|
+
daily: 0,
|
|
9011
|
+
weekly: 1,
|
|
9012
|
+
absoluteMonthly: 2,
|
|
9013
|
+
relativeMonthly: 3,
|
|
9014
|
+
absoluteYearly: 4,
|
|
9015
|
+
relativeYearly: 5,
|
|
9003
9016
|
}
|
|
9004
9017
|
|
|
9005
9018
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9006
9019
|
enum recurrenceRangeType {
|
|
9007
|
-
endDate,
|
|
9008
|
-
noEnd,
|
|
9009
|
-
numbered,
|
|
9020
|
+
endDate: 0,
|
|
9021
|
+
noEnd: 1,
|
|
9022
|
+
numbered: 2,
|
|
9010
9023
|
}
|
|
9011
9024
|
|
|
9012
9025
|
enum registryHive {
|
|
9013
|
-
`unknown
|
|
9014
|
-
currentConfig,
|
|
9015
|
-
currentUser,
|
|
9016
|
-
localMachineSam,
|
|
9017
|
-
localMachineSecurity,
|
|
9018
|
-
localMachineSoftware,
|
|
9019
|
-
localMachineSystem,
|
|
9020
|
-
usersDefault,
|
|
9021
|
-
unknownFutureValue,
|
|
9026
|
+
`unknown`: 0,
|
|
9027
|
+
currentConfig: 1,
|
|
9028
|
+
currentUser: 2,
|
|
9029
|
+
localMachineSam: 3,
|
|
9030
|
+
localMachineSecurity: 4,
|
|
9031
|
+
localMachineSoftware: 5,
|
|
9032
|
+
localMachineSystem: 6,
|
|
9033
|
+
usersDefault: 7,
|
|
9034
|
+
unknownFutureValue: 127,
|
|
9022
9035
|
}
|
|
9023
9036
|
|
|
9024
9037
|
enum registryOperation {
|
|
9025
|
-
`unknown
|
|
9026
|
-
create,
|
|
9027
|
-
modify,
|
|
9028
|
-
delete,
|
|
9029
|
-
unknownFutureValue,
|
|
9038
|
+
`unknown`: 0,
|
|
9039
|
+
create: 1,
|
|
9040
|
+
modify: 2,
|
|
9041
|
+
delete: 3,
|
|
9042
|
+
unknownFutureValue: 127,
|
|
9030
9043
|
}
|
|
9031
9044
|
|
|
9032
9045
|
enum registryValueType {
|
|
9033
|
-
`unknown
|
|
9034
|
-
binary,
|
|
9035
|
-
dword,
|
|
9036
|
-
dwordLittleEndian,
|
|
9037
|
-
dwordBigEndian,
|
|
9038
|
-
expandSz,
|
|
9039
|
-
link,
|
|
9040
|
-
multiSz,
|
|
9041
|
-
none,
|
|
9042
|
-
qword,
|
|
9043
|
-
qwordlittleEndian,
|
|
9044
|
-
sz,
|
|
9045
|
-
unknownFutureValue,
|
|
9046
|
+
`unknown`: 0,
|
|
9047
|
+
binary: 1,
|
|
9048
|
+
dword: 2,
|
|
9049
|
+
dwordLittleEndian: 3,
|
|
9050
|
+
dwordBigEndian: 4,
|
|
9051
|
+
expandSz: 5,
|
|
9052
|
+
link: 6,
|
|
9053
|
+
multiSz: 7,
|
|
9054
|
+
none: 8,
|
|
9055
|
+
qword: 9,
|
|
9056
|
+
qwordlittleEndian: 10,
|
|
9057
|
+
sz: 11,
|
|
9058
|
+
unknownFutureValue: 127,
|
|
9046
9059
|
}
|
|
9047
9060
|
|
|
9048
9061
|
enum rejectReason {
|
|
9049
|
-
none,
|
|
9050
|
-
busy,
|
|
9051
|
-
forbidden,
|
|
9052
|
-
unknownFutureValue,
|
|
9062
|
+
none: 0,
|
|
9063
|
+
busy: 1,
|
|
9064
|
+
forbidden: 2,
|
|
9065
|
+
unknownFutureValue: 3,
|
|
9053
9066
|
}
|
|
9054
9067
|
|
|
9055
9068
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9056
9069
|
enum responseType {
|
|
9057
|
-
none,
|
|
9058
|
-
organizer,
|
|
9059
|
-
tentativelyAccepted,
|
|
9060
|
-
accepted,
|
|
9061
|
-
declined,
|
|
9062
|
-
notResponded,
|
|
9070
|
+
none: 0,
|
|
9071
|
+
organizer: 1,
|
|
9072
|
+
tentativelyAccepted: 2,
|
|
9073
|
+
accepted: 3,
|
|
9074
|
+
declined: 4,
|
|
9075
|
+
notResponded: 5,
|
|
9063
9076
|
}
|
|
9064
9077
|
|
|
9065
9078
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9066
9079
|
enum restrictionAction {
|
|
9067
|
-
warn,
|
|
9068
|
-
audit,
|
|
9069
|
-
block,
|
|
9080
|
+
warn: 0,
|
|
9081
|
+
audit: 1,
|
|
9082
|
+
block: 2,
|
|
9070
9083
|
}
|
|
9071
9084
|
|
|
9072
9085
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9073
9086
|
enum restrictionTrigger {
|
|
9074
|
-
copyPaste,
|
|
9075
|
-
copyToNetworkShare,
|
|
9076
|
-
copyToRemovableMedia,
|
|
9077
|
-
screenCapture,
|
|
9078
|
-
print,
|
|
9079
|
-
cloudEgress,
|
|
9080
|
-
unallowedApps,
|
|
9087
|
+
copyPaste: 0,
|
|
9088
|
+
copyToNetworkShare: 1,
|
|
9089
|
+
copyToRemovableMedia: 2,
|
|
9090
|
+
screenCapture: 3,
|
|
9091
|
+
print: 4,
|
|
9092
|
+
cloudEgress: 5,
|
|
9093
|
+
unallowedApps: 6,
|
|
9081
9094
|
}
|
|
9082
9095
|
|
|
9083
9096
|
enum riskDetail {
|
|
9084
|
-
none,
|
|
9085
|
-
adminGeneratedTemporaryPassword,
|
|
9086
|
-
userPerformedSecuredPasswordChange,
|
|
9087
|
-
userPerformedSecuredPasswordReset,
|
|
9088
|
-
adminConfirmedSigninSafe,
|
|
9089
|
-
aiConfirmedSigninSafe,
|
|
9090
|
-
userPassedMFADrivenByRiskBasedPolicy,
|
|
9091
|
-
adminDismissedAllRiskForUser,
|
|
9092
|
-
adminConfirmedSigninCompromised,
|
|
9093
|
-
hidden,
|
|
9094
|
-
unknownFutureValue,
|
|
9095
|
-
adminConfirmedServicePrincipalCompromised,
|
|
9096
|
-
adminDismissedAllRiskForServicePrincipal,
|
|
9097
|
-
m365DAdminDismissedDetection,
|
|
9098
|
-
userChangedPasswordOnPremises,
|
|
9099
|
-
adminDismissedRiskForSignIn,
|
|
9100
|
-
adminConfirmedAccountSafe,
|
|
9097
|
+
none: 0,
|
|
9098
|
+
adminGeneratedTemporaryPassword: 1,
|
|
9099
|
+
userPerformedSecuredPasswordChange: 2,
|
|
9100
|
+
userPerformedSecuredPasswordReset: 3,
|
|
9101
|
+
adminConfirmedSigninSafe: 4,
|
|
9102
|
+
aiConfirmedSigninSafe: 5,
|
|
9103
|
+
userPassedMFADrivenByRiskBasedPolicy: 6,
|
|
9104
|
+
adminDismissedAllRiskForUser: 7,
|
|
9105
|
+
adminConfirmedSigninCompromised: 8,
|
|
9106
|
+
hidden: 9,
|
|
9107
|
+
unknownFutureValue: 10,
|
|
9108
|
+
adminConfirmedServicePrincipalCompromised: 12,
|
|
9109
|
+
adminDismissedAllRiskForServicePrincipal: 13,
|
|
9110
|
+
m365DAdminDismissedDetection: 14,
|
|
9111
|
+
userChangedPasswordOnPremises: 15,
|
|
9112
|
+
adminDismissedRiskForSignIn: 16,
|
|
9113
|
+
adminConfirmedAccountSafe: 17,
|
|
9101
9114
|
}
|
|
9102
9115
|
|
|
9103
9116
|
enum riskDetectionTimingType {
|
|
9104
|
-
notDefined,
|
|
9105
|
-
realtime,
|
|
9106
|
-
nearRealtime,
|
|
9107
|
-
offline,
|
|
9108
|
-
unknownFutureValue,
|
|
9117
|
+
notDefined: 0,
|
|
9118
|
+
realtime: 1,
|
|
9119
|
+
nearRealtime: 2,
|
|
9120
|
+
offline: 3,
|
|
9121
|
+
unknownFutureValue: 4,
|
|
9109
9122
|
}
|
|
9110
9123
|
|
|
9111
9124
|
enum riskEventType {
|
|
9112
|
-
unlikelyTravel,
|
|
9113
|
-
anonymizedIPAddress,
|
|
9114
|
-
maliciousIPAddress,
|
|
9115
|
-
unfamiliarFeatures,
|
|
9116
|
-
malwareInfectedIPAddress,
|
|
9117
|
-
suspiciousIPAddress,
|
|
9118
|
-
leakedCredentials,
|
|
9119
|
-
investigationsThreatIntelligence,
|
|
9120
|
-
generic,
|
|
9121
|
-
adminConfirmedUserCompromised,
|
|
9122
|
-
mcasImpossibleTravel,
|
|
9123
|
-
mcasSuspiciousInboxManipulationRules,
|
|
9124
|
-
investigationsThreatIntelligenceSigninLinked,
|
|
9125
|
-
maliciousIPAddressValidCredentialsBlockedIP,
|
|
9126
|
-
unknownFutureValue,
|
|
9125
|
+
unlikelyTravel: 0,
|
|
9126
|
+
anonymizedIPAddress: 1,
|
|
9127
|
+
maliciousIPAddress: 2,
|
|
9128
|
+
unfamiliarFeatures: 3,
|
|
9129
|
+
malwareInfectedIPAddress: 4,
|
|
9130
|
+
suspiciousIPAddress: 5,
|
|
9131
|
+
leakedCredentials: 6,
|
|
9132
|
+
investigationsThreatIntelligence: 7,
|
|
9133
|
+
generic: 8,
|
|
9134
|
+
adminConfirmedUserCompromised: 9,
|
|
9135
|
+
mcasImpossibleTravel: 10,
|
|
9136
|
+
mcasSuspiciousInboxManipulationRules: 11,
|
|
9137
|
+
investigationsThreatIntelligenceSigninLinked: 12,
|
|
9138
|
+
maliciousIPAddressValidCredentialsBlockedIP: 13,
|
|
9139
|
+
unknownFutureValue: 14,
|
|
9127
9140
|
}
|
|
9128
9141
|
|
|
9129
9142
|
enum riskLevel {
|
|
9130
|
-
low,
|
|
9131
|
-
medium,
|
|
9132
|
-
high,
|
|
9133
|
-
hidden,
|
|
9134
|
-
none,
|
|
9135
|
-
unknownFutureValue,
|
|
9143
|
+
low: 0,
|
|
9144
|
+
medium: 1,
|
|
9145
|
+
high: 2,
|
|
9146
|
+
hidden: 3,
|
|
9147
|
+
none: 4,
|
|
9148
|
+
unknownFutureValue: 5,
|
|
9136
9149
|
}
|
|
9137
9150
|
|
|
9138
9151
|
enum riskState {
|
|
9139
|
-
none,
|
|
9140
|
-
confirmedSafe,
|
|
9141
|
-
remediated,
|
|
9142
|
-
dismissed,
|
|
9143
|
-
atRisk,
|
|
9144
|
-
confirmedCompromised,
|
|
9145
|
-
unknownFutureValue,
|
|
9152
|
+
none: 0,
|
|
9153
|
+
confirmedSafe: 1,
|
|
9154
|
+
remediated: 2,
|
|
9155
|
+
dismissed: 3,
|
|
9156
|
+
atRisk: 4,
|
|
9157
|
+
confirmedCompromised: 5,
|
|
9158
|
+
unknownFutureValue: 6,
|
|
9146
9159
|
}
|
|
9147
9160
|
|
|
9148
9161
|
enum roleAssignmentScheduleFilterByCurrentUserOptions {
|
|
9149
|
-
principal,
|
|
9150
|
-
unknownFutureValue,
|
|
9162
|
+
principal: 1,
|
|
9163
|
+
unknownFutureValue: 2,
|
|
9151
9164
|
}
|
|
9152
9165
|
|
|
9153
9166
|
enum roleAssignmentScheduleInstanceFilterByCurrentUserOptions {
|
|
9154
|
-
principal,
|
|
9155
|
-
unknownFutureValue,
|
|
9167
|
+
principal: 1,
|
|
9168
|
+
unknownFutureValue: 2,
|
|
9156
9169
|
}
|
|
9157
9170
|
|
|
9158
9171
|
enum roleAssignmentScheduleRequestFilterByCurrentUserOptions {
|
|
9159
|
-
principal,
|
|
9160
|
-
createdBy,
|
|
9161
|
-
approver,
|
|
9162
|
-
unknownFutureValue,
|
|
9172
|
+
principal: 1,
|
|
9173
|
+
createdBy: 2,
|
|
9174
|
+
approver: 3,
|
|
9175
|
+
unknownFutureValue: 4,
|
|
9163
9176
|
}
|
|
9164
9177
|
|
|
9165
9178
|
enum roleEligibilityScheduleFilterByCurrentUserOptions {
|
|
9166
|
-
principal,
|
|
9167
|
-
unknownFutureValue,
|
|
9179
|
+
principal: 1,
|
|
9180
|
+
unknownFutureValue: 2,
|
|
9168
9181
|
}
|
|
9169
9182
|
|
|
9170
9183
|
enum roleEligibilityScheduleInstanceFilterByCurrentUserOptions {
|
|
9171
|
-
principal,
|
|
9172
|
-
unknownFutureValue,
|
|
9184
|
+
principal: 1,
|
|
9185
|
+
unknownFutureValue: 2,
|
|
9173
9186
|
}
|
|
9174
9187
|
|
|
9175
9188
|
enum roleEligibilityScheduleRequestFilterByCurrentUserOptions {
|
|
9176
|
-
principal,
|
|
9177
|
-
createdBy,
|
|
9178
|
-
approver,
|
|
9179
|
-
unknownFutureValue,
|
|
9189
|
+
principal: 1,
|
|
9190
|
+
createdBy: 2,
|
|
9191
|
+
approver: 3,
|
|
9192
|
+
unknownFutureValue: 4,
|
|
9180
9193
|
}
|
|
9181
9194
|
|
|
9182
9195
|
enum routingType {
|
|
9183
|
-
forwarded,
|
|
9184
|
-
lookup,
|
|
9185
|
-
selfFork,
|
|
9186
|
-
unknownFutureValue,
|
|
9196
|
+
forwarded: 0,
|
|
9197
|
+
lookup: 1,
|
|
9198
|
+
selfFork: 2,
|
|
9199
|
+
unknownFutureValue: 3,
|
|
9187
9200
|
}
|
|
9188
9201
|
|
|
9189
9202
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9190
9203
|
enum ruleMode {
|
|
9191
|
-
audit,
|
|
9192
|
-
auditAndNotify,
|
|
9193
|
-
enforce,
|
|
9194
|
-
pendingDeletion,
|
|
9195
|
-
test,
|
|
9204
|
+
audit: 1,
|
|
9205
|
+
auditAndNotify: 2,
|
|
9206
|
+
enforce: 3,
|
|
9207
|
+
pendingDeletion: 4,
|
|
9208
|
+
test: 5,
|
|
9196
9209
|
}
|
|
9197
9210
|
|
|
9198
9211
|
enum scheduleRequestActions {
|
|
9199
|
-
adminAssign,
|
|
9200
|
-
adminUpdate,
|
|
9201
|
-
adminRemove,
|
|
9202
|
-
selfActivate,
|
|
9203
|
-
selfDeactivate,
|
|
9204
|
-
adminExtend,
|
|
9205
|
-
adminRenew,
|
|
9206
|
-
selfExtend,
|
|
9207
|
-
selfRenew,
|
|
9208
|
-
unknownFutureValue,
|
|
9212
|
+
adminAssign: 1,
|
|
9213
|
+
adminUpdate: 2,
|
|
9214
|
+
adminRemove: 3,
|
|
9215
|
+
selfActivate: 4,
|
|
9216
|
+
selfDeactivate: 5,
|
|
9217
|
+
adminExtend: 6,
|
|
9218
|
+
adminRenew: 7,
|
|
9219
|
+
selfExtend: 8,
|
|
9220
|
+
selfRenew: 9,
|
|
9221
|
+
unknownFutureValue: 10,
|
|
9209
9222
|
}
|
|
9210
9223
|
|
|
9211
9224
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9212
9225
|
enum scopeOperatorMultiValuedComparisonType {
|
|
9213
|
-
All,
|
|
9214
|
-
Any,
|
|
9226
|
+
All: 0,
|
|
9227
|
+
Any: 1,
|
|
9215
9228
|
}
|
|
9216
9229
|
|
|
9217
9230
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9218
9231
|
enum scopeOperatorType {
|
|
9219
|
-
Binary,
|
|
9220
|
-
Unary,
|
|
9232
|
+
Binary: 0,
|
|
9233
|
+
Unary: 1,
|
|
9221
9234
|
}
|
|
9222
9235
|
|
|
9223
9236
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9224
9237
|
enum screenSharingRole {
|
|
9225
|
-
viewer,
|
|
9226
|
-
sharer,
|
|
9238
|
+
viewer: 0,
|
|
9239
|
+
sharer: 1,
|
|
9227
9240
|
}
|
|
9228
9241
|
|
|
9229
9242
|
enum sectionEmphasisType {
|
|
9230
|
-
none,
|
|
9231
|
-
neutral,
|
|
9232
|
-
soft,
|
|
9233
|
-
strong,
|
|
9234
|
-
unknownFutureValue,
|
|
9243
|
+
none: 0,
|
|
9244
|
+
neutral: 1,
|
|
9245
|
+
soft: 2,
|
|
9246
|
+
strong: 3,
|
|
9247
|
+
unknownFutureValue: 4,
|
|
9235
9248
|
}
|
|
9236
9249
|
|
|
9237
9250
|
enum securityNetworkProtocol {
|
|
9238
|
-
`unknown
|
|
9239
|
-
ip,
|
|
9240
|
-
icmp,
|
|
9241
|
-
igmp,
|
|
9242
|
-
ggp,
|
|
9243
|
-
ipv4,
|
|
9244
|
-
tcp,
|
|
9245
|
-
pup,
|
|
9246
|
-
udp,
|
|
9247
|
-
idp,
|
|
9248
|
-
ipv6,
|
|
9249
|
-
ipv6RoutingHeader,
|
|
9250
|
-
ipv6FragmentHeader,
|
|
9251
|
-
ipSecEncapsulatingSecurityPayload,
|
|
9252
|
-
ipSecAuthenticationHeader,
|
|
9253
|
-
icmpV6,
|
|
9254
|
-
ipv6NoNextHeader,
|
|
9255
|
-
ipv6DestinationOptions,
|
|
9256
|
-
nd,
|
|
9257
|
-
raw,
|
|
9258
|
-
ipx,
|
|
9259
|
-
spx,
|
|
9260
|
-
spxII,
|
|
9261
|
-
unknownFutureValue,
|
|
9251
|
+
`unknown`: -1,
|
|
9252
|
+
ip: 0,
|
|
9253
|
+
icmp: 1,
|
|
9254
|
+
igmp: 2,
|
|
9255
|
+
ggp: 3,
|
|
9256
|
+
ipv4: 4,
|
|
9257
|
+
tcp: 6,
|
|
9258
|
+
pup: 12,
|
|
9259
|
+
udp: 17,
|
|
9260
|
+
idp: 22,
|
|
9261
|
+
ipv6: 41,
|
|
9262
|
+
ipv6RoutingHeader: 43,
|
|
9263
|
+
ipv6FragmentHeader: 44,
|
|
9264
|
+
ipSecEncapsulatingSecurityPayload: 50,
|
|
9265
|
+
ipSecAuthenticationHeader: 51,
|
|
9266
|
+
icmpV6: 58,
|
|
9267
|
+
ipv6NoNextHeader: 59,
|
|
9268
|
+
ipv6DestinationOptions: 60,
|
|
9269
|
+
nd: 77,
|
|
9270
|
+
raw: 255,
|
|
9271
|
+
ipx: 1000,
|
|
9272
|
+
spx: 1256,
|
|
9273
|
+
spxII: 1257,
|
|
9274
|
+
unknownFutureValue: 32767,
|
|
9262
9275
|
}
|
|
9263
9276
|
|
|
9264
9277
|
enum securityResourceType {
|
|
9265
|
-
`unknown
|
|
9266
|
-
attacked,
|
|
9267
|
-
related,
|
|
9268
|
-
unknownFutureValue,
|
|
9278
|
+
`unknown`: 0,
|
|
9279
|
+
attacked: 1,
|
|
9280
|
+
related: 2,
|
|
9281
|
+
unknownFutureValue: 3,
|
|
9269
9282
|
}
|
|
9270
9283
|
|
|
9271
9284
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9272
9285
|
enum selectionLikelihoodInfo {
|
|
9273
|
-
notSpecified,
|
|
9274
|
-
high,
|
|
9286
|
+
notSpecified: 0,
|
|
9287
|
+
high: 1,
|
|
9275
9288
|
}
|
|
9276
9289
|
|
|
9277
9290
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9278
9291
|
@graphFlags
|
|
9279
9292
|
enum sensitiveTypeScope {
|
|
9280
|
-
fullDocument,
|
|
9281
|
-
partialDocument,
|
|
9293
|
+
fullDocument: 1,
|
|
9294
|
+
partialDocument: 2,
|
|
9282
9295
|
}
|
|
9283
9296
|
|
|
9284
9297
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9285
9298
|
enum sensitiveTypeSource {
|
|
9286
|
-
outOfBox,
|
|
9287
|
-
tenant,
|
|
9299
|
+
outOfBox: 0,
|
|
9300
|
+
tenant: 1,
|
|
9288
9301
|
}
|
|
9289
9302
|
|
|
9290
9303
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9291
9304
|
enum sensitivity {
|
|
9292
|
-
normal,
|
|
9293
|
-
personal,
|
|
9294
|
-
private,
|
|
9295
|
-
confidential,
|
|
9305
|
+
normal: 0,
|
|
9306
|
+
personal: 1,
|
|
9307
|
+
private: 2,
|
|
9308
|
+
confidential: 3,
|
|
9296
9309
|
}
|
|
9297
9310
|
|
|
9298
9311
|
enum sensitivityLabelAssignmentMethod {
|
|
9299
|
-
standard,
|
|
9300
|
-
privileged,
|
|
9301
|
-
auto,
|
|
9302
|
-
unknownFutureValue,
|
|
9312
|
+
standard: 0,
|
|
9313
|
+
privileged: 1,
|
|
9314
|
+
auto: 2,
|
|
9315
|
+
unknownFutureValue: 3,
|
|
9303
9316
|
}
|
|
9304
9317
|
|
|
9305
9318
|
enum serviceHealthClassificationType {
|
|
9306
|
-
advisory,
|
|
9307
|
-
incident,
|
|
9308
|
-
unknownFutureValue,
|
|
9319
|
+
advisory: 1,
|
|
9320
|
+
incident: 2,
|
|
9321
|
+
unknownFutureValue: 3,
|
|
9309
9322
|
}
|
|
9310
9323
|
|
|
9311
9324
|
enum serviceHealthOrigin {
|
|
9312
|
-
microsoft,
|
|
9313
|
-
thirdParty,
|
|
9314
|
-
customer,
|
|
9315
|
-
unknownFutureValue,
|
|
9325
|
+
microsoft: 1,
|
|
9326
|
+
thirdParty: 2,
|
|
9327
|
+
customer: 3,
|
|
9328
|
+
unknownFutureValue: 4,
|
|
9316
9329
|
}
|
|
9317
9330
|
|
|
9318
9331
|
enum serviceHealthStatus {
|
|
9319
|
-
serviceOperational,
|
|
9320
|
-
investigating,
|
|
9321
|
-
restoringService,
|
|
9322
|
-
verifyingService,
|
|
9323
|
-
serviceRestored,
|
|
9324
|
-
postIncidentReviewPublished,
|
|
9325
|
-
serviceDegradation,
|
|
9326
|
-
serviceInterruption,
|
|
9327
|
-
extendedRecovery,
|
|
9328
|
-
falsePositive,
|
|
9329
|
-
investigationSuspended,
|
|
9330
|
-
resolved,
|
|
9331
|
-
mitigatedExternal,
|
|
9332
|
-
mitigated,
|
|
9333
|
-
resolvedExternal,
|
|
9334
|
-
confirmed,
|
|
9335
|
-
reported,
|
|
9336
|
-
unknownFutureValue,
|
|
9332
|
+
serviceOperational: 0,
|
|
9333
|
+
investigating: 1,
|
|
9334
|
+
restoringService: 2,
|
|
9335
|
+
verifyingService: 3,
|
|
9336
|
+
serviceRestored: 4,
|
|
9337
|
+
postIncidentReviewPublished: 5,
|
|
9338
|
+
serviceDegradation: 6,
|
|
9339
|
+
serviceInterruption: 7,
|
|
9340
|
+
extendedRecovery: 8,
|
|
9341
|
+
falsePositive: 9,
|
|
9342
|
+
investigationSuspended: 10,
|
|
9343
|
+
resolved: 11,
|
|
9344
|
+
mitigatedExternal: 12,
|
|
9345
|
+
mitigated: 13,
|
|
9346
|
+
resolvedExternal: 14,
|
|
9347
|
+
confirmed: 15,
|
|
9348
|
+
reported: 16,
|
|
9349
|
+
unknownFutureValue: 17,
|
|
9337
9350
|
}
|
|
9338
9351
|
|
|
9339
9352
|
enum serviceUpdateCategory {
|
|
9340
|
-
preventOrFixIssue,
|
|
9341
|
-
planForChange,
|
|
9342
|
-
stayInformed,
|
|
9343
|
-
unknownFutureValue,
|
|
9353
|
+
preventOrFixIssue: 1,
|
|
9354
|
+
planForChange: 2,
|
|
9355
|
+
stayInformed: 3,
|
|
9356
|
+
unknownFutureValue: 4,
|
|
9344
9357
|
}
|
|
9345
9358
|
|
|
9346
9359
|
enum serviceUpdateSeverity {
|
|
9347
|
-
normal,
|
|
9348
|
-
high,
|
|
9349
|
-
critical,
|
|
9350
|
-
unknownFutureValue,
|
|
9360
|
+
normal: 1,
|
|
9361
|
+
high: 2,
|
|
9362
|
+
critical: 3,
|
|
9363
|
+
unknownFutureValue: 4,
|
|
9351
9364
|
}
|
|
9352
9365
|
|
|
9353
9366
|
enum sharingCapabilities {
|
|
9354
|
-
disabled,
|
|
9355
|
-
externalUserSharingOnly,
|
|
9356
|
-
externalUserAndGuestSharing,
|
|
9357
|
-
existingExternalUserSharingOnly,
|
|
9358
|
-
unknownFutureValue,
|
|
9367
|
+
disabled: 0,
|
|
9368
|
+
externalUserSharingOnly: 1,
|
|
9369
|
+
externalUserAndGuestSharing: 2,
|
|
9370
|
+
existingExternalUserSharingOnly: 3,
|
|
9371
|
+
unknownFutureValue: 4,
|
|
9359
9372
|
}
|
|
9360
9373
|
|
|
9361
9374
|
enum sharingDomainRestrictionMode {
|
|
9362
|
-
none,
|
|
9363
|
-
allowList,
|
|
9364
|
-
blockList,
|
|
9365
|
-
unknownFutureValue,
|
|
9375
|
+
none: 0,
|
|
9376
|
+
allowList: 1,
|
|
9377
|
+
blockList: 2,
|
|
9378
|
+
unknownFutureValue: 3,
|
|
9366
9379
|
}
|
|
9367
9380
|
|
|
9368
9381
|
enum signInFrequencyAuthenticationType {
|
|
9369
|
-
primaryAndSecondaryAuthentication,
|
|
9370
|
-
secondaryAuthentication,
|
|
9371
|
-
unknownFutureValue,
|
|
9382
|
+
primaryAndSecondaryAuthentication: 0,
|
|
9383
|
+
secondaryAuthentication: 1,
|
|
9384
|
+
unknownFutureValue: 2,
|
|
9372
9385
|
}
|
|
9373
9386
|
|
|
9374
9387
|
enum signInFrequencyInterval {
|
|
9375
|
-
timeBased,
|
|
9376
|
-
everyTime,
|
|
9377
|
-
unknownFutureValue,
|
|
9388
|
+
timeBased: 0,
|
|
9389
|
+
everyTime: 1,
|
|
9390
|
+
unknownFutureValue: 2,
|
|
9378
9391
|
}
|
|
9379
9392
|
|
|
9380
9393
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9381
9394
|
enum signinFrequencyType {
|
|
9382
|
-
days,
|
|
9383
|
-
hours,
|
|
9395
|
+
days: 0,
|
|
9396
|
+
hours: 1,
|
|
9384
9397
|
}
|
|
9385
9398
|
|
|
9386
9399
|
enum signInUserType {
|
|
9387
|
-
member,
|
|
9388
|
-
guest,
|
|
9389
|
-
unknownFutureValue,
|
|
9400
|
+
member: 0,
|
|
9401
|
+
guest: 1,
|
|
9402
|
+
unknownFutureValue: 3,
|
|
9390
9403
|
}
|
|
9391
9404
|
|
|
9392
9405
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9393
9406
|
enum siteAccessType {
|
|
9394
|
-
block,
|
|
9395
|
-
full,
|
|
9396
|
-
limited,
|
|
9407
|
+
block: 0,
|
|
9408
|
+
full: 1,
|
|
9409
|
+
limited: 2,
|
|
9397
9410
|
}
|
|
9398
9411
|
|
|
9399
9412
|
enum siteArchiveStatus {
|
|
9400
|
-
recentlyArchived,
|
|
9401
|
-
fullyArchived,
|
|
9402
|
-
reactivating,
|
|
9403
|
-
unknownFutureValue,
|
|
9413
|
+
recentlyArchived: 0,
|
|
9414
|
+
fullyArchived: 1,
|
|
9415
|
+
reactivating: 2,
|
|
9416
|
+
unknownFutureValue: 3,
|
|
9404
9417
|
}
|
|
9405
9418
|
|
|
9406
9419
|
enum stagedFeatureName {
|
|
9407
|
-
passthroughAuthentication,
|
|
9408
|
-
seamlessSso,
|
|
9409
|
-
passwordHashSync,
|
|
9410
|
-
emailAsAlternateId,
|
|
9411
|
-
unknownFutureValue,
|
|
9412
|
-
certificateBasedAuthentication,
|
|
9413
|
-
multiFactorAuthentication,
|
|
9420
|
+
passthroughAuthentication: 0,
|
|
9421
|
+
seamlessSso: 1,
|
|
9422
|
+
passwordHashSync: 2,
|
|
9423
|
+
emailAsAlternateId: 3,
|
|
9424
|
+
unknownFutureValue: 4,
|
|
9425
|
+
certificateBasedAuthentication: 5,
|
|
9426
|
+
multiFactorAuthentication: 6,
|
|
9414
9427
|
}
|
|
9415
9428
|
|
|
9416
9429
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9417
9430
|
enum synchronizationDisposition {
|
|
9418
|
-
Normal,
|
|
9419
|
-
Discard,
|
|
9420
|
-
Escrow,
|
|
9431
|
+
Normal: 0,
|
|
9432
|
+
Discard: 1,
|
|
9433
|
+
Escrow: 2,
|
|
9421
9434
|
}
|
|
9422
9435
|
|
|
9423
9436
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9424
9437
|
@graphFlags
|
|
9425
9438
|
enum synchronizationJobRestartScope {
|
|
9426
|
-
None,
|
|
9427
|
-
ConnectorDataStore,
|
|
9428
|
-
Escrows,
|
|
9429
|
-
Watermark,
|
|
9430
|
-
QuarantineState,
|
|
9431
|
-
Full,
|
|
9432
|
-
ForceDeletes,
|
|
9439
|
+
None: 0,
|
|
9440
|
+
ConnectorDataStore: 1,
|
|
9441
|
+
Escrows: 2,
|
|
9442
|
+
Watermark: 4,
|
|
9443
|
+
QuarantineState: 8,
|
|
9444
|
+
Full: 15,
|
|
9445
|
+
ForceDeletes: 32,
|
|
9433
9446
|
}
|
|
9434
9447
|
|
|
9435
9448
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9436
9449
|
enum synchronizationMetadata {
|
|
9437
|
-
GalleryApplicationIdentifier,
|
|
9438
|
-
GalleryApplicationKey,
|
|
9439
|
-
IsOAuthEnabled,
|
|
9440
|
-
IsSynchronizationAgentAssignmentRequired,
|
|
9441
|
-
IsSynchronizationAgentRequired,
|
|
9442
|
-
IsSynchronizationInPreview,
|
|
9443
|
-
OAuthSettings,
|
|
9444
|
-
SynchronizationLearnMoreIbizaFwLink,
|
|
9445
|
-
ConfigurationFields,
|
|
9450
|
+
GalleryApplicationIdentifier: 0,
|
|
9451
|
+
GalleryApplicationKey: 1,
|
|
9452
|
+
IsOAuthEnabled: 2,
|
|
9453
|
+
IsSynchronizationAgentAssignmentRequired: 3,
|
|
9454
|
+
IsSynchronizationAgentRequired: 4,
|
|
9455
|
+
IsSynchronizationInPreview: 5,
|
|
9456
|
+
OAuthSettings: 6,
|
|
9457
|
+
SynchronizationLearnMoreIbizaFwLink: 7,
|
|
9458
|
+
ConfigurationFields: 8,
|
|
9446
9459
|
}
|
|
9447
9460
|
|
|
9448
9461
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9449
9462
|
enum synchronizationScheduleState {
|
|
9450
|
-
Active,
|
|
9451
|
-
Disabled,
|
|
9463
|
+
Active: 0,
|
|
9464
|
+
Disabled: 1,
|
|
9452
9465
|
}
|
|
9453
9466
|
|
|
9454
9467
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9455
9468
|
enum synchronizationSecret {
|
|
9456
|
-
None,
|
|
9457
|
-
UserName,
|
|
9458
|
-
Password,
|
|
9459
|
-
SecretToken,
|
|
9460
|
-
AppKey,
|
|
9461
|
-
BaseAddress,
|
|
9462
|
-
ClientIdentifier,
|
|
9463
|
-
ClientSecret,
|
|
9464
|
-
SingleSignOnType,
|
|
9465
|
-
Sandbox,
|
|
9466
|
-
Url,
|
|
9467
|
-
Domain,
|
|
9468
|
-
ConsumerKey,
|
|
9469
|
-
ConsumerSecret,
|
|
9470
|
-
TokenKey,
|
|
9471
|
-
TokenExpiration,
|
|
9472
|
-
Oauth2AccessToken,
|
|
9473
|
-
Oauth2AccessTokenCreationTime,
|
|
9474
|
-
Oauth2RefreshToken,
|
|
9475
|
-
SyncAll,
|
|
9476
|
-
InstanceName,
|
|
9477
|
-
Oauth2ClientId,
|
|
9478
|
-
Oauth2ClientSecret,
|
|
9479
|
-
CompanyId,
|
|
9480
|
-
UpdateKeyOnSoftDelete,
|
|
9481
|
-
SynchronizationSchedule,
|
|
9482
|
-
SystemOfRecord,
|
|
9483
|
-
SandboxName,
|
|
9484
|
-
EnforceDomain,
|
|
9485
|
-
SyncNotificationSettings,
|
|
9486
|
-
Server,
|
|
9487
|
-
PerformInboundEntitlementGrants,
|
|
9488
|
-
HardDeletesEnabled,
|
|
9489
|
-
SyncAgentCompatibilityKey,
|
|
9490
|
-
SyncAgentADContainer,
|
|
9491
|
-
ValidateDomain,
|
|
9492
|
-
TestReferences,
|
|
9469
|
+
None: 0,
|
|
9470
|
+
UserName: 1,
|
|
9471
|
+
Password: 2,
|
|
9472
|
+
SecretToken: 3,
|
|
9473
|
+
AppKey: 4,
|
|
9474
|
+
BaseAddress: 5,
|
|
9475
|
+
ClientIdentifier: 6,
|
|
9476
|
+
ClientSecret: 7,
|
|
9477
|
+
SingleSignOnType: 11,
|
|
9478
|
+
Sandbox: 12,
|
|
9479
|
+
Url: 13,
|
|
9480
|
+
Domain: 14,
|
|
9481
|
+
ConsumerKey: 15,
|
|
9482
|
+
ConsumerSecret: 16,
|
|
9483
|
+
TokenKey: 17,
|
|
9484
|
+
TokenExpiration: 18,
|
|
9485
|
+
Oauth2AccessToken: 19,
|
|
9486
|
+
Oauth2AccessTokenCreationTime: 20,
|
|
9487
|
+
Oauth2RefreshToken: 21,
|
|
9488
|
+
SyncAll: 22,
|
|
9489
|
+
InstanceName: 24,
|
|
9490
|
+
Oauth2ClientId: 27,
|
|
9491
|
+
Oauth2ClientSecret: 28,
|
|
9492
|
+
CompanyId: 29,
|
|
9493
|
+
UpdateKeyOnSoftDelete: 30,
|
|
9494
|
+
SynchronizationSchedule: 33,
|
|
9495
|
+
SystemOfRecord: 34,
|
|
9496
|
+
SandboxName: 35,
|
|
9497
|
+
EnforceDomain: 36,
|
|
9498
|
+
SyncNotificationSettings: 37,
|
|
9499
|
+
Server: 70,
|
|
9500
|
+
PerformInboundEntitlementGrants: 100,
|
|
9501
|
+
HardDeletesEnabled: 101,
|
|
9502
|
+
SyncAgentCompatibilityKey: 102,
|
|
9503
|
+
SyncAgentADContainer: 103,
|
|
9504
|
+
ValidateDomain: 206,
|
|
9505
|
+
TestReferences: 207,
|
|
9493
9506
|
}
|
|
9494
9507
|
|
|
9495
9508
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9496
9509
|
enum synchronizationStatusCode {
|
|
9497
|
-
NotConfigured,
|
|
9498
|
-
NotRun,
|
|
9499
|
-
Active,
|
|
9500
|
-
Paused,
|
|
9501
|
-
Quarantine,
|
|
9510
|
+
NotConfigured: 0,
|
|
9511
|
+
NotRun: 1,
|
|
9512
|
+
Active: 2,
|
|
9513
|
+
Paused: 3,
|
|
9514
|
+
Quarantine: 4,
|
|
9502
9515
|
}
|
|
9503
9516
|
|
|
9504
9517
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9505
9518
|
enum synchronizationTaskExecutionResult {
|
|
9506
|
-
Succeeded,
|
|
9507
|
-
Failed,
|
|
9508
|
-
EntryLevelErrors,
|
|
9519
|
+
Succeeded: 0,
|
|
9520
|
+
Failed: 1,
|
|
9521
|
+
EntryLevelErrors: 2,
|
|
9509
9522
|
}
|
|
9510
9523
|
|
|
9511
9524
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9512
9525
|
enum taskStatus {
|
|
9513
|
-
notStarted,
|
|
9514
|
-
inProgress,
|
|
9515
|
-
completed,
|
|
9516
|
-
waitingOnOthers,
|
|
9517
|
-
deferred,
|
|
9526
|
+
notStarted: 0,
|
|
9527
|
+
inProgress: 1,
|
|
9528
|
+
completed: 2,
|
|
9529
|
+
waitingOnOthers: 3,
|
|
9530
|
+
deferred: 4,
|
|
9518
9531
|
}
|
|
9519
9532
|
|
|
9520
9533
|
enum teamsAppDistributionMethod {
|
|
9521
|
-
store,
|
|
9522
|
-
organization,
|
|
9523
|
-
sideloaded,
|
|
9524
|
-
unknownFutureValue,
|
|
9534
|
+
store: 0,
|
|
9535
|
+
organization: 1,
|
|
9536
|
+
sideloaded: 2,
|
|
9537
|
+
unknownFutureValue: 3,
|
|
9525
9538
|
}
|
|
9526
9539
|
|
|
9527
9540
|
enum teamsAppPublishingState {
|
|
9528
|
-
submitted,
|
|
9529
|
-
rejected,
|
|
9530
|
-
published,
|
|
9531
|
-
unknownFutureValue,
|
|
9541
|
+
submitted: 0,
|
|
9542
|
+
rejected: 1,
|
|
9543
|
+
published: 2,
|
|
9544
|
+
unknownFutureValue: 3,
|
|
9532
9545
|
}
|
|
9533
9546
|
|
|
9534
9547
|
enum teamsAppResourceSpecificPermissionType {
|
|
9535
|
-
delegated,
|
|
9536
|
-
application,
|
|
9537
|
-
unknownFutureValue,
|
|
9548
|
+
delegated: 0,
|
|
9549
|
+
application: 1,
|
|
9550
|
+
unknownFutureValue: 2,
|
|
9538
9551
|
}
|
|
9539
9552
|
|
|
9540
9553
|
enum teamsAsyncOperationStatus {
|
|
9541
|
-
invalid,
|
|
9542
|
-
notStarted,
|
|
9543
|
-
inProgress,
|
|
9544
|
-
succeeded,
|
|
9545
|
-
failed,
|
|
9546
|
-
unknownFutureValue,
|
|
9554
|
+
invalid: 0,
|
|
9555
|
+
notStarted: 1,
|
|
9556
|
+
inProgress: 2,
|
|
9557
|
+
succeeded: 3,
|
|
9558
|
+
failed: 4,
|
|
9559
|
+
unknownFutureValue: 5,
|
|
9547
9560
|
}
|
|
9548
9561
|
|
|
9549
9562
|
enum teamsAsyncOperationType {
|
|
9550
|
-
invalid,
|
|
9551
|
-
cloneTeam,
|
|
9552
|
-
archiveTeam,
|
|
9553
|
-
unarchiveTeam,
|
|
9554
|
-
createTeam,
|
|
9555
|
-
unknownFutureValue,
|
|
9556
|
-
teamifyGroup,
|
|
9557
|
-
createChannel,
|
|
9558
|
-
archiveChannel,
|
|
9559
|
-
unarchiveChannel,
|
|
9563
|
+
invalid: 0,
|
|
9564
|
+
cloneTeam: 1,
|
|
9565
|
+
archiveTeam: 2,
|
|
9566
|
+
unarchiveTeam: 3,
|
|
9567
|
+
createTeam: 4,
|
|
9568
|
+
unknownFutureValue: 5,
|
|
9569
|
+
teamifyGroup: 6,
|
|
9570
|
+
createChannel: 7,
|
|
9571
|
+
archiveChannel: 8,
|
|
9572
|
+
unarchiveChannel: 9,
|
|
9560
9573
|
}
|
|
9561
9574
|
|
|
9562
9575
|
enum teamSpecialization {
|
|
9563
|
-
none,
|
|
9564
|
-
educationStandard,
|
|
9565
|
-
educationClass,
|
|
9566
|
-
educationProfessionalLearningCommunity,
|
|
9567
|
-
educationStaff,
|
|
9568
|
-
healthcareStandard,
|
|
9569
|
-
healthcareCareCoordination,
|
|
9570
|
-
unknownFutureValue,
|
|
9576
|
+
none: 0,
|
|
9577
|
+
educationStandard: 1,
|
|
9578
|
+
educationClass: 2,
|
|
9579
|
+
educationProfessionalLearningCommunity: 3,
|
|
9580
|
+
educationStaff: 4,
|
|
9581
|
+
healthcareStandard: 5,
|
|
9582
|
+
healthcareCareCoordination: 6,
|
|
9583
|
+
unknownFutureValue: 7,
|
|
9571
9584
|
}
|
|
9572
9585
|
|
|
9573
9586
|
enum teamVisibilityType {
|
|
9574
|
-
private,
|
|
9575
|
-
public,
|
|
9576
|
-
hiddenMembership,
|
|
9577
|
-
unknownFutureValue,
|
|
9587
|
+
private: 0,
|
|
9588
|
+
public: 1,
|
|
9589
|
+
hiddenMembership: 2,
|
|
9590
|
+
unknownFutureValue: 3,
|
|
9578
9591
|
}
|
|
9579
9592
|
|
|
9580
9593
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9581
9594
|
enum teamworkActivityTopicSource {
|
|
9582
|
-
entityUrl,
|
|
9583
|
-
text,
|
|
9595
|
+
entityUrl: 0,
|
|
9596
|
+
text: 1,
|
|
9584
9597
|
}
|
|
9585
9598
|
|
|
9586
9599
|
enum teamworkApplicationIdentityType {
|
|
9587
|
-
aadApplication,
|
|
9588
|
-
bot,
|
|
9589
|
-
tenantBot,
|
|
9590
|
-
office365Connector,
|
|
9591
|
-
outgoingWebhook,
|
|
9592
|
-
unknownFutureValue,
|
|
9600
|
+
aadApplication: 0,
|
|
9601
|
+
bot: 1,
|
|
9602
|
+
tenantBot: 2,
|
|
9603
|
+
office365Connector: 3,
|
|
9604
|
+
outgoingWebhook: 4,
|
|
9605
|
+
unknownFutureValue: 5,
|
|
9593
9606
|
}
|
|
9594
9607
|
|
|
9595
9608
|
enum teamworkCallEventType {
|
|
9596
|
-
call,
|
|
9597
|
-
meeting,
|
|
9598
|
-
screenShare,
|
|
9599
|
-
unknownFutureValue,
|
|
9609
|
+
call: 0,
|
|
9610
|
+
meeting: 1,
|
|
9611
|
+
screenShare: 2,
|
|
9612
|
+
unknownFutureValue: 3,
|
|
9600
9613
|
}
|
|
9601
9614
|
|
|
9602
9615
|
enum teamworkConversationIdentityType {
|
|
9603
|
-
team,
|
|
9604
|
-
channel,
|
|
9605
|
-
chat,
|
|
9606
|
-
unknownFutureValue,
|
|
9616
|
+
team: 0,
|
|
9617
|
+
channel: 1,
|
|
9618
|
+
chat: 2,
|
|
9619
|
+
unknownFutureValue: 3,
|
|
9607
9620
|
}
|
|
9608
9621
|
|
|
9609
9622
|
enum teamworkTagType {
|
|
9610
|
-
standard,
|
|
9611
|
-
unknownFutureValue,
|
|
9623
|
+
standard: 0,
|
|
9624
|
+
unknownFutureValue: 1,
|
|
9612
9625
|
}
|
|
9613
9626
|
|
|
9614
9627
|
enum teamworkUserIdentityType {
|
|
9615
|
-
aadUser,
|
|
9616
|
-
onPremiseAadUser,
|
|
9617
|
-
anonymousGuest,
|
|
9618
|
-
federatedUser,
|
|
9619
|
-
personalMicrosoftAccountUser,
|
|
9620
|
-
skypeUser,
|
|
9621
|
-
phoneUser,
|
|
9622
|
-
unknownFutureValue,
|
|
9623
|
-
emailUser,
|
|
9628
|
+
aadUser: 0,
|
|
9629
|
+
onPremiseAadUser: 1,
|
|
9630
|
+
anonymousGuest: 2,
|
|
9631
|
+
federatedUser: 3,
|
|
9632
|
+
personalMicrosoftAccountUser: 4,
|
|
9633
|
+
skypeUser: 5,
|
|
9634
|
+
phoneUser: 6,
|
|
9635
|
+
unknownFutureValue: 7,
|
|
9636
|
+
emailUser: 8,
|
|
9624
9637
|
}
|
|
9625
9638
|
|
|
9626
9639
|
@graphFlags
|
|
9627
9640
|
enum templateScenarios {
|
|
9628
|
-
new,
|
|
9629
|
-
secureFoundation,
|
|
9630
|
-
zeroTrust,
|
|
9631
|
-
remoteWork,
|
|
9632
|
-
protectAdmins,
|
|
9633
|
-
emergingThreats,
|
|
9634
|
-
unknownFutureValue,
|
|
9641
|
+
new: 0,
|
|
9642
|
+
secureFoundation: 1,
|
|
9643
|
+
zeroTrust: 2,
|
|
9644
|
+
remoteWork: 4,
|
|
9645
|
+
protectAdmins: 8,
|
|
9646
|
+
emergingThreats: 16,
|
|
9647
|
+
unknownFutureValue: 32,
|
|
9635
9648
|
}
|
|
9636
9649
|
|
|
9637
9650
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9638
9651
|
enum timeZoneStandard {
|
|
9639
|
-
windows,
|
|
9640
|
-
iana,
|
|
9652
|
+
windows: 0,
|
|
9653
|
+
iana: 1,
|
|
9641
9654
|
}
|
|
9642
9655
|
|
|
9643
9656
|
enum titleAreaLayoutType {
|
|
9644
|
-
imageAndTitle,
|
|
9645
|
-
plain,
|
|
9646
|
-
colorBlock,
|
|
9647
|
-
overlap,
|
|
9648
|
-
unknownFutureValue,
|
|
9657
|
+
imageAndTitle: 0,
|
|
9658
|
+
plain: 1,
|
|
9659
|
+
colorBlock: 2,
|
|
9660
|
+
overlap: 3,
|
|
9661
|
+
unknownFutureValue: 4,
|
|
9649
9662
|
}
|
|
9650
9663
|
|
|
9651
9664
|
enum titleAreaTextAlignmentType {
|
|
9652
|
-
left,
|
|
9653
|
-
center,
|
|
9654
|
-
unknownFutureValue,
|
|
9665
|
+
left: 0,
|
|
9666
|
+
center: 1,
|
|
9667
|
+
unknownFutureValue: 2,
|
|
9655
9668
|
}
|
|
9656
9669
|
|
|
9657
9670
|
enum tokenIssuerType {
|
|
9658
|
-
AzureAD,
|
|
9659
|
-
ADFederationServices,
|
|
9660
|
-
UnknownFutureValue,
|
|
9671
|
+
AzureAD: 0,
|
|
9672
|
+
ADFederationServices: 1,
|
|
9673
|
+
UnknownFutureValue: 2,
|
|
9661
9674
|
}
|
|
9662
9675
|
|
|
9663
9676
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9664
9677
|
enum tone {
|
|
9665
|
-
tone0,
|
|
9666
|
-
tone1,
|
|
9667
|
-
tone2,
|
|
9668
|
-
tone3,
|
|
9669
|
-
tone4,
|
|
9670
|
-
tone5,
|
|
9671
|
-
tone6,
|
|
9672
|
-
tone7,
|
|
9673
|
-
tone8,
|
|
9674
|
-
tone9,
|
|
9675
|
-
star,
|
|
9676
|
-
pound,
|
|
9677
|
-
a,
|
|
9678
|
-
b,
|
|
9679
|
-
c,
|
|
9680
|
-
d,
|
|
9681
|
-
flash,
|
|
9678
|
+
tone0: 0,
|
|
9679
|
+
tone1: 1,
|
|
9680
|
+
tone2: 2,
|
|
9681
|
+
tone3: 3,
|
|
9682
|
+
tone4: 4,
|
|
9683
|
+
tone5: 5,
|
|
9684
|
+
tone6: 6,
|
|
9685
|
+
tone7: 7,
|
|
9686
|
+
tone8: 8,
|
|
9687
|
+
tone9: 9,
|
|
9688
|
+
star: 10,
|
|
9689
|
+
pound: 11,
|
|
9690
|
+
a: 12,
|
|
9691
|
+
b: 13,
|
|
9692
|
+
c: 14,
|
|
9693
|
+
d: 15,
|
|
9694
|
+
flash: 16,
|
|
9682
9695
|
}
|
|
9683
9696
|
|
|
9684
9697
|
enum unifiedRoleManagementPolicyRuleTargetOperations {
|
|
9685
|
-
all,
|
|
9686
|
-
activate,
|
|
9687
|
-
deactivate,
|
|
9688
|
-
assign,
|
|
9689
|
-
update,
|
|
9690
|
-
remove,
|
|
9691
|
-
extend,
|
|
9692
|
-
renew,
|
|
9693
|
-
unknownFutureValue,
|
|
9698
|
+
all: 0,
|
|
9699
|
+
activate: 1,
|
|
9700
|
+
deactivate: 2,
|
|
9701
|
+
assign: 3,
|
|
9702
|
+
update: 4,
|
|
9703
|
+
remove: 5,
|
|
9704
|
+
extend: 6,
|
|
9705
|
+
renew: 7,
|
|
9706
|
+
unknownFutureValue: 8,
|
|
9694
9707
|
}
|
|
9695
9708
|
|
|
9696
9709
|
enum unifiedRoleScheduleRequestActions {
|
|
9697
|
-
adminAssign,
|
|
9698
|
-
adminUpdate,
|
|
9699
|
-
adminRemove,
|
|
9700
|
-
selfActivate,
|
|
9701
|
-
selfDeactivate,
|
|
9702
|
-
adminExtend,
|
|
9703
|
-
adminRenew,
|
|
9704
|
-
selfExtend,
|
|
9705
|
-
selfRenew,
|
|
9706
|
-
unknownFutureValue,
|
|
9710
|
+
adminAssign: 1,
|
|
9711
|
+
adminUpdate: 2,
|
|
9712
|
+
adminRemove: 3,
|
|
9713
|
+
selfActivate: 4,
|
|
9714
|
+
selfDeactivate: 5,
|
|
9715
|
+
adminExtend: 6,
|
|
9716
|
+
adminRenew: 7,
|
|
9717
|
+
selfExtend: 8,
|
|
9718
|
+
selfRenew: 9,
|
|
9719
|
+
unknownFutureValue: 10,
|
|
9707
9720
|
}
|
|
9708
9721
|
|
|
9709
9722
|
@graphFlags
|
|
9710
9723
|
enum usageRights {
|
|
9711
|
-
`unknown
|
|
9712
|
-
docEdit,
|
|
9713
|
-
edit,
|
|
9714
|
-
comment,
|
|
9715
|
-
export,
|
|
9716
|
-
forward,
|
|
9717
|
-
owner,
|
|
9718
|
-
print,
|
|
9719
|
-
reply,
|
|
9720
|
-
replyAll,
|
|
9721
|
-
view,
|
|
9722
|
-
extract,
|
|
9723
|
-
viewRightsData,
|
|
9724
|
-
editRightsData,
|
|
9725
|
-
objModel,
|
|
9726
|
-
accessDenied,
|
|
9727
|
-
userDefinedProtectionTypeNotSupportedException,
|
|
9728
|
-
encryptedProtectionTypeNotSupportedException,
|
|
9729
|
-
purviewClaimsChallengeNotSupportedException,
|
|
9730
|
-
exception,
|
|
9731
|
-
labelNotFoundException,
|
|
9732
|
-
unknownFutureValue,
|
|
9724
|
+
`unknown`: 1,
|
|
9725
|
+
docEdit: 2,
|
|
9726
|
+
edit: 4,
|
|
9727
|
+
comment: 8,
|
|
9728
|
+
export: 16,
|
|
9729
|
+
forward: 32,
|
|
9730
|
+
owner: 64,
|
|
9731
|
+
print: 128,
|
|
9732
|
+
reply: 256,
|
|
9733
|
+
replyAll: 512,
|
|
9734
|
+
view: 1024,
|
|
9735
|
+
extract: 2048,
|
|
9736
|
+
viewRightsData: 4096,
|
|
9737
|
+
editRightsData: 8192,
|
|
9738
|
+
objModel: 16384,
|
|
9739
|
+
accessDenied: 32768,
|
|
9740
|
+
userDefinedProtectionTypeNotSupportedException: 65536,
|
|
9741
|
+
encryptedProtectionTypeNotSupportedException: 131072,
|
|
9742
|
+
purviewClaimsChallengeNotSupportedException: 262144,
|
|
9743
|
+
exception: 524288,
|
|
9744
|
+
labelNotFoundException: 1048576,
|
|
9745
|
+
unknownFutureValue: 2097152,
|
|
9733
9746
|
}
|
|
9734
9747
|
|
|
9735
9748
|
enum userAccountSecurityType {
|
|
9736
|
-
`unknown
|
|
9737
|
-
standard,
|
|
9738
|
-
power,
|
|
9739
|
-
administrator,
|
|
9740
|
-
unknownFutureValue,
|
|
9749
|
+
`unknown`: 0,
|
|
9750
|
+
standard: 1,
|
|
9751
|
+
power: 2,
|
|
9752
|
+
administrator: 3,
|
|
9753
|
+
unknownFutureValue: 127,
|
|
9741
9754
|
}
|
|
9742
9755
|
|
|
9743
9756
|
enum userAction {
|
|
9744
|
-
registerSecurityInformation,
|
|
9745
|
-
registerOrJoinDevices,
|
|
9746
|
-
unknownFutureValue,
|
|
9757
|
+
registerSecurityInformation: 0,
|
|
9758
|
+
registerOrJoinDevices: 1,
|
|
9759
|
+
unknownFutureValue: 2,
|
|
9747
9760
|
}
|
|
9748
9761
|
|
|
9749
9762
|
enum userDefaultAuthenticationMethod {
|
|
9750
|
-
push,
|
|
9751
|
-
oath,
|
|
9752
|
-
voiceMobile,
|
|
9753
|
-
voiceAlternateMobile,
|
|
9754
|
-
voiceOffice,
|
|
9755
|
-
sms,
|
|
9756
|
-
none,
|
|
9757
|
-
unknownFutureValue,
|
|
9763
|
+
push: 0,
|
|
9764
|
+
oath: 1,
|
|
9765
|
+
voiceMobile: 2,
|
|
9766
|
+
voiceAlternateMobile: 3,
|
|
9767
|
+
voiceOffice: 4,
|
|
9768
|
+
sms: 5,
|
|
9769
|
+
none: 6,
|
|
9770
|
+
unknownFutureValue: 7,
|
|
9758
9771
|
}
|
|
9759
9772
|
|
|
9760
9773
|
enum userSignInRecommendationScope {
|
|
9761
|
-
tenant,
|
|
9762
|
-
application,
|
|
9763
|
-
unknownFutureValue,
|
|
9774
|
+
tenant: 0,
|
|
9775
|
+
application: 1,
|
|
9776
|
+
unknownFutureValue: 2,
|
|
9764
9777
|
}
|
|
9765
9778
|
|
|
9766
9779
|
enum volumeType {
|
|
9767
|
-
operatingSystemVolume,
|
|
9768
|
-
fixedDataVolume,
|
|
9769
|
-
removableDataVolume,
|
|
9770
|
-
unknownFutureValue,
|
|
9780
|
+
operatingSystemVolume: 1,
|
|
9781
|
+
fixedDataVolume: 2,
|
|
9782
|
+
removableDataVolume: 3,
|
|
9783
|
+
unknownFutureValue: 4,
|
|
9771
9784
|
}
|
|
9772
9785
|
|
|
9773
9786
|
@graphFlags
|
|
9774
9787
|
enum weakAlgorithms {
|
|
9775
|
-
rsaSha1,
|
|
9776
|
-
unknownFutureValue,
|
|
9788
|
+
rsaSha1: 1,
|
|
9789
|
+
unknownFutureValue: 2,
|
|
9777
9790
|
}
|
|
9778
9791
|
|
|
9779
9792
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9780
9793
|
enum websiteType {
|
|
9781
|
-
other,
|
|
9782
|
-
home,
|
|
9783
|
-
work,
|
|
9784
|
-
blog,
|
|
9785
|
-
profile,
|
|
9794
|
+
other: 0,
|
|
9795
|
+
home: 1,
|
|
9796
|
+
work: 2,
|
|
9797
|
+
blog: 3,
|
|
9798
|
+
profile: 4,
|
|
9786
9799
|
}
|
|
9787
9800
|
|
|
9788
9801
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9789
9802
|
enum weekIndex {
|
|
9790
|
-
first,
|
|
9791
|
-
second,
|
|
9792
|
-
third,
|
|
9793
|
-
fourth,
|
|
9794
|
-
last,
|
|
9803
|
+
first: 0,
|
|
9804
|
+
second: 1,
|
|
9805
|
+
third: 2,
|
|
9806
|
+
fourth: 3,
|
|
9807
|
+
last: 4,
|
|
9795
9808
|
}
|
|
9796
9809
|
|
|
9797
9810
|
enum wellknownListName {
|
|
9798
|
-
none,
|
|
9799
|
-
defaultList,
|
|
9800
|
-
flaggedEmails,
|
|
9801
|
-
unknownFutureValue,
|
|
9811
|
+
none: 0,
|
|
9812
|
+
defaultList: 1,
|
|
9813
|
+
flaggedEmails: 2,
|
|
9814
|
+
unknownFutureValue: 3,
|
|
9802
9815
|
}
|
|
9803
9816
|
|
|
9804
9817
|
@graphFlags
|
|
9805
9818
|
enum whatIfAnalysisReasons {
|
|
9806
|
-
notSet,
|
|
9807
|
-
notEnoughInformation,
|
|
9808
|
-
invalidCondition,
|
|
9809
|
-
users,
|
|
9810
|
-
workloadIdentities,
|
|
9811
|
-
application,
|
|
9812
|
-
userActions,
|
|
9813
|
-
authenticationContext,
|
|
9814
|
-
devicePlatform,
|
|
9815
|
-
devices,
|
|
9816
|
-
clientApps,
|
|
9817
|
-
location,
|
|
9818
|
-
signInRisk,
|
|
9819
|
-
emptyPolicy,
|
|
9820
|
-
invalidPolicy,
|
|
9821
|
-
policyNotEnabled,
|
|
9822
|
-
userRisk,
|
|
9823
|
-
time,
|
|
9824
|
-
insiderRisk,
|
|
9825
|
-
authenticationFlow,
|
|
9826
|
-
unknownFutureValue,
|
|
9819
|
+
notSet: 0,
|
|
9820
|
+
notEnoughInformation: 1,
|
|
9821
|
+
invalidCondition: 2,
|
|
9822
|
+
users: 4,
|
|
9823
|
+
workloadIdentities: 8,
|
|
9824
|
+
application: 16,
|
|
9825
|
+
userActions: 32,
|
|
9826
|
+
authenticationContext: 64,
|
|
9827
|
+
devicePlatform: 128,
|
|
9828
|
+
devices: 256,
|
|
9829
|
+
clientApps: 512,
|
|
9830
|
+
location: 1024,
|
|
9831
|
+
signInRisk: 2048,
|
|
9832
|
+
emptyPolicy: 4096,
|
|
9833
|
+
invalidPolicy: 8192,
|
|
9834
|
+
policyNotEnabled: 16384,
|
|
9835
|
+
userRisk: 32768,
|
|
9836
|
+
time: 65536,
|
|
9837
|
+
insiderRisk: 131072,
|
|
9838
|
+
authenticationFlow: 262144,
|
|
9839
|
+
unknownFutureValue: 524288,
|
|
9827
9840
|
}
|
|
9828
9841
|
|
|
9829
9842
|
enum x509CertificateAffinityLevel {
|
|
9830
|
-
low,
|
|
9831
|
-
high,
|
|
9832
|
-
unknownFutureValue,
|
|
9843
|
+
low: 0,
|
|
9844
|
+
high: 1,
|
|
9845
|
+
unknownFutureValue: 2,
|
|
9833
9846
|
}
|
|
9834
9847
|
|
|
9835
9848
|
enum x509CertificateAuthenticationMode {
|
|
9836
|
-
x509CertificateSingleFactor,
|
|
9837
|
-
x509CertificateMultiFactor,
|
|
9838
|
-
unknownFutureValue,
|
|
9849
|
+
x509CertificateSingleFactor: 0,
|
|
9850
|
+
x509CertificateMultiFactor: 1,
|
|
9851
|
+
unknownFutureValue: 2,
|
|
9839
9852
|
}
|
|
9840
9853
|
|
|
9841
9854
|
enum x509CertificateCRLValidationConfigurationState {
|
|
9842
|
-
disabled,
|
|
9843
|
-
enabled,
|
|
9844
|
-
unknownFutureValue,
|
|
9855
|
+
disabled: 0,
|
|
9856
|
+
enabled: 1,
|
|
9857
|
+
unknownFutureValue: 2,
|
|
9845
9858
|
}
|
|
9846
9859
|
|
|
9847
9860
|
enum x509CertificateRuleType {
|
|
9848
|
-
issuerSubject,
|
|
9849
|
-
policyOID,
|
|
9850
|
-
unknownFutureValue,
|
|
9851
|
-
issuerSubjectAndPolicyOID,
|
|
9861
|
+
issuerSubject: 0,
|
|
9862
|
+
policyOID: 1,
|
|
9863
|
+
unknownFutureValue: 2,
|
|
9864
|
+
issuerSubjectAndPolicyOID: 3,
|
|
9852
9865
|
}
|
|
9853
9866
|
|
|
9854
9867
|
}
|
|
@@ -10170,74 +10183,74 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10170
10183
|
}
|
|
10171
10184
|
|
|
10172
10185
|
enum activationTaskScopeType {
|
|
10173
|
-
allTasks,
|
|
10174
|
-
failedTasks,
|
|
10175
|
-
unknownFutureValue,
|
|
10186
|
+
allTasks: 0,
|
|
10187
|
+
failedTasks: 1,
|
|
10188
|
+
unknownFutureValue: 2,
|
|
10176
10189
|
}
|
|
10177
10190
|
|
|
10178
10191
|
enum activationUserScopeType {
|
|
10179
|
-
allUsers,
|
|
10180
|
-
failedUsers,
|
|
10181
|
-
unknownFutureValue,
|
|
10192
|
+
allUsers: 0,
|
|
10193
|
+
failedUsers: 1,
|
|
10194
|
+
unknownFutureValue: 2,
|
|
10182
10195
|
}
|
|
10183
10196
|
|
|
10184
10197
|
enum customTaskExtensionOperationStatus {
|
|
10185
|
-
completed,
|
|
10186
|
-
failed,
|
|
10187
|
-
unknownFutureValue,
|
|
10198
|
+
completed: 0,
|
|
10199
|
+
failed: 1,
|
|
10200
|
+
unknownFutureValue: 2,
|
|
10188
10201
|
}
|
|
10189
10202
|
|
|
10190
10203
|
@graphFlags
|
|
10191
10204
|
enum lifecycleTaskCategory {
|
|
10192
|
-
joiner,
|
|
10193
|
-
leaver,
|
|
10194
|
-
unknownFutureValue,
|
|
10195
|
-
mover,
|
|
10205
|
+
joiner: 1,
|
|
10206
|
+
leaver: 2,
|
|
10207
|
+
unknownFutureValue: 4,
|
|
10208
|
+
mover: 8,
|
|
10196
10209
|
}
|
|
10197
10210
|
|
|
10198
10211
|
enum lifecycleWorkflowCategory {
|
|
10199
|
-
joiner,
|
|
10200
|
-
leaver,
|
|
10201
|
-
unknownFutureValue,
|
|
10202
|
-
mover,
|
|
10212
|
+
joiner: 0,
|
|
10213
|
+
leaver: 1,
|
|
10214
|
+
unknownFutureValue: 2,
|
|
10215
|
+
mover: 3,
|
|
10203
10216
|
}
|
|
10204
10217
|
|
|
10205
10218
|
enum lifecycleWorkflowProcessingStatus {
|
|
10206
|
-
queued,
|
|
10207
|
-
inProgress,
|
|
10208
|
-
completed,
|
|
10209
|
-
completedWithErrors,
|
|
10210
|
-
canceled,
|
|
10211
|
-
failed,
|
|
10212
|
-
unknownFutureValue,
|
|
10219
|
+
queued: 0,
|
|
10220
|
+
inProgress: 1,
|
|
10221
|
+
completed: 2,
|
|
10222
|
+
completedWithErrors: 3,
|
|
10223
|
+
canceled: 4,
|
|
10224
|
+
failed: 5,
|
|
10225
|
+
unknownFutureValue: 6,
|
|
10213
10226
|
}
|
|
10214
10227
|
|
|
10215
10228
|
enum membershipChangeType {
|
|
10216
|
-
add,
|
|
10217
|
-
remove,
|
|
10218
|
-
unknownFutureValue,
|
|
10229
|
+
add: 1,
|
|
10230
|
+
remove: 2,
|
|
10231
|
+
unknownFutureValue: 3,
|
|
10219
10232
|
}
|
|
10220
10233
|
|
|
10221
10234
|
enum valueType {
|
|
10222
|
-
`enum
|
|
10223
|
-
`string
|
|
10224
|
-
int,
|
|
10225
|
-
bool,
|
|
10226
|
-
unknownFutureValue,
|
|
10235
|
+
`enum`: 0,
|
|
10236
|
+
`string`: 1,
|
|
10237
|
+
int: 2,
|
|
10238
|
+
bool: 3,
|
|
10239
|
+
unknownFutureValue: 4,
|
|
10227
10240
|
}
|
|
10228
10241
|
|
|
10229
10242
|
enum workflowExecutionType {
|
|
10230
|
-
scheduled,
|
|
10231
|
-
onDemand,
|
|
10232
|
-
unknownFutureValue,
|
|
10233
|
-
activatedWithScope,
|
|
10243
|
+
scheduled: 0,
|
|
10244
|
+
onDemand: 1,
|
|
10245
|
+
unknownFutureValue: 2,
|
|
10246
|
+
activatedWithScope: 3,
|
|
10234
10247
|
}
|
|
10235
10248
|
|
|
10236
10249
|
enum workflowTriggerTimeBasedAttribute {
|
|
10237
|
-
employeeHireDate,
|
|
10238
|
-
employeeLeaveDateTime,
|
|
10239
|
-
unknownFutureValue,
|
|
10240
|
-
createdDateTime,
|
|
10250
|
+
employeeHireDate: 0,
|
|
10251
|
+
employeeLeaveDateTime: 1,
|
|
10252
|
+
unknownFutureValue: 2,
|
|
10253
|
+
createdDateTime: 3,
|
|
10241
10254
|
}
|
|
10242
10255
|
|
|
10243
10256
|
}
|
|
@@ -11091,524 +11104,524 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11091
11104
|
|
|
11092
11105
|
@graphFlags
|
|
11093
11106
|
enum additionalDataOptions {
|
|
11094
|
-
allVersions,
|
|
11095
|
-
linkedFiles,
|
|
11096
|
-
unknownFutureValue,
|
|
11097
|
-
advancedIndexing,
|
|
11098
|
-
listAttachments,
|
|
11099
|
-
htmlTranscripts,
|
|
11100
|
-
messageConversationExpansion,
|
|
11101
|
-
locationsWithoutHits,
|
|
11102
|
-
allItemsInFolder,
|
|
11107
|
+
allVersions: 1,
|
|
11108
|
+
linkedFiles: 2,
|
|
11109
|
+
unknownFutureValue: 4,
|
|
11110
|
+
advancedIndexing: 8,
|
|
11111
|
+
listAttachments: 16,
|
|
11112
|
+
htmlTranscripts: 32,
|
|
11113
|
+
messageConversationExpansion: 64,
|
|
11114
|
+
locationsWithoutHits: 256,
|
|
11115
|
+
allItemsInFolder: 512,
|
|
11103
11116
|
}
|
|
11104
11117
|
|
|
11105
11118
|
@graphFlags
|
|
11106
11119
|
enum additionalOptions {
|
|
11107
|
-
none,
|
|
11108
|
-
teamsAndYammerConversations,
|
|
11109
|
-
cloudAttachments,
|
|
11110
|
-
allDocumentVersions,
|
|
11111
|
-
subfolderContents,
|
|
11112
|
-
listAttachments,
|
|
11113
|
-
unknownFutureValue,
|
|
11114
|
-
htmlTranscripts,
|
|
11115
|
-
advancedIndexing,
|
|
11116
|
-
allItemsInFolder,
|
|
11117
|
-
includeFolderAndPath,
|
|
11118
|
-
condensePaths,
|
|
11119
|
-
friendlyName,
|
|
11120
|
-
splitSource,
|
|
11121
|
-
includeReport,
|
|
11120
|
+
none: 0,
|
|
11121
|
+
teamsAndYammerConversations: 1,
|
|
11122
|
+
cloudAttachments: 2,
|
|
11123
|
+
allDocumentVersions: 4,
|
|
11124
|
+
subfolderContents: 8,
|
|
11125
|
+
listAttachments: 16,
|
|
11126
|
+
unknownFutureValue: 32,
|
|
11127
|
+
htmlTranscripts: 64,
|
|
11128
|
+
advancedIndexing: 128,
|
|
11129
|
+
allItemsInFolder: 256,
|
|
11130
|
+
includeFolderAndPath: 512,
|
|
11131
|
+
condensePaths: 1024,
|
|
11132
|
+
friendlyName: 2048,
|
|
11133
|
+
splitSource: 4096,
|
|
11134
|
+
includeReport: 16384,
|
|
11122
11135
|
}
|
|
11123
11136
|
|
|
11124
11137
|
enum alertClassification {
|
|
11125
|
-
`unknown
|
|
11126
|
-
falsePositive,
|
|
11127
|
-
truePositive,
|
|
11128
|
-
informationalExpectedActivity,
|
|
11129
|
-
unknownFutureValue,
|
|
11138
|
+
`unknown`: 0,
|
|
11139
|
+
falsePositive: 10,
|
|
11140
|
+
truePositive: 20,
|
|
11141
|
+
informationalExpectedActivity: 30,
|
|
11142
|
+
unknownFutureValue: 39,
|
|
11130
11143
|
}
|
|
11131
11144
|
|
|
11132
11145
|
enum alertDetermination {
|
|
11133
|
-
`unknown
|
|
11134
|
-
apt,
|
|
11135
|
-
malware,
|
|
11136
|
-
securityPersonnel,
|
|
11137
|
-
securityTesting,
|
|
11138
|
-
unwantedSoftware,
|
|
11139
|
-
other,
|
|
11140
|
-
multiStagedAttack,
|
|
11141
|
-
compromisedAccount,
|
|
11142
|
-
phishing,
|
|
11143
|
-
maliciousUserActivity,
|
|
11144
|
-
notMalicious,
|
|
11145
|
-
notEnoughDataToValidate,
|
|
11146
|
-
confirmedActivity,
|
|
11147
|
-
lineOfBusinessApplication,
|
|
11148
|
-
unknownFutureValue,
|
|
11146
|
+
`unknown`: 0,
|
|
11147
|
+
apt: 10,
|
|
11148
|
+
malware: 20,
|
|
11149
|
+
securityPersonnel: 30,
|
|
11150
|
+
securityTesting: 40,
|
|
11151
|
+
unwantedSoftware: 50,
|
|
11152
|
+
other: 60,
|
|
11153
|
+
multiStagedAttack: 70,
|
|
11154
|
+
compromisedAccount: 80,
|
|
11155
|
+
phishing: 90,
|
|
11156
|
+
maliciousUserActivity: 100,
|
|
11157
|
+
notMalicious: 110,
|
|
11158
|
+
notEnoughDataToValidate: 120,
|
|
11159
|
+
confirmedActivity: 130,
|
|
11160
|
+
lineOfBusinessApplication: 140,
|
|
11161
|
+
unknownFutureValue: 149,
|
|
11149
11162
|
}
|
|
11150
11163
|
|
|
11151
11164
|
enum alertSeverity {
|
|
11152
|
-
`unknown
|
|
11153
|
-
informational,
|
|
11154
|
-
low,
|
|
11155
|
-
medium,
|
|
11156
|
-
high,
|
|
11157
|
-
unknownFutureValue,
|
|
11165
|
+
`unknown`: 0,
|
|
11166
|
+
informational: 32,
|
|
11167
|
+
low: 64,
|
|
11168
|
+
medium: 128,
|
|
11169
|
+
high: 256,
|
|
11170
|
+
unknownFutureValue: 511,
|
|
11158
11171
|
}
|
|
11159
11172
|
|
|
11160
11173
|
enum alertStatus {
|
|
11161
|
-
`unknown
|
|
11162
|
-
new,
|
|
11163
|
-
inProgress,
|
|
11164
|
-
resolved,
|
|
11165
|
-
unknownFutureValue,
|
|
11174
|
+
`unknown`: 0,
|
|
11175
|
+
new: 2,
|
|
11176
|
+
inProgress: 4,
|
|
11177
|
+
resolved: 8,
|
|
11178
|
+
unknownFutureValue: 31,
|
|
11166
11179
|
}
|
|
11167
11180
|
|
|
11168
11181
|
enum antispamTeamsDirection {
|
|
11169
|
-
`unknown
|
|
11170
|
-
inbound,
|
|
11171
|
-
outbound,
|
|
11172
|
-
intraorg,
|
|
11173
|
-
unknownFutureValue,
|
|
11182
|
+
`unknown`: 0,
|
|
11183
|
+
inbound: 1,
|
|
11184
|
+
outbound: 2,
|
|
11185
|
+
intraorg: 3,
|
|
11186
|
+
unknownFutureValue: 31,
|
|
11174
11187
|
}
|
|
11175
11188
|
|
|
11176
11189
|
enum behaviorDuringRetentionPeriod {
|
|
11177
|
-
doNotRetain,
|
|
11178
|
-
retain,
|
|
11179
|
-
retainAsRecord,
|
|
11180
|
-
retainAsRegulatoryRecord,
|
|
11181
|
-
unknownFutureValue,
|
|
11190
|
+
doNotRetain: 0,
|
|
11191
|
+
retain: 1,
|
|
11192
|
+
retainAsRecord: 2,
|
|
11193
|
+
retainAsRegulatoryRecord: 3,
|
|
11194
|
+
unknownFutureValue: 4,
|
|
11182
11195
|
}
|
|
11183
11196
|
|
|
11184
11197
|
enum caseAction {
|
|
11185
|
-
contentExport,
|
|
11186
|
-
applyTags,
|
|
11187
|
-
convertToPdf,
|
|
11188
|
-
index,
|
|
11189
|
-
estimateStatistics,
|
|
11190
|
-
addToReviewSet,
|
|
11191
|
-
holdUpdate,
|
|
11192
|
-
unknownFutureValue,
|
|
11193
|
-
purgeData,
|
|
11194
|
-
exportReport,
|
|
11195
|
-
exportResult,
|
|
11196
|
-
holdPolicySync,
|
|
11198
|
+
contentExport: 0,
|
|
11199
|
+
applyTags: 1,
|
|
11200
|
+
convertToPdf: 2,
|
|
11201
|
+
index: 3,
|
|
11202
|
+
estimateStatistics: 4,
|
|
11203
|
+
addToReviewSet: 5,
|
|
11204
|
+
holdUpdate: 6,
|
|
11205
|
+
unknownFutureValue: 7,
|
|
11206
|
+
purgeData: 8,
|
|
11207
|
+
exportReport: 9,
|
|
11208
|
+
exportResult: 10,
|
|
11209
|
+
holdPolicySync: 11,
|
|
11197
11210
|
}
|
|
11198
11211
|
|
|
11199
11212
|
enum caseOperationStatus {
|
|
11200
|
-
notStarted,
|
|
11201
|
-
submissionFailed,
|
|
11202
|
-
running,
|
|
11203
|
-
succeeded,
|
|
11204
|
-
partiallySucceeded,
|
|
11205
|
-
failed,
|
|
11206
|
-
unknownFutureValue,
|
|
11213
|
+
notStarted: 0,
|
|
11214
|
+
submissionFailed: 1,
|
|
11215
|
+
running: 2,
|
|
11216
|
+
succeeded: 3,
|
|
11217
|
+
partiallySucceeded: 4,
|
|
11218
|
+
failed: 5,
|
|
11219
|
+
unknownFutureValue: 6,
|
|
11207
11220
|
}
|
|
11208
11221
|
|
|
11209
11222
|
enum caseStatus {
|
|
11210
|
-
`unknown
|
|
11211
|
-
active,
|
|
11212
|
-
pendingDelete,
|
|
11213
|
-
closing,
|
|
11214
|
-
closed,
|
|
11215
|
-
closedWithError,
|
|
11216
|
-
unknownFutureValue,
|
|
11223
|
+
`unknown`: 0,
|
|
11224
|
+
active: 1,
|
|
11225
|
+
pendingDelete: 2,
|
|
11226
|
+
closing: 3,
|
|
11227
|
+
closed: 4,
|
|
11228
|
+
closedWithError: 5,
|
|
11229
|
+
unknownFutureValue: 6,
|
|
11217
11230
|
}
|
|
11218
11231
|
|
|
11219
11232
|
enum caseType {
|
|
11220
|
-
standard,
|
|
11221
|
-
premium,
|
|
11222
|
-
unknownFutureValue,
|
|
11233
|
+
standard: 1,
|
|
11234
|
+
premium: 2,
|
|
11235
|
+
unknownFutureValue: 3,
|
|
11223
11236
|
}
|
|
11224
11237
|
|
|
11225
11238
|
enum childSelectability {
|
|
11226
|
-
One,
|
|
11227
|
-
Many,
|
|
11228
|
-
unknownFutureValue,
|
|
11239
|
+
One: 0,
|
|
11240
|
+
Many: 1,
|
|
11241
|
+
unknownFutureValue: 2,
|
|
11229
11242
|
}
|
|
11230
11243
|
|
|
11231
11244
|
enum cloudAttachmentVersion {
|
|
11232
|
-
latest,
|
|
11233
|
-
recent10,
|
|
11234
|
-
recent100,
|
|
11235
|
-
all,
|
|
11236
|
-
unknownFutureValue,
|
|
11245
|
+
latest: 1,
|
|
11246
|
+
recent10: 2,
|
|
11247
|
+
recent100: 3,
|
|
11248
|
+
all: 4,
|
|
11249
|
+
unknownFutureValue: 5,
|
|
11237
11250
|
}
|
|
11238
11251
|
|
|
11239
11252
|
enum containerPortProtocol {
|
|
11240
|
-
udp,
|
|
11241
|
-
tcp,
|
|
11242
|
-
sctp,
|
|
11243
|
-
unknownFutureValue,
|
|
11253
|
+
udp: 0,
|
|
11254
|
+
tcp: 1,
|
|
11255
|
+
sctp: 2,
|
|
11256
|
+
unknownFutureValue: 3,
|
|
11244
11257
|
}
|
|
11245
11258
|
|
|
11246
11259
|
enum dataSourceContainerStatus {
|
|
11247
|
-
active,
|
|
11248
|
-
released,
|
|
11249
|
-
unknownFutureValue,
|
|
11260
|
+
active: 1,
|
|
11261
|
+
released: 2,
|
|
11262
|
+
unknownFutureValue: 3,
|
|
11250
11263
|
}
|
|
11251
11264
|
|
|
11252
11265
|
enum dataSourceHoldStatus {
|
|
11253
|
-
notApplied,
|
|
11254
|
-
applied,
|
|
11255
|
-
applying,
|
|
11256
|
-
removing,
|
|
11257
|
-
partial,
|
|
11258
|
-
unknownFutureValue,
|
|
11266
|
+
notApplied: 1,
|
|
11267
|
+
applied: 2,
|
|
11268
|
+
applying: 3,
|
|
11269
|
+
removing: 4,
|
|
11270
|
+
partial: 5,
|
|
11271
|
+
unknownFutureValue: 6,
|
|
11259
11272
|
}
|
|
11260
11273
|
|
|
11261
11274
|
@graphFlags
|
|
11262
11275
|
enum dataSourceScopes {
|
|
11263
|
-
none,
|
|
11264
|
-
allTenantMailboxes,
|
|
11265
|
-
allTenantSites,
|
|
11266
|
-
allCaseCustodians,
|
|
11267
|
-
allCaseNoncustodialDataSources,
|
|
11268
|
-
unknownFutureValue,
|
|
11276
|
+
none: 0,
|
|
11277
|
+
allTenantMailboxes: 1,
|
|
11278
|
+
allTenantSites: 2,
|
|
11279
|
+
allCaseCustodians: 4,
|
|
11280
|
+
allCaseNoncustodialDataSources: 8,
|
|
11281
|
+
unknownFutureValue: 16,
|
|
11269
11282
|
}
|
|
11270
11283
|
|
|
11271
11284
|
enum defenderAvStatus {
|
|
11272
|
-
notReporting,
|
|
11273
|
-
disabled,
|
|
11274
|
-
notUpdated,
|
|
11275
|
-
updated,
|
|
11276
|
-
`unknown
|
|
11277
|
-
notSupported,
|
|
11278
|
-
unknownFutureValue,
|
|
11285
|
+
notReporting: 0,
|
|
11286
|
+
disabled: 1,
|
|
11287
|
+
notUpdated: 2,
|
|
11288
|
+
updated: 3,
|
|
11289
|
+
`unknown`: 4,
|
|
11290
|
+
notSupported: 1000,
|
|
11291
|
+
unknownFutureValue: 1023,
|
|
11279
11292
|
}
|
|
11280
11293
|
|
|
11281
11294
|
enum detectionSource {
|
|
11282
|
-
`unknown
|
|
11283
|
-
microsoftDefenderForEndpoint,
|
|
11284
|
-
antivirus,
|
|
11285
|
-
smartScreen,
|
|
11286
|
-
customTi,
|
|
11287
|
-
microsoftDefenderForOffice365,
|
|
11288
|
-
automatedInvestigation,
|
|
11289
|
-
microsoftThreatExperts,
|
|
11290
|
-
customDetection,
|
|
11291
|
-
microsoftDefenderForIdentity,
|
|
11292
|
-
cloudAppSecurity,
|
|
11293
|
-
microsoft365Defender,
|
|
11294
|
-
azureAdIdentityProtection,
|
|
11295
|
-
manual,
|
|
11296
|
-
microsoftDataLossPrevention,
|
|
11297
|
-
appGovernancePolicy,
|
|
11298
|
-
appGovernanceDetection,
|
|
11299
|
-
unknownFutureValue,
|
|
11300
|
-
microsoftDefenderForCloud,
|
|
11301
|
-
microsoftDefenderForIoT,
|
|
11302
|
-
microsoftDefenderForServers,
|
|
11303
|
-
microsoftDefenderForStorage,
|
|
11304
|
-
microsoftDefenderForDNS,
|
|
11305
|
-
microsoftDefenderForDatabases,
|
|
11306
|
-
microsoftDefenderForContainers,
|
|
11307
|
-
microsoftDefenderForNetwork,
|
|
11308
|
-
microsoftDefenderForAppService,
|
|
11309
|
-
microsoftDefenderForKeyVault,
|
|
11310
|
-
microsoftDefenderForResourceManager,
|
|
11311
|
-
microsoftDefenderForApiManagement,
|
|
11312
|
-
nrtAlerts,
|
|
11313
|
-
scheduledAlerts,
|
|
11314
|
-
microsoftDefenderThreatIntelligenceAnalytics,
|
|
11315
|
-
builtInMl,
|
|
11316
|
-
microsoftInsiderRiskManagement,
|
|
11317
|
-
microsoftThreatIntelligence,
|
|
11318
|
-
microsoftDefenderForAIServices,
|
|
11319
|
-
securityCopilot,
|
|
11320
|
-
microsoftSentinel,
|
|
11295
|
+
`unknown`: 0,
|
|
11296
|
+
microsoftDefenderForEndpoint: 1,
|
|
11297
|
+
antivirus: 2,
|
|
11298
|
+
smartScreen: 4,
|
|
11299
|
+
customTi: 8,
|
|
11300
|
+
microsoftDefenderForOffice365: 512,
|
|
11301
|
+
automatedInvestigation: 1024,
|
|
11302
|
+
microsoftThreatExperts: 2048,
|
|
11303
|
+
customDetection: 4096,
|
|
11304
|
+
microsoftDefenderForIdentity: 8192,
|
|
11305
|
+
cloudAppSecurity: 16384,
|
|
11306
|
+
microsoft365Defender: 32768,
|
|
11307
|
+
azureAdIdentityProtection: 65536,
|
|
11308
|
+
manual: 262144,
|
|
11309
|
+
microsoftDataLossPrevention: 524288,
|
|
11310
|
+
appGovernancePolicy: 1048576,
|
|
11311
|
+
appGovernanceDetection: 2097152,
|
|
11312
|
+
unknownFutureValue: 4194303,
|
|
11313
|
+
microsoftDefenderForCloud: 4194304,
|
|
11314
|
+
microsoftDefenderForIoT: 1073741833,
|
|
11315
|
+
microsoftDefenderForServers: 1073741834,
|
|
11316
|
+
microsoftDefenderForStorage: 1073741835,
|
|
11317
|
+
microsoftDefenderForDNS: 1073741836,
|
|
11318
|
+
microsoftDefenderForDatabases: 1073741837,
|
|
11319
|
+
microsoftDefenderForContainers: 1073741838,
|
|
11320
|
+
microsoftDefenderForNetwork: 1073741839,
|
|
11321
|
+
microsoftDefenderForAppService: 1073741840,
|
|
11322
|
+
microsoftDefenderForKeyVault: 1073741841,
|
|
11323
|
+
microsoftDefenderForResourceManager: 1073741842,
|
|
11324
|
+
microsoftDefenderForApiManagement: 1073741843,
|
|
11325
|
+
nrtAlerts: 1073741844,
|
|
11326
|
+
scheduledAlerts: 1073741845,
|
|
11327
|
+
microsoftDefenderThreatIntelligenceAnalytics: 1073741846,
|
|
11328
|
+
builtInMl: 1073741847,
|
|
11329
|
+
microsoftInsiderRiskManagement: 1073741848,
|
|
11330
|
+
microsoftThreatIntelligence: 1073741849,
|
|
11331
|
+
microsoftDefenderForAIServices: 1073741850,
|
|
11332
|
+
securityCopilot: 1073741851,
|
|
11333
|
+
microsoftSentinel: 268435456,
|
|
11321
11334
|
}
|
|
11322
11335
|
|
|
11323
11336
|
enum detectionStatus {
|
|
11324
|
-
detected,
|
|
11325
|
-
blocked,
|
|
11326
|
-
prevented,
|
|
11327
|
-
unknownFutureValue,
|
|
11337
|
+
detected: 0,
|
|
11338
|
+
blocked: 1,
|
|
11339
|
+
prevented: 2,
|
|
11340
|
+
unknownFutureValue: 31,
|
|
11328
11341
|
}
|
|
11329
11342
|
|
|
11330
11343
|
enum deviceHealthStatus {
|
|
11331
|
-
active,
|
|
11332
|
-
inactive,
|
|
11333
|
-
impairedCommunication,
|
|
11334
|
-
noSensorData,
|
|
11335
|
-
noSensorDataImpairedCommunication,
|
|
11336
|
-
`unknown
|
|
11337
|
-
unknownFutureValue,
|
|
11344
|
+
active: 0,
|
|
11345
|
+
inactive: 1,
|
|
11346
|
+
impairedCommunication: 2,
|
|
11347
|
+
noSensorData: 3,
|
|
11348
|
+
noSensorDataImpairedCommunication: 4,
|
|
11349
|
+
`unknown`: 5,
|
|
11350
|
+
unknownFutureValue: 31,
|
|
11338
11351
|
}
|
|
11339
11352
|
|
|
11340
11353
|
enum deviceRiskScore {
|
|
11341
|
-
none,
|
|
11342
|
-
informational,
|
|
11343
|
-
low,
|
|
11344
|
-
medium,
|
|
11345
|
-
high,
|
|
11346
|
-
unknownFutureValue,
|
|
11354
|
+
none: 0,
|
|
11355
|
+
informational: 5,
|
|
11356
|
+
low: 10,
|
|
11357
|
+
medium: 20,
|
|
11358
|
+
high: 30,
|
|
11359
|
+
unknownFutureValue: 31,
|
|
11347
11360
|
}
|
|
11348
11361
|
|
|
11349
11362
|
enum documentVersion {
|
|
11350
|
-
latest,
|
|
11351
|
-
recent10,
|
|
11352
|
-
recent100,
|
|
11353
|
-
all,
|
|
11354
|
-
unknownFutureValue,
|
|
11363
|
+
latest: 1,
|
|
11364
|
+
recent10: 2,
|
|
11365
|
+
recent100: 3,
|
|
11366
|
+
all: 4,
|
|
11367
|
+
unknownFutureValue: 5,
|
|
11355
11368
|
}
|
|
11356
11369
|
|
|
11357
11370
|
enum evidenceRemediationStatus {
|
|
11358
|
-
none,
|
|
11359
|
-
remediated,
|
|
11360
|
-
prevented,
|
|
11361
|
-
blocked,
|
|
11362
|
-
notFound,
|
|
11363
|
-
unknownFutureValue,
|
|
11364
|
-
active,
|
|
11365
|
-
pendingApproval,
|
|
11366
|
-
declined,
|
|
11367
|
-
unremediated,
|
|
11368
|
-
running,
|
|
11369
|
-
partiallyRemediated,
|
|
11371
|
+
none: 0,
|
|
11372
|
+
remediated: 1,
|
|
11373
|
+
prevented: 2,
|
|
11374
|
+
blocked: 3,
|
|
11375
|
+
notFound: 4,
|
|
11376
|
+
unknownFutureValue: 5,
|
|
11377
|
+
active: 6,
|
|
11378
|
+
pendingApproval: 7,
|
|
11379
|
+
declined: 8,
|
|
11380
|
+
unremediated: 9,
|
|
11381
|
+
running: 10,
|
|
11382
|
+
partiallyRemediated: 11,
|
|
11370
11383
|
}
|
|
11371
11384
|
|
|
11372
11385
|
enum evidenceRole {
|
|
11373
|
-
`unknown
|
|
11374
|
-
contextual,
|
|
11375
|
-
scanned,
|
|
11376
|
-
source,
|
|
11377
|
-
destination,
|
|
11378
|
-
created,
|
|
11379
|
-
added,
|
|
11380
|
-
compromised,
|
|
11381
|
-
edited,
|
|
11382
|
-
attacked,
|
|
11383
|
-
attacker,
|
|
11384
|
-
commandAndControl,
|
|
11385
|
-
loaded,
|
|
11386
|
-
suspicious,
|
|
11387
|
-
policyViolator,
|
|
11388
|
-
unknownFutureValue,
|
|
11386
|
+
`unknown`: 0,
|
|
11387
|
+
contextual: 1,
|
|
11388
|
+
scanned: 2,
|
|
11389
|
+
source: 3,
|
|
11390
|
+
destination: 4,
|
|
11391
|
+
created: 5,
|
|
11392
|
+
added: 6,
|
|
11393
|
+
compromised: 7,
|
|
11394
|
+
edited: 8,
|
|
11395
|
+
attacked: 9,
|
|
11396
|
+
attacker: 10,
|
|
11397
|
+
commandAndControl: 11,
|
|
11398
|
+
loaded: 12,
|
|
11399
|
+
suspicious: 13,
|
|
11400
|
+
policyViolator: 14,
|
|
11401
|
+
unknownFutureValue: 31,
|
|
11389
11402
|
}
|
|
11390
11403
|
|
|
11391
11404
|
enum evidenceVerdict {
|
|
11392
|
-
`unknown
|
|
11393
|
-
suspicious,
|
|
11394
|
-
malicious,
|
|
11395
|
-
noThreatsFound,
|
|
11396
|
-
unknownFutureValue,
|
|
11405
|
+
`unknown`: 0,
|
|
11406
|
+
suspicious: 1,
|
|
11407
|
+
malicious: 2,
|
|
11408
|
+
noThreatsFound: 3,
|
|
11409
|
+
unknownFutureValue: 4,
|
|
11397
11410
|
}
|
|
11398
11411
|
|
|
11399
11412
|
@graphFlags
|
|
11400
11413
|
enum exportCriteria {
|
|
11401
|
-
searchHits,
|
|
11402
|
-
partiallyIndexed,
|
|
11403
|
-
unknownFutureValue,
|
|
11414
|
+
searchHits: 1,
|
|
11415
|
+
partiallyIndexed: 2,
|
|
11416
|
+
unknownFutureValue: 4,
|
|
11404
11417
|
}
|
|
11405
11418
|
|
|
11406
11419
|
enum exportFileStructure {
|
|
11407
|
-
none,
|
|
11408
|
-
directory,
|
|
11409
|
-
pst,
|
|
11410
|
-
unknownFutureValue,
|
|
11411
|
-
msg,
|
|
11420
|
+
none: 0,
|
|
11421
|
+
directory: 1,
|
|
11422
|
+
pst: 2,
|
|
11423
|
+
unknownFutureValue: 3,
|
|
11424
|
+
msg: 4,
|
|
11412
11425
|
}
|
|
11413
11426
|
|
|
11414
11427
|
enum exportFormat {
|
|
11415
|
-
pst,
|
|
11416
|
-
msg,
|
|
11417
|
-
eml,
|
|
11418
|
-
unknownFutureValue,
|
|
11428
|
+
pst: 0,
|
|
11429
|
+
msg: 1,
|
|
11430
|
+
eml: 2,
|
|
11431
|
+
unknownFutureValue: 3,
|
|
11419
11432
|
}
|
|
11420
11433
|
|
|
11421
11434
|
@graphFlags
|
|
11422
11435
|
enum exportLocation {
|
|
11423
|
-
responsiveLocations,
|
|
11424
|
-
nonresponsiveLocations,
|
|
11425
|
-
unknownFutureValue,
|
|
11436
|
+
responsiveLocations: 1,
|
|
11437
|
+
nonresponsiveLocations: 2,
|
|
11438
|
+
unknownFutureValue: 4,
|
|
11426
11439
|
}
|
|
11427
11440
|
|
|
11428
11441
|
@graphFlags
|
|
11429
11442
|
enum exportOptions {
|
|
11430
|
-
originalFiles,
|
|
11431
|
-
text,
|
|
11432
|
-
pdfReplacement,
|
|
11433
|
-
tags,
|
|
11434
|
-
unknownFutureValue,
|
|
11435
|
-
splitSource,
|
|
11436
|
-
includeFolderAndPath,
|
|
11437
|
-
friendlyName,
|
|
11438
|
-
condensePaths,
|
|
11443
|
+
originalFiles: 1,
|
|
11444
|
+
text: 2,
|
|
11445
|
+
pdfReplacement: 4,
|
|
11446
|
+
tags: 16,
|
|
11447
|
+
unknownFutureValue: 32,
|
|
11448
|
+
splitSource: 64,
|
|
11449
|
+
includeFolderAndPath: 128,
|
|
11450
|
+
friendlyName: 256,
|
|
11451
|
+
condensePaths: 512,
|
|
11439
11452
|
}
|
|
11440
11453
|
|
|
11441
11454
|
enum fileHashAlgorithm {
|
|
11442
|
-
`unknown
|
|
11443
|
-
md5,
|
|
11444
|
-
sha1,
|
|
11445
|
-
sha256,
|
|
11446
|
-
sha256ac,
|
|
11447
|
-
unknownFutureValue,
|
|
11455
|
+
`unknown`: 0,
|
|
11456
|
+
md5: 1,
|
|
11457
|
+
sha1: 2,
|
|
11458
|
+
sha256: 3,
|
|
11459
|
+
sha256ac: 4,
|
|
11460
|
+
unknownFutureValue: 5,
|
|
11448
11461
|
}
|
|
11449
11462
|
|
|
11450
11463
|
enum googleCloudLocationType {
|
|
11451
|
-
`unknown
|
|
11452
|
-
regional,
|
|
11453
|
-
zonal,
|
|
11454
|
-
global,
|
|
11455
|
-
unknownFutureValue,
|
|
11464
|
+
`unknown`: 0,
|
|
11465
|
+
regional: 1,
|
|
11466
|
+
zonal: 2,
|
|
11467
|
+
global: 3,
|
|
11468
|
+
unknownFutureValue: 31,
|
|
11456
11469
|
}
|
|
11457
11470
|
|
|
11458
11471
|
enum incidentStatus {
|
|
11459
|
-
active,
|
|
11460
|
-
resolved,
|
|
11461
|
-
inProgress,
|
|
11462
|
-
redirected,
|
|
11463
|
-
unknownFutureValue,
|
|
11464
|
-
awaitingAction,
|
|
11472
|
+
active: 1,
|
|
11473
|
+
resolved: 2,
|
|
11474
|
+
inProgress: 4,
|
|
11475
|
+
redirected: 64,
|
|
11476
|
+
unknownFutureValue: 127,
|
|
11477
|
+
awaitingAction: 128,
|
|
11465
11478
|
}
|
|
11466
11479
|
|
|
11467
11480
|
enum ioTDeviceImportanceType {
|
|
11468
|
-
`unknown
|
|
11469
|
-
low,
|
|
11470
|
-
normal,
|
|
11471
|
-
high,
|
|
11472
|
-
unknownFutureValue,
|
|
11481
|
+
`unknown`: 0,
|
|
11482
|
+
low: 1,
|
|
11483
|
+
normal: 2,
|
|
11484
|
+
high: 3,
|
|
11485
|
+
unknownFutureValue: 4,
|
|
11473
11486
|
}
|
|
11474
11487
|
|
|
11475
11488
|
@graphFlags
|
|
11476
11489
|
enum itemsToInclude {
|
|
11477
|
-
searchHits,
|
|
11478
|
-
partiallyIndexed,
|
|
11479
|
-
unknownFutureValue,
|
|
11490
|
+
searchHits: 1,
|
|
11491
|
+
partiallyIndexed: 2,
|
|
11492
|
+
unknownFutureValue: 4,
|
|
11480
11493
|
}
|
|
11481
11494
|
|
|
11482
11495
|
enum kubernetesPlatform {
|
|
11483
|
-
`unknown
|
|
11484
|
-
aks,
|
|
11485
|
-
eks,
|
|
11486
|
-
gke,
|
|
11487
|
-
arc,
|
|
11488
|
-
unknownFutureValue,
|
|
11496
|
+
`unknown`: 0,
|
|
11497
|
+
aks: 1,
|
|
11498
|
+
eks: 2,
|
|
11499
|
+
gke: 3,
|
|
11500
|
+
arc: 4,
|
|
11501
|
+
unknownFutureValue: 5,
|
|
11489
11502
|
}
|
|
11490
11503
|
|
|
11491
11504
|
enum kubernetesServiceType {
|
|
11492
|
-
`unknown
|
|
11493
|
-
clusterIP,
|
|
11494
|
-
externalName,
|
|
11495
|
-
nodePort,
|
|
11496
|
-
loadBalancer,
|
|
11497
|
-
unknownFutureValue,
|
|
11505
|
+
`unknown`: 0,
|
|
11506
|
+
clusterIP: 1,
|
|
11507
|
+
externalName: 2,
|
|
11508
|
+
nodePort: 3,
|
|
11509
|
+
loadBalancer: 4,
|
|
11510
|
+
unknownFutureValue: 31,
|
|
11498
11511
|
}
|
|
11499
11512
|
|
|
11500
11513
|
enum mailboxConfigurationType {
|
|
11501
|
-
mailForwardingRule,
|
|
11502
|
-
owaSettings,
|
|
11503
|
-
ewsSettings,
|
|
11504
|
-
mailDelegation,
|
|
11505
|
-
userInboxRule,
|
|
11506
|
-
unknownFutureValue,
|
|
11514
|
+
mailForwardingRule: 0,
|
|
11515
|
+
owaSettings: 1,
|
|
11516
|
+
ewsSettings: 2,
|
|
11517
|
+
mailDelegation: 3,
|
|
11518
|
+
userInboxRule: 4,
|
|
11519
|
+
unknownFutureValue: 31,
|
|
11507
11520
|
}
|
|
11508
11521
|
|
|
11509
11522
|
enum onboardingStatus {
|
|
11510
|
-
insufficientInfo,
|
|
11511
|
-
onboarded,
|
|
11512
|
-
canBeOnboarded,
|
|
11513
|
-
unsupported,
|
|
11514
|
-
unknownFutureValue,
|
|
11523
|
+
insufficientInfo: 0,
|
|
11524
|
+
onboarded: 1,
|
|
11525
|
+
canBeOnboarded: 2,
|
|
11526
|
+
unsupported: 3,
|
|
11527
|
+
unknownFutureValue: 31,
|
|
11515
11528
|
}
|
|
11516
11529
|
|
|
11517
11530
|
enum protocolType {
|
|
11518
|
-
tcp,
|
|
11519
|
-
udp,
|
|
11520
|
-
unknownFutureValue,
|
|
11531
|
+
tcp: 0,
|
|
11532
|
+
udp: 1,
|
|
11533
|
+
unknownFutureValue: 2,
|
|
11521
11534
|
}
|
|
11522
11535
|
|
|
11523
11536
|
@graphFlags
|
|
11524
11537
|
enum purgeAreas {
|
|
11525
|
-
mailboxes,
|
|
11526
|
-
teamsMessages,
|
|
11527
|
-
unknownFutureValue,
|
|
11538
|
+
mailboxes: 1,
|
|
11539
|
+
teamsMessages: 2,
|
|
11540
|
+
unknownFutureValue: 4,
|
|
11528
11541
|
}
|
|
11529
11542
|
|
|
11530
11543
|
enum purgeType {
|
|
11531
|
-
recoverable,
|
|
11532
|
-
unknownFutureValue,
|
|
11533
|
-
permanentlyDelete,
|
|
11544
|
+
recoverable: 0,
|
|
11545
|
+
unknownFutureValue: 1,
|
|
11546
|
+
permanentlyDelete: 2,
|
|
11534
11547
|
}
|
|
11535
11548
|
|
|
11536
11549
|
@graphFlags
|
|
11537
11550
|
enum recipientType {
|
|
11538
|
-
user,
|
|
11539
|
-
roleGroup,
|
|
11540
|
-
unknownFutureValue,
|
|
11551
|
+
user: 1,
|
|
11552
|
+
roleGroup: 2,
|
|
11553
|
+
unknownFutureValue: 4,
|
|
11541
11554
|
}
|
|
11542
11555
|
|
|
11543
11556
|
@graphFlags
|
|
11544
11557
|
enum reviewSetSettings {
|
|
11545
|
-
none,
|
|
11546
|
-
disableGrouping,
|
|
11547
|
-
unknownFutureValue,
|
|
11558
|
+
none: 0,
|
|
11559
|
+
disableGrouping: 1,
|
|
11560
|
+
unknownFutureValue: 2,
|
|
11548
11561
|
}
|
|
11549
11562
|
|
|
11550
11563
|
enum servicePrincipalType {
|
|
11551
|
-
`unknown
|
|
11552
|
-
application,
|
|
11553
|
-
managedIdentity,
|
|
11554
|
-
legacy,
|
|
11555
|
-
unknownFutureValue,
|
|
11564
|
+
`unknown`: 0,
|
|
11565
|
+
application: 1,
|
|
11566
|
+
managedIdentity: 2,
|
|
11567
|
+
legacy: 3,
|
|
11568
|
+
unknownFutureValue: 4,
|
|
11556
11569
|
}
|
|
11557
11570
|
|
|
11558
11571
|
enum serviceSource {
|
|
11559
|
-
`unknown
|
|
11560
|
-
microsoftDefenderForEndpoint,
|
|
11561
|
-
microsoftDefenderForIdentity,
|
|
11562
|
-
microsoftDefenderForCloudApps,
|
|
11563
|
-
microsoftDefenderForOffice365,
|
|
11564
|
-
microsoft365Defender,
|
|
11565
|
-
azureAdIdentityProtection,
|
|
11566
|
-
microsoftAppGovernance,
|
|
11567
|
-
dataLossPrevention,
|
|
11568
|
-
unknownFutureValue,
|
|
11569
|
-
microsoftDefenderForCloud,
|
|
11570
|
-
microsoftSentinel,
|
|
11571
|
-
microsoftInsiderRiskManagement,
|
|
11572
|
+
`unknown`: 0,
|
|
11573
|
+
microsoftDefenderForEndpoint: 1,
|
|
11574
|
+
microsoftDefenderForIdentity: 2,
|
|
11575
|
+
microsoftDefenderForCloudApps: 4,
|
|
11576
|
+
microsoftDefenderForOffice365: 8,
|
|
11577
|
+
microsoft365Defender: 16,
|
|
11578
|
+
azureAdIdentityProtection: 32,
|
|
11579
|
+
microsoftAppGovernance: 64,
|
|
11580
|
+
dataLossPrevention: 128,
|
|
11581
|
+
unknownFutureValue: 255,
|
|
11582
|
+
microsoftDefenderForCloud: 256,
|
|
11583
|
+
microsoftSentinel: 512,
|
|
11584
|
+
microsoftInsiderRiskManagement: 1024,
|
|
11572
11585
|
}
|
|
11573
11586
|
|
|
11574
11587
|
@graphFlags
|
|
11575
11588
|
enum sourceType {
|
|
11576
|
-
mailbox,
|
|
11577
|
-
site,
|
|
11578
|
-
unknownFutureValue,
|
|
11589
|
+
mailbox: 1,
|
|
11590
|
+
site: 2,
|
|
11591
|
+
unknownFutureValue: 4,
|
|
11579
11592
|
}
|
|
11580
11593
|
|
|
11581
11594
|
@graphFlags
|
|
11582
11595
|
enum statisticsOptions {
|
|
11583
|
-
includeRefiners,
|
|
11584
|
-
includeQueryStats,
|
|
11585
|
-
includeUnindexedStats,
|
|
11586
|
-
advancedIndexing,
|
|
11587
|
-
locationsWithoutHits,
|
|
11588
|
-
unknownFutureValue,
|
|
11596
|
+
includeRefiners: 1,
|
|
11597
|
+
includeQueryStats: 2,
|
|
11598
|
+
includeUnindexedStats: 4,
|
|
11599
|
+
advancedIndexing: 8,
|
|
11600
|
+
locationsWithoutHits: 16,
|
|
11601
|
+
unknownFutureValue: 32,
|
|
11589
11602
|
}
|
|
11590
11603
|
|
|
11591
11604
|
enum teamsDeliveryLocation {
|
|
11592
|
-
`unknown
|
|
11593
|
-
teams,
|
|
11594
|
-
quarantine,
|
|
11595
|
-
failed,
|
|
11596
|
-
unknownFutureValue,
|
|
11605
|
+
`unknown`: 0,
|
|
11606
|
+
teams: 1,
|
|
11607
|
+
quarantine: 2,
|
|
11608
|
+
failed: 3,
|
|
11609
|
+
unknownFutureValue: 31,
|
|
11597
11610
|
}
|
|
11598
11611
|
|
|
11599
11612
|
enum teamsMessageDeliveryAction {
|
|
11600
|
-
`unknown
|
|
11601
|
-
deliveredAsSpam,
|
|
11602
|
-
delivered,
|
|
11603
|
-
blocked,
|
|
11604
|
-
replaced,
|
|
11605
|
-
unknownFutureValue,
|
|
11613
|
+
`unknown`: 0,
|
|
11614
|
+
deliveredAsSpam: 1,
|
|
11615
|
+
delivered: 2,
|
|
11616
|
+
blocked: 3,
|
|
11617
|
+
replaced: 4,
|
|
11618
|
+
unknownFutureValue: 31,
|
|
11606
11619
|
}
|
|
11607
11620
|
|
|
11608
11621
|
enum vmCloudProvider {
|
|
11609
|
-
`unknown
|
|
11610
|
-
azure,
|
|
11611
|
-
unknownFutureValue,
|
|
11622
|
+
`unknown`: 0,
|
|
11623
|
+
azure: 1,
|
|
11624
|
+
unknownFutureValue: 15,
|
|
11612
11625
|
}
|
|
11613
11626
|
|
|
11614
11627
|
}
|
|
@@ -11676,16 +11689,16 @@ namespace reference.`microsoft.graph.termStore` {
|
|
|
11676
11689
|
}
|
|
11677
11690
|
|
|
11678
11691
|
enum relationType {
|
|
11679
|
-
pin,
|
|
11680
|
-
reuse,
|
|
11681
|
-
unknownFutureValue,
|
|
11692
|
+
pin: 0,
|
|
11693
|
+
reuse: 1,
|
|
11694
|
+
unknownFutureValue: 2,
|
|
11682
11695
|
}
|
|
11683
11696
|
|
|
11684
11697
|
enum termGroupScope {
|
|
11685
|
-
global,
|
|
11686
|
-
system,
|
|
11687
|
-
siteCollection,
|
|
11688
|
-
unknownFutureValue,
|
|
11698
|
+
global: 0,
|
|
11699
|
+
system: 1,
|
|
11700
|
+
siteCollection: 2,
|
|
11701
|
+
unknownFutureValue: 3,
|
|
11689
11702
|
}
|
|
11690
11703
|
|
|
11691
11704
|
}
|