@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.
@@ -77,6 +77,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
77
77
  @deprecatedDefinition("SignInWithAlias", "<ChangeLogCategory>", "2025-03-26", "2025-12-25", "")
78
78
  @deprecatedDefinition("Remove_Breakdown_APIs", "<ChangeLogCategory>", "2024-02-02", "2024-02-16", "The Inactive Users By Application Metric is deprecated and will stop returning data on February 16, 2024. Please use the existing Inactive Users API.")
79
79
  @deprecatedDefinition("DirectoryFeatureRolloutPolicies", "<ChangeLogCategory>", "2021-03-05", "2021-06-30", "Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies.")
80
+ @privatePreviewDefinition("remoteTenantGroupsAPI", "2025-12-02", "2028-12-07", "<theOwner>")
80
81
  @deprecatedDefinition("Removal", "<ChangeLogCategory>", "2023-12-05", "2025-12-05", "The users enum value is deprecated. Use specificPeople instead.")
81
82
  // Metadata item DeprecatedDefinition_Removal was already defined with a different value.
82
83
  @deprecatedDefinition("Beta_SensitivityLabels", "<ChangeLogCategory>", "2021-02-15", "2022-08-15", "This API will no longer be accessible, please see microsoft.graph.security.informationProtection APIs.")
@@ -525,6 +526,11 @@ namespace reference.`microsoft.graph` {
525
526
  type: string;
526
527
  }
527
528
 
529
+ @complex model additionalStorageAllocations {
530
+ bonusQuotaInBytes: int64 | null;
531
+ subscriptionQuotaInBytes: int64 | null;
532
+ }
533
+
528
534
  @complex model addressBookAccountTargetContent extends accountTargetContent {
529
535
  accountTargetEmails: string[] | null;
530
536
  }
@@ -2942,8 +2948,12 @@ namespace reference.`microsoft.graph` {
2942
2948
  }
2943
2949
 
2944
2950
  @complex model browseQueryResponseItem {
2951
+ createdBy: identitySet | null;
2952
+ @computed createdDateTime: offsetDateTime | null;
2945
2953
  itemKey: string | null;
2946
2954
  itemsCount: int32 | null;
2955
+ lastModifiedBy: identitySet | null;
2956
+ @computed lastModifiedDateTime: offsetDateTime | null;
2947
2957
  name: string | null;
2948
2958
  sizeInBytes: string | null;
2949
2959
  type: browseQueryResponseItemType;
@@ -4996,6 +5006,21 @@ Each data source key can include a filter expression to narrow results and a lis
4996
5006
  userRole: onenoteUserRole | null;
4997
5007
  }
4998
5008
 
5009
+ @complex model correlatedObjectLinkMapping {
5010
+ targetProperty: string | null;
5011
+ }
5012
+
5013
+ @complex model correlatedObjectLinkSource {
5014
+ sourceIdentity: identityInfo | null;
5015
+ targetIdentity: identityInfo | null;
5016
+ }
5017
+
5018
+ @complex model correlatedObjectLinkTarget {
5019
+ correlatedDateTime: offsetDateTime | null;
5020
+ sourceIdentity: identityInfo | null;
5021
+ targetIdentity: identityInfo | null;
5022
+ }
5023
+
4999
5024
  @complex model correlationError {
5000
5025
  code: string;
5001
5026
  message: string;
@@ -7912,6 +7937,17 @@ Each data source key can include a filter expression to narrow results and a lis
7912
7937
  rule: string | null;
7913
7938
  }
7914
7939
 
7940
+ @complex model deviceSyncStatusResponse {
7941
+ /**
7942
+ * 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.
7943
+ */
7944
+ components: syncComponent[];
7945
+ /**
7946
+ * 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.
7947
+ */
7948
+ deviceId: string;
7949
+ }
7950
+
7915
7951
  @complex model diagnostic {
7916
7952
  message: string | null;
7917
7953
  url: string | null;
@@ -8665,6 +8701,10 @@ Each data source key can include a filter expression to narrow results and a lis
8665
8701
  discoveredSensitiveTypes: discoveredSensitiveType[] | null;
8666
8702
  }
8667
8703
 
8704
+ @complex model evaluationScope {
8705
+ type: evaluationScopeType;
8706
+ }
8707
+
8668
8708
  @abstract
8669
8709
  @complex model eventMessageDetail {
8670
8710
  }
@@ -8934,6 +8974,12 @@ Each data source key can include a filter expression to narrow results and a lis
8934
8974
  @complex model fallbackToMicrosoftProviderOnError extends customExtensionBehaviorOnError {
8935
8975
  }
8936
8976
 
