@microsoft/typespec-msgraph-reference 1.0.10 → 1.0.11
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 +386 -10
- package/lib/Bleu/V1.0/main.tsp +2 -2
- package/lib/Delos/Beta/main.tsp +991 -9
- package/lib/Delos/V1.0/main.tsp +468 -1
- package/lib/Fairfax/Beta/main.tsp +137 -12
- package/lib/Fairfax/V1.0/main.tsp +83 -3
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/Mooncake/Beta/main.tsp +84 -10
- package/lib/Mooncake/V1.0/main.tsp +103 -3
- package/lib/Prod/Beta/main.tsp +1136 -386
- package/lib/Prod/V1.0/main.tsp +277 -2
- package/lib/USNat/Beta/main.tsp +48 -8
- package/lib/USNat/V1.0/main.tsp +81 -1
- package/lib/USSec/Beta/main.tsp +48 -8
- package/lib/USSec/V1.0/main.tsp +81 -1
- package/package.json +2 -2
package/lib/USNat/Beta/main.tsp
CHANGED
|
@@ -2019,12 +2019,7 @@ namespace reference.`microsoft.graph` {
|
|
|
2019
2019
|
itemMajorVersionLimit: int32 | null;
|
|
2020
2020
|
}
|
|
2021
2021
|
|
|
2022
|
-
@complex model fileStorageContainerTypeAgentSettings {
|
|
2023
|
-
chatEmbedAllowedHosts: string[];
|
|
2024
|
-
}
|
|
2025
|
-
|
|
2026
2022
|
@complex model fileStorageContainerTypeRegistrationSettings {
|
|
2027
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
2028
2023
|
isDiscoverabilityEnabled: boolean | null;
|
|
2029
2024
|
isItemVersioningEnabled: boolean | null;
|
|
2030
2025
|
isSearchEnabled: boolean | null;
|
|
@@ -2036,7 +2031,6 @@ namespace reference.`microsoft.graph` {
|
|
|
2036
2031
|
}
|
|
2037
2032
|
|
|
2038
2033
|
@complex model fileStorageContainerTypeSettings {
|
|
2039
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
2040
2034
|
consumingTenantOverridables: fileStorageContainerTypeSettingsOverride | null;
|
|
2041
2035
|
isDiscoverabilityEnabled: boolean | null;
|
|
2042
2036
|
isItemVersioningEnabled: boolean | null;
|
|
@@ -3091,6 +3085,7 @@ namespace reference.`microsoft.graph` {
|
|
|
3091
3085
|
isAccessibleViaZTNAClient: boolean | null;
|
|
3092
3086
|
isBackendCertificateValidationEnabled: boolean | null;
|
|
3093
3087
|
isContinuousAccessEvaluationEnabled: boolean | null;
|
|
3088
|
+
isDeviceAccessEnabled: boolean;
|
|
3094
3089
|
isDnsResolutionEnabled: boolean | null;
|
|
3095
3090
|
isHttpOnlyCookieEnabled: boolean | null;
|
|
3096
3091
|
isOnPremPublishingEnabled: boolean | null;
|
|
@@ -8939,7 +8934,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8939
8934
|
placeId: string | null;
|
|
8940
8935
|
}
|
|
8941
8936
|
|
|
8942
|
-
@entity model planner extends entity {
|
|
8937
|
+
@entity model planner extends MsGraph.SharedModels.entity {
|
|
8943
8938
|
@contains buckets: plannerBucket[];
|
|
8944
8939
|
|
|
8945
8940
|
@graphDeprecated("Tasks_And_Plans")
|
|
@@ -9546,6 +9541,9 @@ namespace reference.`microsoft.graph` {
|
|
|
9546
9541
|
riskState: riskState;
|
|
9547
9542
|
}
|
|
9548
9543
|
|
|
9544
|
+
@entity model riskyAgentDiscoveredAgentIdentity extends riskyAgent {
|
|
9545
|
+
}
|
|
9546
|
+
|
|
9549
9547
|
@entity model riskyAgentIdentity extends riskyAgent {
|
|
9550
9548
|
@references agentIdentity: agentIdentity | null;
|
|
9551
9549
|
}
|
|
@@ -10529,7 +10527,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10529
10527
|
@contains teamDefinition: team | null;
|
|
10530
10528
|
}
|
|
10531
10529
|
|
|
10532
|
-
@entity model teamwork extends entity {
|
|
10530
|
+
@entity model teamwork extends MsGraph.SharedModels.entity {
|
|
10533
10531
|
isTeamsEnabled: boolean;
|
|
10534
10532
|
region: string | null;
|
|
10535
10533
|
@contains deletedChats: deletedChat[];
|
|
@@ -11796,6 +11794,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11796
11794
|
unknownFutureValue: 2,
|
|
11797
11795
|
agentIdentityBlueprintPrincipal: 3,
|
|
11798
11796
|
user: 4,
|
|
11797
|
+
discoveredAgentIdentity: 5,
|
|
11799
11798
|
}
|
|
11800
11799
|
|
|
11801
11800
|
enum agentIdRiskLevel {
|
|
@@ -15176,6 +15175,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
15176
15175
|
targetSubject: workflowSubject | null;
|
|
15177
15176
|
}
|
|
15178
15177
|
|
|
15178
|
+
@complex model directoryObjectWorkflowSubject extends workflowSubject {
|
|
15179
|
+
@references directoryObject: reference.`microsoft.graph`.directoryObject;
|
|
15180
|
+
}
|
|
15181
|
+
|
|
15179
15182
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
15180
15183
|
@references groups: reference.`microsoft.graph`.group[];
|
|
15181
15184
|
}
|
|
@@ -15240,6 +15243,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
15240
15243
|
totalUsers: int32;
|
|
15241
15244
|
}
|
|
15242
15245
|
|
|
15246
|
+
@complex model subjectSummary {
|
|
15247
|
+
failedSubjects: int32;
|
|
15248
|
+
failedTasks: int32;
|
|
15249
|
+
successfulSubjects: int32;
|
|
15250
|
+
totalSubjects: int32;
|
|
15251
|
+
totalTasks: int32;
|
|
15252
|
+
}
|
|
15253
|
+
|
|
15243
15254
|
@complex model taskReportSummary {
|
|
15244
15255
|
failedTasks: int32;
|
|
15245
15256
|
successfulTasks: int32;
|
|
@@ -15400,6 +15411,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
15400
15411
|
scheduledDateTime: offsetDateTime;
|
|
15401
15412
|
startedDateTime: offsetDateTime | null;
|
|
15402
15413
|
subject: workflowSubject;
|
|
15414
|
+
subjectType: subjectType;
|
|
15403
15415
|
totalTasksCount: int32;
|
|
15404
15416
|
totalUnprocessedTasksCount: int32;
|
|
15405
15417
|
workflowExecutionType: workflowExecutionType;
|
|
@@ -15499,6 +15511,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
15499
15511
|
isEnabled: boolean;
|
|
15500
15512
|
isSchedulingEnabled: boolean;
|
|
15501
15513
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
15514
|
+
targetSubjectType: subjectType;
|
|
15502
15515
|
@references administrationScopeTargets: reference.`microsoft.graph`.directoryObject[];
|
|
15503
15516
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
15504
15517
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
@@ -15591,6 +15604,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
15591
15604
|
unknownFutureValue: 4,
|
|
15592
15605
|
}
|
|
15593
15606
|
|
|
15607
|
+
@graphFlags
|
|
15608
|
+
enum subjectType {
|
|
15609
|
+
user: 1,
|
|
15610
|
+
unknownFutureValue: 8,
|
|
15611
|
+
provisioningObject: 16,
|
|
15612
|
+
}
|
|
15613
|
+
|
|
15594
15614
|
enum valueType {
|
|
15595
15615
|
`enum`: 0,
|
|
15596
15616
|
`string`: 1,
|
|
@@ -15762,6 +15782,19 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15762
15782
|
registry: string | null;
|
|
15763
15783
|
}
|
|
15764
15784
|
|
|
15785
|
+
@complex model createAlertInput {
|
|
15786
|
+
category: string;
|
|
15787
|
+
description: string;
|
|
15788
|
+
entityDefinitions: entityDefinition[];
|
|
15789
|
+
isExcludedFromCorrelation: boolean;
|
|
15790
|
+
linkToIncident: int64 | null;
|
|
15791
|
+
mitreTechniques: string[];
|
|
15792
|
+
recommendedActions: string | null;
|
|
15793
|
+
sentinelWorkspace: string | null;
|
|
15794
|
+
severity: alertSeverity;
|
|
15795
|
+
title: string;
|
|
15796
|
+
}
|
|
15797
|
+
|
|
15765
15798
|
@complex model detectionAction {
|
|
15766
15799
|
alertTemplate: alertTemplate;
|
|
15767
15800
|
organizationalScope: organizationalScope | null;
|
|
@@ -15818,6 +15851,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15818
15851
|
emailAddress: string | null;
|
|
15819
15852
|
}
|
|
15820
15853
|
|
|
15854
|
+
@complex model entityDefinition {
|
|
15855
|
+
entityIdentifier: string;
|
|
15856
|
+
entityType: manualAlertEntityType;
|
|
15857
|
+
identifierValue: string;
|
|
15858
|
+
role: entityDefinitionInputRole;
|
|
15859
|
+
}
|
|
15860
|
+
|
|
15821
15861
|
@complex model eventPropagationResult {
|
|
15822
15862
|
location: string | null;
|
|
15823
15863
|
serviceName: string | null;
|
package/lib/USNat/V1.0/main.tsp
CHANGED
|
@@ -7490,7 +7490,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7490
7490
|
@entity model teamsTemplate extends entity {
|
|
7491
7491
|
}
|
|
7492
7492
|
|
|
7493
|
-
@entity model teamwork extends entity {
|
|
7493
|
+
@entity model teamwork extends MsGraph.SharedModels.entity {
|
|
7494
7494
|
isTeamsEnabled: boolean;
|
|
7495
7495
|
region: string | null;
|
|
7496
7496
|
@contains deletedChats: deletedChat[];
|
|
@@ -10933,6 +10933,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10933
10933
|
triggerAttributes: triggerAttribute[];
|
|
10934
10934
|
}
|
|
10935
10935
|
|
|
10936
|
+
@complex model attributeSetEntry {
|
|
10937
|
+
name: string;
|
|
10938
|
+
value: string | null;
|
|
10939
|
+
}
|
|
10940
|
+
|
|
10941
|
+
@complex model awaitedWorkflowProcessingResult {
|
|
10942
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
10943
|
+
statusReasons: string[];
|
|
10944
|
+
subject: workflowSubject | null;
|
|
10945
|
+
}
|
|
10946
|
+
|
|
10936
10947
|
@complex model countBasedQuarantineCondition extends quarantineCondition {
|
|
10937
10948
|
threshold: int64;
|
|
10938
10949
|
}
|
|
@@ -10946,12 +10957,23 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10946
10957
|
}
|
|
10947
10958
|
|
|
10948
10959
|
@complex model customTaskExtensionCalloutData extends reference.`microsoft.graph`.customExtensionData {
|
|
10960
|
+
targetSubject: workflowSubject | null;
|
|
10949
10961
|
@references subject: reference.`microsoft.graph`.user | null;
|
|
10950
10962
|
@references task: task | null;
|
|
10951
10963
|
@references taskProcessingresult: taskProcessingResult | null;
|
|
10952
10964
|
@references workflow: workflow | null;
|
|
10953
10965
|
}
|
|
10954
10966
|
|
|
10967
|
+
@complex model customTaskExtensionResponseData extends reference.`microsoft.graph`.customExtensionData {
|
|
10968
|
+
operationStatus: customTaskExtensionOperationStatus;
|
|
10969
|
+
statusReasons: string[];
|
|
10970
|
+
targetSubject: workflowSubject | null;
|
|
10971
|
+
}
|
|
10972
|
+
|
|
10973
|
+
@complex model directoryObjectWorkflowSubject extends workflowSubject {
|
|
10974
|
+
@references directoryObject: reference.`microsoft.graph`.directoryObject;
|
|
10975
|
+
}
|
|
10976
|
+
|
|
10955
10977
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
10956
10978
|
@references groups: reference.`microsoft.graph`.group[];
|
|
10957
10979
|
}
|
|
@@ -10980,6 +11002,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10980
11002
|
taskId: string;
|
|
10981
11003
|
}
|
|
10982
11004
|
|
|
11005
|
+
@complex model provisioningAttributeMapping extends workflowExecutionConditions {
|
|
11006
|
+
}
|
|
11007
|
+
|
|
11008
|
+
@complex model provisioningObjectWorkflowSubject extends workflowSubject {
|
|
11009
|
+
attributeSetEntries: attributeSetEntry[];
|
|
11010
|
+
id: string;
|
|
11011
|
+
}
|
|
11012
|
+
|
|
10983
11013
|
@abstract
|
|
10984
11014
|
@complex model quarantineCondition {
|
|
10985
11015
|
}
|
|
@@ -11008,6 +11038,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11008
11038
|
totalUsers: int32;
|
|
11009
11039
|
}
|
|
11010
11040
|
|
|
11041
|
+
@complex model subjectSummary {
|
|
11042
|
+
failedSubjects: int32;
|
|
11043
|
+
failedTasks: int32;
|
|
11044
|
+
successfulSubjects: int32;
|
|
11045
|
+
totalSubjects: int32;
|
|
11046
|
+
totalTasks: int32;
|
|
11047
|
+
}
|
|
11048
|
+
|
|
11011
11049
|
@complex model taskReportSummary {
|
|
11012
11050
|
failedTasks: int32;
|
|
11013
11051
|
successfulTasks: int32;
|
|
@@ -11109,10 +11147,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11109
11147
|
totalUsers: int32;
|
|
11110
11148
|
}
|
|
11111
11149
|
|
|
11150
|
+
@abstract
|
|
11151
|
+
@complex model workflowSubject {
|
|
11152
|
+
}
|
|
11153
|
+
|
|
11112
11154
|
@entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
|
|
11113
11155
|
callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
|
|
11114
11156
|
@computed createdDateTime: offsetDateTime | null;
|
|
11115
11157
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
11158
|
+
replyMode: customTaskExtensionReplyMode;
|
|
11116
11159
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
11117
11160
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
11118
11161
|
}
|
|
@@ -11151,10 +11194,27 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11151
11194
|
totalUsersCount: int32;
|
|
11152
11195
|
workflowExecutionType: workflowExecutionType;
|
|
11153
11196
|
@references reprocessedRuns: run[];
|
|
11197
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
11154
11198
|
@contains taskProcessingResults: taskProcessingResult[];
|
|
11155
11199
|
@contains userProcessingResults: userProcessingResult[];
|
|
11156
11200
|
}
|
|
11157
11201
|
|
|
11202
|
+
@entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
|
|
11203
|
+
completedDateTime: offsetDateTime | null;
|
|
11204
|
+
failedTasksCount: int32;
|
|
11205
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
11206
|
+
scheduledDateTime: offsetDateTime;
|
|
11207
|
+
startedDateTime: offsetDateTime | null;
|
|
11208
|
+
subject: workflowSubject;
|
|
11209
|
+
subjectType: subjectType;
|
|
11210
|
+
totalTasksCount: int32;
|
|
11211
|
+
totalUnprocessedTasksCount: int32;
|
|
11212
|
+
workflowExecutionType: workflowExecutionType;
|
|
11213
|
+
workflowVersion: int32;
|
|
11214
|
+
@references reprocessedRuns: run[];
|
|
11215
|
+
@contains taskProcessingResults: taskProcessingResult[];
|
|
11216
|
+
}
|
|
11217
|
+
|
|
11158
11218
|
@entity model task extends reference.`microsoft.graph`.entity {
|
|
11159
11219
|
arguments: reference.`microsoft.graph`.keyValuePair[];
|
|
11160
11220
|
category: lifecycleTaskCategory;
|
|
@@ -11183,6 +11243,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11183
11243
|
processingInfo: string | null;
|
|
11184
11244
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
11185
11245
|
startedDateTime: offsetDateTime | null;
|
|
11246
|
+
workflowSubject: workflowSubject | null;
|
|
11186
11247
|
@references subject: reference.`microsoft.graph`.user;
|
|
11187
11248
|
@references task: task;
|
|
11188
11249
|
}
|
|
@@ -11227,6 +11288,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11227
11288
|
@references executionScope: userProcessingResult[];
|
|
11228
11289
|
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
11229
11290
|
@contains runs: run[];
|
|
11291
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
11230
11292
|
@contains taskReports: taskReport[];
|
|
11231
11293
|
@contains userProcessingResults: userProcessingResult[];
|
|
11232
11294
|
@contains versions: workflowVersion[];
|
|
@@ -11242,6 +11304,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11242
11304
|
isEnabled: boolean;
|
|
11243
11305
|
isSchedulingEnabled: boolean;
|
|
11244
11306
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
11307
|
+
targetSubjectType: subjectType;
|
|
11245
11308
|
@references administrationScopeTargets: reference.`microsoft.graph`.directoryObject[];
|
|
11246
11309
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
11247
11310
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
@@ -11279,12 +11342,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11279
11342
|
unknownFutureValue: 2,
|
|
11280
11343
|
}
|
|
11281
11344
|
|
|
11345
|
+
enum customTaskExtensionReplyMode {
|
|
11346
|
+
none: 0,
|
|
11347
|
+
callback: 1,
|
|
11348
|
+
response: 2,
|
|
11349
|
+
unknownFutureValue: 3,
|
|
11350
|
+
}
|
|
11351
|
+
|
|
11282
11352
|
@graphFlags
|
|
11283
11353
|
enum lifecycleTaskCategory {
|
|
11284
11354
|
joiner: 1,
|
|
11285
11355
|
leaver: 2,
|
|
11286
11356
|
unknownFutureValue: 4,
|
|
11287
11357
|
mover: 8,
|
|
11358
|
+
extensibility: 16,
|
|
11288
11359
|
}
|
|
11289
11360
|
|
|
11290
11361
|
enum lifecycleWorkflowCategory {
|
|
@@ -11292,6 +11363,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11292
11363
|
leaver: 1,
|
|
11293
11364
|
unknownFutureValue: 2,
|
|
11294
11365
|
mover: 3,
|
|
11366
|
+
extensibility: 4,
|
|
11295
11367
|
}
|
|
11296
11368
|
|
|
11297
11369
|
enum lifecycleWorkflowProcessingStatus {
|
|
@@ -11325,6 +11397,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11325
11397
|
unknownFutureValue: 4,
|
|
11326
11398
|
}
|
|
11327
11399
|
|
|
11400
|
+
@graphFlags
|
|
11401
|
+
enum subjectType {
|
|
11402
|
+
user: 1,
|
|
11403
|
+
unknownFutureValue: 8,
|
|
11404
|
+
provisioningObject: 16,
|
|
11405
|
+
}
|
|
11406
|
+
|
|
11328
11407
|
enum valueType {
|
|
11329
11408
|
`enum`: 0,
|
|
11330
11409
|
`string`: 1,
|
|
@@ -11339,6 +11418,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11339
11418
|
unknownFutureValue: 2,
|
|
11340
11419
|
activatedWithScope: 3,
|
|
11341
11420
|
preview: 4,
|
|
11421
|
+
extensibilityOnDemand: 5,
|
|
11342
11422
|
}
|
|
11343
11423
|
|
|
11344
11424
|
enum workflowTriggerTimeBasedAttribute {
|
package/lib/USSec/Beta/main.tsp
CHANGED
|
@@ -2062,12 +2062,7 @@ namespace reference.`microsoft.graph` {
|
|
|
2062
2062
|
itemMajorVersionLimit: int32 | null;
|
|
2063
2063
|
}
|
|
2064
2064
|
|
|
2065
|
-
@complex model fileStorageContainerTypeAgentSettings {
|
|
2066
|
-
chatEmbedAllowedHosts: string[];
|
|
2067
|
-
}
|
|
2068
|
-
|
|
2069
2065
|
@complex model fileStorageContainerTypeRegistrationSettings {
|
|
2070
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
2071
2066
|
isDiscoverabilityEnabled: boolean | null;
|
|
2072
2067
|
isItemVersioningEnabled: boolean | null;
|
|
2073
2068
|
isSearchEnabled: boolean | null;
|
|
@@ -2079,7 +2074,6 @@ namespace reference.`microsoft.graph` {
|
|
|
2079
2074
|
}
|
|
2080
2075
|
|
|
2081
2076
|
@complex model fileStorageContainerTypeSettings {
|
|
2082
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
2083
2077
|
consumingTenantOverridables: fileStorageContainerTypeSettingsOverride | null;
|
|
2084
2078
|
isDiscoverabilityEnabled: boolean | null;
|
|
2085
2079
|
isItemVersioningEnabled: boolean | null;
|
|
@@ -3160,6 +3154,7 @@ namespace reference.`microsoft.graph` {
|
|
|
3160
3154
|
isAccessibleViaZTNAClient: boolean | null;
|
|
3161
3155
|
isBackendCertificateValidationEnabled: boolean | null;
|
|
3162
3156
|
isContinuousAccessEvaluationEnabled: boolean | null;
|
|
3157
|
+
isDeviceAccessEnabled: boolean;
|
|
3163
3158
|
isDnsResolutionEnabled: boolean | null;
|
|
3164
3159
|
isHttpOnlyCookieEnabled: boolean | null;
|
|
3165
3160
|
isOnPremPublishingEnabled: boolean | null;
|
|
@@ -9175,7 +9170,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9175
9170
|
placeId: string | null;
|
|
9176
9171
|
}
|
|
9177
9172
|
|
|
9178
|
-
@entity model planner extends entity {
|
|
9173
|
+
@entity model planner extends MsGraph.SharedModels.entity {
|
|
9179
9174
|
@contains buckets: plannerBucket[];
|
|
9180
9175
|
|
|
9181
9176
|
@graphDeprecated("Tasks_And_Plans")
|
|
@@ -9782,6 +9777,9 @@ namespace reference.`microsoft.graph` {
|
|
|
9782
9777
|
riskState: riskState;
|
|
9783
9778
|
}
|
|
9784
9779
|
|
|
9780
|
+
@entity model riskyAgentDiscoveredAgentIdentity extends riskyAgent {
|
|
9781
|
+
}
|
|
9782
|
+
|
|
9785
9783
|
@entity model riskyAgentIdentity extends riskyAgent {
|
|
9786
9784
|
@references agentIdentity: agentIdentity | null;
|
|
9787
9785
|
}
|
|
@@ -10767,7 +10765,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10767
10765
|
@contains teamDefinition: team | null;
|
|
10768
10766
|
}
|
|
10769
10767
|
|
|
10770
|
-
@entity model teamwork extends entity {
|
|
10768
|
+
@entity model teamwork extends MsGraph.SharedModels.entity {
|
|
10771
10769
|
isTeamsEnabled: boolean;
|
|
10772
10770
|
region: string | null;
|
|
10773
10771
|
@contains deletedChats: deletedChat[];
|
|
@@ -12044,6 +12042,7 @@ namespace reference.`microsoft.graph` {
|
|
|
12044
12042
|
unknownFutureValue: 2,
|
|
12045
12043
|
agentIdentityBlueprintPrincipal: 3,
|
|
12046
12044
|
user: 4,
|
|
12045
|
+
discoveredAgentIdentity: 5,
|
|
12047
12046
|
}
|
|
12048
12047
|
|
|
12049
12048
|
enum agentIdRiskLevel {
|
|
@@ -15598,6 +15597,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
15598
15597
|
targetSubject: workflowSubject | null;
|
|
15599
15598
|
}
|
|
15600
15599
|
|
|
15600
|
+
@complex model directoryObjectWorkflowSubject extends workflowSubject {
|
|
15601
|
+
@references directoryObject: reference.`microsoft.graph`.directoryObject;
|
|
15602
|
+
}
|
|
15603
|
+
|
|
15601
15604
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
15602
15605
|
@references groups: reference.`microsoft.graph`.group[];
|
|
15603
15606
|
}
|
|
@@ -15662,6 +15665,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
15662
15665
|
totalUsers: int32;
|
|
15663
15666
|
}
|
|
15664
15667
|
|
|
15668
|
+
@complex model subjectSummary {
|
|
15669
|
+
failedSubjects: int32;
|
|
15670
|
+
failedTasks: int32;
|
|
15671
|
+
successfulSubjects: int32;
|
|
15672
|
+
totalSubjects: int32;
|
|
15673
|
+
totalTasks: int32;
|
|
15674
|
+
}
|
|
15675
|
+
|
|
15665
15676
|
@complex model taskReportSummary {
|
|
15666
15677
|
failedTasks: int32;
|
|
15667
15678
|
successfulTasks: int32;
|
|
@@ -15822,6 +15833,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
15822
15833
|
scheduledDateTime: offsetDateTime;
|
|
15823
15834
|
startedDateTime: offsetDateTime | null;
|
|
15824
15835
|
subject: workflowSubject;
|
|
15836
|
+
subjectType: subjectType;
|
|
15825
15837
|
totalTasksCount: int32;
|
|
15826
15838
|
totalUnprocessedTasksCount: int32;
|
|
15827
15839
|
workflowExecutionType: workflowExecutionType;
|
|
@@ -15921,6 +15933,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
15921
15933
|
isEnabled: boolean;
|
|
15922
15934
|
isSchedulingEnabled: boolean;
|
|
15923
15935
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
15936
|
+
targetSubjectType: subjectType;
|
|
15924
15937
|
@references administrationScopeTargets: reference.`microsoft.graph`.directoryObject[];
|
|
15925
15938
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
15926
15939
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
@@ -16013,6 +16026,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
16013
16026
|
unknownFutureValue: 4,
|
|
16014
16027
|
}
|
|
16015
16028
|
|
|
16029
|
+
@graphFlags
|
|
16030
|
+
enum subjectType {
|
|
16031
|
+
user: 1,
|
|
16032
|
+
unknownFutureValue: 8,
|
|
16033
|
+
provisioningObject: 16,
|
|
16034
|
+
}
|
|
16035
|
+
|
|
16016
16036
|
enum valueType {
|
|
16017
16037
|
`enum`: 0,
|
|
16018
16038
|
`string`: 1,
|
|
@@ -16184,6 +16204,19 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16184
16204
|
registry: string | null;
|
|
16185
16205
|
}
|
|
16186
16206
|
|
|
16207
|
+
@complex model createAlertInput {
|
|
16208
|
+
category: string;
|
|
16209
|
+
description: string;
|
|
16210
|
+
entityDefinitions: entityDefinition[];
|
|
16211
|
+
isExcludedFromCorrelation: boolean;
|
|
16212
|
+
linkToIncident: int64 | null;
|
|
16213
|
+
mitreTechniques: string[];
|
|
16214
|
+
recommendedActions: string | null;
|
|
16215
|
+
sentinelWorkspace: string | null;
|
|
16216
|
+
severity: alertSeverity;
|
|
16217
|
+
title: string;
|
|
16218
|
+
}
|
|
16219
|
+
|
|
16187
16220
|
@complex model detectionAction {
|
|
16188
16221
|
alertTemplate: alertTemplate;
|
|
16189
16222
|
organizationalScope: organizationalScope | null;
|
|
@@ -16240,6 +16273,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16240
16273
|
emailAddress: string | null;
|
|
16241
16274
|
}
|
|
16242
16275
|
|
|
16276
|
+
@complex model entityDefinition {
|
|
16277
|
+
entityIdentifier: string;
|
|
16278
|
+
entityType: manualAlertEntityType;
|
|
16279
|
+
identifierValue: string;
|
|
16280
|
+
role: entityDefinitionInputRole;
|
|
16281
|
+
}
|
|
16282
|
+
|
|
16243
16283
|
@complex model eventPropagationResult {
|
|
16244
16284
|
location: string | null;
|
|
16245
16285
|
serviceName: string | null;
|
package/lib/USSec/V1.0/main.tsp
CHANGED
|
@@ -7290,7 +7290,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7290
7290
|
@entity model teamsTemplate extends entity {
|
|
7291
7291
|
}
|
|
7292
7292
|
|
|
7293
|
-
@entity model teamwork extends entity {
|
|
7293
|
+
@entity model teamwork extends MsGraph.SharedModels.entity {
|
|
7294
7294
|
isTeamsEnabled: boolean;
|
|
7295
7295
|
region: string | null;
|
|
7296
7296
|
@contains deletedChats: deletedChat[];
|
|
@@ -10720,6 +10720,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10720
10720
|
triggerAttributes: triggerAttribute[];
|
|
10721
10721
|
}
|
|
10722
10722
|
|
|
10723
|
+
@complex model attributeSetEntry {
|
|
10724
|
+
name: string;
|
|
10725
|
+
value: string | null;
|
|
10726
|
+
}
|
|
10727
|
+
|
|
10728
|
+
@complex model awaitedWorkflowProcessingResult {
|
|
10729
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
10730
|
+
statusReasons: string[];
|
|
10731
|
+
subject: workflowSubject | null;
|
|
10732
|
+
}
|
|
10733
|
+
|
|
10723
10734
|
@complex model countBasedQuarantineCondition extends quarantineCondition {
|
|
10724
10735
|
threshold: int64;
|
|
10725
10736
|
}
|
|
@@ -10733,12 +10744,23 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10733
10744
|
}
|
|
10734
10745
|
|
|
10735
10746
|
@complex model customTaskExtensionCalloutData extends reference.`microsoft.graph`.customExtensionData {
|
|
10747
|
+
targetSubject: workflowSubject | null;
|
|
10736
10748
|
@references subject: reference.`microsoft.graph`.user | null;
|
|
10737
10749
|
@references task: task | null;
|
|
10738
10750
|
@references taskProcessingresult: taskProcessingResult | null;
|
|
10739
10751
|
@references workflow: workflow | null;
|
|
10740
10752
|
}
|
|
10741
10753
|
|
|
10754
|
+
@complex model customTaskExtensionResponseData extends reference.`microsoft.graph`.customExtensionData {
|
|
10755
|
+
operationStatus: customTaskExtensionOperationStatus;
|
|
10756
|
+
statusReasons: string[];
|
|
10757
|
+
targetSubject: workflowSubject | null;
|
|
10758
|
+
}
|
|
10759
|
+
|
|
10760
|
+
@complex model directoryObjectWorkflowSubject extends workflowSubject {
|
|
10761
|
+
@references directoryObject: reference.`microsoft.graph`.directoryObject;
|
|
10762
|
+
}
|
|
10763
|
+
|
|
10742
10764
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
10743
10765
|
@references groups: reference.`microsoft.graph`.group[];
|
|
10744
10766
|
}
|
|
@@ -10767,6 +10789,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10767
10789
|
taskId: string;
|
|
10768
10790
|
}
|
|
10769
10791
|
|
|
10792
|
+
@complex model provisioningAttributeMapping extends workflowExecutionConditions {
|
|
10793
|
+
}
|
|
10794
|
+
|
|
10795
|
+
@complex model provisioningObjectWorkflowSubject extends workflowSubject {
|
|
10796
|
+
attributeSetEntries: attributeSetEntry[];
|
|
10797
|
+
id: string;
|
|
10798
|
+
}
|
|
10799
|
+
|
|
10770
10800
|
@abstract
|
|
10771
10801
|
@complex model quarantineCondition {
|
|
10772
10802
|
}
|
|
@@ -10795,6 +10825,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10795
10825
|
totalUsers: int32;
|
|
10796
10826
|
}
|
|
10797
10827
|
|
|
10828
|
+
@complex model subjectSummary {
|
|
10829
|
+
failedSubjects: int32;
|
|
10830
|
+
failedTasks: int32;
|
|
10831
|
+
successfulSubjects: int32;
|
|
10832
|
+
totalSubjects: int32;
|
|
10833
|
+
totalTasks: int32;
|
|
10834
|
+
}
|
|
10835
|
+
|
|
10798
10836
|
@complex model taskReportSummary {
|
|
10799
10837
|
failedTasks: int32;
|
|
10800
10838
|
successfulTasks: int32;
|
|
@@ -10896,10 +10934,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10896
10934
|
totalUsers: int32;
|
|
10897
10935
|
}
|
|
10898
10936
|
|
|
10937
|
+
@abstract
|
|
10938
|
+
@complex model workflowSubject {
|
|
10939
|
+
}
|
|
10940
|
+
|
|
10899
10941
|
@entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
|
|
10900
10942
|
callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
|
|
10901
10943
|
@computed createdDateTime: offsetDateTime | null;
|
|
10902
10944
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
10945
|
+
replyMode: customTaskExtensionReplyMode;
|
|
10903
10946
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
10904
10947
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
10905
10948
|
}
|
|
@@ -10938,10 +10981,27 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10938
10981
|
totalUsersCount: int32;
|
|
10939
10982
|
workflowExecutionType: workflowExecutionType;
|
|
10940
10983
|
@references reprocessedRuns: run[];
|
|
10984
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
10941
10985
|
@contains taskProcessingResults: taskProcessingResult[];
|
|
10942
10986
|
@contains userProcessingResults: userProcessingResult[];
|
|
10943
10987
|
}
|
|
10944
10988
|
|
|
10989
|
+
@entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
|
|
10990
|
+
completedDateTime: offsetDateTime | null;
|
|
10991
|
+
failedTasksCount: int32;
|
|
10992
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
10993
|
+
scheduledDateTime: offsetDateTime;
|
|
10994
|
+
startedDateTime: offsetDateTime | null;
|
|
10995
|
+
subject: workflowSubject;
|
|
10996
|
+
subjectType: subjectType;
|
|
10997
|
+
totalTasksCount: int32;
|
|
10998
|
+
totalUnprocessedTasksCount: int32;
|
|
10999
|
+
workflowExecutionType: workflowExecutionType;
|
|
11000
|
+
workflowVersion: int32;
|
|
11001
|
+
@references reprocessedRuns: run[];
|
|
11002
|
+
@contains taskProcessingResults: taskProcessingResult[];
|
|
11003
|
+
}
|
|
11004
|
+
|
|
10945
11005
|
@entity model task extends reference.`microsoft.graph`.entity {
|
|
10946
11006
|
arguments: reference.`microsoft.graph`.keyValuePair[];
|
|
10947
11007
|
category: lifecycleTaskCategory;
|
|
@@ -10970,6 +11030,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10970
11030
|
processingInfo: string | null;
|
|
10971
11031
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
10972
11032
|
startedDateTime: offsetDateTime | null;
|
|
11033
|
+
workflowSubject: workflowSubject | null;
|
|
10973
11034
|
@references subject: reference.`microsoft.graph`.user;
|
|
10974
11035
|
@references task: task;
|
|
10975
11036
|
}
|
|
@@ -11014,6 +11075,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11014
11075
|
@references executionScope: userProcessingResult[];
|
|
11015
11076
|
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
11016
11077
|
@contains runs: run[];
|
|
11078
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
11017
11079
|
@contains taskReports: taskReport[];
|
|
11018
11080
|
@contains userProcessingResults: userProcessingResult[];
|
|
11019
11081
|
@contains versions: workflowVersion[];
|
|
@@ -11029,6 +11091,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11029
11091
|
isEnabled: boolean;
|
|
11030
11092
|
isSchedulingEnabled: boolean;
|
|
11031
11093
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
11094
|
+
targetSubjectType: subjectType;
|
|
11032
11095
|
@references administrationScopeTargets: reference.`microsoft.graph`.directoryObject[];
|
|
11033
11096
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
11034
11097
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
@@ -11066,12 +11129,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11066
11129
|
unknownFutureValue: 2,
|
|
11067
11130
|
}
|
|
11068
11131
|
|
|
11132
|
+
enum customTaskExtensionReplyMode {
|
|
11133
|
+
none: 0,
|
|
11134
|
+
callback: 1,
|
|
11135
|
+
response: 2,
|
|
11136
|
+
unknownFutureValue: 3,
|
|
11137
|
+
}
|
|
11138
|
+
|
|
11069
11139
|
@graphFlags
|
|
11070
11140
|
enum lifecycleTaskCategory {
|
|
11071
11141
|
joiner: 1,
|
|
11072
11142
|
leaver: 2,
|
|
11073
11143
|
unknownFutureValue: 4,
|
|
11074
11144
|
mover: 8,
|
|
11145
|
+
extensibility: 16,
|
|
11075
11146
|
}
|
|
11076
11147
|
|
|
11077
11148
|
enum lifecycleWorkflowCategory {
|
|
@@ -11079,6 +11150,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11079
11150
|
leaver: 1,
|
|
11080
11151
|
unknownFutureValue: 2,
|
|
11081
11152
|
mover: 3,
|
|
11153
|
+
extensibility: 4,
|
|
11082
11154
|
}
|
|
11083
11155
|
|
|
11084
11156
|
enum lifecycleWorkflowProcessingStatus {
|
|
@@ -11112,6 +11184,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11112
11184
|
unknownFutureValue: 4,
|
|
11113
11185
|
}
|
|
11114
11186
|
|
|
11187
|
+
@graphFlags
|
|
11188
|
+
enum subjectType {
|
|
11189
|
+
user: 1,
|
|
11190
|
+
unknownFutureValue: 8,
|
|
11191
|
+
provisioningObject: 16,
|
|
11192
|
+
}
|
|
11193
|
+
|
|
11115
11194
|
enum valueType {
|
|
11116
11195
|
`enum`: 0,
|
|
11117
11196
|
`string`: 1,
|
|
@@ -11126,6 +11205,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11126
11205
|
unknownFutureValue: 2,
|
|
11127
11206
|
activatedWithScope: 3,
|
|
11128
11207
|
preview: 4,
|
|
11208
|
+
extensibilityOnDemand: 5,
|
|
11129
11209
|
}
|
|
11130
11210
|
|
|
11131
11211
|
enum workflowTriggerTimeBasedAttribute {
|