@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
|
@@ -3459,6 +3459,7 @@ namespace reference.`microsoft.graph` {
|
|
|
3459
3459
|
}
|
|
3460
3460
|
|
|
3461
3461
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
3462
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
3462
3463
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
3463
3464
|
blockSoftMatchEnabled: boolean | null;
|
|
3464
3465
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -9678,7 +9679,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9678
9679
|
description: string | null;
|
|
9679
9680
|
issuer: string;
|
|
9680
9681
|
name: string;
|
|
9681
|
-
subject: string;
|
|
9682
|
+
subject: string | null;
|
|
9682
9683
|
}
|
|
9683
9684
|
|
|
9684
9685
|
@entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
|
|
@@ -9786,6 +9787,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9786
9787
|
membershipRule: string | null;
|
|
9787
9788
|
membershipRuleProcessingState: string | null;
|
|
9788
9789
|
onPremisesDomainName: string | null;
|
|
9790
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
9789
9791
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
9790
9792
|
onPremisesNetBiosName: string | null;
|
|
9791
9793
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -13123,6 +13125,7 @@ namespace reference.`microsoft.graph` {
|
|
|
13123
13125
|
@entity model profileCardProperty extends entity {
|
|
13124
13126
|
annotations: profileCardAnnotation[] | null;
|
|
13125
13127
|
directoryPropertyName: string | null;
|
|
13128
|
+
isVisible: boolean;
|
|
13126
13129
|
}
|
|
13127
13130
|
|
|
13128
13131
|
@entity model profilePhoto extends entity {
|
|
@@ -24752,6 +24755,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
24752
24755
|
triggerAttributes: triggerAttribute[];
|
|
24753
24756
|
}
|
|
24754
24757
|
|
|
24758
|
+
@complex model countBasedQuarantineCondition extends quarantineCondition {
|
|
24759
|
+
threshold: int64;
|
|
24760
|
+
}
|
|
24761
|
+
|
|
24755
24762
|
@complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
|
|
24756
24763
|
@references authorizedApps: reference.`microsoft.graph`.application[];
|
|
24757
24764
|
}
|
|
@@ -24784,6 +24791,32 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
24784
24791
|
valueType: valueType;
|
|
24785
24792
|
}
|
|
24786
24793
|
|
|
24794
|
+
@complex model percentageBasedQuarantineCondition extends quarantineCondition {
|
|
24795
|
+
percentage: int32;
|
|
24796
|
+
}
|
|
24797
|
+
|
|
24798
|
+
@complex model previewFailedTask {
|
|
24799
|
+
definitionId: string;
|
|
24800
|
+
failureReason: string;
|
|
24801
|
+
name: string;
|
|
24802
|
+
taskId: string;
|
|
24803
|
+
}
|
|
24804
|
+
|
|
24805
|
+
@abstract
|
|
24806
|
+
@complex model quarantineCondition {
|
|
24807
|
+
}
|
|
24808
|
+
|
|
24809
|
+
@complex model quarantineConfiguration {
|
|
24810
|
+
conditions: quarantineCondition[];
|
|
24811
|
+
matchMode: matchMode;
|
|
24812
|
+
}
|
|
24813
|
+
|
|
24814
|
+
@complex model quarantineDetails {
|
|
24815
|
+
quarantinedDateTime: offsetDateTime | null;
|
|
24816
|
+
quarantineReason: string | null;
|
|
24817
|
+
quarantineType: quarantineType;
|
|
24818
|
+
}
|
|
24819
|
+
|
|
24787
24820
|
@complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
24788
24821
|
rule: string;
|
|
24789
24822
|
}
|
|
@@ -24870,6 +24903,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
24870
24903
|
@complex model workflowExecutionTrigger {
|
|
24871
24904
|
}
|
|
24872
24905
|
|
|
24906
|
+
@complex model workflowSetting {
|
|
24907
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
24908
|
+
}
|
|
24909
|
+
|
|
24873
24910
|
@complex model workflowsInsightsByCategory {
|
|
24874
24911
|
failedJoinerRuns: int32;
|
|
24875
24912
|
failedLeaverRuns: int32;
|
|
@@ -24907,6 +24944,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
24907
24944
|
|
|
24908
24945
|
@entity model lifecycleManagementSettings extends reference.`microsoft.graph`.entity {
|
|
24909
24946
|
emailSettings: reference.`microsoft.graph`.emailSettings;
|
|
24947
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
24910
24948
|
workflowScheduleIntervalInHours: int32;
|
|
24911
24949
|
}
|
|
24912
24950
|
|
|
@@ -24964,6 +25002,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
24964
25002
|
completedDateTime: offsetDateTime | null;
|
|
24965
25003
|
@computed createdDateTime: offsetDateTime;
|
|
24966
25004
|
failureReason: string | null;
|
|
25005
|
+
processingInfo: string | null;
|
|
24967
25006
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
24968
25007
|
startedDateTime: offsetDateTime | null;
|
|
24969
25008
|
@references subject: reference.`microsoft.graph`.user;
|
|
@@ -25004,8 +25043,11 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25004
25043
|
deletedDateTime: offsetDateTime | null;
|
|
25005
25044
|
@computed @key id: string;
|
|
25006
25045
|
nextScheduleRunDateTime: offsetDateTime | null;
|
|
25046
|
+
quarantineDetails: quarantineDetails;
|
|
25047
|
+
settings: workflowSetting;
|
|
25007
25048
|
version: int32 | null;
|
|
25008
25049
|
@references executionScope: userProcessingResult[];
|
|
25050
|
+
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
25009
25051
|
@contains runs: run[];
|
|
25010
25052
|
@contains taskReports: taskReport[];
|
|
25011
25053
|
@contains userProcessingResults: userProcessingResult[];
|
|
@@ -25037,6 +25079,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25037
25079
|
}
|
|
25038
25080
|
|
|
25039
25081
|
@entity model workflowVersion extends workflowBase {
|
|
25082
|
+
settings: workflowSetting;
|
|
25040
25083
|
@computed @key versionNumber: int32;
|
|
25041
25084
|
}
|
|
25042
25085
|
|
|
@@ -25081,6 +25124,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25081
25124
|
canceled: 4,
|
|
25082
25125
|
failed: 5,
|
|
25083
25126
|
unknownFutureValue: 6,
|
|
25127
|
+
quarantined: 8,
|
|
25128
|
+
}
|
|
25129
|
+
|
|
25130
|
+
enum matchMode {
|
|
25131
|
+
any: 0,
|
|
25132
|
+
all: 1,
|
|
25133
|
+
unknownFutureValue: 2,
|
|
25084
25134
|
}
|
|
25085
25135
|
|
|
25086
25136
|
enum membershipChangeType {
|
|
@@ -25089,6 +25139,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25089
25139
|
unknownFutureValue: 3,
|
|
25090
25140
|
}
|
|
25091
25141
|
|
|
25142
|
+
enum quarantineType {
|
|
25143
|
+
notQuarantined: 0,
|
|
25144
|
+
countBasedThresholdExceeded: 1,
|
|
25145
|
+
percentageBasedThresholdExceeded: 2,
|
|
25146
|
+
multipleConditionsExceeded: 3,
|
|
25147
|
+
unknownFutureValue: 4,
|
|
25148
|
+
}
|
|
25149
|
+
|
|
25092
25150
|
enum valueType {
|
|
25093
25151
|
`enum`: 0,
|
|
25094
25152
|
`string`: 1,
|
|
@@ -25102,6 +25160,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25102
25160
|
onDemand: 1,
|
|
25103
25161
|
unknownFutureValue: 2,
|
|
25104
25162
|
activatedWithScope: 3,
|
|
25163
|
+
preview: 4,
|
|
25105
25164
|
}
|
|
25106
25165
|
|
|
25107
25166
|
enum workflowTriggerTimeBasedAttribute {
|