8977
+ @complex model familyMemberStorageQuota {
8978
+ additionalAllocations: additionalStorageAllocations | null;
8979
+ used: int64 | null;
8980
+ user: identity | null;
8981
+ }
8982
+
8937
8983
  @complex model featureTarget {
8938
8984
  id: string | null;
8939
8985
  targetType: featureTargetType | null;
@@ -11159,6 +11205,17 @@ Each data source key can include a filter expression to narrow results and a lis
11159
11205
  submitOnlyLinkAbilities: linkRoleAbilities | null;
11160
11206
  }
11161
11207
 
11208
+ @complex model linkStatistics {
11209
+ correlatedAssigned: int64 | null;
11210
+ correlatedNotAssigned: int64 | null;
11211
+ failToCorrelate: int64 | null;
11212
+ mapping: correlatedObjectLinkMapping | null;
11213
+ total: int64 | null;
11214
+ uncorrelated: int64 | null;
11215
+ `unknown`: int64 | null;
11216
+ unresolvedTarget: int64 | null;
11217
+ }
11218
+
11162
11219
  @complex model listInfo {
11163
11220
  contentTypesEnabled: boolean | null;
11164
11221
  hidden: boolean | null;
@@ -14067,6 +14124,10 @@ Each data source key can include a filter expression to narrow results and a lis
14067
14124
  totalPlaceCount: int32 | null;
14068
14125
  }
14069
14126
 
14127
+ @complex model placeServicePlanInfo {
14128
+ servicePlanId: string | null;
14129
+ }
14130
+
14070
14131
  @open
14071
14132
  @complex model plannerAppliedCategories {
14072
14133
  }
@@ -14449,6 +14510,9 @@ Each data source key can include a filter expression to narrow results and a lis
14449
14510
  @complex model policyLocationDomain extends policyLocation {
14450
14511
  }
14451
14512
 
14513
+ @complex model policyLocationTool extends policyLocation {
14514
+ }
14515
+
14452
14516
  @complex model policyLocationUrl extends policyLocation {
14453
14517
  }
14454
14518
 
@@ -14456,6 +14520,7 @@ Each data source key can include a filter expression to narrow results and a lis
14456
14520
  @complex model policyScopeBase {
14457
14521
  activities: userActivityTypes;
14458
14522
  executionMode: executionMode;
14523
+ locationExclusions: policyLocation[];
14459
14524
  locations: policyLocation[];
14460
14525
  policyActions: dlpActionInfo[];
14461
14526
  }
@@ -14932,6 +14997,7 @@ Each data source key can include a filter expression to narrow results and a lis
14932
14997
  contentEntries: processContentMetadataBase[];
14933
14998
  contextMetadata: contextMetadata | null;
14934
14999
  deviceMetadata: deviceMetadata;
15000
+ evaluationScope: evaluationScope | null;
14935
15001
  integratedAppMetadata: integratedApplicationMetadata;
14936
15002
  protectedAppMetadata: protectedApplicationMetadata | null;
14937
15003
  }
@@ -15024,6 +15090,7 @@ Each data source key can include a filter expression to narrow results and a lis
15024
15090
 
15025
15091
  @complex model protectedApplicationMetadata extends integratedApplicationMetadata {
15026
15092
  applicationLocation: policyLocation | null;
15093
+ sourceLocation: policyLocation | null;
15027
15094
  }
15028
15095
 
15029
15096
  @complex model protectedContent {
@@ -16028,6 +16095,27 @@ Each data source key can include a filter expression to narrow results and a lis
16028
16095
  qualityId: string | null;
16029
16096
  }
16030
16097
 
16098
+ @complex model samlAppProfile {
16099
+ }
16100
+
16101
+ @complex model samlAuthnRequest {
16102
+ }
16103
+
16104
+ @complex model samlAuthnStatement {
16105
+ }
16106
+
16107
+ @complex model samlCapturedSummary {
16108
+ }
16109
+
16110
+ @complex model samlCertificate {
16111
+ }
16112
+
16113
+ @complex model samlClaim {
16114
+ }
16115
+
16116
+ @complex model samlConditions {
16117
+ }
16118
+
16031
16119
  @complex model samlIdentitySource extends permissionsDefinitionIdentitySource {
16032
16120
  }
16033
16121
 
@@ -16036,10 +16124,43 @@ Each data source key can include a filter expression to narrow results and a lis
16036
16124
  serviceProviderNameQualifier: string | null;
16037
16125
  }
16038
16126
 
