@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.
@@ -15,6 +15,12 @@ namespace reference.`microsoft.graph` {
15
15
  type: string;
16
16
  }
17
17
 
18
+ @complex model allAllowedScopes extends inheritableScopes {
19
+ }
20
+
21
+ @complex model allDeviceRegistrationMembership extends deviceRegistrationMembership {
22
+ }
23
+
18
24
  /**
19
25
  * Represents an assignment to all managed devices in the tenant.
20
26
  */
@@ -182,6 +188,7 @@ namespace reference.`microsoft.graph` {
182
188
  }
183
189
 
184
190
  @complex model appManagementApplicationConfiguration extends appManagementConfiguration {
191
+ identifierUris: identifierUriConfiguration | null;
185
192
  }
186
193
 
187
194
  @abstract
@@ -190,6 +197,10 @@ namespace reference.`microsoft.graph` {
190
197
 
191
198
  }
192
199
 
200
+ @complex model appManagementPolicyActorExemptions {
201
+ customSecurityAttributes: customSecurityAttributeExemption[] | null;
202
+ }
203
+
193
204
  @complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
194
205
  }
195
206
 
@@ -335,6 +346,17 @@ namespace reference.`microsoft.graph` {
335
346
  status: automaticRepliesStatus | null;
336
347
  }
337
348
 
349
+ @complex model azureADJoinPolicy {
350
+ allowedToJoin: deviceRegistrationMembership | null;
351
+ isAdminConfigurable: boolean | null;
352
+ localAdmins: localAdminSettings | null;
353
+ }
354
+
355
+ @complex model azureADRegistrationPolicy {
356
+ allowedToRegister: deviceRegistrationMembership | null;
357
+ isAdminConfigurable: boolean | null;
358
+ }
359
+
338
360
  /**
339
361
  * BitLocker Removable Drive Policies.
340
362
  */
@@ -368,6 +390,32 @@ namespace reference.`microsoft.graph` {
368
390
  issuerSki: string;
369
391
  }
370
392
 
393
+ @complex model changeNotification {
394
+ changeType: changeType;
395
+ clientState: string | null;
396
+ encryptedContent: changeNotificationEncryptedContent | null;
397
+ id: string | null;
398
+ lifecycleEvent: lifecycleEventType | null;
399
+ resource: string;
400
+ resourceData: resourceData | null;
401
+ subscriptionExpirationDateTime: offsetDateTime;
402
+ subscriptionId: guid;
403
+ tenantId: guid;
404
+ }
405
+
406
+ @complex model changeNotificationCollection {
407
+ validationTokens: string[] | null;
408
+ value: changeNotification[];
409
+ }
410
+
411
+ @complex model changeNotificationEncryptedContent {
412
+ data: string;
413
+ dataKey: string;
414
+ dataSignature: string;
415
+ encryptionCertificateId: string;
416
+ encryptionCertificateThumbprint: string;
417
+ }
418
+
371
419
  @open
372
420
  @complex model ComplexExtensionValue {
373
421
  }
@@ -460,7 +508,22 @@ namespace reference.`microsoft.graph` {
460
508
  isSyncAllowed: boolean | null;
461
509
  }
462
510
 
511
+ @complex model customAppManagementApplicationConfiguration {
512
+ identifierUris: identifierUriConfiguration | null;
513
+ }
514
+
463
515
  @complex model customAppManagementConfiguration extends appManagementConfiguration {
516
+ applicationRestrictions: customAppManagementApplicationConfiguration | null;
517
+ }
518
+
519
+ @abstract
520
+ @complex model customSecurityAttributeExemption {
521
+ id: string;
522
+ operator: customSecurityAttributeComparisonOperator;
523
+ }
524
+
525
+ @complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
526
+ value: string | null;
464
527
  }
465
528
 
466
529
  @open
@@ -887,6 +950,13 @@ namespace reference.`microsoft.graph` {
887
950
  windowsPE: string | null;
888
951
  }
889
952
 
953
+ @complex model deviceLocalCredential {
954
+ accountName: string;
955
+ accountSid: string;
956
+ backupDateTime: offsetDateTime;
957
+ passwordBase64: string;
958
+ }
959
+
890
960
  /**
891
961
  * User group targeting for Device Management Partner
892
962
  */
@@ -1016,6 +1086,9 @@ namespace reference.`microsoft.graph` {
1016
1086
  unknownStateThreatAgentDeviceCount: int32;
1017
1087
  }
