@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/USNat/V1.0/main.tsp
CHANGED
|
@@ -5629,6 +5629,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5629
5629
|
membershipRule: string | null;
|
|
5630
5630
|
membershipRuleProcessingState: string | null;
|
|
5631
5631
|
onPremisesDomainName: string | null;
|
|
5632
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
5632
5633
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
5633
5634
|
onPremisesNetBiosName: string | null;
|
|
5634
5635
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -6533,6 +6534,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6533
6534
|
@entity model profileCardProperty extends entity {
|
|
6534
6535
|
annotations: profileCardAnnotation[] | null;
|
|
6535
6536
|
directoryPropertyName: string | null;
|
|
6537
|
+
isVisible: boolean;
|
|
6536
6538
|
}
|
|
6537
6539
|
|
|
6538
6540
|
@entity model profilePhoto extends entity {
|
|
@@ -6784,8 +6786,11 @@ namespace reference.`microsoft.graph` {
|
|
|
6784
6786
|
@contains alerts_v2: reference.`microsoft.graph.security`.alert[];
|
|
6785
6787
|
@contains cases: reference.`microsoft.graph.security`.casesRoot | null;
|
|
6786
6788
|
@contains incidents: reference.`microsoft.graph.security`.incident[];
|
|
6789
|
+
@contains labels: reference.`microsoft.graph.security`.labelsRoot | null;
|
|
6787
6790
|
@contains secureScoreControlProfiles: secureScoreControlProfile[];
|
|
6788
6791
|
@contains secureScores: secureScore[];
|
|
6792
|
+
@contains triggers: reference.`microsoft.graph.security`.triggersRoot | null;
|
|
6793
|
+
@contains triggerTypes: reference.`microsoft.graph.security`.triggerTypesRoot | null;
|
|
6789
6794
|
}
|
|
6790
6795
|
|
|
6791
6796
|
@entity model sensitiveType extends entity {
|
|
@@ -11197,6 +11202,18 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11197
11202
|
emailAddress: string | null;
|
|
11198
11203
|
}
|
|
11199
11204
|
|
|
11205
|
+
@complex model eventPropagationResult {
|
|
11206
|
+
location: string | null;
|
|
11207
|
+
serviceName: string | null;
|
|
11208
|
+
status: eventPropagationStatus | null;
|
|
11209
|
+
statusInformation: string | null;
|
|
11210
|
+
}
|
|
11211
|
+
|
|
11212
|
+
@complex model eventQuery {
|
|
11213
|
+
query: string;
|
|
11214
|
+
queryType: queryType | null;
|
|
11215
|
+
}
|
|
11216
|
+
|
|
11200
11217
|
@complex model exportFileMetadata {
|
|
11201
11218
|
downloadUrl: string | null;
|
|
11202
11219
|
fileName: string | null;
|
|
@@ -11232,6 +11249,31 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11232
11249
|
value: string | null;
|
|
11233
11250
|
}
|
|
11234
11251
|
|
|
11252
|
+
@complex model filePlanAppliedCategory extends filePlanDescriptorBase {
|
|
11253
|
+
subcategory: filePlanSubcategory | null;
|
|
11254
|
+
}
|
|
11255
|
+
|
|
11256
|
+
@complex model filePlanAuthority extends filePlanDescriptorBase {
|
|
11257
|
+
}
|
|
11258
|
+
|
|
11259
|
+
@complex model filePlanCitation extends filePlanDescriptorBase {
|
|
11260
|
+
citationJurisdiction: string | null;
|
|
11261
|
+
citationUrl: string | null;
|
|
11262
|
+
}
|
|
11263
|
+
|
|
11264
|
+
@complex model filePlanDepartment extends filePlanDescriptorBase {
|
|
11265
|
+
}
|
|
11266
|
+
|
|
11267
|
+
@complex model filePlanDescriptorBase {
|
|
11268
|
+
displayName: string | null;
|
|
11269
|
+
}
|
|
11270
|
+
|
|
11271
|
+
@complex model filePlanReference extends filePlanDescriptorBase {
|
|
11272
|
+
}
|
|
11273
|
+
|
|
11274
|
+
@complex model filePlanSubcategory extends filePlanDescriptorBase {
|
|
11275
|
+
}
|
|
11276
|
+
|
|
11235
11277
|
@complex model geoLocation {
|
|
11236
11278
|
city: string | null;
|
|
11237
11279
|
countryName: string | null;
|
|
@@ -11507,6 +11549,22 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11507
11549
|
resourceIdentifier: string | null;
|
|
11508
11550
|
}
|
|
11509
11551
|
|
|
11552
|
+
@abstract
|
|
11553
|
+
@complex model retentionDuration {
|
|
11554
|
+
}
|
|
11555
|
+
|
|
11556
|
+
@complex model retentionDurationForever extends retentionDuration {
|
|
11557
|
+
}
|
|
11558
|
+
|
|
11559
|
+
@complex model retentionDurationInDays extends retentionDuration {
|
|
11560
|
+
days: int32 | null;
|
|
11561
|
+
}
|
|
11562
|
+
|
|
11563
|
+
@complex model retentionEventStatus {
|
|
11564
|
+
error: reference.`microsoft.graph`.publicError | null;
|
|
11565
|
+
status: eventStatusType | null;
|
|
11566
|
+
}
|
|
11567
|
+
|
|
11510
11568
|
@complex model sasTokenEvidence extends alertEvidence {
|
|
11511
11569
|
allowedIpAddresses: string | null;
|
|
11512
11570
|
allowedResourceTypes: string[] | null;
|
|
@@ -11659,6 +11717,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11659
11717
|
title: string | null;
|
|
11660
11718
|
}
|
|
11661
11719
|
|
|
11720
|
+
@entity model authorityTemplate extends filePlanDescriptorTemplate {
|
|
11721
|
+
}
|
|
11722
|
+
|
|
11662
11723
|
@abstract
|
|
11663
11724
|
@entity model case extends reference.`microsoft.graph`.entity {
|
|
11664
11725
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -11683,6 +11744,15 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11683
11744
|
@contains ediscoveryCases: ediscoveryCase[];
|
|
11684
11745
|
}
|
|
11685
11746
|
|
|
11747
|
+
@entity model categoryTemplate extends filePlanDescriptorTemplate {
|
|
11748
|
+
@contains subcategories: subcategoryTemplate[];
|
|
11749
|
+
}
|
|
11750
|
+
|
|
11751
|
+
@entity model citationTemplate extends filePlanDescriptorTemplate {
|
|
11752
|
+
citationJurisdiction: string | null;
|
|
11753
|
+
citationUrl: string | null;
|
|
11754
|
+
}
|
|
11755
|
+
|
|
11686
11756
|
@abstract
|
|
11687
11757
|
@entity model dataSet extends reference.`microsoft.graph`.entity {
|
|
11688
11758
|
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
@@ -11709,6 +11779,15 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11709
11779
|
status: dataSourceContainerStatus | null;
|
|
11710
11780
|
}
|
|
11711
11781
|
|
|
11782
|
+
@entity model departmentTemplate extends filePlanDescriptorTemplate {
|
|
11783
|
+
}
|
|
11784
|
+
|
|
11785
|
+
@entity model dispositionReviewStage extends MsGraph.SharedModels.entity {
|
|
11786
|
+
name: string | null;
|
|
11787
|
+
reviewersEmailAddresses: string[] | null;
|
|
11788
|
+
@computed @key stageNumber: string;
|
|
11789
|
+
}
|
|
11790
|
+
|
|
11712
11791
|
@entity model ediscoveryAddToReviewSetOperation extends caseOperation {
|
|
11713
11792
|
additionalDataOptions: additionalDataOptions | null;
|
|
11714
11793
|
cloudAttachmentVersion: cloudAttachmentVersion | null;
|
|
@@ -11836,6 +11915,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11836
11915
|
@entity model ediscoveryTagOperation extends caseOperation {
|
|
11837
11916
|
}
|
|
11838
11917
|
|
|
11918
|
+
@entity model filePlanDescriptor extends reference.`microsoft.graph`.entity {
|
|
11919
|
+
authority: filePlanAuthority | null;
|
|
11920
|
+
category: filePlanAppliedCategory | null;
|
|
11921
|
+
citation: filePlanCitation | null;
|
|
11922
|
+
department: filePlanDepartment | null;
|
|
11923
|
+
filePlanReference: filePlanReference | null;
|
|
11924
|
+
@references authorityTemplate: authorityTemplate | null;
|
|
11925
|
+
@references categoryTemplate: categoryTemplate | null;
|
|
11926
|
+
@references citationTemplate: citationTemplate | null;
|
|
11927
|
+
@references departmentTemplate: departmentTemplate | null;
|
|
11928
|
+
@references filePlanReferenceTemplate: filePlanReferenceTemplate | null;
|
|
11929
|
+
}
|
|
11930
|
+
|
|
11931
|
+
@entity model filePlanDescriptorTemplate extends reference.`microsoft.graph`.entity {
|
|
11932
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
11933
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
11934
|
+
displayName: string | null;
|
|
11935
|
+
}
|
|
11936
|
+
|
|
11937
|
+
@entity model filePlanReferenceTemplate extends filePlanDescriptorTemplate {
|
|
11938
|
+
}
|
|
11939
|
+
|
|
11839
11940
|
@entity model incident extends reference.`microsoft.graph`.entity {
|
|
11840
11941
|
assignedTo: string | null;
|
|
11841
11942
|
classification: alertClassification | null;
|
|
@@ -11858,6 +11959,59 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11858
11959
|
@references alerts: alert[];
|
|
11859
11960
|
}
|
|
11860
11961
|
|
|
11962
|
+
@entity model labelsRoot extends reference.`microsoft.graph`.entity {
|
|
11963
|
+
@contains authorities: authorityTemplate[];
|
|
11964
|
+
@contains categories: categoryTemplate[];
|
|
11965
|
+
@contains citations: citationTemplate[];
|
|
11966
|
+
@contains departments: departmentTemplate[];
|
|
11967
|
+
@contains filePlanReferences: filePlanReferenceTemplate[];
|
|
11968
|
+
@contains retentionLabels: retentionLabel[];
|
|
11969
|
+
}
|
|
11970
|
+
|
|
11971
|
+
@entity model retentionEvent extends reference.`microsoft.graph`.entity {
|
|
11972
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
11973
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
11974
|
+
description: string | null;
|
|
11975
|
+
displayName: string | null;
|
|
11976
|
+
eventPropagationResults: eventPropagationResult[] | null;
|
|
11977
|
+
eventQueries: eventQuery[] | null;
|
|
11978
|
+
eventStatus: retentionEventStatus | null;
|
|
11979
|
+
eventTriggerDateTime: offsetDateTime | null;
|
|
11980
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
11981
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
11982
|
+
@computed lastStatusUpdateDateTime: offsetDateTime | null;
|
|
11983
|
+
@references retentionEventType: retentionEventType | null;
|
|
11984
|
+
}
|
|
11985
|
+
|
|
11986
|
+
@entity model retentionEventType extends reference.`microsoft.graph`.entity {
|
|
11987
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
11988
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
11989
|
+
description: string | null;
|
|
11990
|
+
displayName: string | null;
|
|
11991
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
11992
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
11993
|
+
}
|
|
11994
|
+
|
|
11995
|
+
@entity model retentionLabel extends reference.`microsoft.graph`.entity {
|
|
11996
|
+
actionAfterRetentionPeriod: actionAfterRetentionPeriod | null;
|
|
11997
|
+
behaviorDuringRetentionPeriod: behaviorDuringRetentionPeriod | null;
|
|
11998
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
11999
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
12000
|
+
defaultRecordBehavior: defaultRecordBehavior | null;
|
|
12001
|
+
descriptionForAdmins: string | null;
|
|
12002
|
+
descriptionForUsers: string | null;
|
|
12003
|
+
displayName: string | null;
|
|
12004
|
+
isInUse: boolean | null;
|
|
12005
|
+
labelToBeApplied: string | null;
|
|
12006
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
12007
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
12008
|
+
retentionDuration: retentionDuration | null;
|
|
12009
|
+
retentionTrigger: retentionTrigger | null;
|
|
12010
|
+
@contains descriptors: filePlanDescriptor | null;
|
|
12011
|
+
@contains dispositionReviewStages: dispositionReviewStage[];
|
|
12012
|
+
@references retentionEventType: retentionEventType | null;
|
|
12013
|
+
}
|
|
12014
|
+
|
|
11861
12015
|
@abstract
|
|
11862
12016
|
@entity model search extends reference.`microsoft.graph`.entity {
|
|
11863
12017
|
contentQuery: string | null;
|
|
@@ -11873,6 +12027,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11873
12027
|
@references site: reference.`microsoft.graph`.site;
|
|
11874
12028
|
}
|
|
11875
12029
|
|
|
12030
|
+
@entity model subcategoryTemplate extends filePlanDescriptorTemplate {
|
|
12031
|
+
}
|
|
12032
|
+
|
|
11876
12033
|
@abstract
|
|
11877
12034
|
@entity model tag extends reference.`microsoft.graph`.entity {
|
|
11878
12035
|
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
@@ -11881,6 +12038,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11881
12038
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
11882
12039
|
}
|
|
11883
12040
|
|
|
12041
|
+
@entity model triggersRoot extends reference.`microsoft.graph`.entity {
|
|
12042
|
+
@contains retentionEvents: retentionEvent[];
|
|
12043
|
+
}
|
|
12044
|
+
|
|
12045
|
+
@entity model triggerTypesRoot extends reference.`microsoft.graph`.entity {
|
|
12046
|
+
@contains retentionEventTypes: retentionEventType[];
|
|
12047
|
+
}
|
|
12048
|
+
|
|
11884
12049
|
@entity model unifiedGroupSource extends dataSource {
|
|
11885
12050
|
includedSources: sourceType | null;
|
|
11886
12051
|
@references group: reference.`microsoft.graph`.group;
|
|
@@ -11892,6 +12057,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11892
12057
|
siteWebUrl: string | null;
|
|
11893
12058
|
}
|
|
11894
12059
|
|
|
12060
|
+
enum actionAfterRetentionPeriod {
|
|
12061
|
+
none: 0,
|
|
12062
|
+
delete: 1,
|
|
12063
|
+
startDispositionReview: 2,
|
|
12064
|
+
relabel: 3,
|
|
12065
|
+
unknownFutureValue: 4,
|
|
12066
|
+
}
|
|
12067
|
+
|
|
11895
12068
|
@graphFlags
|
|
11896
12069
|
enum additionalDataOptions {
|
|
11897
12070
|
allVersions: 1,
|
|
@@ -12093,6 +12266,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
12093
12266
|
unknownFutureValue: 16,
|
|
12094
12267
|
}
|
|
12095
12268
|
|
|
12269
|
+
enum defaultRecordBehavior {
|
|
12270
|
+
startLocked: 0,
|
|
12271
|
+
startUnlocked: 1,
|
|
12272
|
+
unknownFutureValue: 2,
|
|
12273
|
+
}
|
|
12274
|
+
|
|
12096
12275
|
enum defenderAvStatus {
|
|
12097
12276
|
notReporting: 0,
|
|
12098
12277
|
disabled: 1,
|
|
@@ -12179,6 +12358,22 @@ namespace reference.`microsoft.graph.security` {
|
|
|
12179
12358
|
unknownFutureValue: 5,
|
|
12180
12359
|
}
|
|
12181
12360
|
|
|
12361
|
+
enum eventPropagationStatus {
|
|
12362
|
+
none: 0,
|
|
12363
|
+
inProcessing: 1,
|
|
12364
|
+
failed: 2,
|
|
12365
|
+
success: 3,
|
|
12366
|
+
unknownFutureValue: 4,
|
|
12367
|
+
}
|
|
12368
|
+
|
|
12369
|
+
enum eventStatusType {
|
|
12370
|
+
pending: 0,
|
|
12371
|
+
error: 1,
|
|
12372
|
+
success: 2,
|
|
12373
|
+
notAvaliable: 3,
|
|
12374
|
+
unknownFutureValue: 4,
|
|
12375
|
+
}
|
|
12376
|
+
|
|
12182
12377
|
enum evidenceRemediationStatus {
|
|
12183
12378
|
none: 0,
|
|
12184
12379
|
remediated: 1,
|
|
@@ -12358,6 +12553,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
12358
12553
|
permanentlyDelete: 2,
|
|
12359
12554
|
}
|
|
12360
12555
|
|
|
12556
|
+
enum queryType {
|
|
12557
|
+
files: 0,
|
|
12558
|
+
messages: 1,
|
|
12559
|
+
unknownFutureValue: 2,
|
|
12560
|
+
}
|
|
12561
|
+
|
|
12361
12562
|
@graphFlags
|
|
12362
12563
|
enum recipientType {
|
|
12363
12564
|
user: 1,
|
|
@@ -12365,6 +12566,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
12365
12566
|
unknownFutureValue: 4,
|
|
12366
12567
|
}
|
|
12367
12568
|
|
|
12569
|
+
enum retentionTrigger {
|
|
12570
|
+
dateLabeled: 0,
|
|
12571
|
+
dateCreated: 1,
|
|
12572
|
+
dateModified: 2,
|
|
12573
|
+
dateOfEvent: 3,
|
|
12574
|
+
unknownFutureValue: 4,
|
|
12575
|
+
}
|
|
12576
|
+
|
|
12368
12577
|
@graphFlags
|
|
12369
12578
|
enum reviewSetSettings {
|
|
12370
12579
|
none: 0,
|
|
@@ -12394,6 +12603,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
12394
12603
|
microsoftDefenderForCloud: 256,
|
|
12395
12604
|
microsoftSentinel: 512,
|
|
12396
12605
|
microsoftInsiderRiskManagement: 1024,
|
|
12606
|
+
microsoftSecurityForAI: 4096,
|
|
12397
12607
|
}
|
|
12398
12608
|
|
|
12399
12609
|
@graphFlags
|