16127
+ @complex model samlNameIdPolicy {
16128
+ }
16129
+
16130
+ @complex model samlRequestedAuthnContext {
16131
+ }
16132
+
16133
+ @complex model samlResponseAssertion {
16134
+ }
16135
+
16136
+ @complex model samlResponseMetadata {
16137
+ }
16138
+
16139
+ @complex model samlResponseStatus {
16140
+ }
16141
+
16142
+ @complex model samlScenarioRun {
16143
+ }
16144
+
16145
+ @complex model samlScreenshot {
16146
+ }
16147
+
16148
+ @complex model samlSignatureDetail {
16149
+ }
16150
+
16039
16151
  @complex model samlSingleSignOnSettings {
16040
16152
  relayState: string | null;
16041
16153
  }
16042
16154
 
16155
+ @complex model samlSubCheck {
16156
+ }
16157
+
16158
+ @complex model samlSubject {
16159
+ }
16160
+
16161
+ @complex model samlSubjectConfirmation {
16162
+ }
16163
+
16043
16164
  @complex model samlTestResults {
16044
16165
  }
16045
16166
 
@@ -16630,6 +16751,7 @@ This model is shared with the CCS retrieval API and search where it is already u
16630
16751
  appId: string | null;
16631
16752
  serviceArea: string | null;
16632
16753
  tenantId: string | null;
16754
+ throttledRequests: int64 | null;
16633
16755
  usageDateTime: offsetDateTime | null;
16634
16756
  usageMB: int64 | null;
16635
16757
  usageRequests: int64 | null;
@@ -17162,6 +17284,25 @@ This model is shared with the CCS retrieval API and search where it is already u
17162
17284
  nameIdPolicyFormat: string | null;
17163
17285
  }
17164
17286
 
17287
+ @complex model syncComponent {
17288
+ /**
17289
+ * 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.
17290
+ */
17291
+ moreInfo: string | null;
17292
+ /**
17293
+ * 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.
17294
+ */
17295
+ name: string;
17296
+ /**
17297
+ * 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.
17298
+ */
17299
+ reportedDateTime: offsetDateTime;
17300
+ /**
17301
+ * 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.
17302
+ */
17303
+ status: syncComponentStatus;
17304
+ }
17305
+
17165
17306
  @complex model synchronizationError {
17166
17307
  code: string | null;
17167
17308
  message: string | null;
@@ -22220,16 +22361,16 @@ capabilities, skills, security, and other manifest-defined fields.
22220
22361
  additionalInfo: string | null;
22221
22362
 
22222
22363
  @graphDeprecated("beta:DisplayNameRename")
22223
- agentDisplayName: string;
22364
+ agentDisplayName: string | null;
22224
22365
 
22225
22366
  @graphDeprecated("beta:IdentityIDRename")
22226
- agentId: string;
22367
+ agentId: string | null;
22227
22368
  blueprintId: string | null;
22228
22369
  clientSessionId: string | null;
22229
22370
  detectedDateTime: offsetDateTime | null;
22230
22371
  detectionTimingType: riskDetectionTimingType;
22231
- displayName: string | null;
22232
- identityId: string | null;
22372
+ displayName: string;
22373
+ identityId: string;
22233
22374
  identityType: agentIdentityType;
22234
22375
  @computed lastModifiedDateTime: offsetDateTime | null;
22235
22376
  riskDetail: riskDetail;
@@ -28861,6 +29002,7 @@ capabilities, skills, security, and other manifest-defined fields.
28861
29002
  imageDisplayName: string | null;
28862
29003
  isDisasterRecoveryActive: boolean;
28863
29004
  lastLoginResult: cloudPcLoginResult | null;
29005
+ @computed lastLogoffDateTime: offsetDateTime | null;
28864
29006
  @computed lastModifiedDateTime: offsetDateTime;
28865
29007
  lastRemoteActionResult: cloudPcRemoteActionResult | null;
28866
29008
  managedDeviceId: string | null;
@@ -31345,6 +31487,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
31345
31487
  heightAdjustableState: placeFeatureEnablement;
31346
31488
  mailboxDetails: mailboxDetails | null;
31347
31489
  mode: placeMode | null;
31490
+ servicePlans: placeServicePlanInfo[];
31348
31491
  }
31349
31492
 