1018
1088
 
1089
+ @complex model deviceRegistrationMembership {
1090
+ }
1091
+
1019
1092
  @complex model domainState {
1020
1093
  @computed lastActionDateTime: offsetDateTime | null;
1021
1094
  operation: string | null;
@@ -1059,6 +1132,15 @@ namespace reference.`microsoft.graph` {
1059
1132
  division: string | null;
1060
1133
  }
1061
1134
 
1135
+ @complex model enumeratedDeviceRegistrationMembership extends deviceRegistrationMembership {
1136
+ groups: string[] | null;
1137
+ users: string[] | null;
1138
+ }
1139
+
1140
+ @complex model enumeratedScopes extends inheritableScopes {
1141
+ scopes: string[];
1142
+ }
1143
+
1062
1144
  /**
1063
1145
  * Represents a group that should be excluded from an assignment.
1064
1146
  */
@@ -1137,6 +1219,20 @@ namespace reference.`microsoft.graph` {
1137
1219
  groupId: string | null;
1138
1220
  }
1139
1221
 
1222
+ @complex model identifierUriConfiguration {
1223
+ nonDefaultUriAddition: identifierUriRestriction | null;
1224
+ uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
1225
+ }
1226
+
1227
+ @complex model identifierUriRestriction {
1228
+ excludeActors: appManagementPolicyActorExemptions | null;
1229
+ excludeAppsReceivingV2Tokens: boolean | null;
1230
+ excludeSaml: boolean | null;
1231
+ isStateSetByMicrosoft: boolean;
1232
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
1233
+ state: appManagementRestrictionState;
1234
+ }
1235
+
1140
1236
  @open
1141
1237
  @complex model identity {
1142
1238
  displayName: string | null;
@@ -1180,6 +1276,11 @@ namespace reference.`microsoft.graph` {
1180
1276
  termsOfServiceUrl: string | null;
1181
1277
  }
1182
1278
 
1279
+ @abstract
1280
+ @complex model inheritableScopes {
1281
+ kind: scopeCollectionKind;
1282
+ }
1283
+
1183
1284
  /**
1184
1285
  * The value in an user experience analytics insight.
1185
1286
  */
@@ -1277,6 +1378,12 @@ namespace reference.`microsoft.graph` {
1277
1378
  primaryIdentityProviderPrecedenceOrder: b2bIdentityProvidersType[] | null;
1278
1379
  }
1279
1380
 
1381
+ @complex model invitedUserMessageInfo {
1382
+ ccRecipients: recipient[] | null;
1383
+ customizedMessageBody: string | null;
1384
+ messageLanguage: string | null;
1385
+ }
1386
+
1280
1387
  /**
1281
1388
  * Contains properties of the possible iOS device types the mobile app can run on.
1282
1389
  */
@@ -1609,6 +1716,15 @@ namespace reference.`microsoft.graph` {
1609
1716
  warning: int32 | null;
1610
1717
  }
1611
1718
 
1719
+ @complex model localAdminPasswordSettings {
1720
+ isEnabled: boolean | null;
1721
+ }
1722
+
1723
+ @complex model localAdminSettings {
1724
+ enableGlobalAdmins: boolean | null;
1725
+ registeringUsers: deviceRegistrationMembership | null;
1726
+ }
1727
+
1612
1728
  @complex model localeInfo {
1613
1729
  displayName: string | null;
1614
1730
  locale: string | null;
@@ -2011,6 +2127,12 @@ namespace reference.`microsoft.graph` {
2011
2127
  useLocalTime: boolean;
2012
2128
  }
2013
2129
 
2130
+ @complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
2131
+ }
2132
+
2133
+ @complex model noScopes extends inheritableScopes {
2134
+ }
2135
+
2014
2136
  @complex model objectIdentity {
2015
2137
  issuer: string | null;
2016
2138
  issuerAssignedId: string | null;
@@ -2243,7 +2365,7 @@ namespace reference.`microsoft.graph` {
2243
2365
  */
2244
2366
  privacySettingsHidden: boolean;
2245
2367
  /**
2246
- * The type of user. Possible values are administrator and standard. Default value is administrator. Yes No
2368
+ * The type of user. Possible values are administrator and standard. Default value is administrator. Yes No
2247
2369
 
2248
2370
  */
2249
2371
  userType: windowsUserType;
@@ -2449,6 +2571,10 @@ namespace reference.`microsoft.graph` {
2449
2571
  notAllowedResourceActions: string[] | null;
2450
2572
  }
2451
2573
 
2574
+ @open
2575
+ @complex model resourceData {
2576
+ }
2577
+
2452
2578
  @complex model resourcePermission {
2453
2579
  type: string;
2454
2580
  value: string;
@@ -3550,6 +3676,28 @@ namespace reference.`microsoft.graph` {
3550
3676
  @contains scopedRoleMembers: scopedRoleMembership[];
3551
3677
  }
3552
3678
 
3679
+ @open
3680
+ @entity model agentIdentity extends servicePrincipal {
3681
+ agentIdentityBlueprintId: string;
3682
+ @computed createdDateTime: offsetDateTime | null;
3683
+ @references sponsors: directoryObject[];
3684
+ }
3685
+
3686
+ @open
3687
+ @entity model agentIdentityBlueprint extends application {
3688
+ @contains inheritablePermissions: inheritablePermission[];
3689
+ @references sponsors: directoryObject[];
3690
+ }
3691
+
3692
+ @open
3693
+ @entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
3694
+ @references sponsors: directoryObject[];
3695
+ }
3696
+
3697
+ @open
3698
+ @entity model agentUser extends user {
3699
+ }
3700
+
3553
3701
  @entity model allowedValue extends entity {
3554
3702
  isActive: boolean | null;
3555
3703
  }
@@ -4235,6 +4383,7 @@ namespace reference.`microsoft.graph` {
4235
4383
  appId: string | null;
4236
4384
  applicationTemplateId: string | null;
4237
4385
  appRoles: appRole[];
4386
+ createdByAppId: string | null;
4238
4387
  @computed createdDateTime: offsetDateTime | null;
4239
4388
  defaultRedirectUri: string | null;
4240
4389
  description: string | null;
@@ -4244,9 +4393,11 @@ namespace reference.`microsoft.graph` {
4244
4393
  identifierUris: string[];
4245
4394
  info: informationalUrl | null;
4246
4395
  isDeviceOnlyAuthSupported: boolean | null;
4396
+ isDisabled: boolean | null;
4247
4397
  isFallbackPublicClient: boolean | null;
4248
4398
  keyCredentials: keyCredential[];
4249
4399
  logo: stream;
4400
+ managerApplications: guid;
4250
4401
  notes: string | null;
4251
4402
  oauth2RequirePostResponse: boolean;
4252
4403
  optionalClaims: optionalClaims | null;
@@ -4322,6 +4473,10 @@ namespace reference.`microsoft.graph` {
4322
4473
  resourceId: guid | null;
4323
4474
  }
4324
4475
 
4476
+ @entity model approvedClientApp extends entity {
4477
+ displayName: string | null;
4478
+ }
4479
+
4325
4480
  @entity model appScope extends entity {
4326
4481
  displayName: string | null;
4327
4482
  type: string | null;
@@ -4402,6 +4557,17 @@ namespace reference.`microsoft.graph` {
4402
4557
  guestUserRoleId: guid | null;
4403
4558
  }
4404
4559
 
4560
+ @entity model bitlocker extends entity {
4561
+ @contains recoveryKeys: bitlockerRecoveryKey[];
4562
+ }
4563
+
4564
+ @entity model bitlockerRecoveryKey extends entity {
4565
+ @computed createdDateTime: offsetDateTime;
4566
+ deviceId: string | null;
4567
+ key: string;
4568
+ volumeType: volumeType | null;
4569
+ }
4570
+
4405
4571
  @entity model calendar extends entity {
4406
4572
  allowedOnlineMeetingProviders: onlineMeetingProviderType[] | null;
4407
4573
  canEdit: boolean | null;
@@ -5660,6 +5826,13 @@ namespace reference.`microsoft.graph` {
5660
5826
  userName: string | null;
5661
5827
  }
5662
5828
 
5829
+ @entity model deviceLocalCredentialInfo extends entity {
5830
+ credentials: deviceLocalCredential[];
5831
+ deviceName: string;
5832
+ @computed lastBackupDateTime: offsetDateTime;
5833
+ refreshDateTime: offsetDateTime;
5834
+ }
5835
+
5663
5836
  /**
5664
5837
  * Windows Log Collection request entity.
5665
5838
  */
@@ -6107,11 +6280,22 @@ namespace reference.`microsoft.graph` {
6107
6280
  eventDateTime: offsetDateTime;
6108
6281
  }
6109
6282
 
6283
+ @entity model deviceRegistrationPolicy extends entity {
6284
+ azureADJoin: azureADJoinPolicy | null;
6285
+ azureADRegistration: azureADRegistrationPolicy | null;
6286
+ description: string | null;
6287
+ displayName: string | null;
6288
+ localAdminPassword: localAdminPasswordSettings | null;
6289
+ multiFactorAuthConfiguration: multiFactorAuthConfiguration;
6290
+ userDeviceQuota: int32;
6291
+ }
6292
+
6110
6293
  @entity model directory extends MsGraph.SharedModels.entity {
6111
6294
  @contains administrativeUnits: administrativeUnit[];
6112
6295
  @contains attributeSets: attributeSet[];
6113
6296
  @contains customSecurityAttributeDefinitions: customSecurityAttributeDefinition[];
6114
6297
  @contains deletedItems: directoryObject[];
6298
+ @contains deviceLocalCredentials: deviceLocalCredentialInfo[];
6115
6299
  @contains federationConfigurations: identityProviderBase[];
6116
6300
  @contains onPremisesSynchronization: onPremisesDirectorySynchronization[];
6117
6301
  @contains subscriptions: companySubscription[];
@@ -6467,6 +6651,7 @@ namespace reference.`microsoft.graph` {
6467
6651
  hasMembersWithLicenseErrors: boolean | null;
6468
6652
  hideFromAddressLists: boolean | null;
6469
6653
  hideFromOutlookClients: boolean | null;
6654
+ infoCatalogs: string[];
6470
6655
  isAssignableToRole: boolean | null;
6471
6656
  isManagementRestricted: boolean | null;
6472
6657
  isSubscribedByMail: boolean | null;
@@ -6495,6 +6680,7 @@ namespace reference.`microsoft.graph` {
6495
6680
  uniqueName: string | null;
6496
6681
  unseenCount: int32 | null;
6497
6682
  visibility: string | null;
6683
+ welcomeMessageEnabled: boolean | null;
6498
6684
  @contains acceptedSenders: directoryObject[];
6499
6685
  @contains appRoleAssignments: appRoleAssignment[];
6500
6686
  @contains calendar: calendar | null;
@@ -6616,6 +6802,15 @@ namespace reference.`microsoft.graph` {
6616
6802
  senderEmailAddress: emailAddress | null;
6617
6803
  }
6618
6804
 
6805
+ @entity model informationProtection extends MsGraph.SharedModels.entity {
6806
+ @contains bitlocker: bitlocker | null;
6807
+ }
6808
+
6809
+ @entity model inheritablePermission extends MsGraph.SharedModels.entity {
6810
+ inheritableScopes: inheritableScopes | null;
6811
+ @computed @key resourceAppId: string;
6812
+ }
6813
+
6619
6814
  @entity model internalDomainFederation extends samlOrWsFedProvider {
6620
6815
  activeSignInUri: string | null;
6621
6816
  federatedIdpMfaBehavior: federatedIdpMfaBehavior | null;
@@ -6627,6 +6822,19 @@ namespace reference.`microsoft.graph` {
6627
6822
  signOutUri: string | null;
6628
6823
  }
6629
6824
 
6825
+ @entity model invitation extends entity {
6826
+ invitedUserDisplayName: string | null;
6827
+ invitedUserEmailAddress: string;
6828
+ invitedUserMessageInfo: invitedUserMessageInfo | null;
6829
+ invitedUserType: string | null;
6830
+ inviteRedeemUrl: string | null;
6831
+ inviteRedirectUrl: string;
6832
+ resetRedemption: boolean | null;
6833
+ sendInvitationMessage: boolean | null;
6834
+ status: string | null;
6835
+ @references invitedUser: user | null;
6836
+ }
6837
+
6630
6838
  /**
6631
6839
  * Device Configuration.
6632
6840
  */
@@ -6663,7 +6871,7 @@ namespace reference.`microsoft.graph` {
6663
6871
  */
6664
6872
  passcodeBlockSimple: boolean;
6665
6873
  /**
6666
- * Number of days before the passcode expires. Valid values 1 to 65535
6874
+ * 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
6667
6875
  */
6668
6876
  passcodeExpirationDays: int32 | null;
6669
6877
  /**
@@ -7600,71 +7808,71 @@ namespace reference.`microsoft.graph` {
7600
7808
  */
7601
7809
  @entity model macOSCompliancePolicy extends deviceCompliancePolicy {
7602
7810
  /**
7603
- * Require that devices have enabled device threat protection.
7811
+ * 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.
7604
7812
  */
7605
7813
  deviceThreatProtectionEnabled: boolean;
7606
7814
  /**
7607
- * Require Mobile Threat Protection minimum risk level to report noncompliance.
7815
+ * 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.
7608
7816
  */
7609
7817
  deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
7610
7818
  /**
7611
- * Corresponds to the “Block all incoming connections option.
7819
+ * 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.
7612
7820
  */
7613
7821
  firewallBlockAllIncoming: boolean;
7614
7822
  /**
7615
- * Whether the firewall should be enabled or not.
7823
+ * 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.
7616
7824
  */
7617
7825
  firewallEnabled: boolean;
7618
7826
  /**
7619
- * Corresponds to Enable stealth mode.”
7827
+ * 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.
7620
7828
  */
7621
7829
  firewallEnableStealthMode: boolean;
7622
7830
  /**
7623
- * Maximum MacOS version.
7831
+ * 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.
7624
7832
  */
7625
7833
  osMaximumVersion: string | null;
7626
7834
  /**
7627
- * Minimum MacOS version.
7835
+ * 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.
7628
7836
  */
7629
7837
  osMinimumVersion: string | null;
7630
7838
  /**
7631
- * Indicates whether or not to block simple passwords.
7839
+ * 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.
7632
7840
  */
7633
7841
  passwordBlockSimple: boolean;
7634
7842
  /**
7635
- * Number of days before the password expires. Valid values 1 to 65535
7843
+ * 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
7636
7844
  */
7637
7845
  passwordExpirationDays: int32 | null;
7638
7846
  /**
7639
- * The number of character sets required in the password.
7847
+ * 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.
7640
7848
  */
7641
7849
  passwordMinimumCharacterSetCount: int32 | null;
7642
7850
  /**
7643
- * Minimum length of password. Valid values 4 to 14
7851
+ * 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
7644
7852
  */
7645
7853
  passwordMinimumLength: int32 | null;
7646
7854
  /**
7647
- * Minutes of inactivity before a password is required.
7855
+ * 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.
7648
7856
  */
7649
7857
  passwordMinutesOfInactivityBeforeLock: int32 | null;
7650
7858
  /**
7651
- * Number of previous passwords to block. Valid values 1 to 24
7859
+ * 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
7652
7860
  */
7653
7861
  passwordPreviousPasswordBlockCount: int32 | null;
7654
7862
  /**
7655
- * Whether or not to require a password.
7863
+ * 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.
7656
7864
  */
7657
7865
  passwordRequired: boolean;
7658
7866
  /**
7659
- * The required password type.
7867
+ * 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.
7660
7868
  */
7661
7869
  passwordRequiredType: requiredPasswordType;
7662
7870
  /**
7663
- * Require encryption on Mac OS devices.
7871
+ * 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.
7664
7872
  */
7665
7873
  storageRequireEncryption: boolean;
7666
7874
  /**
7667
- * Require that devices have enabled system integrity protection.
7875
+ * 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.
7668
7876
  */
7669
7877
  systemIntegrityProtectionEnabled: boolean;
7670
7878
  }
@@ -9472,6 +9680,7 @@ namespace reference.`microsoft.graph` {
9472
9680
  @contains claimsMappingPolicies: claimsMappingPolicy[];
9473
9681
  @contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
9474
9682
  @contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
9683
+ @contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
9475
9684
  @contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
9476
9685
  @contains permissionGrantPolicies: permissionGrantPolicy[];
9477
9686
  @contains tokenIssuancePolicies: tokenIssuancePolicy[];
@@ -9533,6 +9742,7 @@ namespace reference.`microsoft.graph` {
9533
9742
 
9534
9743
  @entity model remoteDesktopSecurityConfiguration extends entity {
9535
9744
  isRemoteDesktopProtocolEnabled: boolean;
9745
+ @contains approvedClientApps: approvedClientApp[];
9536
9746
  @contains targetDeviceGroups: targetDeviceGroup[];
9537
9747
  }
9538
9748
 
@@ -9714,12 +9924,14 @@ namespace reference.`microsoft.graph` {
9714
9924
  appOwnerOrganizationId: guid | null;
9715
9925
  appRoleAssignmentRequired: boolean;
9716
9926
  appRoles: appRole[];
9927
+ createdByAppId: string | null;
9717
9928
  customSecurityAttributes: customSecurityAttributeValue | null;
9718
9929
  description: string | null;
9719
9930
  disabledByMicrosoftStatus: string | null;
9720
9931
  displayName: string | null;
9721
9932
  homepage: string | null;
9722
9933
  info: informationalUrl | null;
9934
+ isDisabled: boolean | null;
9723
9935
  keyCredentials: keyCredential[];
9724
9936
  loginUrl: string | null;
9725
9937
  logoutUrl: string | null;
@@ -9961,6 +10173,21 @@ namespace reference.`microsoft.graph` {
9961
10173
  subscriptionIds: string[] | null;
9962
10174
  }
9963
10175
 
10176
+ @entity model subscription extends entity {
10177
+ applicationId: string | null;
10178
+ changeType: string;
10179
+ clientState: string | null;
10180
+ creatorId: string | null;
10181
+ encryptionCertificate: string | null;
10182
+ encryptionCertificateId: string | null;
10183
+ expirationDateTime: offsetDateTime;
10184
+ includeResourceData: boolean | null;
10185
+ latestSupportedTlsVersion: string | null;
10186
+ lifecycleNotificationUrl: string | null;
10187
+ notificationUrl: string;
10188
+ resource: string;
10189
+ }
10190
+
9964
10191
  @entity model targetDeviceGroup extends entity {
9965
10192
  displayName: string | null;
9966
10193
  }
@@ -10153,11 +10380,13 @@ namespace reference.`microsoft.graph` {
10153
10380
 
10154
10381
  @open
10155
10382
  @entity model user extends directoryObject {
10383
+ aboutMe: string | null;
10156
10384
  accountEnabled: boolean | null;
10157
10385
  ageGroup: string | null;
10158
10386
  assignedLicenses: assignedLicense[];
10159
10387
  assignedPlans: assignedPlan[];
10160
10388
  authorizationInfo: authorizationInfo | null;
10389
+ birthday: offsetDateTime;
10161
10390
  businessPhones: string[];
10162
10391
  city: string | null;
10163
10392
  companyName: string | null;
@@ -10181,8 +10410,11 @@ namespace reference.`microsoft.graph` {
10181
10410
  externalUserStateChangeDateTime: offsetDateTime | null;
10182
10411
  faxNumber: string | null;
10183
10412
  givenName: string | null;
10413
+ hireDate: offsetDateTime;
10184
10414
  identities: objectIdentity[] | null;
10415
+ identityParentId: string | null;
10185
10416
  imAddresses: string[] | null;
10417
+ interests: string[] | null;
10186
10418
  isManagementRestricted: boolean | null;
10187
10419
  isResourceAccount: boolean | null;
10188
10420
  jobTitle: string | null;
@@ -10193,6 +10425,7 @@ namespace reference.`microsoft.graph` {
10193
10425
  mailboxSettings: mailboxSettings | null;
10194
10426
  mailNickname: string | null;
10195
10427
  mobilePhone: string | null;
10428
+ mySite: string | null;
10196
10429
  officeLocation: string | null;
10197
10430
  onPremisesDistinguishedName: string | null;
10198
10431
  onPremisesDomainName: string | null;
@@ -10207,14 +10440,19 @@ namespace reference.`microsoft.graph` {
10207
10440
  otherMails: string[];
10208
10441
  passwordPolicies: string | null;
10209
10442
  passwordProfile: passwordProfile | null;
10443
+ pastProjects: string[] | null;
10210
10444
  postalCode: string | null;
10211
10445
  preferredDataLocation: string | null;
10212
10446
  preferredLanguage: string | null;
10447
+ preferredName: string | null;
10213
10448
  provisionedPlans: provisionedPlan[];
10214
10449
  proxyAddresses: string[];
10450
+ responsibilities: string[] | null;
10451
+ schools: string[] | null;
10215
10452
  securityIdentifier: string | null;
10216
10453
  showInAddressList: boolean | null;
10217
10454
  signInSessionsValidFromDateTime: offsetDateTime | null;
10455
+ skills: string[] | null;
10218
10456
  state: string | null;
10219
10457
  streetAddress: string | null;
10220
10458
  surname: string | null;
@@ -12892,7 +13130,7 @@ namespace reference.`microsoft.graph` {
12892
13130
  */
12893
13131
  preprovisioningAllowed: boolean | null;
12894
13132
  /**
12895
- * List of role scope tags for the deployment profile.
13133
+ * List of role scope tags for the deployment profile.
12896
13134
  */
12897
13135
  roleScopeTagIds: string[] | null;
12898
13136
  /**
@@ -13508,6 +13746,10 @@ namespace reference.`microsoft.graph` {
13508
13746
  * Current anti malware version
13509
13747
  */
13510
13748
  antiMalwareVersion: string | null;
13749
+ /**
13750
+ * 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.
13751
+ */
13752
+ controlledConfigurationEnabled: boolean | null;
13511
13753
  /**
13512
13754
  * Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
13513
13755
  */
@@ -14132,6 +14374,12 @@ namespace reference.`microsoft.graph` {
14132
14374
  unknownFutureValue: 3,
14133
14375
  }
14134
14376
 
14377
+ enum appManagementRestrictionState {
14378
+ enabled: 1,
14379
+ disabled: 2,
14380
+ unknownFutureValue: 3,
14381
+ }
14382
+
14135
14383
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
14136
14384
  enum attachmentType {
14137
14385
  file: 0,
@@ -14330,6 +14578,13 @@ namespace reference.`microsoft.graph` {
14330
14578
  provisioned: 1,
14331
14579
  }
14332
14580
 
14581
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
14582
+ enum changeType {
14583
+ created: 0,
14584
+ updated: 1,
14585
+ deleted: 2,
14586
+ }
14587
+
14333
14588
  /**
14334
14589
  * Compliance state.
14335
14590
  */
@@ -14390,6 +14645,11 @@ namespace reference.`microsoft.graph` {
14390
14645
  unknownFutureValue: 4,
14391
14646
  }
14392
14647
 
14648
+ enum customSecurityAttributeComparisonOperator {
14649
+ equals: 1,
14650
+ unknownFutureValue: 2,
14651
+ }
14652
+
14393
14653
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
14394
14654
  enum dayOfWeek {
14395
14655
  sunday: 0,
@@ -15570,6 +15830,13 @@ namespace reference.`microsoft.graph` {
15570
15830
  unknownFutureValue: 10,
15571
15831
  }
15572
15832
 
15833
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
15834
+ enum lifecycleEventType {
15835
+ missed: 0,
15836
+ subscriptionRemoved: 1,
15837
+ reauthorizationRequired: 2,
15838
+ }
15839
+
15573
15840
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
15574
15841
  enum locationType {
15575
15842
  default: 0,
@@ -16183,6 +16450,12 @@ namespace reference.`microsoft.graph` {
16183
16450
  unknownFutureValue: 6,
16184
16451
  }
16185
16452
 
16453
+ enum multiFactorAuthConfiguration {
16454
+ notRequired: 0,
16455
+ required: 1,
16456
+ unknownFutureValue: 2,
16457
+ }
16458
+
16186
16459
  /**
16187
16460
  * Branding Options for the Message Template. Branding is defined in the Intune Admin Console.
16188
16461
  */
@@ -17193,6 +17466,14 @@ namespace reference.`microsoft.graph` {
17193
17466
  moderate: 2,
17194
17467
  }
17195
17468
 
17469
+ enum scopeCollectionKind {
17470
+ allAllowed: 0,
17471
+ enumerated: 1,
17472
+ none: 2,
17473
+ scopeKindNotSet: 3,
17474
+ unknownFutureValue: 4,
17475
+ }
17476
+
17196
17477
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
17197
17478
  enum selectionLikelihoodInfo {
17198
17479
  notSpecified: 0,
@@ -17472,6 +17753,13 @@ namespace reference.`microsoft.graph` {
17472
17753
  show: 2,
17473
17754
  }
17474
17755
 
17756
+ enum volumeType {
17757
+ operatingSystemVolume: 1,
17758
+ fixedDataVolume: 2,
17759
+ removableDataVolume: 3,
17760
+ unknownFutureValue: 4,
17761
+ }
17762
+
17475
17763
  /**
17476
17764
  * Possible types of an Apple Volume Purchase Program token.
17477
17765
  */