@microsoft/typespec-msgraph-reference 1.0.4 → 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.
- package/.rush/temp/package-deps_build.json +17 -17
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +189 -4
- package/lib/Bleu/V1.0/main.tsp +53 -0
- package/lib/Delos/Beta/main.tsp +954 -4
- package/lib/Delos/V1.0/main.tsp +93 -0
- package/lib/Fairfax/Beta/main.tsp +563 -20
- package/lib/Fairfax/V1.0/main.tsp +3 -0
- package/lib/GovSG/V1.0/main.tsp +1 -0
- package/lib/Mooncake/Beta/main.tsp +205 -4
- package/lib/Mooncake/V1.0/main.tsp +2 -0
- package/lib/Prod/Beta/main.tsp +911 -64
- package/lib/Prod/V1.0/main.tsp +478 -0
- package/lib/USNat/Beta/main.tsp +308 -0
- package/lib/USNat/V1.0/main.tsp +210 -0
- package/lib/USSec/Beta/main.tsp +308 -0
- package/lib/USSec/V1.0/main.tsp +210 -0
- package/package.json +2 -2
package/lib/USSec/V1.0/main.tsp
CHANGED
|
@@ -5486,6 +5486,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5486
5486
|
membershipRule: string | null;
|
|
5487
5487
|
membershipRuleProcessingState: string | null;
|
|
5488
5488
|
onPremisesDomainName: string | null;
|
|
5489
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
5489
5490
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
5490
5491
|
onPremisesNetBiosName: string | null;
|
|
5491
5492
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -6372,6 +6373,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6372
6373
|
@entity model profileCardProperty extends entity {
|
|
6373
6374
|
annotations: profileCardAnnotation[] | null;
|
|
6374
6375
|
directoryPropertyName: string | null;
|
|
6376
|
+
isVisible: boolean;
|
|
6375
6377
|
}
|
|
6376
6378
|
|
|
6377
6379
|
@entity model profilePhoto extends entity {
|
|
@@ -6624,8 +6626,11 @@ namespace reference.`microsoft.graph` {
|
|
|
6624
6626
|
@contains cases: reference.`microsoft.graph.security`.casesRoot | null;
|
|
6625
6627
|
@contains dataSecurityAndGovernance: tenantDataSecurityAndGovernance | null;
|
|
6626
6628
|
@contains incidents: reference.`microsoft.graph.security`.incident[];
|
|
6629
|
+
@contains labels: reference.`microsoft.graph.security`.labelsRoot | null;
|
|
6627
6630
|
@contains secureScoreControlProfiles: secureScoreControlProfile[];
|
|
6628
6631
|
@contains secureScores: secureScore[];
|
|
6632
|
+
@contains triggers: reference.`microsoft.graph.security`.triggersRoot | null;
|
|
6633
|
+
@contains triggerTypes: reference.`microsoft.graph.security`.triggerTypesRoot | null;
|
|
6629
6634
|
}
|
|
6630
6635
|
|
|
6631
6636
|
@entity model serviceAnnouncement extends entity {
|
|
@@ -10984,6 +10989,18 @@ namespace reference.`microsoft.graph.security` {
|
|
|
10984
10989
|
emailAddress: string | null;
|
|
10985
10990
|
}
|
|
10986
10991
|
|
|
10992
|
+
@complex model eventPropagationResult {
|
|
10993
|
+
location: string | null;
|
|
10994
|
+
serviceName: string | null;
|
|
10995
|
+
status: eventPropagationStatus | null;
|
|
10996
|
+
statusInformation: string | null;
|
|
10997
|
+
}
|
|
10998
|
+
|
|
10999
|
+
@complex model eventQuery {
|
|
11000
|
+
query: string;
|
|
11001
|
+
queryType: queryType | null;
|
|
11002
|
+
}
|
|
11003
|
+
|
|
10987
11004
|
@complex model exportFileMetadata {
|
|
10988
11005
|
downloadUrl: string | null;
|
|
10989
11006
|
fileName: string | null;
|
|
@@ -11019,6 +11036,31 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11019
11036
|
value: string | null;
|
|
11020
11037
|
}
|
|
11021
11038
|
|
|
11039
|
+
@complex model filePlanAppliedCategory extends filePlanDescriptorBase {
|
|
11040
|
+
subcategory: filePlanSubcategory | null;
|
|
11041
|
+
}
|
|
11042
|
+
|
|
11043
|
+
@complex model filePlanAuthority extends filePlanDescriptorBase {
|
|
11044
|
+
}
|
|
11045
|
+
|
|
11046
|
+
@complex model filePlanCitation extends filePlanDescriptorBase {
|
|
11047
|
+
citationJurisdiction: string | null;
|
|
11048
|
+
citationUrl: string | null;
|
|
11049
|
+
}
|
|
11050
|
+
|
|
11051
|
+
@complex model filePlanDepartment extends filePlanDescriptorBase {
|
|
11052
|
+
}
|
|
11053
|
+
|
|
11054
|
+
@complex model filePlanDescriptorBase {
|
|
11055
|
+
displayName: string | null;
|
|
11056
|
+
}
|
|
11057
|
+
|
|
11058
|
+
@complex model filePlanReference extends filePlanDescriptorBase {
|
|
11059
|
+
}
|
|
11060
|
+
|
|
11061
|
+
@complex model filePlanSubcategory extends filePlanDescriptorBase {
|
|
11062
|
+
}
|
|
11063
|
+
|
|
11022
11064
|
@complex model geoLocation {
|
|
11023
11065
|
city: string | null;
|
|
11024
11066
|
countryName: string | null;
|
|
@@ -11294,6 +11336,22 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11294
11336
|
resourceIdentifier: string | null;
|
|
11295
11337
|
}
|
|
11296
11338
|
|
|
11339
|
+
@abstract
|
|
11340
|
+
@complex model retentionDuration {
|
|
11341
|
+
}
|
|
11342
|
+
|
|
11343
|
+
@complex model retentionDurationForever extends retentionDuration {
|
|
11344
|
+
}
|
|
11345
|
+
|
|
11346
|
+
@complex model retentionDurationInDays extends retentionDuration {
|
|
11347
|
+
days: int32 | null;
|
|
11348
|
+
}
|
|
11349
|
+
|
|
11350
|
+
@complex model retentionEventStatus {
|
|
11351
|
+
error: reference.`microsoft.graph`.publicError | null;
|
|
11352
|
+
status: eventStatusType | null;
|
|
11353
|
+
}
|
|
11354
|
+
|
|
11297
11355
|
@complex model sasTokenEvidence extends alertEvidence {
|
|
11298
11356
|
allowedIpAddresses: string | null;
|
|
11299
11357
|
allowedResourceTypes: string[] | null;
|
|
@@ -11446,6 +11504,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11446
11504
|
title: string | null;
|
|
11447
11505
|
}
|
|
11448
11506
|
|
|
11507
|
+
@entity model authorityTemplate extends filePlanDescriptorTemplate {
|
|
11508
|
+
}
|
|
11509
|
+
|
|
11449
11510
|
@abstract
|
|
11450
11511
|
@entity model case extends reference.`microsoft.graph`.entity {
|
|
11451
11512
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -11470,6 +11531,15 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11470
11531
|
@contains ediscoveryCases: ediscoveryCase[];
|
|
11471
11532
|
}
|
|
11472
11533
|
|
|
11534
|
+
@entity model categoryTemplate extends filePlanDescriptorTemplate {
|
|
11535
|
+
@contains subcategories: subcategoryTemplate[];
|
|
11536
|
+
}
|
|
11537
|
+
|
|
11538
|
+
@entity model citationTemplate extends filePlanDescriptorTemplate {
|
|
11539
|
+
citationJurisdiction: string | null;
|
|
11540
|
+
citationUrl: string | null;
|
|
11541
|
+
}
|
|
11542
|
+
|
|
11473
11543
|
@abstract
|
|
11474
11544
|
@entity model dataSet extends reference.`microsoft.graph`.entity {
|
|
11475
11545
|
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
@@ -11496,6 +11566,15 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11496
11566
|
status: dataSourceContainerStatus | null;
|
|
11497
11567
|
}
|
|
11498
11568
|
|
|
11569
|
+
@entity model departmentTemplate extends filePlanDescriptorTemplate {
|
|
11570
|
+
}
|
|
11571
|
+
|
|
11572
|
+
@entity model dispositionReviewStage extends MsGraph.SharedModels.entity {
|
|
11573
|
+
name: string | null;
|
|
11574
|
+
reviewersEmailAddresses: string[] | null;
|
|
11575
|
+
@computed @key stageNumber: string;
|
|
11576
|
+
}
|
|
11577
|
+
|
|
11499
11578
|
@entity model ediscoveryAddToReviewSetOperation extends caseOperation {
|
|
11500
11579
|
additionalDataOptions: additionalDataOptions | null;
|
|
11501
11580
|
cloudAttachmentVersion: cloudAttachmentVersion | null;
|
|
@@ -11623,6 +11702,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11623
11702
|
@entity model ediscoveryTagOperation extends caseOperation {
|
|
11624
11703
|
}
|
|
11625
11704
|
|
|
11705
|
+
@entity model filePlanDescriptor extends reference.`microsoft.graph`.entity {
|
|
11706
|
+
authority: filePlanAuthority | null;
|
|
11707
|
+
category: filePlanAppliedCategory | null;
|
|
11708
|
+
citation: filePlanCitation | null;
|
|
11709
|
+
department: filePlanDepartment | null;
|
|
11710
|
+
filePlanReference: filePlanReference | null;
|
|
11711
|
+
@references authorityTemplate: authorityTemplate | null;
|
|
11712
|
+
@references categoryTemplate: categoryTemplate | null;
|
|
11713
|
+
@references citationTemplate: citationTemplate | null;
|
|
11714
|
+
@references departmentTemplate: departmentTemplate | null;
|
|
11715
|
+
@references filePlanReferenceTemplate: filePlanReferenceTemplate | null;
|
|
11716
|
+
}
|
|
11717
|
+
|
|
11718
|
+
@entity model filePlanDescriptorTemplate extends reference.`microsoft.graph`.entity {
|
|
11719
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
11720
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
11721
|
+
displayName: string | null;
|
|
11722
|
+
}
|
|
11723
|
+
|
|
11724
|
+
@entity model filePlanReferenceTemplate extends filePlanDescriptorTemplate {
|
|
11725
|
+
}
|
|
11726
|
+
|
|
11626
11727
|
@entity model incident extends reference.`microsoft.graph`.entity {
|
|
11627
11728
|
assignedTo: string | null;
|
|
11628
11729
|
classification: alertClassification | null;
|
|
@@ -11645,6 +11746,59 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11645
11746
|
@references alerts: alert[];
|
|
11646
11747
|
}
|
|
11647
11748
|
|
|
11749
|
+
@entity model labelsRoot extends reference.`microsoft.graph`.entity {
|
|
11750
|
+
@contains authorities: authorityTemplate[];
|
|
11751
|
+
@contains categories: categoryTemplate[];
|
|
11752
|
+
@contains citations: citationTemplate[];
|
|
11753
|
+
@contains departments: departmentTemplate[];
|
|
11754
|
+
@contains filePlanReferences: filePlanReferenceTemplate[];
|
|
11755
|
+
@contains retentionLabels: retentionLabel[];
|
|
11756
|
+
}
|
|
11757
|
+
|
|
11758
|
+
@entity model retentionEvent extends reference.`microsoft.graph`.entity {
|
|
11759
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
11760
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
11761
|
+
description: string | null;
|
|
11762
|
+
displayName: string | null;
|
|
11763
|
+
eventPropagationResults: eventPropagationResult[] | null;
|
|
11764
|
+
eventQueries: eventQuery[] | null;
|
|
11765
|
+
eventStatus: retentionEventStatus | null;
|
|
11766
|
+
eventTriggerDateTime: offsetDateTime | null;
|
|
11767
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
11768
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
11769
|
+
@computed lastStatusUpdateDateTime: offsetDateTime | null;
|
|
11770
|
+
@references retentionEventType: retentionEventType | null;
|
|
11771
|
+
}
|
|
11772
|
+
|
|
11773
|
+
@entity model retentionEventType extends reference.`microsoft.graph`.entity {
|
|
11774
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
11775
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
11776
|
+
description: string | null;
|
|
11777
|
+
displayName: string | null;
|
|
11778
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
11779
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
11780
|
+
}
|
|
11781
|
+
|
|
11782
|
+
@entity model retentionLabel extends reference.`microsoft.graph`.entity {
|
|
11783
|
+
actionAfterRetentionPeriod: actionAfterRetentionPeriod | null;
|
|
11784
|
+
behaviorDuringRetentionPeriod: behaviorDuringRetentionPeriod | null;
|
|
11785
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
11786
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
11787
|
+
defaultRecordBehavior: defaultRecordBehavior | null;
|
|
11788
|
+
descriptionForAdmins: string | null;
|
|
11789
|
+
descriptionForUsers: string | null;
|
|
11790
|
+
displayName: string | null;
|
|
11791
|
+
isInUse: boolean | null;
|
|
11792
|
+
labelToBeApplied: string | null;
|
|
11793
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
11794
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
11795
|
+
retentionDuration: retentionDuration | null;
|
|
11796
|
+
retentionTrigger: retentionTrigger | null;
|
|
11797
|
+
@contains descriptors: filePlanDescriptor | null;
|
|
11798
|
+
@contains dispositionReviewStages: dispositionReviewStage[];
|
|
11799
|
+
@references retentionEventType: retentionEventType | null;
|
|
11800
|
+
}
|
|
11801
|
+
|
|
11648
11802
|
@abstract
|
|
11649
11803
|
@entity model search extends reference.`microsoft.graph`.entity {
|
|
11650
11804
|
contentQuery: string | null;
|
|
@@ -11660,6 +11814,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11660
11814
|
@references site: reference.`microsoft.graph`.site;
|
|
11661
11815
|
}
|
|
11662
11816
|
|
|
11817
|
+
@entity model subcategoryTemplate extends filePlanDescriptorTemplate {
|
|
11818
|
+
}
|
|
11819
|
+
|
|
11663
11820
|
@abstract
|
|
11664
11821
|
@entity model tag extends reference.`microsoft.graph`.entity {
|
|
11665
11822
|
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
@@ -11668,6 +11825,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11668
11825
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
11669
11826
|
}
|
|
11670
11827
|
|
|
11828
|
+
@entity model triggersRoot extends reference.`microsoft.graph`.entity {
|
|
11829
|
+
@contains retentionEvents: retentionEvent[];
|
|
11830
|
+
}
|
|
11831
|
+
|
|
11832
|
+
@entity model triggerTypesRoot extends reference.`microsoft.graph`.entity {
|
|
11833
|
+
@contains retentionEventTypes: retentionEventType[];
|
|
11834
|
+
}
|
|
11835
|
+
|
|
11671
11836
|
@entity model unifiedGroupSource extends dataSource {
|
|
11672
11837
|
includedSources: sourceType | null;
|
|
11673
11838
|
@references group: reference.`microsoft.graph`.group;
|
|
@@ -11679,6 +11844,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11679
11844
|
siteWebUrl: string | null;
|
|
11680
11845
|
}
|
|
11681
11846
|
|
|
11847
|
+
enum actionAfterRetentionPeriod {
|
|
11848
|
+
none: 0,
|
|
11849
|
+
delete: 1,
|
|
11850
|
+
startDispositionReview: 2,
|
|
11851
|
+
relabel: 3,
|
|
11852
|
+
unknownFutureValue: 4,
|
|
11853
|
+
}
|
|
11854
|
+
|
|
11682
11855
|
@graphFlags
|
|
11683
11856
|
enum additionalDataOptions {
|
|
11684
11857
|
allVersions: 1,
|
|
@@ -11880,6 +12053,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11880
12053
|
unknownFutureValue: 16,
|
|
11881
12054
|
}
|
|
11882
12055
|
|
|
12056
|
+
enum defaultRecordBehavior {
|
|
12057
|
+
startLocked: 0,
|
|
12058
|
+
startUnlocked: 1,
|
|
12059
|
+
unknownFutureValue: 2,
|
|
12060
|
+
}
|
|
12061
|
+
|
|
11883
12062
|
enum defenderAvStatus {
|
|
11884
12063
|
notReporting: 0,
|
|
11885
12064
|
disabled: 1,
|
|
@@ -11966,6 +12145,22 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11966
12145
|
unknownFutureValue: 5,
|
|
11967
12146
|
}
|
|
11968
12147
|
|
|
12148
|
+
enum eventPropagationStatus {
|
|
12149
|
+
none: 0,
|
|
12150
|
+
inProcessing: 1,
|
|
12151
|
+
failed: 2,
|
|
12152
|
+
success: 3,
|
|
12153
|
+
unknownFutureValue: 4,
|
|
12154
|
+
}
|
|
12155
|
+
|
|
12156
|
+
enum eventStatusType {
|
|
12157
|
+
pending: 0,
|
|
12158
|
+
error: 1,
|
|
12159
|
+
success: 2,
|
|
12160
|
+
notAvaliable: 3,
|
|
12161
|
+
unknownFutureValue: 4,
|
|
12162
|
+
}
|
|
12163
|
+
|
|
11969
12164
|
enum evidenceRemediationStatus {
|
|
11970
12165
|
none: 0,
|
|
11971
12166
|
remediated: 1,
|
|
@@ -12145,6 +12340,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
12145
12340
|
permanentlyDelete: 2,
|
|
12146
12341
|
}
|
|
12147
12342
|
|
|
12343
|
+
enum queryType {
|
|
12344
|
+
files: 0,
|
|
12345
|
+
messages: 1,
|
|
12346
|
+
unknownFutureValue: 2,
|
|
12347
|
+
}
|
|
12348
|
+
|
|
12148
12349
|
@graphFlags
|
|
12149
12350
|
enum recipientType {
|
|
12150
12351
|
user: 1,
|
|
@@ -12152,6 +12353,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
12152
12353
|
unknownFutureValue: 4,
|
|
12153
12354
|
}
|
|
12154
12355
|
|
|
12356
|
+
enum retentionTrigger {
|
|
12357
|
+
dateLabeled: 0,
|
|
12358
|
+
dateCreated: 1,
|
|
12359
|
+
dateModified: 2,
|
|
12360
|
+
dateOfEvent: 3,
|
|
12361
|
+
unknownFutureValue: 4,
|
|
12362
|
+
}
|
|
12363
|
+
|
|
12155
12364
|
@graphFlags
|
|
12156
12365
|
enum reviewSetSettings {
|
|
12157
12366
|
none: 0,
|
|
@@ -12181,6 +12390,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
12181
12390
|
microsoftDefenderForCloud: 256,
|
|
12182
12391
|
microsoftSentinel: 512,
|
|
12183
12392
|
microsoftInsiderRiskManagement: 1024,
|
|
12393
|
+
microsoftSecurityForAI: 4096,
|
|
12184
12394
|
}
|
|
12185
12395
|
|
|
12186
12396
|
@graphFlags
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/typespec-msgraph-reference",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Reference models for Microsoft Graph across multiple clouds",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"@typespec/compiler": "~1.9.0",
|
|
75
75
|
"@typespec/http": "~1.9.0",
|
|
76
|
-
"@microsoft/typespec-msgraph": "1.1.
|
|
76
|
+
"@microsoft/typespec-msgraph": "1.1.1"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"typescript": "~5.9.2"
|