31350
31493
  /**
@@ -35880,6 +36023,9 @@ typically alternating request/response, implicitly forming a turn.Represents a c
35880
36023
  @contains recommendationConfiguration: recommendationConfiguration | null;
35881
36024
  @contains recommendations: recommendation[];
35882
36025
  @contains recovery: reference.`microsoft.graph.entraRecoveryServices`.recovery | null;
36026
+
36027
+ @privatePreview("remoteTenantGroupsAPI")
36028
+ @contains remoteTenantGroups: remoteTenantGroup[];
35883
36029
  @contains sharedEmailDomains: sharedEmailDomain[];
35884
36030
  @contains subscriptions: companySubscription[];
35885
36031
  @contains templates: template | null;
@@ -45400,6 +45546,26 @@ within the time frame of their original request.
45400
45546
  isEnabledForAllMicrosoftApplications: boolean | null;
45401
45547
  }
45402
45548
 
45549
+ @entity model microsoftAppsFileStorageContainerAppUsage extends MsGraph.SharedModels.entity {
45550
+ activeContainerCount: int64;
45551
+ activeStorageUsedInBytes: int64;
45552
+ @computed @key appId: string;
45553
+ displayName: string | null;
45554
+ }
45555
+
45556
+ @entity model microsoftAppsFileStorageContainerGeoUsage extends MsGraph.SharedModels.entity {
45557
+ activeContainerCount: int64;
45558
+ activeStorageUsedInBytes: int64;
45559
+ @computed @key dataLocationCode: string;
45560
+ @contains usageByApp: microsoftAppsFileStorageContainerAppUsage[];
45561
+ }
45562
+
45563
+ @entity model microsoftAppsFileStorageContainerUsage extends entity {
45564
+ totalActiveContainerCount: int64;
45565
+ totalActiveStorageUsedInBytes: int64;
45566
+ @contains usageByDataLocation: microsoftAppsFileStorageContainerGeoUsage[];
45567
+ }
45568
+
45403
45569
  @entity model microsoftAuthenticatorAuthenticationMethod extends authenticationMethod {
45404
45570
  clientAppName: microsoftAuthenticatorAuthenticationMethodClientAppName | null;
45405
45571
  deviceTag: string | null;
@@ -47828,6 +47994,7 @@ within the time frame of their original request.
47828
47994
  label: string | null;
47829
47995
  parentId: string | null;
47830
47996
  phone: string | null;
47997
+ placeId: string | null;
47831
47998
  tags: string[];
47832
47999
  @contains checkIns: checkInClaim[];
47833
48000
  @references children: place[];
@@ -49335,6 +49502,15 @@ within the time frame of their original request.
49335
49502
  @contains targetDeviceGroups: targetDeviceGroup[];
49336
49503
  }
49337
49504
 
49505
+ @privatePreview("remoteTenantGroupsAPI")
49506
+ @entity model remoteTenantGroup extends directoryObject {
49507
+ remoteGroupDisplayName: string | null;
49508
+ remoteGroupId: guid | null;
49509
+ remoteTenantDisplayName: string | null;
49510
+ remoteTenantId: guid | null;
49511
+ remoteTenantPrimaryDomain: string | null;
49512
+ }
49513
+
49338
49514
  @open
49339
49515
  @entity model removeFromLobbyOperation extends commsOperation {
49340
49516
  }
@@ -49357,6 +49533,7 @@ within the time frame of their original request.
49357
49533
  @contains dailyPrintUsageSummariesByUser: printUsageByUser[];
49358
49534
  @contains healthMonitoring: reference.`microsoft.graph.healthMonitoring`.healthMonitoringRoot | null;
49359
49535
  @contains identityAnalytics: identityAnalyticsRoot | null;
49536
+ @contains microsoftAppsFileStorageContainerUsageSummary: microsoftAppsFileStorageContainerUsage | null;
49360
49537
  @contains monthlyPrintUsageByPrinter: printUsageByPrinter[];
49361
49538
  @contains monthlyPrintUsageByUser: printUsageByUser[];
49362
49539
 
@@ -49775,7 +49952,6 @@ within the time frame of their original request.
49775
49952
  floorNumber: int32 | null;
49776
49953
  isTeamsEnabled: boolean;
49777
49954
  nickname: string;
49778
- placeId: string | null;
49779
49955
  teamsEnabledState: placeFeatureEnablement;
49780
49956
  videoDeviceName: string | null;
49781
49957
  }
@@ -50228,6 +50404,7 @@ within the time frame of their original request.
50228
50404
  @contains alerts_v2: reference.`microsoft.graph.security`.alert[];
50229
50405
  @contains attackSimulation: attackSimulationRoot | null;
50230
50406
  @contains auditLog: reference.`microsoft.graph.security`.auditCoreRoot | null;
50407
+ @contains caseManagement: reference.`microsoft.graph.security`.caseManagementRoot | null;
50231
50408
  @contains cases: reference.`microsoft.graph.security`.casesRoot | null;
50232
50409
  @contains cloudAppSecurityProfiles: cloudAppSecurityProfile[];
50233
50410
  @contains collaboration: reference.`microsoft.graph.security`.collaborationRoot | null;
@@ -52947,6 +53124,8 @@ within the time frame of their original request.
52947
53124
 
52948
53125
  @entity model unifiedStorageQuota extends entity {
52949
53126
  deleted: int64 | null;
53127
+ familyMembersUsage: familyMemberStorageQuota[] | null;
53128
+ isPooledStorageEnabled: boolean | null;
52950
53129
  manageWebUrl: string | null;
52951
53130
  remaining: int64 | null;
52952
53131
  state: string | null;
@@ -55604,6 +55783,10 @@ within the time frame of their original request.
55604
55783
  * 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.
55605
55784
  */
