@microsoft/typespec-msgraph-reference 1.0.1 → 1.0.3

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