@microsoft/typespec-msgraph-reference 1.0.4 → 1.0.6
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 +18 -18
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +310 -7
- package/lib/Bleu/V1.0/main.tsp +430 -1
- package/lib/Delos/Beta/main.tsp +4284 -23
- package/lib/Delos/V1.0/main.tsp +2815 -22
- package/lib/Fairfax/Beta/main.tsp +627 -23
- package/lib/Fairfax/V1.0/main.tsp +61 -1
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/GovSG/V1.0/main.tsp +3 -1
- package/lib/Mooncake/Beta/main.tsp +269 -7
- package/lib/Mooncake/V1.0/main.tsp +60 -1
- package/lib/Prod/Beta/main.tsp +1695 -75
- package/lib/Prod/V1.0/main.tsp +4171 -167
- package/lib/USNat/Beta/main.tsp +576 -0
- package/lib/USNat/V1.0/main.tsp +465 -1
- package/lib/USSec/Beta/main.tsp +576 -0
- package/lib/USSec/V1.0/main.tsp +465 -1
- package/package.json +2 -2
|
@@ -4162,6 +4162,7 @@ namespace reference.`microsoft.graph` {
|
|
|
4162
4162
|
}
|
|
4163
4163
|
|
|
4164
4164
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
4165
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
4165
4166
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
4166
4167
|
blockSoftMatchEnabled: boolean | null;
|
|
4167
4168
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -11576,7 +11577,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11576
11577
|
description: string | null;
|
|
11577
11578
|
issuer: string;
|
|
11578
11579
|
name: string;
|
|
11579
|
-
subject: string;
|
|
11580
|
+
subject: string | null;
|
|
11580
11581
|
}
|
|
11581
11582
|
|
|
11582
11583
|
@entity model fido2AuthenticationMethod extends authenticationMethod {
|
|
@@ -11707,6 +11708,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11707
11708
|
membershipRule: string | null;
|
|
11708
11709
|
membershipRuleProcessingState: string | null;
|
|
11709
11710
|
onPremisesDomainName: string | null;
|
|
11711
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
11710
11712
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
11711
11713
|
onPremisesNetBiosName: string | null;
|
|
11712
11714
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -15398,6 +15400,7 @@ namespace reference.`microsoft.graph` {
|
|
|
15398
15400
|
@entity model profileCardProperty extends entity {
|
|
15399
15401
|
annotations: profileCardAnnotation[] | null;
|
|
15400
15402
|
directoryPropertyName: string | null;
|
|
15403
|
+
isVisible: boolean;
|
|
15401
15404
|
}
|
|
15402
15405
|
|
|
15403
15406
|
@entity model profilePhoto extends entity {
|
|
@@ -30297,6 +30300,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30297
30300
|
triggerAttributes: triggerAttribute[];
|
|
30298
30301
|
}
|
|
30299
30302
|
|
|
30303
|
+
@complex model countBasedQuarantineCondition extends quarantineCondition {
|
|
30304
|
+
threshold: int64;
|
|
30305
|
+
}
|
|
30306
|
+
|
|
30300
30307
|
@complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
|
|
30301
30308
|
@references authorizedApps: reference.`microsoft.graph`.application[];
|
|
30302
30309
|
}
|
|
@@ -30329,6 +30336,32 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30329
30336
|
valueType: valueType;
|
|
30330
30337
|
}
|
|
30331
30338
|
|
|
30339
|
+
@complex model percentageBasedQuarantineCondition extends quarantineCondition {
|
|
30340
|
+
percentage: int32;
|
|
30341
|
+
}
|
|
30342
|
+
|
|
30343
|
+
@complex model previewFailedTask {
|
|
30344
|
+
definitionId: string;
|
|
30345
|
+
failureReason: string;
|
|
30346
|
+
name: string;
|
|
30347
|
+
taskId: string;
|
|
30348
|
+
}
|
|
30349
|
+
|
|
30350
|
+
@abstract
|
|
30351
|
+
@complex model quarantineCondition {
|
|
30352
|
+
}
|
|
30353
|
+
|
|
30354
|
+
@complex model quarantineConfiguration {
|
|
30355
|
+
conditions: quarantineCondition[];
|
|
30356
|
+
matchMode: matchMode;
|
|
30357
|
+
}
|
|
30358
|
+
|
|
30359
|
+
@complex model quarantineDetails {
|
|
30360
|
+
quarantinedDateTime: offsetDateTime | null;
|
|
30361
|
+
quarantineReason: string | null;
|
|
30362
|
+
quarantineType: quarantineType;
|
|
30363
|
+
}
|
|
30364
|
+
|
|
30332
30365
|
@complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
30333
30366
|
rule: string;
|
|
30334
30367
|
}
|
|
@@ -30415,6 +30448,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30415
30448
|
@complex model workflowExecutionTrigger {
|
|
30416
30449
|
}
|
|
30417
30450
|
|
|
30451
|
+
@complex model workflowSetting {
|
|
30452
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
30453
|
+
}
|
|
30454
|
+
|
|
30418
30455
|
@complex model workflowsInsightsByCategory {
|
|
30419
30456
|
failedJoinerRuns: int32;
|
|
30420
30457
|
failedLeaverRuns: int32;
|
|
@@ -30452,6 +30489,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30452
30489
|
|
|
30453
30490
|
@entity model lifecycleManagementSettings extends reference.`microsoft.graph`.entity {
|
|
30454
30491
|
emailSettings: reference.`microsoft.graph`.emailSettings;
|
|
30492
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
30455
30493
|
workflowScheduleIntervalInHours: int32;
|
|
30456
30494
|
}
|
|
30457
30495
|
|
|
@@ -30509,6 +30547,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30509
30547
|
completedDateTime: offsetDateTime | null;
|
|
30510
30548
|
@computed createdDateTime: offsetDateTime;
|
|
30511
30549
|
failureReason: string | null;
|
|
30550
|
+
processingInfo: string | null;
|
|
30512
30551
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
30513
30552
|
startedDateTime: offsetDateTime | null;
|
|
30514
30553
|
@references subject: reference.`microsoft.graph`.user;
|
|
@@ -30549,8 +30588,11 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30549
30588
|
deletedDateTime: offsetDateTime | null;
|
|
30550
30589
|
@computed @key id: string;
|
|
30551
30590
|
nextScheduleRunDateTime: offsetDateTime | null;
|
|
30591
|
+
quarantineDetails: quarantineDetails;
|
|
30592
|
+
settings: workflowSetting;
|
|
30552
30593
|
version: int32 | null;
|
|
30553
30594
|
@references executionScope: userProcessingResult[];
|
|
30595
|
+
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
30554
30596
|
@contains runs: run[];
|
|
30555
30597
|
@contains taskReports: taskReport[];
|
|
30556
30598
|
@contains userProcessingResults: userProcessingResult[];
|
|
@@ -30582,6 +30624,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30582
30624
|
}
|
|
30583
30625
|
|
|
30584
30626
|
@entity model workflowVersion extends workflowBase {
|
|
30627
|
+
settings: workflowSetting;
|
|
30585
30628
|
@computed @key versionNumber: int32;
|
|
30586
30629
|
}
|
|
30587
30630
|
|
|
@@ -30626,6 +30669,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30626
30669
|
canceled: 4,
|
|
30627
30670
|
failed: 5,
|
|
30628
30671
|
unknownFutureValue: 6,
|
|
30672
|
+
quarantined: 8,
|
|
30673
|
+
}
|
|
30674
|
+
|
|
30675
|
+
enum matchMode {
|
|
30676
|
+
any: 0,
|
|
30677
|
+
all: 1,
|
|
30678
|
+
unknownFutureValue: 2,
|
|
30629
30679
|
}
|
|
30630
30680
|
|
|
30631
30681
|
enum membershipChangeType {
|
|
@@ -30634,6 +30684,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30634
30684
|
unknownFutureValue: 3,
|
|
30635
30685
|
}
|
|
30636
30686
|
|
|
30687
|
+
enum quarantineType {
|
|
30688
|
+
notQuarantined: 0,
|
|
30689
|
+
countBasedThresholdExceeded: 1,
|
|
30690
|
+
percentageBasedThresholdExceeded: 2,
|
|
30691
|
+
multipleConditionsExceeded: 3,
|
|
30692
|
+
unknownFutureValue: 4,
|
|
30693
|
+
}
|
|
30694
|
+
|
|
30637
30695
|
enum valueType {
|
|
30638
30696
|
`enum`: 0,
|
|
30639
30697
|
`string`: 1,
|
|
@@ -30647,6 +30705,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30647
30705
|
onDemand: 1,
|
|
30648
30706
|
unknownFutureValue: 2,
|
|
30649
30707
|
activatedWithScope: 3,
|
|
30708
|
+
preview: 4,
|
|
30650
30709
|
}
|
|
30651
30710
|
|
|
30652
30711
|
enum workflowTriggerTimeBasedAttribute {
|
|
@@ -32371,6 +32430,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
32371
32430
|
microsoftSentinel: 512,
|
|
32372
32431
|
microsoftInsiderRiskManagement: 1024,
|
|
32373
32432
|
microsoftThreatIntelligence: 2048,
|
|
32433
|
+
microsoftSecurityForAI: 4096,
|
|
32374
32434
|
}
|
|
32375
32435
|
|
|
32376
32436
|
@graphFlags
|
package/lib/GovSG/Beta/main.tsp
CHANGED
|
@@ -460,6 +460,7 @@ namespace reference.`microsoft.graph` {
|
|
|
460
460
|
}
|
|
461
461
|
|
|
462
462
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
463
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
463
464
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
464
465
|
blockSoftMatchEnabled: boolean | null;
|
|
465
466
|
bypassDirSyncOverridesEnabled: boolean | null;
|
package/lib/GovSG/V1.0/main.tsp
CHANGED
|
@@ -343,6 +343,7 @@ namespace reference.`microsoft.graph` {
|
|
|
343
343
|
}
|
|
344
344
|
|
|
345
345
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
346
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
346
347
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
347
348
|
blockSoftMatchEnabled: boolean | null;
|
|
348
349
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -973,7 +974,7 @@ namespace reference.`microsoft.graph` {
|
|
|
973
974
|
description: string | null;
|
|
974
975
|
issuer: string;
|
|
975
976
|
name: string;
|
|
976
|
-
subject: string;
|
|
977
|
+
subject: string | null;
|
|
977
978
|
}
|
|
978
979
|
|
|
979
980
|
@open
|
|
@@ -997,6 +998,7 @@ namespace reference.`microsoft.graph` {
|
|
|
997
998
|
membershipRule: string | null;
|
|
998
999
|
membershipRuleProcessingState: string | null;
|
|
999
1000
|
onPremisesDomainName: string | null;
|
|
1001
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
1000
1002
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
1001
1003
|
onPremisesNetBiosName: string | null;
|
|
1002
1004
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|