55606
55785
  @entity model vppToken extends entity {
55786
+ /**
55787
+ * 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.
55788
+ */
55789
+ appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol;
55607
55790
  /**
55608
55791
  * The apple Id associated with the given Apple Volume Purchase Program Token.
55609
55792
  */
@@ -62438,7 +62621,6 @@ within the time frame of their original request.
62438
62621
  floorNumber: int32 | null;
62439
62622
  mode: placeMode | null;
62440
62623
  nickname: string;
62441
- placeId: string | null;
62442
62624
  }
62443
62625
 
62444
62626
  @entity model x509CertificateAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
@@ -73512,6 +73694,13 @@ within the time frame of their original request.
73512
73694
  IgnoreLookupReferenceResolutionFailure: 2,
73513
73695
  }
73514
73696
 
73697
+ enum evaluationScopeType {
73698
+ tenant: 0,
73699
+ agent: 1,
73700
+ anonymousUser: 2,
73701
+ unknownFutureValue: 3,
73702
+ }
73703
+
73515
73704
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
73516
73705
  enum eventType {
73517
73706
  singleInstance: 0,
@@ -83289,6 +83478,33 @@ within the time frame of their original request.
83289
83478
  unknownFutureValue: 4,
83290
83479
  }
83291
83480
 
83481
+ /**
83482
+ * A list of possible status states for a sync infrastructure component or policy during a device sync operation.
83483
+ */
83484
+ enum syncComponentStatus {
83485
+ /**
83486
+ * 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.
83487
+ */
83488
+ none: 0,
83489
+ /**
83490
+ * 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.
83491
+ */
83492
+ inProgress: 1,
83493
+ /**
83494
+ * Indicates the component completed successfully. The component has finished its work and reported a successful outcome.
83495
+ */
83496
+ success: 2,
83497
+ /**
83498
+ * 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.
83499
+ */
83500
+ failure: 3,
83501
+ /**
83502
+ * 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.
83503
+ */
83504
+ partialSuccess: 4,
83505
+ unknownFutureValue: 5,
83506
+ }
83507
+
83292
83508
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
83293
83509
  enum synchronizationDisposition {
83294
83510
  Normal: 0,
@@ -89898,6 +90114,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
89898
90114
  @references groups: reference.`microsoft.graph`.group[];
89899
90115
  }
89900
90116
 
90117
+ @complex model guestSponsorTrigger extends workflowExecutionTrigger {
90118
+ minimumRequiredSponsors: int32;
90119
+ }
90120
+
89901
90121
  @complex model membershipChangeTrigger extends workflowExecutionTrigger {
89902
90122
  changeType: membershipChangeType;
89903
90123
  }
@@ -93451,6 +93671,7 @@ namespace reference.`microsoft.graph.search` {
93451
93671
  }
93452
93672
 
93453
93673
  }
93674
+ @privatePreviewDefinition("MdcConnectors", "2026-07-02", "2027-01-02", "<theOwner>")
93454
93675
  @deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
93455
93676
  // Metadata item DeprecatedDefinition_Tasks_And_Plans was already defined with a different value.
