@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.
@@ -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
 
@@ -233,6 +244,11 @@ namespace reference.`microsoft.graph` {
233
244
  status: responseStatus | null;
234
245
  }
235
246
 
247
+ @complex model attendeeAvailability {
248
+ attendee: attendeeBase | null;
249
+ availability: freeBusyStatus | null;
250
+ }
251
+
236
252
  @complex model attendeeBase extends recipient {
237
253
  type: attendeeType | null;
238
254
  }
@@ -335,6 +351,17 @@ namespace reference.`microsoft.graph` {
335
351
  status: automaticRepliesStatus | null;
336
352
  }
337
353
 
354
+ @complex model azureADJoinPolicy {
355
+ allowedToJoin: deviceRegistrationMembership | null;
356
+ isAdminConfigurable: boolean | null;
357
+ localAdmins: localAdminSettings | null;
358
+ }
359
+
360
+ @complex model azureADRegistrationPolicy {
361
+ allowedToRegister: deviceRegistrationMembership | null;
362
+ isAdminConfigurable: boolean | null;
363
+ }
364
+
338
365
  /**
339
366
  * BitLocker Removable Drive Policies.
340
367
  */
@@ -368,6 +395,32 @@ namespace reference.`microsoft.graph` {
368
395
  issuerSki: string;
369
396
  }
370
397
 
398
+ @complex model changeNotification {
399
+ changeType: changeType;
400
+ clientState: string | null;
401
+ encryptedContent: changeNotificationEncryptedContent | null;
402
+ id: string | null;
403
+ lifecycleEvent: lifecycleEventType | null;
404
+ resource: string;
405
+ resourceData: resourceData | null;
406
+ subscriptionExpirationDateTime: offsetDateTime;
407
+ subscriptionId: guid;
408
+ tenantId: guid;
409
+ }
410
+
411
+ @complex model changeNotificationCollection {
412
+ validationTokens: string[] | null;
413
+ value: changeNotification[];
414
+ }
415
+
416
+ @complex model changeNotificationEncryptedContent {
417
+ data: string;
418
+ dataKey: string;
419
+ dataSignature: string;
420
+ encryptionCertificateId: string;
421
+ encryptionCertificateThumbprint: string;
422
+ }
423
+
371
424
  @open
372
425
  @complex model ComplexExtensionValue {
373
426
  }
@@ -460,7 +513,22 @@ namespace reference.`microsoft.graph` {
460
513
  isSyncAllowed: boolean | null;
461
514
  }
462
515
 
516
+ @complex model customAppManagementApplicationConfiguration {
517
+ identifierUris: identifierUriConfiguration | null;
518
+ }
519
+
463
520
  @complex model customAppManagementConfiguration extends appManagementConfiguration {
521
+ applicationRestrictions: customAppManagementApplicationConfiguration | null;
522
+ }
523
+
524
+ @abstract
525
+ @complex model customSecurityAttributeExemption {
526
+ id: string;
527
+ operator: customSecurityAttributeComparisonOperator;
528
+ }
529
+
530
+ @complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
531
+ value: string | null;
464
532
  }
465
533
 
466
534
  @open
@@ -887,6 +955,13 @@ namespace reference.`microsoft.graph` {
887
955
  windowsPE: string | null;
888
956
  }
889
957
 
958
+ @complex model deviceLocalCredential {
959
+ accountName: string;
960
+ accountSid: string;
961
+ backupDateTime: offsetDateTime;
962
+ passwordBase64: string;
963
+ }
964
+
890
965
  /**
891
966
  * User group targeting for Device Management Partner
892
967
  */
@@ -1016,6 +1091,9 @@ namespace reference.`microsoft.graph` {
1016
1091
  unknownStateThreatAgentDeviceCount: int32;
1017
1092
  }
1018
1093
 
