@microsoft/typespec-msgraph-reference 1.0.3 → 1.0.5

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.
@@ -250,6 +250,9 @@ namespace reference.`microsoft.graph` {
250
250
  coverImageItemId: string | null;
251
251
  }
252
252
 
253
+ @complex model allAllowedScopes extends inheritableScopes {
254
+ }
255
+
253
256
  @complex model allDeviceRegistrationMembership extends deviceRegistrationMembership {
254
257
  }
255
258
 
@@ -462,6 +465,7 @@ namespace reference.`microsoft.graph` {
462
465
  }
463
466
 
464
467
  @complex model appManagementApplicationConfiguration extends appManagementConfiguration {
468
+ identifierUris: identifierUriConfiguration | null;
465
469
  }
466
470
 
467
471
  @abstract
@@ -470,6 +474,10 @@ namespace reference.`microsoft.graph` {
470
474
 
471
475
  }
472
476
 
477
+ @complex model appManagementPolicyActorExemptions {
478
+ customSecurityAttributes: customSecurityAttributeExemption[] | null;
479
+ }
480
+
473
481
  @complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
474
482
  }
475
483
 
@@ -723,6 +731,7 @@ namespace reference.`microsoft.graph` {
723
731
  @complex model azureADJoinPolicy {
724
732
  allowedToJoin: deviceRegistrationMembership | null;
725
733
  isAdminConfigurable: boolean | null;
734
+ localAdmins: localAdminSettings | null;
726
735
  }
727
736
 
728
737
  @complex model azureAdPopTokenAuthentication extends customExtensionAuthenticationConfiguration {
@@ -1253,7 +1262,12 @@ namespace reference.`microsoft.graph` {
1253
1262
  locale: string | null;
1254
1263
  }
1255
1264
 
1265
+ @complex model customAppManagementApplicationConfiguration {
1266
+ identifierUris: identifierUriConfiguration | null;
1267
+ }
1268
+
1256
1269
  @complex model customAppManagementConfiguration extends appManagementConfiguration {
1270
+ applicationRestrictions: customAppManagementApplicationConfiguration | null;
1257
1271
  }
1258
1272
 
1259
1273
  @abstract
@@ -1298,6 +1312,16 @@ namespace reference.`microsoft.graph` {
1298
1312
  @complex model customExtensionEndpointConfiguration {
1299
1313
  }
1300
1314
 
1315
+ @abstract
1316
+ @complex model customSecurityAttributeExemption {
1317
+ id: string;
1318
+ operator: customSecurityAttributeComparisonOperator;
1319
+ }
1320
+
1321
+ @complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
1322
+ value: string | null;
1323
+ }
1324
+
1301
1325
  @open
1302
1326
  @complex model customSecurityAttributeValue {
1303
1327
  }
@@ -2047,6 +2071,10 @@ namespace reference.`microsoft.graph` {
2047
2071
  users: string[] | null;
2048
2072
  }
2049
2073
 
2074
+ @complex model enumeratedScopes extends inheritableScopes {
2075
+ scopes: string[];
2076
+ }
2077
+
2050
2078
  @abstract
2051
2079
  @complex model eventMessageDetail {
2052
2080
  }
@@ -2263,6 +2291,20 @@ namespace reference.`microsoft.graph` {
2263
2291
  isPicture: boolean | null;
2264
2292
  }
2265
2293
 
2294
+ @complex model identifierUriConfiguration {
2295
+ nonDefaultUriAddition: identifierUriRestriction | null;
2296
+ uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
2297
+ }
2298
+
2299
+ @complex model identifierUriRestriction {
2300
+ excludeActors: appManagementPolicyActorExemptions | null;
2301
+ excludeAppsReceivingV2Tokens: boolean | null;
2302
+ excludeSaml: boolean | null;
2303
+ isStateSetByMicrosoft: boolean;
2304
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
2305
+ state: appManagementRestrictionState;
2306
+ }
2307
+
2266
2308
  @open
2267
2309
  @complex model identity {
2268
2310
  displayName: string | null;
@@ -2339,6 +2381,11 @@ namespace reference.`microsoft.graph` {
2339
2381
  termsOfServiceUrl: string | null;
2340
2382
  }
2341
2383
 
2384
+ @abstract
2385
+ @complex model inheritableScopes {
2386
+ kind: scopeCollectionKind;
2387
+ }
2388
+
2342
2389
  @open
2343
2390
  @complex model initiator extends identity {
2344
2391
  initiatorType: initiatorType | null;
@@ -2803,6 +2850,11 @@ namespace reference.`microsoft.graph` {
2803
2850
  isEnabled: boolean | null;
2804
2851
  }
2805
2852
 
2853
+ @complex model localAdminSettings {
2854
+ enableGlobalAdmins: boolean | null;
2855
+ registeringUsers: deviceRegistrationMembership | null;
2856
+ }
2857
+
2806
2858
  @complex model localeInfo {
2807
2859
  displayName: string | null;
2808
2860
  locale: string | null;
@@ -3247,6 +3299,9 @@ namespace reference.`microsoft.graph` {
3247
3299
  @complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
3248
3300
  }
3249
3301
 
3302
+ @complex model noScopes extends inheritableScopes {
3303
+ }
3304
+
3250
3305
  @complex model numberColumn {
3251
3306
  decimalPlaces: string | null;
3252
3307
  displayAs: string | null;
@@ -3524,7 +3579,7 @@ namespace reference.`microsoft.graph` {
3524
3579
  */
3525
3580
  privacySettingsHidden: boolean;
3526
3581
  /**
3527
- * The type of user. Possible values are administrator and standard. Default value is administrator. Yes No
3582
+ * The type of user. Possible values are administrator and standard. Default value is administrator. Yes No
3528
3583
 
3529
3584
  */
3530
3585
  userType: windowsUserType;
@@ -3667,6 +3722,12 @@ namespace reference.`microsoft.graph` {
3667
3722
  localizations: displayNameLocalization[] | null;
3668
3723
  }
3669
3724
 
3725
+ @complex model profileSourceLocalization {
3726
+ displayName: string | null;
3727
+ languageTag: string | null;
3728
+ webUrl: string | null;
3729
+ }
3730
+
3670
3731
  @complex model provisionChannelEmailResult {
3671
3732
  email: string | null;
3672
3733
  }
@@ -6093,6 +6154,28 @@ namespace reference.`microsoft.graph` {
6093
6154
  @contains scopedRoleMembers: scopedRoleMembership[];
6094
6155
  }
6095
6156
 
6157
+ @open
6158
+ @entity model agentIdentity extends servicePrincipal {
6159
+ agentIdentityBlueprintId: string;
6160
+ @computed createdDateTime: offsetDateTime | null;
6161
+ @references sponsors: directoryObject[];
6162
+ }
6163
+
6164
+ @open
6165
+ @entity model agentIdentityBlueprint extends application {
6166
+ @contains inheritablePermissions: inheritablePermission[];
6167
+ @references sponsors: directoryObject[];
6168
+ }
6169
+
6170
+ @open
6171
+ @entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
6172
+ @references sponsors: directoryObject[];
6173
+ }
6174
+
6175
+ @open
6176
+ @entity model agentUser extends user {
6177
+ }
6178
+
6096
6179
  @entity model agreement extends entity {
6097
6180
  displayName: string | null;
6098
6181
  isPerDeviceAcceptanceRequired: boolean | null;
@@ -6853,6 +6936,7 @@ namespace reference.`microsoft.graph` {
6853
6936
  applicationTemplateId: string | null;
6854
6937
  appRoles: appRole[];
6855
6938
  authenticationBehaviors: authenticationBehaviors | null;
6939
+ createdByAppId: string | null;
6856
6940
  @computed createdDateTime: offsetDateTime | null;
6857
6941
  defaultRedirectUri: string | null;
6858
6942
  description: string | null;
@@ -6862,9 +6946,11 @@ namespace reference.`microsoft.graph` {
6862
6946
  identifierUris: string[];
6863
6947
  info: informationalUrl | null;
6864
6948
  isDeviceOnlyAuthSupported: boolean | null;
6949
+ isDisabled: boolean | null;
6865
6950
  isFallbackPublicClient: boolean | null;
6866
6951
  keyCredentials: keyCredential[];
6867
6952
  logo: stream;
6953
+ managerApplications: guid;
6868
6954
  notes: string | null;
6869
6955
  oauth2RequirePostResponse: boolean;
6870
6956
  optionalClaims: optionalClaims | null;
@@ -6956,6 +7042,10 @@ namespace reference.`microsoft.graph` {
6956
7042
  status: string | null;
6957
7043
  }
6958
7044
 
7045
+ @entity model approvedClientApp extends entity {
7046
+ displayName: string | null;
7047
+ }
7048
+
6959
7049
  @entity model appScope extends entity {
6960
7050
  displayName: string | null;
6961
7051
  type: string | null;
@@ -7498,7 +7588,9 @@ namespace reference.`microsoft.graph` {
7498
7588
  yomiGivenName: string | null;
7499
7589
  yomiSurname: string | null;
7500
7590
  @contains extensions: extension[];
7591
+ @contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
7501
7592
  @contains photo: profilePhoto | null;
7593
+ @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
7502
7594
  }
7503
7595
 
7504
7596
  @entity model contactFolder extends entity {
@@ -7506,6 +7598,8 @@ namespace reference.`microsoft.graph` {
7506
7598
  parentFolderId: string | null;
7507
7599
  @contains childFolders: contactFolder[];
7508
7600
  @contains contacts: contact[];
7601
+ @contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
7602
+ @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
7509
7603
  }
7510
7604
 
7511
7605
  @entity model contentType extends entity {
@@ -9564,6 +9658,11 @@ namespace reference.`microsoft.graph` {
9564
9658
  targetObjects: string[];
9565
9659
  }
9566
9660
 
9661
+ @entity model externalAuthenticationMethod extends authenticationMethod {
9662
+ configurationId: string;
9663
+ displayName: string;
9664
+ }
9665
+
9567
9666
  @entity model externalAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
9568
9667
  appId: string;
9569
9668
  displayName: string;
@@ -9674,6 +9773,8 @@ namespace reference.`microsoft.graph` {
9674
9773
  groupTypes: string[];
9675
9774
  hasMembersWithLicenseErrors: boolean | null;
9676
9775
  hideFromAddressLists: boolean | null;
9776
+ hideFromOutlookClients: boolean | null;
9777
+ infoCatalogs: string[];
9677
9778
  isArchived: boolean | null;
9678
9779
  isAssignableToRole: boolean | null;
9679
9780
  isManagementRestricted: boolean | null;
@@ -9685,6 +9786,7 @@ namespace reference.`microsoft.graph` {
9685
9786
  membershipRule: string | null;
9686
9787
  membershipRuleProcessingState: string | null;
9687
9788
  onPremisesDomainName: string | null;
9789
+ onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
9688
9790
  onPremisesLastSyncDateTime: offsetDateTime | null;
9689
9791
  onPremisesNetBiosName: string | null;
9690
9792
  onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
@@ -9704,6 +9806,7 @@ namespace reference.`microsoft.graph` {
9704
9806
  uniqueName: string | null;
9705
9807
  unseenCount: int32 | null;
9706
9808
  visibility: string | null;
9809
+ welcomeMessageEnabled: boolean | null;
9707
9810
  @contains acceptedSenders: directoryObject[];
9708
9811
  @contains appRoleAssignments: appRoleAssignment[];
9709
9812
  @contains calendar: calendar | null;
@@ -9898,6 +10001,11 @@ namespace reference.`microsoft.graph` {
9898
10001
  @contains bitlocker: bitlocker | null;
9899
10002
  }
9900
10003
 
10004
+ @entity model inheritablePermission extends MsGraph.SharedModels.entity {
10005
+ inheritableScopes: inheritableScopes | null;
10006
+ @computed @key resourceAppId: string;
10007
+ }
10008
+
9901
10009
  @entity model insightsSettings extends entity {
9902
10010
  disabledForGroup: string | null;
9903
10011
  isEnabledInOrganization: boolean | null;
@@ -9963,7 +10071,7 @@ namespace reference.`microsoft.graph` {
9963
10071
  */
9964
10072
  passcodeBlockSimple: boolean;
9965
10073
  /**
9966
- * Number of days before the passcode expires. Valid values 1 to 65535
10074
+ * Number of days before the passcode expires. Starting January 2026 (Intune release version: 2601), the maximum expiration days will be limited to 730 days. Any setting above 730 days will be default to 730 days. Valid values 1 to 65535
9967
10075
  */
9968
10076
  passcodeExpirationDays: int32 | null;
9969
10077
  /**
@@ -10978,71 +11086,71 @@ namespace reference.`microsoft.graph` {
10978
11086
  */
10979
11087
  @entity model macOSCompliancePolicy extends deviceCompliancePolicy {
10980
11088
  /**
10981
- * Require that devices have enabled device threat protection.
11089
+ * Specifies whether Mobile Threat Defense (MTD) must be enabled. When set to true, the device is marked noncompliant if MTD isn't enabled or doesn't report a threat level. When false, threat protection level requirements aren't enforced. Default is false.
10982
11090
  */
10983
11091
  deviceThreatProtectionEnabled: boolean;
10984
11092
  /**
10985
- * Require Mobile Threat Protection minimum risk level to report noncompliance.
11093
+ * Specifies the Mobile Threat Defense risk level threshold used to report noncompliance (for example, secured, medium, or high). When set to a value other than unavailable, the device is marked noncompliant if the reported risk level doesn't meet the configured requirement. Default is unavailable.
10986
11094
  */
10987
11095
  deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
10988
11096
  /**
10989
- * Corresponds to the “Block all incoming connections option.
11097
+ * Specifies whether Block all incoming connections must be enabled. When set to true, the device is marked noncompliant if the setting is disabled. Default is false.
10990
11098
  */
10991
11099
  firewallBlockAllIncoming: boolean;
10992
11100
  /**
10993
- * Whether the firewall should be enabled or not.
11101
+ * Specifies whether the macOS application firewall must be enabled. When set to true, the device is marked noncompliant if the firewall is disabled. Default is false.
10994
11102
  */
10995
11103
  firewallEnabled: boolean;
10996
11104
  /**
10997
- * Corresponds to Enable stealth mode.”
11105
+ * Specifies whether Enable stealth mode must be enabled. When set to true, the device is marked noncompliant if the setting is disabled. Default is false.
10998
11106
  */
10999
11107
  firewallEnableStealthMode: boolean;
11000
11108
  /**
11001
- * Maximum MacOS version.
11109
+ * Specifies the maximum allowed macOS version. When set, the device is marked noncompliant if its OS version is higher than this value. Default is null, when set to default it is not evaluated.
11002
11110
  */
11003
11111
  osMaximumVersion: string | null;
11004
11112
  /**
11005
- * Minimum MacOS version.
11113
+ * Specifies the minimum allowed macOS version. When set, the device is marked noncompliant if its OS version is lower than this value. Default is null, when set to default it is not evaluated.
11006
11114
  */
11007
11115
  osMinimumVersion: string | null;
11008
11116
  /**
11009
- * Indicates whether or not to block simple passwords.
11117
+ * Specifies whether simple passwords such as 1111 or 1234 are allowed. When set to true, the device is marked noncompliant if it allows simple passwords. Default is false.
11010
11118
  */
11011
11119
  passwordBlockSimple: boolean;
11012
11120
  /**
11013
- * Number of days before the password expires. Valid values 1 to 65535
11121
+ * Specifies the maximum password age in days. When set, the device is marked noncompliant if the password age exceeds this value. Valid values are 1 to 65535. Default is null, when set to default it is not evaluated. Valid values 1 to 65535
11014
11122
  */
11015
11123
  passwordExpirationDays: int32 | null;
11016
11124
  /**
11017
- * The number of character sets required in the password.
11125
+ * Specifies the minimum number of character sets required in the password. When set, the device is marked noncompliant if the password doesn't meet this requirement. Default is null, when set to default it is not evaluated.
11018
11126
  */
11019
11127
  passwordMinimumCharacterSetCount: int32 | null;
11020
11128
  /**
11021
- * Minimum length of password. Valid values 4 to 14
11129
+ * Specifies the minimum password length. When set, the device is marked noncompliant if the password length is less than this value. Valid values are 4 to 14. Default is null, when set to default it is not evaluated. Valid values 4 to 14
11022
11130
  */
11023
11131
  passwordMinimumLength: int32 | null;
11024
11132
  /**
11025
- * Minutes of inactivity before a password is required.
11133
+ * Specifies the maximum minutes of inactivity before a password is required to unlock the device. When set, the device is marked noncompliant if it allows a longer inactivity period. Default is null, when set to default it is not evaluated.
11026
11134
  */
11027
11135
  passwordMinutesOfInactivityBeforeLock: int32 | null;
11028
11136
  /**
11029
- * Number of previous passwords to block. Valid values 1 to 24
11137
+ * Specifies the number of previous passwords that can't be reused. When set, the device is marked noncompliant if it doesn't enforce this history count. Valid values are 1 to 24. Default is null, when set to default it is not evaluated. Valid values 1 to 24
11030
11138
  */
11031
11139
  passwordPreviousPasswordBlockCount: int32 | null;
11032
11140
  /**
11033
- * Whether or not to require a password.
11141
+ * Specifies whether a device password is required. When set to true, the device is marked noncompliant if a password isn't configured. Default is false.
11034
11142
  */
11035
11143
  passwordRequired: boolean;
11036
11144
  /**
11037
- * The required password type.
11145
+ * Specifies the required password type (for example, deviceDefault or alphanumeric). When set to a value other than deviceDefault, the device is marked noncompliant if the password type doesn't match. Default is deviceDefault.
11038
11146
  */
11039
11147
  passwordRequiredType: requiredPasswordType;
11040
11148
  /**
11041
- * Require encryption on Mac OS devices.
11149
+ * Specifies whether storage encryption is required on macOS devices. When set to true, the device is marked noncompliant if storage isn't encrypted. Default is false.
11042
11150
  */
11043
11151
  storageRequireEncryption: boolean;
11044
11152
  /**
11045
- * Require that devices have enabled system integrity protection.
11153
+ * Specifies whether System Integrity Protection must be enabled. When set to true, the device is marked noncompliant if System Integrity Protection is disabled. Default is false.
11046
11154
  */
11047
11155
  systemIntegrityProtectionEnabled: boolean;
11048
11156
  }
@@ -12802,6 +12910,8 @@ namespace reference.`microsoft.graph` {
12802
12910
  @entity model peopleAdminSettings extends entity {
12803
12911
  @contains itemInsights: insightsSettings | null;
12804
12912
  @contains profileCardProperties: profileCardProperty[];
12913
+ @contains profilePropertySettings: profilePropertySetting[];
12914
+ @contains profileSources: profileSource[];
12805
12915
  @contains pronouns: pronounsSettings | null;
12806
12916
  }
12807
12917
 
@@ -13014,6 +13124,7 @@ namespace reference.`microsoft.graph` {
13014
13124
  @entity model profileCardProperty extends entity {
13015
13125
  annotations: profileCardAnnotation[] | null;
13016
13126
  directoryPropertyName: string | null;
13127
+ isVisible: boolean;
13017
13128
  }
13018
13129
 
13019
13130
  @entity model profilePhoto extends entity {
@@ -13021,6 +13132,20 @@ namespace reference.`microsoft.graph` {
13021
13132
  width: int32 | null;
13022
13133
  }
13023
13134
 
13135
+ @entity model profilePropertySetting extends entity {
13136
+ displayName: string | null;
13137
+ name: string | null;
13138
+ prioritizedSourceUrls: string[];
13139
+ }
13140
+
13141
+ @entity model profileSource extends entity {
13142
+ displayName: string | null;
13143
+ kind: string | null;
13144
+ localizations: profileSourceLocalization[];
13145
+ sourceId: string | null;
13146
+ webUrl: string | null;
13147
+ }
13148
+
13024
13149
  @entity model pronounsSettings extends entity {
13025
13150
  isEnabledInOrganization: boolean;
13026
13151
  }
@@ -13100,6 +13225,7 @@ namespace reference.`microsoft.graph` {
13100
13225
 
13101
13226
  @entity model remoteDesktopSecurityConfiguration extends entity {
13102
13227
  isRemoteDesktopProtocolEnabled: boolean;
13228
+ @contains approvedClientApps: approvedClientApp[];
13103
13229
  @contains targetDeviceGroups: targetDeviceGroup[];
13104
13230
  }
13105
13231
 
@@ -13309,12 +13435,14 @@ namespace reference.`microsoft.graph` {
13309
13435
  appOwnerOrganizationId: guid | null;
13310
13436
  appRoleAssignmentRequired: boolean;
13311
13437
  appRoles: appRole[];
13438
+ createdByAppId: string | null;
13312
13439
  customSecurityAttributes: customSecurityAttributeValue | null;
13313
13440
  description: string | null;
13314
13441
  disabledByMicrosoftStatus: string | null;
13315
13442
  displayName: string | null;
13316
13443
  homepage: string | null;
13317
13444
  info: informationalUrl | null;
13445
+ isDisabled: boolean | null;
13318
13446
  keyCredentials: keyCredential[];
13319
13447
  loginUrl: string | null;
13320
13448
  logoutUrl: string | null;
@@ -14305,6 +14433,7 @@ namespace reference.`microsoft.graph` {
14305
14433
  givenName: string | null;
14306
14434
  hireDate: offsetDateTime;
14307
14435
  identities: objectIdentity[] | null;
14436
+ identityParentId: string | null;
14308
14437
  imAddresses: string[] | null;
14309
14438
  interests: string[] | null;
14310
14439
  isManagementRestricted: boolean | null;
@@ -17105,7 +17234,7 @@ namespace reference.`microsoft.graph` {
17105
17234
  */
17106
17235
  preprovisioningAllowed: boolean | null;
17107
17236
  /**
17108
- * List of role scope tags for the deployment profile.
17237
+ * List of role scope tags for the deployment profile.
17109
17238
  */
17110
17239
  roleScopeTagIds: string[] | null;
17111
17240
  /**
@@ -17721,6 +17850,10 @@ namespace reference.`microsoft.graph` {
17721
17850
  * Current anti malware version
17722
17851
  */
17723
17852
  antiMalwareVersion: string | null;
17853
+ /**
17854
+ * When TRUE indicates the Windows Defender controlled configuration feature is enabled, when FALSE indicates the Windows Defender controlled configuration feature is not enabled. Defaults to setting on client device.
17855
+ */
17856
+ controlledConfigurationEnabled: boolean | null;
17724
17857
  /**
17725
17858
  * Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
17726
17859
  */
@@ -18112,6 +18245,7 @@ namespace reference.`microsoft.graph` {
18112
18245
  systemRemove: 9,
18113
18246
  onBehalfAdd: 10,
18114
18247
  unknownFutureValue: 11,
18248
+ approverRemove: 12,
18115
18249
  }
18116
18250
 
18117
18251
  enum accessPackageSubjectType {
@@ -18520,6 +18654,12 @@ namespace reference.`microsoft.graph` {
18520
18654
  unknownFutureValue: 3,
18521
18655
  }
18522
18656
 
18657
+ enum appManagementRestrictionState {
18658
+ enabled: 1,
18659
+ disabled: 2,
18660
+ unknownFutureValue: 3,
18661
+ }
18662
+
18523
18663
  enum approvalFilterByCurrentUserOptions {
18524
18664
  target: 0,
18525
18665
  createdBy: 1,
@@ -19157,6 +19297,11 @@ namespace reference.`microsoft.graph` {
19157
19297
  unknownFutureValue: 6,
19158
19298
  }
19159
19299
 
19300
+ enum customSecurityAttributeComparisonOperator {
19301
+ equals: 1,
19302
+ unknownFutureValue: 2,
19303
+ }
19304
+
19160
19305
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
19161
19306
  enum dayOfWeek {
19162
19307
  sunday: 0,
@@ -22411,6 +22556,14 @@ namespace reference.`microsoft.graph` {
22411
22556
  unknownFutureValue: 10,
22412
22557
  }
22413
22558
 
22559
+ enum scopeCollectionKind {
22560
+ allAllowed: 0,
22561
+ enumerated: 1,
22562
+ none: 2,
22563
+ scopeKindNotSet: 3,
22564
+ unknownFutureValue: 4,
22565
+ }
22566
+
22414
22567
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
22415
22568
  enum scopeOperatorMultiValuedComparisonType {
22416
22569
  All: 0,