93456
93677
  @deprecatedDefinition("azureBlobContainer", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The azureBlobContainer will be deprecated on April 30, 2023.")
@@ -94343,6 +94564,11 @@ namespace reference.`microsoft.graph.security` {
94343
94564
  @complex model connectedAIAppInteractionAuditRecord extends auditData {
94344
94565
  }
94345
94566
 
94567
+ @privatePreview("MdcConnectors")
94568
+ @complex model connectorValidateResult {
94569
+ messages: string[];
94570
+ }
94571
+
94346
94572
  /**
94347
94573
  * Audit data for Consumption Resource events.
94348
94574
  */
@@ -97951,6 +98177,10 @@ namespace reference.`microsoft.graph.security` {
97951
98177
  status: caseStatus | null;
97952
98178
  }
97953
98179
 
98180
+ @entity model caseManagementRoot extends reference.`microsoft.graph`.entity {
98181
+ @contains cases: reference.`microsoft.graph.security.caseManagement`.case[];
98182
+ }
98183
+
97954
98184
  @entity model caseOperation extends reference.`microsoft.graph`.entity {
97955
98185
  action: caseAction | null;
97956
98186
  completedDateTime: offsetDateTime | null;
@@ -101048,6 +101278,378 @@ namespace reference.`microsoft.graph.security` {
101048
101278
  unknownFutureValue: 5,
101049
101279
  }
101050
101280
 
101281
+ }
101282
+ @publicNamespace("microsoft.graph.security.casemanagement")
101283
+ namespace reference.`microsoft.graph.security.caseManagement` {
101284
+ @complex model activityResourceDetails {
101285
+ kind: string | null;
101286
+ resourceId: string | null;
101287
+ }
101288
+
101289
+ @complex model alertCounts {
101290
+ active: int32 | null;
101291
+ bySeverity: incidentSeverityCounts | null;
101292
+ byStatus: alertStatusCounts | null;
101293
+ total: int32 | null;
101294
+ }
101295
+
101296
+ @open
101297
+ @complex model alertStatusCounts {
101298
+ inProgress: int32 | null;
101299
+ new: int32 | null;
101300
+ resolved: int32 | null;
101301
+ }
101302
+
101303
+ @complex model attachmentOrigin {
101304
+ resourceId: string | null;
101305
+ resourceType: attachmentOriginType;
101306
+ }
101307
+
101308
+ @complex model booleanValueProperty extends valueProperty {
101309
+ value: boolean;
101310
+ }
101311
+
101312
+ @complex model customFieldDateTimeValue extends customFieldValue {
101313
+ valueDateTime: offsetDateTime | null;
101314
+ }
101315
+
101316
+ @complex model customFieldNumberValue extends customFieldValue {
101317
+ value: int32 | null;
101318
+ }
101319
+
101320
+ @complex model customFieldOptionsValue extends customFieldValue {
101321
+ values: string[];
101322
+ }
101323
+
101324
+ @complex model customFieldStringValue extends customFieldValue {
101325
+ value: string | null;
101326
+ }
101327
+
101328
+ @abstract
101329
+ @complex model customFieldValue {
101330
+ }
101331
+
101332
+ @open
101333
+ @complex model customFieldValues {
101334
+ }
101335
+
101336
+ @complex model exposureCaseAutomation {
101337
+ ruleId: string | null;
101338
+ }
101339
+
101340
+ @complex model exposureCaseGitHub {
101341
+ environmentId: string | null;
101342
+ issueNumber: int32 | null;
101343
+ issueUrl: string | null;
101344
+ primaryAssessmentId: string | null;
101345
+ repoName: string | null;
101346
+ }
101347
+
101348
+ @complex model exposureCaseSeemplicity {
101349
+ configurationId: string | null;
101350
+ configurationName: string | null;
101351
+ providerType: string | null;
101352
+ syncStatus: string | null;
101353
+ ticketCreationTime: offsetDateTime | null;
101354
+ ticketId: string | null;
101355
+ ticketLink: string | null;
101356
+ }
101357
+
101358
+ @complex model impactedAssetsCounts {
101359
+ aiAgents: int32 | null;
101360
+ apps: int32 | null;
101361
+ cloudResources: int32 | null;
101362
+ files: int32 | null;
101363
+ ips: int32 | null;
101364
+ machines: int32 | null;
101365
+ mailboxes: int32 | null;
101366
+ oauthApps: int32 | null;
101367
+ processes: int32 | null;
101368
+ registryKeys: int32 | null;
101369
+ securityGroups: int32 | null;
101370
+ total: int32 | null;
101371
+ urls: int32 | null;
101372
+ users: int32 | null;
101373
+ }
101374
+
101375
+ @complex model incidentSeverityCounts {
101376
+ high: int32 | null;
101377
+ informational: int32 | null;
101378
+ low: int32 | null;
101379
+ medium: int32 | null;
101380
+ `unknown`: int32 | null;
101381
+ }
101382
+
101383
+ @complex model investigation {
101384
+ count: int32 | null;
101385
+ ids: string[];
101386
+ state: string | null;
101387
+ }
101388
+
101389
+ @complex model modifiedProperty {
101390
+ newValue: valueProperty | null;
101391
+ oldValue: valueProperty | null;
101392
+ propertyName: string | null;
101393
+ }
101394
+
101395
+ @complex model stringValueProperty extends valueProperty {
101396
+ value: string | null;
101397
+ }
101398
+
101399
+ @complex model thirdPartyWorkItem {
101400
+ identifier: string;
101401
+ instance: string;
101402
+ @computed lastSyncedOnDateTime: offsetDateTime | null;
101403
+ metadata: thirdPartyWorkItemMetadata | null;
101404
+ provider: thirdPartyWorkItemProvider;
101405
+ syncedBy: string;
101406
+ workItemType: thirdPartyWorkItemType;
101407
+ }
101408
+
101409
+ @open
101410
+ @complex model thirdPartyWorkItemMetadata {
101411
+ }
101412
+
101413
+ @abstract
101414
+ @complex model valueProperty {
101415
+ }
101416
+
101417
+ @abstract
101418
+ @entity model activity extends caseManagementEntity {
101419
+ }
101420
+
101421
+ @entity model attachment extends caseManagementEntity {
101422
+ content: stream | null;
101423
+ description: string | null;
101424
+ displayName: string;
101425
+ fileExtension: string | null;
101426
+ fileSize: int64 | null;
101427
+ origin: attachmentOrigin | null;
101428
+ scanResult: attachmentScanResult;
101429
+ }
101430
+
101431
+ @entity model auditLog extends activity {
101432
+ action: auditAction;
101433
+ details: activityResourceDetails | null;
101434
+ modifiedProperties: modifiedProperty[];
101435
+ }
101436
+
101437
+ @abstract
101438
+ @entity model case extends caseManagementEntity {
101439
+ customFields: customFieldValues | null;
101440
+ displayName: string;
101441
+ status: string;
101442
+ @contains activities: activity[];
101443
+ @contains attachments: attachment[];
101444
+ @contains relations: relation[];
101445
+ @contains tasks: task[];
101446
+ }
101447
+
101448
+ @abstract
101449
+ @entity model caseManagementEntity extends reference.`microsoft.graph`.entity {
101450
+ createdBy: string | null;
101451
+ @computed createdDateTime: offsetDateTime | null;
101452
+ lastModifiedBy: string | null;
101453
+ @computed lastModifiedDateTime: offsetDateTime | null;
101454
+ }
101455
+
101456
+ @entity model comment extends activity {
101457
+ message: string | null;
101458
+ }
101459
+
101460
+ @entity model exposureCase extends case {
101461
+ assignedTo: string | null;
101462
+ automation: exposureCaseAutomation | null;
101463
+ description: string | null;
101464
+ dueDateTime: offsetDateTime | null;
101465
+ emailNotificationRecipients: string[];
101466
+ github: exposureCaseGitHub | null;
101467
+ isGracePeriodEnabled: boolean;
101468
+ priority: string | null;
101469
+ seemplicity: exposureCaseSeemplicity | null;
101470
+ thirdPartyWorkItem: thirdPartyWorkItem | null;
101471
+ }
101472
+
101473
+ @entity model genericCase extends case {
101474
+ assignedTo: string | null;
101475
+ closingNotes: string | null;
101476
+ description: string | null;
101477
+ dueDateTime: offsetDateTime | null;
101478
+ priority: string | null;
101479
+ }
101480
+
101481
+ @entity model incidentCase extends case {
101482
+ aiAgentIds: string[];
101483
+ alertCounts: alertCounts | null;
101484
+ alertPolicyIds: string[];
101485
+ assignedTo: string | null;
101486
+ associatedThreatIds: string[];
101487
+ categories: string[];
101488
+ classification: incidentClassification;
101489
+ cloudScopes: string[];
101490
+ dataSensitivityLabels: string[];
101491
+ dataStreams: string[];
101492
+ detectionSources: string[];
101493
+ determination: incidentDetermination;
101494
+ dueDateTime: offsetDateTime | null;
101495
+ emailNotificationRecipients: string[];
101496
+ firstEventTime: offsetDateTime | null;
101497
+ impactedAssets: impactedAssetsCounts | null;
101498
+ incidentId: int64;
101499
+ incidentWebUrl: string | null;
101500
+ investigation: investigation | null;
101501
+ investigationIds: string[];
101502
+ investigationStates: string[];
101503
+ lastEventTime: offsetDateTime | null;
101504
+ machineGroupIds: string[];
101505
+ osPlatforms: string[];
101506
+ policyNames: string[];
101507
+ priorityScore: int32 | null;
101508
+ productNames: string[];
101509
+ redirectCaseId: int64 | null;
101510
+ redirectIncidentId: int64 | null;
101511
+ serviceSources: string[];
101512
+ severity: incidentSeverity;
101513
+ summary: string | null;
101514
+ systemTags: string[];
101515
+ topRiskScore: int32 | null;
101516
+ workspaceIds: string[];
101517
+ }
101518
+
101519
+ @entity model incidentRelation extends relation {
101520
+ }
101521
+
101522
+ @entity model recommendationRelation extends relation {
101523
+ recommendationType: string | null;
101524
+ resourceGroupName: string | null;
101525
+ subscriptionId: string | null;
101526
+ }
101527
+
101528
+ @abstract
101529
+ @entity model relation extends caseManagementEntity {
101530
+ relatedResourceId: string | null;
101531
+ }
101532
+
101533
+ @entity model task extends caseManagementEntity {
101534
+ assignedTo: string | null;
101535
+ category: caseTaskCategory;
101536
+ closingNotes: string | null;
101537
+ description: string | null;
101538
+ displayName: string;
101539
+ dueDateTime: offsetDateTime | null;
101540
+ priority: caseTaskPriority;
101541
+ status: taskStatus;
101542
+ }
101543
+
101544
+ @entity model workspaceIndicatorRelation extends relation {
101545
+ resourceGroupName: string | null;
101546
+ subscriptionId: string | null;
101547
+ workspaceName: string | null;
101548
+ }
101549
+
101550
+ enum attachmentOriginType {
101551
+ case: 0,
101552
+ comment: 1,
101553
+ task: 2,
101554
+ unknownFutureValue: 3,
101555
+ }
101556
+
101557
+ enum attachmentScanResult {
101558
+ unscanned: 0,
101559
+ noThreatsFound: 1,
101560
+ malicious: 2,
101561
+ unknownFutureValue: 3,
101562
+ }
101563
+
101564
+ enum auditAction {
101565
+ link: 0,
101566
+ unlink: 1,
101567
+ update: 2,
101568
+ delete: 3,
101569
+ create: 4,
101570
+ upload: 5,
101571
+ download: 6,
101572
+ fileUploadMalwareDetected: 7,
101573
+ unknownFutureValue: 8,
101574
+ }
101575
+
101576
+ enum caseTaskCategory {
101577
+ uncategorized: 0,
101578
+ triage: 1,
101579
+ contain: 2,
101580
+ investigate: 3,
101581
+ remediate: 4,
101582
+ prevent: 5,
101583
+ unknownFutureValue: 6,
101584
+ }
101585
+
101586
+ enum caseTaskPriority {
101587
+ notSet: 0,
101588
+ veryLow: 1,
101589
+ low: 2,
101590
+ medium: 3,
101591
+ high: 4,
101592
+ critical: 5,
101593
+ unknownFutureValue: 6,
101594
+ }
101595
+
101596
+ enum incidentClassification {
101597
+ `unknown`: 0,
101598
+ falsePositive: 1,
101599
+ truePositive: 2,
101600
+ informationalExpectedActivity: 3,
101601
+ unknownFutureValue: 4,
101602
+ }
101603
+
101604
+ enum incidentDetermination {
101605
+ `unknown`: 0,
101606
+ apt: 1,
101607
+ malware: 2,
101608
+ securityPersonnel: 3,
101609
+ securityTesting: 4,
101610
+ unwantedSoftware: 5,
101611
+ other: 6,
101612
+ multiStagedAttack: 7,
101613
+ compromisedAccount: 8,
101614
+ phishing: 9,
101615
+ maliciousUserActivity: 10,
101616
+ notMalicious: 11,
101617
+ notEnoughDataToValidate: 12,
101618
+ confirmedActivity: 13,
101619
+ lineOfBusinessApplication: 14,
101620
+ unknownFutureValue: 15,
101621
+ }
101622
+
101623
+ enum incidentSeverity {
101624
+ `unknown`: 0,
101625
+ informational: 1,
101626
+ low: 2,
101627
+ medium: 3,
101628
+ high: 4,
101629
+ unknownFutureValue: 5,
101630
+ }
101631
+
101632
+ enum taskStatus {
101633
+ notSet: 0,
101634
+ new: 1,
101635
+ inProgress: 2,
101636
+ failed: 3,
101637
+ partiallyCompleted: 4,
101638
+ skipped: 5,
101639
+ completed: 6,
101640
+ unknownFutureValue: 7,
101641
+ }
101642
+
101643
+ enum thirdPartyWorkItemProvider {
101644
+ serviceNow: 0,
101645
+ unknownFutureValue: 1,
101646
+ }
101647
+
101648
+ enum thirdPartyWorkItemType {
101649
+ incident: 0,
101650
+ unknownFutureValue: 1,
101651
+ }
101652
+
101051
101653
  }
101052
101654
  @publicNamespace("microsoft.graph.security.dlp")
101053
101655
  namespace reference.`microsoft.graph.security.dlp` {