1094
+ @complex model deviceRegistrationMembership {
1095
+ }
1096
+
1019
1097
  @complex model domainState {
1020
1098
  @computed lastActionDateTime: offsetDateTime | null;
1021
1099
  operation: string | null;
@@ -1059,6 +1137,15 @@ namespace reference.`microsoft.graph` {
1059
1137
  division: string | null;
1060
1138
  }
1061
1139
 
1140
+ @complex model enumeratedDeviceRegistrationMembership extends deviceRegistrationMembership {
1141
+ groups: string[] | null;
1142
+ users: string[] | null;
1143
+ }
1144
+
1145
+ @complex model enumeratedScopes extends inheritableScopes {
1146
+ scopes: string[];
1147
+ }
1148
+
1062
1149
  /**
1063
1150
  * Represents a group that should be excluded from an assignment.
1064
1151
  */
@@ -1137,6 +1224,20 @@ namespace reference.`microsoft.graph` {
1137
1224
  groupId: string | null;
1138
1225
  }
1139
1226
 
1227
+ @complex model identifierUriConfiguration {
1228
+ nonDefaultUriAddition: identifierUriRestriction | null;
1229
+ uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
1230
+ }
1231
+
1232
+ @complex model identifierUriRestriction {
1233
+ excludeActors: appManagementPolicyActorExemptions | null;
1234
+ excludeAppsReceivingV2Tokens: boolean | null;
1235
+ excludeSaml: boolean | null;
1236
+ isStateSetByMicrosoft: boolean;
1237
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
1238
+ state: appManagementRestrictionState;
1239
+ }
1240
+
1140
1241
  @open
1141
1242
  @complex model identity {
1142
1243
  displayName: string | null;
@@ -1180,6 +1281,11 @@ namespace reference.`microsoft.graph` {
1180
1281
  termsOfServiceUrl: string | null;
1181
1282
  }
1182
1283
 
1284
+ @abstract
1285
+ @complex model inheritableScopes {
1286
+ kind: scopeCollectionKind;
1287
+ }
1288
+
1183
1289
  /**
1184
1290
  * The value in an user experience analytics insight.
1185
1291
  */
@@ -1277,6 +1383,12 @@ namespace reference.`microsoft.graph` {
1277
1383
  primaryIdentityProviderPrecedenceOrder: b2bIdentityProvidersType[] | null;
1278
1384
  }
1279
1385
 
1386
+ @complex model invitedUserMessageInfo {
1387
+ ccRecipients: recipient[] | null;
1388
+ customizedMessageBody: string | null;
1389
+ messageLanguage: string | null;
1390
+ }
1391
+
1280
1392
  /**
1281
1393
  * Contains properties of the possible iOS device types the mobile app can run on.
1282
1394
  */
@@ -1609,6 +1721,15 @@ namespace reference.`microsoft.graph` {
1609
1721
  warning: int32 | null;
1610
1722
  }
1611
1723
 
1724
+ @complex model localAdminPasswordSettings {
1725
+ isEnabled: boolean | null;
1726
+ }
1727
+
1728
+ @complex model localAdminSettings {
1729
+ enableGlobalAdmins: boolean | null;
1730
+ registeringUsers: deviceRegistrationMembership | null;
1731
+ }
1732
+
1612
1733
  @complex model localeInfo {
1613
1734
  displayName: string | null;
1614
1735
  locale: string | null;
@@ -1635,6 +1756,16 @@ namespace reference.`microsoft.graph` {
1635
1756
  uniqueIdType: locationUniqueIdType | null;
1636
1757
  }
1637
1758
 
1759
+ @complex model locationConstraint {
1760
+ isRequired: boolean | null;
1761
+ locations: locationConstraintItem[] | null;
1762
+ suggestLocation: boolean | null;
1763
+ }
1764
+
1765
+ @complex model locationConstraintItem extends location {
1766
+ resolveAvailability: boolean | null;
1767
+ }
1768
+
1638
1769
  @complex model loginPageLayoutConfiguration {
1639
1770
  isFooterShown: boolean | null;
1640
1771
  isHeaderShown: boolean | null;
@@ -1908,6 +2039,21 @@ namespace reference.`microsoft.graph` {
1908
2039
  tvRating: ratingUnitedStatesTelevisionType;
1909
2040
  }
1910
2041
 
2042
+ @complex model meetingTimeSuggestion {
2043
+ attendeeAvailability: attendeeAvailability[] | null;
2044
+ confidence: float64 | null;
2045
+ locations: location[] | null;
2046
+ meetingTimeSlot: timeSlot | null;
2047
+ order: int32 | null;
2048
+ organizerAvailability: freeBusyStatus | null;
2049
+ suggestionReason: string | null;
2050
+ }
2051
+
2052
+ @complex model meetingTimeSuggestionsResult {
2053
+ emptySuggestionsReason: string | null;
2054
+ meetingTimeSuggestions: meetingTimeSuggestion[] | null;
2055
+ }
2056
+
1911
2057
  @complex model messageRuleActions {
1912
2058
  assignCategories: string[] | null;
1913
2059
  copyToFolder: string | null;
@@ -2011,6 +2157,12 @@ namespace reference.`microsoft.graph` {
2011
2157
  useLocalTime: boolean;
2012
2158
  }
2013
2159
 
2160
+ @complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
2161
+ }
2162
+
2163
+ @complex model noScopes extends inheritableScopes {
2164
+ }
2165
+
2014
2166
  @complex model objectIdentity {
2015
2167
  issuer: string | null;
2016
2168
  issuerAssignedId: string | null;
@@ -2243,7 +2395,7 @@ namespace reference.`microsoft.graph` {
2243
2395
  */
2244
2396
  privacySettingsHidden: boolean;
2245
2397
  /**
2246
- * The type of user. Possible values are administrator and standard. Default value is administrator. Yes No
2398
+ * The type of user. Possible values are administrator and standard. Default value is administrator. Yes No
2247
2399
 
2248
2400
  */
2249
2401
  userType: windowsUserType;
@@ -2449,6 +2601,10 @@ namespace reference.`microsoft.graph` {
2449
2601
  notAllowedResourceActions: string[] | null;
2450
2602
  }
2451
2603
 
2604
+ @open
2605
+ @complex model resourceData {
2606
+ }
2607
+
2452
2608
  @complex model resourcePermission {
2453
2609
  type: string;
2454
2610
  value: string;
@@ -2626,6 +2782,11 @@ namespace reference.`microsoft.graph` {
2626
2782
  tenantId: string;
2627
2783
  }
2628
2784
 
2785
+ @complex model timeConstraint {
2786
+ activityDomain: activityDomain | null;
2787
+ timeSlots: timeSlot[] | null;
2788
+ }
2789
+
2629
2790
  @complex model timeSlot {
2630
2791
  end: dateTimeTimeZone;
2631
2792
  start: dateTimeTimeZone;
@@ -3550,6 +3711,28 @@ namespace reference.`microsoft.graph` {
3550
3711
  @contains scopedRoleMembers: scopedRoleMembership[];
3551
3712
  }
3552
3713
 
3714
+ @open
3715
+ @entity model agentIdentity extends servicePrincipal {
3716
+ agentIdentityBlueprintId: string;
3717
+ @computed createdDateTime: offsetDateTime | null;
3718
+ @references sponsors: directoryObject[];
3719
+ }
3720
+
3721
+ @open
3722
+ @entity model agentIdentityBlueprint extends application {
3723
+ @contains inheritablePermissions: inheritablePermission[];
3724
+ @references sponsors: directoryObject[];
3725
+ }
3726
+
3727
+ @open
3728
+ @entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
3729
+ @references sponsors: directoryObject[];
3730
+ }
3731
+
3732
+ @open
3733
+ @entity model agentUser extends user {
3734
+ }
3735
+
3553
3736
  @entity model allowedValue extends entity {
3554
3737
  isActive: boolean | null;
3555
3738
  }
@@ -4235,6 +4418,7 @@ namespace reference.`microsoft.graph` {
4235
4418
  appId: string | null;
4236
4419
  applicationTemplateId: string | null;
4237
4420
  appRoles: appRole[];
4421
+ createdByAppId: string | null;
4238
4422
  @computed createdDateTime: offsetDateTime | null;
4239
4423
  defaultRedirectUri: string | null;
4240
4424
  description: string | null;
@@ -4244,9 +4428,11 @@ namespace reference.`microsoft.graph` {
4244
4428
  identifierUris: string[];
4245
4429
  info: informationalUrl | null;
4246
4430
  isDeviceOnlyAuthSupported: boolean | null;
4431
+ isDisabled: boolean | null;
4247
4432
  isFallbackPublicClient: boolean | null;
4248
4433
  keyCredentials: keyCredential[];
4249
4434
  logo: stream;
4435
+ managerApplications: guid;
4250
4436
  notes: string | null;
4251
4437
  oauth2RequirePostResponse: boolean;
4252
4438
  optionalClaims: optionalClaims | null;
@@ -4322,6 +4508,10 @@ namespace reference.`microsoft.graph` {
4322
4508
  resourceId: guid | null;
4323
4509
  }
4324
4510
 
4511
+ @entity model approvedClientApp extends entity {
4512
+ displayName: string | null;
4513
+ }
4514
+
4325
4515
  @entity model appScope extends entity {
4326
4516
  displayName: string | null;
4327
4517
  type: string | null;
@@ -4402,6 +4592,17 @@ namespace reference.`microsoft.graph` {
4402
4592
  guestUserRoleId: guid | null;
4403
4593
  }
4404
4594
 
4595
+ @entity model bitlocker extends entity {
4596
+ @contains recoveryKeys: bitlockerRecoveryKey[];
4597
+ }
4598
+
4599
+ @entity model bitlockerRecoveryKey extends entity {
4600
+ @computed createdDateTime: offsetDateTime;
4601
+ deviceId: string | null;
4602
+ key: string;
4603
+ volumeType: volumeType | null;
4604
+ }
4605
+
4405
4606
  @entity model calendar extends entity {
4406
4607
  allowedOnlineMeetingProviders: onlineMeetingProviderType[] | null;
4407
4608
  canEdit: boolean | null;
@@ -5660,6 +5861,13 @@ namespace reference.`microsoft.graph` {
5660
5861
  userName: string | null;
5661
5862
  }
5662
5863
 
5864
+ @entity model deviceLocalCredentialInfo extends entity {
5865
+ credentials: deviceLocalCredential[];
5866
+ deviceName: string;
5867
+ @computed lastBackupDateTime: offsetDateTime;
5868
+ refreshDateTime: offsetDateTime;
5869
+ }
5870
+
5663
5871
  /**
5664
5872
  * Windows Log Collection request entity.
5665
5873
  */
@@ -6107,11 +6315,22 @@ namespace reference.`microsoft.graph` {
6107
6315
  eventDateTime: offsetDateTime;
6108
6316
  }
6109
6317
 
6318
+ @entity model deviceRegistrationPolicy extends entity {
6319
+ azureADJoin: azureADJoinPolicy | null;
6320
+ azureADRegistration: azureADRegistrationPolicy | null;
6321
+ description: string | null;
6322
+ displayName: string | null;
6323
+ localAdminPassword: localAdminPasswordSettings | null;
6324
+ multiFactorAuthConfiguration: multiFactorAuthConfiguration;
6325
+ userDeviceQuota: int32;
6326
+ }
6327
+
6110
6328
  @entity model directory extends MsGraph.SharedModels.entity {
6111
6329
  @contains administrativeUnits: administrativeUnit[];
6112
6330
  @contains attributeSets: attributeSet[];
6113
6331
  @contains customSecurityAttributeDefinitions: customSecurityAttributeDefinition[];
6114
6332
  @contains deletedItems: directoryObject[];
6333
+ @contains deviceLocalCredentials: deviceLocalCredentialInfo[];
6115
6334
  @contains federationConfigurations: identityProviderBase[];
6116
6335
  @contains onPremisesSynchronization: onPremisesDirectorySynchronization[];
6117
6336
  @contains subscriptions: companySubscription[];
@@ -6438,6 +6657,15 @@ namespace reference.`microsoft.graph` {
6438
6657
  @entity model externalDomainName extends entity {
6439
6658
  }
6440
6659
 
6660
+ @entity model featureRolloutPolicy extends entity {
6661
+ description: string | null;
6662
+ displayName: string;
6663
+ feature: stagedFeatureName;
6664
+ isAppliedToOrganization: boolean;
6665
+ isEnabled: boolean;
6666
+ @contains appliesTo: directoryObject[];
6667
+ }
6668
+
6441
6669
  @entity model federatedIdentityCredential extends entity {
6442
6670
  audiences: string[];
6443
6671
  description: string | null;
@@ -6467,6 +6695,7 @@ namespace reference.`microsoft.graph` {
6467
6695
  hasMembersWithLicenseErrors: boolean | null;
6468
6696
  hideFromAddressLists: boolean | null;
6469
6697
  hideFromOutlookClients: boolean | null;
6698
+ infoCatalogs: string[];
6470
6699
  isAssignableToRole: boolean | null;
6471
6700
  isManagementRestricted: boolean | null;
6472
6701
  isSubscribedByMail: boolean | null;
@@ -6477,6 +6706,7 @@ namespace reference.`microsoft.graph` {
6477
6706
  membershipRule: string | null;
6478
6707
  membershipRuleProcessingState: string | null;
6479
6708
  onPremisesDomainName: string | null;
6709
+ onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
6480
6710
  onPremisesLastSyncDateTime: offsetDateTime | null;
6481
6711
  onPremisesNetBiosName: string | null;
6482
6712
  onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
@@ -6495,6 +6725,7 @@ namespace reference.`microsoft.graph` {
6495
6725
  uniqueName: string | null;
6496
6726
  unseenCount: int32 | null;
6497
6727
  visibility: string | null;
6728
+ welcomeMessageEnabled: boolean | null;
6498
6729
  @contains acceptedSenders: directoryObject[];
6499
6730
  @contains appRoleAssignments: appRoleAssignment[];
6500
6731
  @contains calendar: calendar | null;
@@ -6510,6 +6741,8 @@ namespace reference.`microsoft.graph` {
6510
6741
  @contains onPremisesSyncBehavior: onPremisesSyncBehavior | null;
6511
6742
  @references owners: directoryObject[];
6512
6743
  @contains permissionGrants: resourceSpecificPermissionGrant[];
6744
+ @contains photo: profilePhoto | null;
6745
+ @contains photos: profilePhoto[];
6513
6746
  @contains rejectedSenders: directoryObject[];
6514
6747
  @contains settings: groupSetting[];
6515
6748
  @contains threads: conversationThread[];
@@ -6616,6 +6849,20 @@ namespace reference.`microsoft.graph` {
6616
6849
  senderEmailAddress: emailAddress | null;
6617
6850
  }
6618
6851
 
6852
+ @entity model informationProtection extends MsGraph.SharedModels.entity {
6853
+ @contains bitlocker: bitlocker | null;
6854
+ }
6855
+
6856
+ @entity model inheritablePermission extends MsGraph.SharedModels.entity {
6857
+ inheritableScopes: inheritableScopes | null;
6858
+ @computed @key resourceAppId: string;
6859
+ }
6860
+
6861
+ @entity model insightsSettings extends entity {
6862
+ disabledForGroup: string | null;
6863
+ isEnabledInOrganization: boolean | null;
6864
+ }
6865
+
6619
6866
  @entity model internalDomainFederation extends samlOrWsFedProvider {
6620
6867
  activeSignInUri: string | null;
6621
6868
  federatedIdpMfaBehavior: federatedIdpMfaBehavior | null;
@@ -6627,6 +6874,19 @@ namespace reference.`microsoft.graph` {
6627
6874
  signOutUri: string | null;
6628
6875
  }
6629
6876
 
6877
+ @entity model invitation extends entity {
6878
+ invitedUserDisplayName: string | null;
6879
+ invitedUserEmailAddress: string;
6880
+ invitedUserMessageInfo: invitedUserMessageInfo | null;
6881
+ invitedUserType: string | null;
6882
+ inviteRedeemUrl: string | null;
6883
+ inviteRedirectUrl: string;
6884
+ resetRedemption: boolean | null;
6885
+ sendInvitationMessage: boolean | null;
6886
+ status: string | null;
6887
+ @references invitedUser: user | null;
6888
+ }
6889
+
6630
6890
  /**
6631
6891
  * Device Configuration.
6632
6892
  */
@@ -6663,7 +6923,7 @@ namespace reference.`microsoft.graph` {
6663
6923
  */
6664
6924
  passcodeBlockSimple: boolean;
6665
6925
  /**
6666
- * Number of days before the passcode expires. Valid values 1 to 65535
6926
+ * 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
6927
  */
6668
6928
  passcodeExpirationDays: int32 | null;
6669
6929
  /**
@@ -7600,71 +7860,71 @@ namespace reference.`microsoft.graph` {
7600
7860
  */
7601
7861
  @entity model macOSCompliancePolicy extends deviceCompliancePolicy {
7602
7862
  /**
7603
- * Require that devices have enabled device threat protection.
7863
+ * 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
7864
  */
7605
7865
  deviceThreatProtectionEnabled: boolean;
7606
7866
  /**
7607
- * Require Mobile Threat Protection minimum risk level to report noncompliance.
7867
+ * 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
7868
  */
7609
7869
  deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
7610
7870
  /**
7611
- * Corresponds to the “Block all incoming connections option.
7871
+ * 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
7872
  */
7613
7873
  firewallBlockAllIncoming: boolean;
7614
7874
  /**
7615
- * Whether the firewall should be enabled or not.
7875
+ * 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
7876
  */
7617
7877
  firewallEnabled: boolean;
7618
7878
  /**
7619
- * Corresponds to Enable stealth mode.”
7879
+ * 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
7880
  */
7621
7881
  firewallEnableStealthMode: boolean;
7622
7882
  /**
7623
- * Maximum MacOS version.
7883
+ * 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
7884
  */
7625
7885
  osMaximumVersion: string | null;
7626
7886
  /**
7627
- * Minimum MacOS version.
7887
+ * 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
7888
  */
7629
7889
  osMinimumVersion: string | null;
7630
7890
  /**
7631
- * Indicates whether or not to block simple passwords.
7891
+ * 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
7892
  */
7633
7893
  passwordBlockSimple: boolean;
7634
7894
  /**
7635
- * Number of days before the password expires. Valid values 1 to 65535
7895
+ * 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
7896
  */
7637
7897
  passwordExpirationDays: int32 | null;
7638
7898
  /**
7639
- * The number of character sets required in the password.
7899
+ * 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
7900
  */
7641
7901
  passwordMinimumCharacterSetCount: int32 | null;
7642
7902
  /**
7643
- * Minimum length of password. Valid values 4 to 14
7903
+ * 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
7904
  */
7645
7905
  passwordMinimumLength: int32 | null;
7646
7906
  /**
7647
- * Minutes of inactivity before a password is required.
7907
+ * 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
7908
  */
7649
7909
  passwordMinutesOfInactivityBeforeLock: int32 | null;
7650
7910
  /**
7651
- * Number of previous passwords to block. Valid values 1 to 24
7911
+ * 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
7912
  */
7653
7913
  passwordPreviousPasswordBlockCount: int32 | null;
7654
7914
  /**
7655
- * Whether or not to require a password.
7915
+ * 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
7916
  */
7657
7917
  passwordRequired: boolean;
7658
7918
  /**
7659
- * The required password type.
7919
+ * 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
7920
  */
7661
7921
  passwordRequiredType: requiredPasswordType;
7662
7922
  /**
7663
- * Require encryption on Mac OS devices.
7923
+ * 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
7924
  */
7665
7925
  storageRequireEncryption: boolean;
7666
7926
  /**
7667
- * Require that devices have enabled system integrity protection.
7927
+ * 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
7928
  */
7669
7929
  systemIntegrityProtectionEnabled: boolean;
7670
7930
  }
@@ -9421,6 +9681,10 @@ namespace reference.`microsoft.graph` {
9421
9681
  @contains masterCategories: outlookCategory[];
9422
9682
  }
9423
9683
 
9684
+ @entity model peopleAdminSettings extends entity {
9685
+ @contains itemInsights: insightsSettings | null;
9686
+ }
9687
+
9424
9688
  @entity model permissionGrantConditionSet extends entity {
9425
9689
  clientApplicationIds: string[] | null;
9426
9690
  clientApplicationPublisherIds: string[] | null;
@@ -9472,6 +9736,8 @@ namespace reference.`microsoft.graph` {
9472
9736
  @contains claimsMappingPolicies: claimsMappingPolicy[];
9473
9737
  @contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
9474
9738
  @contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
9739
+ @contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
9740
+ @contains featureRolloutPolicies: featureRolloutPolicy[];
9475
9741
  @contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
9476
9742
  @contains permissionGrantPolicies: permissionGrantPolicy[];
9477
9743
  @contains tokenIssuancePolicies: tokenIssuancePolicy[];
@@ -9533,6 +9799,7 @@ namespace reference.`microsoft.graph` {
9533
9799
 
9534
9800
  @entity model remoteDesktopSecurityConfiguration extends entity {
9535
9801
  isRemoteDesktopProtocolEnabled: boolean;
9802
+ @contains approvedClientApps: approvedClientApp[];
9536
9803
  @contains targetDeviceGroups: targetDeviceGroup[];
9537
9804
  }
9538
9805
 
@@ -9714,12 +9981,14 @@ namespace reference.`microsoft.graph` {
9714
9981
  appOwnerOrganizationId: guid | null;
9715
9982
  appRoleAssignmentRequired: boolean;
9716
9983
  appRoles: appRole[];
9984
+ createdByAppId: string | null;
9717
9985
  customSecurityAttributes: customSecurityAttributeValue | null;
9718
9986
  description: string | null;
9719
9987
  disabledByMicrosoftStatus: string | null;
9720
9988
  displayName: string | null;
9721
9989
  homepage: string | null;
9722
9990
  info: informationalUrl | null;
9991
+ isDisabled: boolean | null;
9723
9992
  keyCredentials: keyCredential[];
9724
9993
  loginUrl: string | null;
9725
9994
  logoutUrl: string | null;
@@ -9961,6 +10230,21 @@ namespace reference.`microsoft.graph` {
9961
10230
  subscriptionIds: string[] | null;
9962
10231
  }
9963
10232
 
10233
+ @entity model subscription extends entity {
10234
+ applicationId: string | null;
10235
+ changeType: string;
10236
+ clientState: string | null;
10237
+ creatorId: string | null;
10238
+ encryptionCertificate: string | null;
10239
+ encryptionCertificateId: string | null;
10240
+ expirationDateTime: offsetDateTime;
10241
+ includeResourceData: boolean | null;
10242
+ latestSupportedTlsVersion: string | null;
10243
+ lifecycleNotificationUrl: string | null;
10244
+ notificationUrl: string;
10245
+ resource: string;
10246
+ }
10247
+
9964
10248
  @entity model targetDeviceGroup extends entity {
9965
10249
  displayName: string | null;
9966
10250
  }
@@ -10153,11 +10437,13 @@ namespace reference.`microsoft.graph` {
10153
10437
 
10154
10438
  @open
10155
10439
  @entity model user extends directoryObject {
10440
+ aboutMe: string | null;
10156
10441
  accountEnabled: boolean | null;
10157
10442
  ageGroup: string | null;
10158
10443
  assignedLicenses: assignedLicense[];
10159
10444
  assignedPlans: assignedPlan[];
10160
10445
  authorizationInfo: authorizationInfo | null;
10446
+ birthday: offsetDateTime;
10161
10447
  businessPhones: string[];
10162
10448
  city: string | null;
10163
10449
  companyName: string | null;
@@ -10181,8 +10467,11 @@ namespace reference.`microsoft.graph` {
10181
10467
  externalUserStateChangeDateTime: offsetDateTime | null;
10182
10468
  faxNumber: string | null;
10183
10469
  givenName: string | null;
10470
+ hireDate: offsetDateTime;
10184
10471
  identities: objectIdentity[] | null;
10472
+ identityParentId: string | null;
10185
10473
  imAddresses: string[] | null;
10474
+ interests: string[] | null;
10186
10475
  isManagementRestricted: boolean | null;
10187
10476
  isResourceAccount: boolean | null;
10188
10477
  jobTitle: string | null;
@@ -10193,6 +10482,7 @@ namespace reference.`microsoft.graph` {
10193
10482
  mailboxSettings: mailboxSettings | null;
10194
10483
  mailNickname: string | null;
10195
10484
  mobilePhone: string | null;
10485
+ mySite: string | null;
10196
10486
  officeLocation: string | null;
10197
10487
  onPremisesDistinguishedName: string | null;
10198
10488
  onPremisesDomainName: string | null;
@@ -10207,14 +10497,19 @@ namespace reference.`microsoft.graph` {
10207
10497
  otherMails: string[];
10208
10498
  passwordPolicies: string | null;
10209
10499
  passwordProfile: passwordProfile | null;
10500
+ pastProjects: string[] | null;
10210
10501
  postalCode: string | null;
10211
10502
  preferredDataLocation: string | null;
10212
10503
  preferredLanguage: string | null;
10504
+ preferredName: string | null;
10213
10505
  provisionedPlans: provisionedPlan[];
10214
10506
  proxyAddresses: string[];
10507
+ responsibilities: string[] | null;
10508
+ schools: string[] | null;
10215
10509
  securityIdentifier: string | null;
10216
10510
  showInAddressList: boolean | null;
10217
10511
  signInSessionsValidFromDateTime: offsetDateTime | null;
10512
+ skills: string[] | null;
10218
10513
  state: string | null;
10219
10514
  streetAddress: string | null;
10220
10515
  surname: string | null;
@@ -10256,6 +10551,8 @@ namespace reference.`microsoft.graph` {
10256
10551
  @references ownedDevices: directoryObject[];
10257
10552
  @references ownedObjects: directoryObject[];
10258
10553
  @contains people: person[];
10554
+ @contains photo: profilePhoto | null;
10555
+ @contains photos: profilePhoto[];
10259
10556
  @references registeredDevices: directoryObject[];
10260
10557
  @contains scopedRoleMemberOf: scopedRoleMembership[];
10261
10558
  @references sponsors: directoryObject[];
@@ -11214,6 +11511,10 @@ namespace reference.`microsoft.graph` {
11214
11511
  workFromAnywhereScore: float64;
11215
11512
  }
11216
11513
 
11514
+ @entity model userInsightsSettings extends entity {
11515
+ isEnabled: boolean;
11516
+ }
11517
+
11217
11518
  /**
11218
11519
  * Contains properties for the installation state summary for a user.
11219
11520
  */
@@ -11240,6 +11541,10 @@ namespace reference.`microsoft.graph` {
11240
11541
  @contains deviceStates: deviceInstallState[];
11241
11542
  }
11242
11543
 
11544
+ @entity model userSettings extends entity {
11545
+ @contains itemInsights: userInsightsSettings | null;
11546
+ }
11547
+
11243
11548
  /**
11244
11549
  * You purchase multiple licenses for iOS apps through the Apple Volume Purchase Program for Business or Education. This involves setting up an Apple VPP account from the Apple website and uploading the Apple VPP Business or Education token to Intune. You can then synchronize your volume purchase information with Intune and track your volume-purchased app use. You can upload multiple Apple VPP Business or Education tokens.
11245
11550
  */
@@ -12892,7 +13197,7 @@ namespace reference.`microsoft.graph` {
12892
13197
  */
12893
13198
  preprovisioningAllowed: boolean | null;
12894
13199
  /**
12895
- * List of role scope tags for the deployment profile.
13200
+ * List of role scope tags for the deployment profile.
12896
13201
  */
12897
13202
  roleScopeTagIds: string[] | null;
12898
13203
  /**
@@ -13508,6 +13813,10 @@ namespace reference.`microsoft.graph` {
13508
13813
  * Current anti malware version
13509
13814
  */
13510
13815
  antiMalwareVersion: string | null;
13816
+ /**
13817
+ * 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.
13818
+ */
13819
+ controlledConfigurationEnabled: boolean | null;
13511
13820
  /**
13512
13821
  * Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
13513
13822
  */
@@ -13837,6 +14146,14 @@ namespace reference.`microsoft.graph` {
13837
14146
  notSupported: 6,
13838
14147
  }
13839
14148
 
14149
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
14150
+ enum activityDomain {
14151
+ `unknown`: 0,
14152
+ work: 1,
14153
+ personal: 2,
14154
+ unrestricted: 3,
14155
+ }
14156
+
13840
14157
  enum activityType {
13841
14158
  signin: 0,
13842
14159
  user: 1,
@@ -14132,6 +14449,12 @@ namespace reference.`microsoft.graph` {
14132
14449
  unknownFutureValue: 3,
14133
14450
  }
14134
14451
 
14452
+ enum appManagementRestrictionState {
14453
+ enabled: 1,
14454
+ disabled: 2,
14455
+ unknownFutureValue: 3,
14456
+ }
14457
+
14135
14458
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
14136
14459
  enum attachmentType {
14137
14460
  file: 0,
@@ -14330,6 +14653,13 @@ namespace reference.`microsoft.graph` {
14330
14653
  provisioned: 1,
14331
14654
  }
14332
14655
 
14656
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
14657
+ enum changeType {
14658
+ created: 0,
14659
+ updated: 1,
14660
+ deleted: 2,
14661
+ }
14662
+
14333
14663
  /**
14334
14664
  * Compliance state.
14335
14665
  */
@@ -14390,6 +14720,11 @@ namespace reference.`microsoft.graph` {
14390
14720
  unknownFutureValue: 4,
14391
14721
  }
14392
14722
 
14723
+ enum customSecurityAttributeComparisonOperator {
14724
+ equals: 1,
14725
+ unknownFutureValue: 2,
14726
+ }
14727
+
14393
14728
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
14394
14729
  enum dayOfWeek {
14395
14730
  sunday: 0,
@@ -15570,6 +15905,13 @@ namespace reference.`microsoft.graph` {
15570
15905
  unknownFutureValue: 10,
15571
15906
  }
15572
15907
 
15908
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
15909
+ enum lifecycleEventType {
15910
+ missed: 0,
15911
+ subscriptionRemoved: 1,
15912
+ reauthorizationRequired: 2,
15913
+ }
15914
+
15573
15915
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
15574
15916
  enum locationType {
15575
15917
  default: 0,
@@ -16183,6 +16525,12 @@ namespace reference.`microsoft.graph` {
16183
16525
  unknownFutureValue: 6,
16184
16526
  }
16185
16527
 
16528
+ enum multiFactorAuthConfiguration {
16529
+ notRequired: 0,
16530
+ required: 1,
16531
+ unknownFutureValue: 2,
16532
+ }
16533
+
16186
16534
  /**
16187
16535
  * Branding Options for the Message Template. Branding is defined in the Intune Admin Console.
16188
16536
  */
@@ -16314,6 +16662,14 @@ namespace reference.`microsoft.graph` {
16314
16662
  radio: 9,
16315
16663
  }
16316
16664
 
16665
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
16666
+ enum physicalAddressType {
16667
+ `unknown`: 0,
16668
+ home: 1,
16669
+ business: 2,
16670
+ other: 3,
16671
+ }
16672
+
16317
16673
  /**
16318
16674
  * Supported platform types for policies.
16319
16675
  */
@@ -17193,6 +17549,14 @@ namespace reference.`microsoft.graph` {
17193
17549
  moderate: 2,
17194
17550
  }
17195
17551
 
17552
+ enum scopeCollectionKind {
17553
+ allAllowed: 0,
17554
+ enumerated: 1,
17555
+ none: 2,
17556
+ scopeKindNotSet: 3,
17557
+ unknownFutureValue: 4,
17558
+ }
17559
+
17196
17560
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
17197
17561
  enum selectionLikelihoodInfo {
17198
17562
  notSpecified: 0,
@@ -17279,6 +17643,16 @@ namespace reference.`microsoft.graph` {
17279
17643
  high: 5,
17280
17644
  }
17281
17645
 
17646
+ enum stagedFeatureName {
17647
+ passthroughAuthentication: 0,
17648
+ seamlessSso: 1,
17649
+ passwordHashSync: 2,
17650
+ emailAsAlternateId: 3,
17651
+ unknownFutureValue: 4,
17652
+ certificateBasedAuthentication: 5,
17653
+ multiFactorAuthentication: 6,
17654
+ }
17655
+
17282
17656
  /**
17283
17657
  * State Management Setting.
17284
17658
  */
@@ -17472,6 +17846,13 @@ namespace reference.`microsoft.graph` {
17472
17846
  show: 2,
17473
17847
  }
17474
17848
 
17849
+ enum volumeType {
17850
+ operatingSystemVolume: 1,
17851
+ fixedDataVolume: 2,
17852
+ removableDataVolume: 3,
17853
+ unknownFutureValue: 4,
17854
+ }
17855
+
17475
17856
  /**
17476
17857
  * Possible types of an Apple Volume Purchase Program token.
17477
17858
  */