@microsoft/typespec-msgraph-reference 1.0.6 → 1.0.8

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.
@@ -303,6 +303,10 @@ namespace reference.`microsoft.graph` {
303
303
  shareUserExperienceAnalyticsData: adminConsentState;
304
304
  }
305
305
 
306
+ @complex model agentSignIn extends signInIdentity {
307
+ agentServicePrincipalId: string | null;
308
+ }
309
+
306
310
  @complex model aggregationOption {
307
311
  bucketDefinition: bucketAggregationDefinition;
308
312
  field: string;
@@ -2453,12 +2457,16 @@ namespace reference.`microsoft.graph` {
2453
2457
  }
2454
2458
 
2455
2459
  @complex model conditionalAccessClientApplications {
2460
+ agentIdServicePrincipalFilter: conditionalAccessFilter | null;
2461
+ excludeAgentIdServicePrincipals: string[];
2456
2462
  excludeServicePrincipals: string[];
2463
+ includeAgentIdServicePrincipals: string[];
2457
2464
  includeServicePrincipals: string[];
2458
2465
  servicePrincipalFilter: conditionalAccessFilter | null;
2459
2466
  }
2460
2467
 
2461
2468
  @complex model conditionalAccessConditionSet {
2469
+ agentIdRiskLevels: conditionalAccessAgentIdRiskLevels | null;
2462
2470
  applications: conditionalAccessApplications | null;
2463
2471
  authenticationFlows: conditionalAccessAuthenticationFlows | null;
2464
2472
  clientApplications: conditionalAccessClientApplications | null;
@@ -5490,6 +5498,17 @@ namespace reference.`microsoft.graph` {
5490
5498
  status: deviceScopeActionStatus;
5491
5499
  }
5492
5500
 
5501
+ @complex model deviceSyncStatusResponse {
5502
+ /**
5503
+ * Indicates the collection of sync component statuses representing infrastructure and policy progress. Each entry represents a component that has started reporting during this sync operation. Components appear in the collection only after they begin executing. Read-only. Not nullable.
5504
+ */
5505
+ components: syncComponent[];
5506
+ /**
5507
+ * Indicates the managed device identifier. Used to correlate this sync status snapshot with the device that was synced. This is the same id used in the managedDevice entity. Example: 'd1e2f3a4-b5c6-7890-abcd-ef1234567890'. Read-only. Not nullable.
5508
+ */
5509
+ deviceId: string;
5510
+ }
5511
+
5493
5512
  @open
5494
5513
  @complex model Dictionary {
5495
5514
  }
@@ -11145,6 +11164,7 @@ namespace reference.`microsoft.graph` {
11145
11164
  }
11146
11165
 
11147
11166
  @complex model signInConditions {
11167
+ agentIdRiskLevel: agentIdRiskLevel | null;
11148
11168
  authenticationFlow: authenticationFlow | null;
11149
11169
  clientAppType: conditionalAccessClientApp | null;
11150
11170
  country: string | null;
@@ -11325,6 +11345,25 @@ namespace reference.`microsoft.graph` {
11325
11345
  nameIdPolicyFormat: string | null;
11326
11346
  }
11327
11347
 
11348
+ @complex model syncComponent {
11349
+ /**
11350
+ * Indicates additional information for this sync stage. This is a flexible string that can be null (no additional info), a progress indicator such as '3/6' (completed out of total), or a list of individual item names. Read-only. Nullable.
11351
+ */
11352
+ moreInfo: string | null;
11353
+ /**
11354
+ * Indicates the sync stage name. The backend abstracts internal infrastructure into 6 user-facing stages. Fixed values are: notifyingDevice, deviceConnecting, policies, applications, scripts, compliance. Read-only. Not nullable.
11355
+ */
11356
+ name: string;
11357
+ /**
11358
+ * Indicates the date and time when this stage last reported status. The date and time information is shown using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Read-only. Not nullable.
11359
+ */
11360
+ reportedDateTime: offsetDateTime;
11361
+ /**
11362
+ * Indicates the current status of this sync stage. Default value is none. Possible values are: none, inProgress, success, failure, partialSuccess, unknownFutureValue. Stages only appear in the response once they have started, so none is a schema default and will not typically appear in responses. Read-only. Not nullable.
11363
+ */
11364
+ status: syncComponentStatus;
11365
+ }
11366
+
11328
11367
  @complex model synchronizationError {
11329
11368
  code: string | null;
11330
11369
  message: string | null;
@@ -11444,6 +11483,9 @@ namespace reference.`microsoft.graph` {
11444
11483
  tabId: string | null;
11445
11484
  }
11446
11485
 
11486
+ @complex model targetAgentIdentitySponsorsOrOwners extends userSet {
11487
+ }
11488
+
11447
11489
  @complex model targetResource {
11448
11490
  displayName: string | null;
11449
11491
  groupType: groupType | null;
@@ -41537,6 +41579,10 @@ namespace reference.`microsoft.graph` {
41537
41579
  * 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.
41538
41580
  */
41539
41581
  @entity model vppToken extends entity {
41582
+ /**
41583
+ * Indicates the delivery protocol used to deliver apps associated with this VPP token. This property is set at token creation and cannot be modified afterward. Default value is default. Possible values are: default, mobileDeviceManagement, declarativeDeviceManagement. Not nullable.
41584
+ */
41585
+ appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol;
41540
41586
  /**
41541
41587
  * The apple Id associated with the given Apple Volume Purchase Program Token.
41542
41588
  */
@@ -47997,6 +48043,8 @@ namespace reference.`microsoft.graph` {
47997
48043
  target: 1,
47998
48044
  createdBy: 2,
47999
48045
  unknownFutureValue: 99,
48046
+ targetManager: 100,
48047
+ targetAgentIdentitySponsorOrOwner: 101,
48000
48048
  }
48001
48049
 
48002
48050
  enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
@@ -48004,6 +48052,10 @@ namespace reference.`microsoft.graph` {
48004
48052
  createdBy: 2,
48005
48053
  approver: 3,
48006
48054
  unknownFutureValue: 99,
48055
+ targetOrRequestor: 100,
48056
+ targetManager: 101,
48057
+ requestForOthers: 102,
48058
+ targetAgentIdentitySponsorOrOwner: 103,
48007
48059
  }
48008
48060
 
48009
48061
  enum accessPackageCustomExtensionHandlerStatus {
@@ -48236,6 +48288,14 @@ namespace reference.`microsoft.graph` {
48236
48288
  unknownFutureValue: 3,
48237
48289
  }
48238
48290
 
48291
+ enum agentIdRiskLevel {
48292
+ none: 0,
48293
+ low: 1,
48294
+ medium: 2,
48295
+ high: 4,
48296
+ unknownFutureValue: 8,
48297
+ }
48298
+
48239
48299
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
48240
48300
  enum agentStatus {
48241
48301
  active: 0,
@@ -51477,6 +51537,14 @@ namespace reference.`microsoft.graph` {
51477
51537
  notAssigned: 7,
51478
51538
  }
51479
51539
 
51540
+ @graphFlags
51541
+ enum conditionalAccessAgentIdRiskLevels {
51542
+ low: 1,
51543
+ medium: 2,
51544
+ high: 4,
51545
+ unknownFutureValue: 8,
51546
+ }
51547
+
51480
51548
  enum conditionalAccessClientApp {
51481
51549
  all: 0,
51482
51550
  browser: 1,
@@ -52498,6 +52566,53 @@ namespace reference.`microsoft.graph` {
52498
52566
  policySets: 1,
52499
52567
  }
52500
52568
 
52569
+ /**
52570
+ * The DeviceAndAppManagementPayloadType represents the type of a payload assigned to a target.
52571
+ */
52572
+ enum deviceAndAppManagementPayloadType {
52573
+ /**
52574
+ * Default value. Do not use.
52575
+ */
52576
+ `unknown`: 0,
52577
+ /**
52578
+ * Indicates that the payload is of settings catalog type.
52579
+ */
52580
+ settingsCatalog: 1,
52581
+ /**
52582
+ * Indicates that the payload is of security baseline type.
52583
+ */
52584
+ securityBaseline: 2,
52585
+ /**
52586
+ * Indicates that the payload is of antivirus type.
52587
+ */
52588
+ antivirus: 3,
52589
+ /**
52590
+ * Indicates that the payload is of disk encryption type.
52591
+ */
52592
+ diskEncryption: 4,
52593
+ /**
52594
+ * Indicates that the payload is of attack surface reduction type.
52595
+ */
52596
+ attackSurfaceReduction: 5,
52597
+ /**
52598
+ * Indicates that the payload is of firewall type.
52599
+ */
52600
+ firewall: 6,
52601
+ /**
52602
+ * Indicates that the payload is of endpoint detection and response type.
52603
+ */
52604
+ endpointDetectionAndResponse: 7,
52605
+ /**
52606
+ * Indicates that the payload is of compliance policy type.
52607
+ */
52608
+ compliancePolicy: 8,
52609
+ /**
52610
+ * Indicates that the payload is of device restriction type.
52611
+ */
52612
+ deviceRestrictions: 9,
52613
+ unknownFutureValue: 10,
52614
+ }
52615
+
52501
52616
  /**
52502
52617
  * Device app management task category.
52503
52618
  */
@@ -56722,12 +56837,12 @@ namespace reference.`microsoft.graph` {
56722
56837
  enabled: 2,
56723
56838
  }
56724
56839
 
56725
- #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
56726
56840
  enum groupAccessType {
56727
56841
  none: 0,
56728
56842
  private: 1,
56729
56843
  secret: 2,
56730
56844
  public: 3,
56845
+ unknownFutureValue: 4,
56731
56846
  }
56732
56847
 
56733
56848
  /**
@@ -63150,6 +63265,33 @@ namespace reference.`microsoft.graph` {
63150
63265
  commonNameAsDurableDeviceId: 9,
63151
63266
  }
63152
63267
 
63268
+ /**
63269
+ * A list of possible status states for a sync infrastructure component or policy during a device sync operation.
63270
+ */
63271
+ enum syncComponentStatus {
63272
+ /**
63273
+ * Default. The component has not yet started reporting status. This is a schema default and will not typically appear in responses, as components only appear once they begin executing.
63274
+ */
63275
+ none: 0,
63276
+ /**
63277
+ * Indicates the component is currently executing. For infrastructure components (PNSv1, DCI, SCGW), this means the notification or check-in is in flight. For policies, this means the policy is being applied to the device.
63278
+ */
63279
+ inProgress: 1,
63280
+ /**
63281
+ * Indicates the component completed successfully. The component has finished its work and reported a successful outcome.
63282
+ */
63283
+ success: 2,
63284
+ /**
63285
+ * Indicates the stage encountered an error. When this value is set, the moreInfo property on the syncComponent will contain additional diagnostic details about the failure.
63286
+ */
63287
+ failure: 3,
63288
+ /**
63289
+ * Indicates the stage completed but not all items succeeded. For example, some policies applied successfully while others failed. The moreInfo property may contain details on the partial outcome.
63290
+ */
63291
+ partialSuccess: 4,
63292
+ unknownFutureValue: 5,
63293
+ }
63294
+
63153
63295
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
63154
63296
  enum synchronizationDisposition {
63155
63297
  Normal: 0,
@@ -64699,6 +64841,8 @@ namespace reference.`microsoft.graph` {
64699
64841
  insiderRisk: 131072,
64700
64842
  authenticationFlow: 262144,
64701
64843
  unknownFutureValue: 524288,
64844
+ agentIdRisk: 1048576,
64845
+ agentIdentities: 2097152,
64702
64846
  }
64703
64847
 
64704
64848
  /**
@@ -262,6 +262,9 @@ namespace reference.`microsoft.graph` {
262
262
  @complex model allDevicesAssignmentTarget extends deviceAndAppManagementAssignmentTarget {
263
263
  }
264
264
 
265
+ @complex model allDomains extends validatingDomains {
266
+ }
267
+
265
268
  /**
266
269
  * Represents an assignment to all licensed users in the tenant.
267
270
  */
@@ -693,6 +696,13 @@ namespace reference.`microsoft.graph` {
693
696
  authenticationContextValue: string | null;
694
697
  }
695
698
 
699
+ @complex model authenticationAppDeviceDetails {
700
+ appVersion: string | null;
701
+ clientApp: string | null;
702
+ deviceId: string | null;
703
+ operatingSystem: string | null;
704
+ }
705
+
696
706
  @complex model authenticationBehaviors {
697
707
  blockAzureADGraphAccess: boolean | null;
698
708
  removeUnverifiedEmailClaim: boolean | null;
@@ -2071,6 +2081,10 @@ namespace reference.`microsoft.graph` {
2071
2081
  users: string[] | null;
2072
2082
  }
2073
2083
 
2084
+ @complex model enumeratedDomains extends validatingDomains {
2085
+ domainNames: string[];
2086
+ }
2087
+
2074
2088
  @complex model enumeratedScopes extends inheritableScopes {
2075
2089
  scopes: string[];
2076
2090
  }
@@ -4563,6 +4577,9 @@ namespace reference.`microsoft.graph` {
4563
4577
  tabId: string | null;
4564
4578
  }
4565
4579
 
4580
+ @complex model targetAgentIdentitySponsorsOrOwners extends subjectSet {
4581
+ }
4582
+
4566
4583
  @complex model targetApplicationOwners extends subjectSet {
4567
4584
  }
4568
4585
 
@@ -5070,6 +5087,11 @@ namespace reference.`microsoft.graph` {
5070
5087
  userId: string | null;
5071
5088
  }
5072
5089
 
5090
+ @abstract
5091
+ @complex model validatingDomains {
5092
+ rootDomains: rootDomains;
5093
+ }
5094
+
5073
5095
  @complex model verifiedDomain {
5074
5096
  capabilities: string | null;
5075
5097
  isDefault: boolean | null;
@@ -9682,6 +9704,10 @@ namespace reference.`microsoft.graph` {
9682
9704
  subject: string | null;
9683
9705
  }
9684
9706
 
9707
+ @entity model federatedTokenValidationPolicy extends directoryObject {
9708
+ validatingDomains: validatingDomains;
9709
+ }
9710
+
9685
9711
  @entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
9686
9712
  allowedAAGUIDs: string[];
9687
9713
  }
@@ -9763,6 +9789,7 @@ namespace reference.`microsoft.graph` {
9763
9789
 
9764
9790
  @open
9765
9791
  @entity model group extends directoryObject {
9792
+ accessType: groupAccessType | null;
9766
9793
  allowExternalSenders: boolean | null;
9767
9794
  assignedLicenses: assignedLicense[] | null;
9768
9795
  autoSubscribeNewMembers: boolean | null;
@@ -9778,6 +9805,7 @@ namespace reference.`microsoft.graph` {
9778
9805
  infoCatalogs: string[];
9779
9806
  isArchived: boolean | null;
9780
9807
  isAssignableToRole: boolean | null;
9808
+ isFavorite: boolean | null;
9781
9809
  isManagementRestricted: boolean | null;
9782
9810
  isSubscribedByMail: boolean | null;
9783
9811
  licenseProcessingState: licenseProcessingState | null;
@@ -9805,7 +9833,9 @@ namespace reference.`microsoft.graph` {
9805
9833
  serviceProvisioningErrors: serviceProvisioningError[] | null;
9806
9834
  theme: string | null;
9807
9835
  uniqueName: string | null;
9836
+ unseenConversationsCount: int32 | null;
9808
9837
  unseenCount: int32 | null;
9838
+ unseenMessagesCount: int32 | null;
9809
9839
  visibility: string | null;
9810
9840
  welcomeMessageEnabled: boolean | null;
9811
9841
  @contains acceptedSenders: directoryObject[];
@@ -11030,6 +11060,7 @@ namespace reference.`microsoft.graph` {
11030
11060
  @contains drive: drive | null;
11031
11061
  @contains items: listItem[];
11032
11062
  @contains operations: richLongRunningOperation[];
11063
+ @contains permissions: permission[];
11033
11064
  @contains subscriptions: subscription[];
11034
11065
  }
11035
11066
 
@@ -11041,6 +11072,7 @@ namespace reference.`microsoft.graph` {
11041
11072
  @contains documentSetVersions: documentSetVersion[];
11042
11073
  @contains driveItem: driveItem | null;
11043
11074
  @contains fields: fieldValueSet | null;
11075
+ @contains permissions: permission[];
11044
11076
  @contains versions: listItemVersion[];
11045
11077
  }
11046
11078
 
@@ -12997,6 +13029,7 @@ namespace reference.`microsoft.graph` {
12997
13029
  @contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
12998
13030
  @contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
12999
13031
  @contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
13032
+ @contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
13000
13033
  @contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
13001
13034
  @contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
13002
13035
  @contains permissionGrantPolicies: permissionGrantPolicy[];
@@ -13713,23 +13746,29 @@ namespace reference.`microsoft.graph` {
13713
13746
  appDisplayName: string | null;
13714
13747
  appId: string | null;
13715
13748
  appliedConditionalAccessPolicies: appliedConditionalAccessPolicy[] | null;
13749
+ authenticationAppDeviceDetails: authenticationAppDeviceDetails | null;
13716
13750
  clientAppUsed: string | null;
13717
13751
  conditionalAccessStatus: conditionalAccessStatus | null;
13718
13752
  correlationId: string | null;
13719
13753
  @computed createdDateTime: offsetDateTime;
13720
13754
  deviceDetail: deviceDetail | null;
13755
+ homeTenantId: string | null;
13721
13756
  ipAddress: string | null;
13722
13757
  isInteractive: boolean | null;
13723
13758
  location: signInLocation | null;
13724
13759
  resourceDisplayName: string | null;
13725
13760
  resourceId: string | null;
13761
+ resourceTenantId: string | null;
13726
13762
  riskDetail: riskDetail | null;
13727
13763
  riskEventTypes: riskEventType[] | null;
13728
13764
  riskEventTypes_v2: string[] | null;
13729
13765
  riskLevelAggregated: riskLevel | null;
13730
13766
  riskLevelDuringSignIn: riskLevel | null;
13731
13767
  riskState: riskState | null;
13768
+ servicePrincipalId: string | null;
13769
+ servicePrincipalName: string | null;
13732
13770
  status: signInStatus | null;
13771
+ userAgent: string | null;
13733
13772
  userDisplayName: string | null;
13734
13773
  userId: string;
13735
13774
  userPrincipalName: string | null;
@@ -18167,6 +18206,8 @@ namespace reference.`microsoft.graph` {
18167
18206
  target: 1,
18168
18207
  createdBy: 2,
18169
18208
  unknownFutureValue: 99,
18209
+ targetManager: 100,
18210
+ targetAgentIdentitySponsorOrOwner: 101,
18170
18211
  }
18171
18212
 
18172
18213
  enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
@@ -18174,6 +18215,10 @@ namespace reference.`microsoft.graph` {
18174
18215
  createdBy: 2,
18175
18216
  approver: 3,
18176
18217
  unknownFutureValue: 99,
18218
+ targetOrRequestor: 100,
18219
+ targetManager: 101,
18220
+ requestForOthers: 102,
18221
+ targetAgentIdentitySponsorOrOwner: 103,
18177
18222
  }
18178
18223
 
18179
18224
  enum accessPackageAssignmentState {
@@ -18351,6 +18396,7 @@ namespace reference.`microsoft.graph` {
18351
18396
  allDirectoryServicePrincipals: 6,
18352
18397
  allConfiguredConnectedOrganizationUsers: 7,
18353
18398
  allExternalUsers: 8,
18399
+ allDirectoryAgentIdentities: 9,
18354
18400
  unknownFutureValue: 10,
18355
18401
  }
18356
18402
 
@@ -20438,6 +20484,14 @@ namespace reference.`microsoft.graph` {
20438
20484
  unknownFutureValue: 2,
20439
20485
  }
20440
20486
 
20487
+ enum groupAccessType {
20488
+ none: 0,
20489
+ private: 1,
20490
+ secret: 2,
20491
+ public: 3,
20492
+ unknownFutureValue: 4,
20493
+ }
20494
+
20441
20495
  enum groupType {
20442
20496
  unifiedGroups: 0,
20443
20497
  azureAD: 1,
@@ -22510,6 +22564,16 @@ namespace reference.`microsoft.graph` {
22510
22564
  unknownFutureValue: 4,
22511
22565
  }
22512
22566
 
22567
+ enum rootDomains {
22568
+ none: 0,
22569
+ all: 1,
22570
+ allFederated: 2,
22571
+ allManaged: 3,
22572
+ enumerated: 4,
22573
+ allManagedAndEnumeratedFederated: 5,
22574
+ unknownFutureValue: 6,
22575
+ }
22576
+
22513
22577
  /**
22514
22578
  * Indicates the type of execution context the app runs in.
22515
22579
  */