@microsoft/typespec-msgraph-reference 1.0.3 → 1.0.4

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;
@@ -9704,6 +9805,7 @@ namespace reference.`microsoft.graph` {
9704
9805
  uniqueName: string | null;
9705
9806
  unseenCount: int32 | null;
9706
9807
  visibility: string | null;
9808
+ welcomeMessageEnabled: boolean | null;
9707
9809
  @contains acceptedSenders: directoryObject[];
9708
9810
  @contains appRoleAssignments: appRoleAssignment[];
9709
9811
  @contains calendar: calendar | null;
@@ -9898,6 +10000,11 @@ namespace reference.`microsoft.graph` {
9898
10000
  @contains bitlocker: bitlocker | null;
9899
10001
  }
9900
10002
 
10003
+ @entity model inheritablePermission extends MsGraph.SharedModels.entity {
10004
+ inheritableScopes: inheritableScopes | null;
10005
+ @computed @key resourceAppId: string;
10006
+ }
10007
+
9901
10008
  @entity model insightsSettings extends entity {
9902
10009
  disabledForGroup: string | null;
9903
10010
  isEnabledInOrganization: boolean | null;
@@ -9963,7 +10070,7 @@ namespace reference.`microsoft.graph` {
9963
10070
  */
9964
10071
  passcodeBlockSimple: boolean;
9965
10072
  /**
9966
- * Number of days before the passcode expires. Valid values 1 to 65535
10073
+ * 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
10074
  */
9968
10075
  passcodeExpirationDays: int32 | null;
9969
10076
  /**
@@ -10978,71 +11085,71 @@ namespace reference.`microsoft.graph` {
10978
11085
  */
10979
11086
  @entity model macOSCompliancePolicy extends deviceCompliancePolicy {
10980
11087
  /**
10981
- * Require that devices have enabled device threat protection.
11088
+ * 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
11089
  */
10983
11090
  deviceThreatProtectionEnabled: boolean;
10984
11091
  /**
10985
- * Require Mobile Threat Protection minimum risk level to report noncompliance.
11092
+ * 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
11093
  */
10987
11094
  deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
10988
11095
  /**
10989
- * Corresponds to the “Block all incoming connections option.
11096
+ * 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
11097
  */
10991
11098
  firewallBlockAllIncoming: boolean;
10992
11099
  /**
10993
- * Whether the firewall should be enabled or not.
11100
+ * 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
11101
  */
10995
11102
  firewallEnabled: boolean;
10996
11103
  /**
10997
- * Corresponds to Enable stealth mode.”
11104
+ * 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
11105
  */
10999
11106
  firewallEnableStealthMode: boolean;
11000
11107
  /**
11001
- * Maximum MacOS version.
11108
+ * 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
11109
  */
11003
11110
  osMaximumVersion: string | null;
11004
11111
  /**
11005
- * Minimum MacOS version.
11112
+ * 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
11113
  */
11007
11114
  osMinimumVersion: string | null;
11008
11115
  /**
11009
- * Indicates whether or not to block simple passwords.
11116
+ * 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
11117
  */
11011
11118
  passwordBlockSimple: boolean;
11012
11119
  /**
11013
- * Number of days before the password expires. Valid values 1 to 65535
11120
+ * 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
11121
  */
11015
11122
  passwordExpirationDays: int32 | null;
11016
11123
  /**
11017
- * The number of character sets required in the password.
11124
+ * 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
11125
  */
11019
11126
  passwordMinimumCharacterSetCount: int32 | null;
11020
11127
  /**
11021
- * Minimum length of password. Valid values 4 to 14
11128
+ * 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
11129
  */
11023
11130
  passwordMinimumLength: int32 | null;
11024
11131
  /**
11025
- * Minutes of inactivity before a password is required.
11132
+ * 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
11133
  */
11027
11134
  passwordMinutesOfInactivityBeforeLock: int32 | null;
11028
11135
  /**
11029
- * Number of previous passwords to block. Valid values 1 to 24
11136
+ * 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
11137
  */
11031
11138
  passwordPreviousPasswordBlockCount: int32 | null;
11032
11139
  /**
11033
- * Whether or not to require a password.
11140
+ * 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
11141
  */
11035
11142
  passwordRequired: boolean;
11036
11143
  /**
11037
- * The required password type.
11144
+ * 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
11145
  */
11039
11146
  passwordRequiredType: requiredPasswordType;
11040
11147
  /**
11041
- * Require encryption on Mac OS devices.
11148
+ * 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
11149
  */
11043
11150
  storageRequireEncryption: boolean;
11044
11151
  /**
11045
- * Require that devices have enabled system integrity protection.
11152
+ * 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
11153
  */
11047
11154
  systemIntegrityProtectionEnabled: boolean;
11048
11155
  }
@@ -12802,6 +12909,8 @@ namespace reference.`microsoft.graph` {
12802
12909
  @entity model peopleAdminSettings extends entity {
12803
12910
  @contains itemInsights: insightsSettings | null;
12804
12911
  @contains profileCardProperties: profileCardProperty[];
12912
+ @contains profilePropertySettings: profilePropertySetting[];
12913
+ @contains profileSources: profileSource[];
12805
12914
  @contains pronouns: pronounsSettings | null;
12806
12915
  }
12807
12916
 
@@ -13021,6 +13130,20 @@ namespace reference.`microsoft.graph` {
13021
13130
  width: int32 | null;
13022
13131
  }
13023
13132
 
13133
+ @entity model profilePropertySetting extends entity {
13134
+ displayName: string | null;
13135
+ name: string | null;
13136
+ prioritizedSourceUrls: string[];
13137
+ }
13138
+
13139
+ @entity model profileSource extends entity {
13140
+ displayName: string | null;
13141
+ kind: string | null;
13142
+ localizations: profileSourceLocalization[];
13143
+ sourceId: string | null;
13144
+ webUrl: string | null;
13145
+ }
13146
+
13024
13147
  @entity model pronounsSettings extends entity {
13025
13148
  isEnabledInOrganization: boolean;
13026
13149
  }
@@ -13100,6 +13223,7 @@ namespace reference.`microsoft.graph` {
13100
13223
 
13101
13224
  @entity model remoteDesktopSecurityConfiguration extends entity {
13102
13225
  isRemoteDesktopProtocolEnabled: boolean;
13226
+ @contains approvedClientApps: approvedClientApp[];
13103
13227
  @contains targetDeviceGroups: targetDeviceGroup[];
13104
13228
  }
13105
13229
 
@@ -13309,12 +13433,14 @@ namespace reference.`microsoft.graph` {
13309
13433
  appOwnerOrganizationId: guid | null;
13310
13434
  appRoleAssignmentRequired: boolean;
13311
13435
  appRoles: appRole[];
13436
+ createdByAppId: string | null;
13312
13437
  customSecurityAttributes: customSecurityAttributeValue | null;
13313
13438
  description: string | null;
13314
13439
  disabledByMicrosoftStatus: string | null;
13315
13440
  displayName: string | null;
13316
13441
  homepage: string | null;
13317
13442
  info: informationalUrl | null;
13443
+ isDisabled: boolean | null;
13318
13444
  keyCredentials: keyCredential[];
13319
13445
  loginUrl: string | null;
13320
13446
  logoutUrl: string | null;
@@ -14305,6 +14431,7 @@ namespace reference.`microsoft.graph` {
14305
14431
  givenName: string | null;
14306
14432
  hireDate: offsetDateTime;
14307
14433
  identities: objectIdentity[] | null;
14434
+ identityParentId: string | null;
14308
14435
  imAddresses: string[] | null;
14309
14436
  interests: string[] | null;
14310
14437
  isManagementRestricted: boolean | null;
@@ -17105,7 +17232,7 @@ namespace reference.`microsoft.graph` {
17105
17232
  */
17106
17233
  preprovisioningAllowed: boolean | null;
17107
17234
  /**
17108
- * List of role scope tags for the deployment profile.
17235
+ * List of role scope tags for the deployment profile.
17109
17236
  */
17110
17237
  roleScopeTagIds: string[] | null;
17111
17238
  /**
@@ -17721,6 +17848,10 @@ namespace reference.`microsoft.graph` {
17721
17848
  * Current anti malware version
17722
17849
  */
17723
17850
  antiMalwareVersion: string | null;
17851
+ /**
17852
+ * 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.
17853
+ */
17854
+ controlledConfigurationEnabled: boolean | null;
17724
17855
  /**
17725
17856
  * Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
17726
17857
  */
@@ -18112,6 +18243,7 @@ namespace reference.`microsoft.graph` {
18112
18243
  systemRemove: 9,
18113
18244
  onBehalfAdd: 10,
18114
18245
  unknownFutureValue: 11,
18246
+ approverRemove: 12,
18115
18247
  }
18116
18248
 
18117
18249
  enum accessPackageSubjectType {
@@ -18520,6 +18652,12 @@ namespace reference.`microsoft.graph` {
18520
18652
  unknownFutureValue: 3,
18521
18653
  }
18522
18654
 
18655
+ enum appManagementRestrictionState {
18656
+ enabled: 1,
18657
+ disabled: 2,
18658
+ unknownFutureValue: 3,
18659
+ }
18660
+
18523
18661
  enum approvalFilterByCurrentUserOptions {
18524
18662
  target: 0,
18525
18663
  createdBy: 1,
@@ -19157,6 +19295,11 @@ namespace reference.`microsoft.graph` {
19157
19295
  unknownFutureValue: 6,
19158
19296
  }
19159
19297
 
19298
+ enum customSecurityAttributeComparisonOperator {
19299
+ equals: 1,
19300
+ unknownFutureValue: 2,
19301
+ }
19302
+
19160
19303
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
19161
19304
  enum dayOfWeek {
19162
19305
  sunday: 0,
@@ -22411,6 +22554,14 @@ namespace reference.`microsoft.graph` {
22411
22554
  unknownFutureValue: 10,
22412
22555
  }
22413
22556
 
22557
+ enum scopeCollectionKind {
22558
+ allAllowed: 0,
22559
+ enumerated: 1,
22560
+ none: 2,
22561
+ scopeKindNotSet: 3,
22562
+ unknownFutureValue: 4,
22563
+ }
22564
+
22414
22565
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
22415
22566
  enum scopeOperatorMultiValuedComparisonType {
22416
22567
  All: 0,