@microsoft/typespec-msgraph-reference 1.0.5 → 1.0.7
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 +19 -19
- package/.rush/temp/shrinkwrap-deps.json +10 -10
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +235 -6
- package/lib/Bleu/V1.0/main.tsp +672 -12
- package/lib/Delos/Beta/main.tsp +3542 -22
- package/lib/Delos/V1.0/main.tsp +2963 -38
- package/lib/Fairfax/Beta/main.tsp +360 -5
- package/lib/Fairfax/V1.0/main.tsp +325 -25
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/GovSG/V1.0/main.tsp +29 -1
- package/lib/Mooncake/Beta/main.tsp +209 -4
- package/lib/Mooncake/V1.0/main.tsp +122 -1
- package/lib/Prod/Beta/main.tsp +1550 -175
- package/lib/Prod/V1.0/main.tsp +3736 -84
- package/lib/USNat/Beta/main.tsp +375 -2
- package/lib/USNat/V1.0/main.tsp +317 -22
- package/lib/USSec/Beta/main.tsp +392 -2
- package/lib/USSec/V1.0/main.tsp +317 -22
- package/package.json +2 -2
|
@@ -262,6 +262,9 @@ namespace reference.`microsoft.graph` {
|
|
|
262
262
|
@complex model allDevicesAssignmentTarget extends deviceAndAppManagementAssignmentTarget {
|
|
263
263
|
}
|
|
264
264
|
|
|
265
|
+
@complex model allDomains extends validatingDomains {
|
|
266
|
+
}
|
|
267
|
+
|
|
265
268
|
/**
|
|
266
269
|
* Represents an assignment to all licensed users in the tenant.
|
|
267
270
|
*/
|
|
@@ -693,6 +696,13 @@ namespace reference.`microsoft.graph` {
|
|
|
693
696
|
authenticationContextValue: string | null;
|
|
694
697
|
}
|
|
695
698
|
|
|
699
|
+
@complex model authenticationAppDeviceDetails {
|
|
700
|
+
appVersion: string | null;
|
|
701
|
+
clientApp: string | null;
|
|
702
|
+
deviceId: string | null;
|
|
703
|
+
operatingSystem: string | null;
|
|
704
|
+
}
|
|
705
|
+
|
|
696
706
|
@complex model authenticationBehaviors {
|
|
697
707
|
blockAzureADGraphAccess: boolean | null;
|
|
698
708
|
removeUnverifiedEmailClaim: boolean | null;
|
|
@@ -2071,6 +2081,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2071
2081
|
users: string[] | null;
|
|
2072
2082
|
}
|
|
2073
2083
|
|
|
2084
|
+
@complex model enumeratedDomains extends validatingDomains {
|
|
2085
|
+
domainNames: string[];
|
|
2086
|
+
}
|
|
2087
|
+
|
|
2074
2088
|
@complex model enumeratedScopes extends inheritableScopes {
|
|
2075
2089
|
scopes: string[];
|
|
2076
2090
|
}
|
|
@@ -3459,6 +3473,7 @@ namespace reference.`microsoft.graph` {
|
|
|
3459
3473
|
}
|
|
3460
3474
|
|
|
3461
3475
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
3476
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
3462
3477
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
3463
3478
|
blockSoftMatchEnabled: boolean | null;
|
|
3464
3479
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -4562,6 +4577,9 @@ namespace reference.`microsoft.graph` {
|
|
|
4562
4577
|
tabId: string | null;
|
|
4563
4578
|
}
|
|
4564
4579
|
|
|
4580
|
+
@complex model targetAgentIdentitySponsorsOrOwners extends subjectSet {
|
|
4581
|
+
}
|
|
4582
|
+
|
|
4565
4583
|
@complex model targetApplicationOwners extends subjectSet {
|
|
4566
4584
|
}
|
|
4567
4585
|
|
|
@@ -5069,6 +5087,11 @@ namespace reference.`microsoft.graph` {
|
|
|
5069
5087
|
userId: string | null;
|
|
5070
5088
|
}
|
|
5071
5089
|
|
|
5090
|
+
@abstract
|
|
5091
|
+
@complex model validatingDomains {
|
|
5092
|
+
rootDomains: rootDomains;
|
|
5093
|
+
}
|
|
5094
|
+
|
|
5072
5095
|
@complex model verifiedDomain {
|
|
5073
5096
|
capabilities: string | null;
|
|
5074
5097
|
isDefault: boolean | null;
|
|
@@ -9678,7 +9701,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9678
9701
|
description: string | null;
|
|
9679
9702
|
issuer: string;
|
|
9680
9703
|
name: string;
|
|
9681
|
-
subject: string;
|
|
9704
|
+
subject: string | null;
|
|
9705
|
+
}
|
|
9706
|
+
|
|
9707
|
+
@entity model federatedTokenValidationPolicy extends directoryObject {
|
|
9708
|
+
validatingDomains: validatingDomains;
|
|
9682
9709
|
}
|
|
9683
9710
|
|
|
9684
9711
|
@entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
|
|
@@ -9762,6 +9789,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9762
9789
|
|
|
9763
9790
|
@open
|
|
9764
9791
|
@entity model group extends directoryObject {
|
|
9792
|
+
accessType: groupAccessType | null;
|
|
9765
9793
|
allowExternalSenders: boolean | null;
|
|
9766
9794
|
assignedLicenses: assignedLicense[] | null;
|
|
9767
9795
|
autoSubscribeNewMembers: boolean | null;
|
|
@@ -9777,6 +9805,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9777
9805
|
infoCatalogs: string[];
|
|
9778
9806
|
isArchived: boolean | null;
|
|
9779
9807
|
isAssignableToRole: boolean | null;
|
|
9808
|
+
isFavorite: boolean | null;
|
|
9780
9809
|
isManagementRestricted: boolean | null;
|
|
9781
9810
|
isSubscribedByMail: boolean | null;
|
|
9782
9811
|
licenseProcessingState: licenseProcessingState | null;
|
|
@@ -9804,7 +9833,9 @@ namespace reference.`microsoft.graph` {
|
|
|
9804
9833
|
serviceProvisioningErrors: serviceProvisioningError[] | null;
|
|
9805
9834
|
theme: string | null;
|
|
9806
9835
|
uniqueName: string | null;
|
|
9836
|
+
unseenConversationsCount: int32 | null;
|
|
9807
9837
|
unseenCount: int32 | null;
|
|
9838
|
+
unseenMessagesCount: int32 | null;
|
|
9808
9839
|
visibility: string | null;
|
|
9809
9840
|
welcomeMessageEnabled: boolean | null;
|
|
9810
9841
|
@contains acceptedSenders: directoryObject[];
|
|
@@ -11029,6 +11060,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11029
11060
|
@contains drive: drive | null;
|
|
11030
11061
|
@contains items: listItem[];
|
|
11031
11062
|
@contains operations: richLongRunningOperation[];
|
|
11063
|
+
@contains permissions: permission[];
|
|
11032
11064
|
@contains subscriptions: subscription[];
|
|
11033
11065
|
}
|
|
11034
11066
|
|
|
@@ -11040,6 +11072,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11040
11072
|
@contains documentSetVersions: documentSetVersion[];
|
|
11041
11073
|
@contains driveItem: driveItem | null;
|
|
11042
11074
|
@contains fields: fieldValueSet | null;
|
|
11075
|
+
@contains permissions: permission[];
|
|
11043
11076
|
@contains versions: listItemVersion[];
|
|
11044
11077
|
}
|
|
11045
11078
|
|
|
@@ -12996,6 +13029,7 @@ namespace reference.`microsoft.graph` {
|
|
|
12996
13029
|
@contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
|
|
12997
13030
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
12998
13031
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
13032
|
+
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
12999
13033
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
13000
13034
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
13001
13035
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
@@ -13712,23 +13746,29 @@ namespace reference.`microsoft.graph` {
|
|
|
13712
13746
|
appDisplayName: string | null;
|
|
13713
13747
|
appId: string | null;
|
|
13714
13748
|
appliedConditionalAccessPolicies: appliedConditionalAccessPolicy[] | null;
|
|
13749
|
+
authenticationAppDeviceDetails: authenticationAppDeviceDetails | null;
|
|
13715
13750
|
clientAppUsed: string | null;
|
|
13716
13751
|
conditionalAccessStatus: conditionalAccessStatus | null;
|
|
13717
13752
|
correlationId: string | null;
|
|
13718
13753
|
@computed createdDateTime: offsetDateTime;
|
|
13719
13754
|
deviceDetail: deviceDetail | null;
|
|
13755
|
+
homeTenantId: string | null;
|
|
13720
13756
|
ipAddress: string | null;
|
|
13721
13757
|
isInteractive: boolean | null;
|
|
13722
13758
|
location: signInLocation | null;
|
|
13723
13759
|
resourceDisplayName: string | null;
|
|
13724
13760
|
resourceId: string | null;
|
|
13761
|
+
resourceTenantId: string | null;
|
|
13725
13762
|
riskDetail: riskDetail | null;
|
|
13726
13763
|
riskEventTypes: riskEventType[] | null;
|
|
13727
13764
|
riskEventTypes_v2: string[] | null;
|
|
13728
13765
|
riskLevelAggregated: riskLevel | null;
|
|
13729
13766
|
riskLevelDuringSignIn: riskLevel | null;
|
|
13730
13767
|
riskState: riskState | null;
|
|
13768
|
+
servicePrincipalId: string | null;
|
|
13769
|
+
servicePrincipalName: string | null;
|
|
13731
13770
|
status: signInStatus | null;
|
|
13771
|
+
userAgent: string | null;
|
|
13732
13772
|
userDisplayName: string | null;
|
|
13733
13773
|
userId: string;
|
|
13734
13774
|
userPrincipalName: string | null;
|
|
@@ -18166,6 +18206,8 @@ namespace reference.`microsoft.graph` {
|
|
|
18166
18206
|
target: 1,
|
|
18167
18207
|
createdBy: 2,
|
|
18168
18208
|
unknownFutureValue: 99,
|
|
18209
|
+
targetManager: 100,
|
|
18210
|
+
targetAgentIdentitySponsorOrOwner: 101,
|
|
18169
18211
|
}
|
|
18170
18212
|
|
|
18171
18213
|
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
@@ -18173,6 +18215,10 @@ namespace reference.`microsoft.graph` {
|
|
|
18173
18215
|
createdBy: 2,
|
|
18174
18216
|
approver: 3,
|
|
18175
18217
|
unknownFutureValue: 99,
|
|
18218
|
+
targetOrRequestor: 100,
|
|
18219
|
+
targetManager: 101,
|
|
18220
|
+
requestForOthers: 102,
|
|
18221
|
+
targetAgentIdentitySponsorOrOwner: 103,
|
|
18176
18222
|
}
|
|
18177
18223
|
|
|
18178
18224
|
enum accessPackageAssignmentState {
|
|
@@ -18350,6 +18396,7 @@ namespace reference.`microsoft.graph` {
|
|
|
18350
18396
|
allDirectoryServicePrincipals: 6,
|
|
18351
18397
|
allConfiguredConnectedOrganizationUsers: 7,
|
|
18352
18398
|
allExternalUsers: 8,
|
|
18399
|
+
allDirectoryAgentIdentities: 9,
|
|
18353
18400
|
unknownFutureValue: 10,
|
|
18354
18401
|
}
|
|
18355
18402
|
|
|
@@ -20437,6 +20484,14 @@ namespace reference.`microsoft.graph` {
|
|
|
20437
20484
|
unknownFutureValue: 2,
|
|
20438
20485
|
}
|
|
20439
20486
|
|
|
20487
|
+
enum groupAccessType {
|
|
20488
|
+
none: 0,
|
|
20489
|
+
private: 1,
|
|
20490
|
+
secret: 2,
|
|
20491
|
+
public: 3,
|
|
20492
|
+
unknownFutureValue: 4,
|
|
20493
|
+
}
|
|
20494
|
+
|
|
20440
20495
|
enum groupType {
|
|
20441
20496
|
unifiedGroups: 0,
|
|
20442
20497
|
azureAD: 1,
|
|
@@ -22509,6 +22564,16 @@ namespace reference.`microsoft.graph` {
|
|
|
22509
22564
|
unknownFutureValue: 4,
|
|
22510
22565
|
}
|
|
22511
22566
|
|
|
22567
|
+
enum rootDomains {
|
|
22568
|
+
none: 0,
|
|
22569
|
+
all: 1,
|
|
22570
|
+
allFederated: 2,
|
|
22571
|
+
allManaged: 3,
|
|
22572
|
+
enumerated: 4,
|
|
22573
|
+
allManagedAndEnumeratedFederated: 5,
|
|
22574
|
+
unknownFutureValue: 6,
|
|
22575
|
+
}
|
|
22576
|
+
|
|
22512
22577
|
/**
|
|
22513
22578
|
* Indicates the type of execution context the app runs in.
|
|
22514
22579
|
*/
|
|
@@ -24754,6 +24819,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
24754
24819
|
triggerAttributes: triggerAttribute[];
|
|
24755
24820
|
}
|
|
24756
24821
|
|
|
24822
|
+
@complex model countBasedQuarantineCondition extends quarantineCondition {
|
|
24823
|
+
threshold: int64;
|
|
24824
|
+
}
|
|
24825
|
+
|
|
24757
24826
|
@complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
|
|
24758
24827
|
@references authorizedApps: reference.`microsoft.graph`.application[];
|
|
24759
24828
|
}
|
|
@@ -24786,6 +24855,32 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
24786
24855
|
valueType: valueType;
|
|
24787
24856
|
}
|
|
24788
24857
|
|
|
24858
|
+
@complex model percentageBasedQuarantineCondition extends quarantineCondition {
|
|
24859
|
+
percentage: int32;
|
|
24860
|
+
}
|
|
24861
|
+
|
|
24862
|
+
@complex model previewFailedTask {
|
|
24863
|
+
definitionId: string;
|
|
24864
|
+
failureReason: string;
|
|
24865
|
+
name: string;
|
|
24866
|
+
taskId: string;
|
|
24867
|
+
}
|
|
24868
|
+
|
|
24869
|
+
@abstract
|
|
24870
|
+
@complex model quarantineCondition {
|
|
24871
|
+
}
|
|
24872
|
+
|
|
24873
|
+
@complex model quarantineConfiguration {
|
|
24874
|
+
conditions: quarantineCondition[];
|
|
24875
|
+
matchMode: matchMode;
|
|
24876
|
+
}
|
|
24877
|
+
|
|
24878
|
+
@complex model quarantineDetails {
|
|
24879
|
+
quarantinedDateTime: offsetDateTime | null;
|
|
24880
|
+
quarantineReason: string | null;
|
|
24881
|
+
quarantineType: quarantineType;
|
|
24882
|
+
}
|
|
24883
|
+
|
|
24789
24884
|
@complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
24790
24885
|
rule: string;
|
|
24791
24886
|
}
|
|
@@ -24872,6 +24967,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
24872
24967
|
@complex model workflowExecutionTrigger {
|
|
24873
24968
|
}
|
|
24874
24969
|
|
|
24970
|
+
@complex model workflowSetting {
|
|
24971
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
24972
|
+
}
|
|
24973
|
+
|
|
24875
24974
|
@complex model workflowsInsightsByCategory {
|
|
24876
24975
|
failedJoinerRuns: int32;
|
|
24877
24976
|
failedLeaverRuns: int32;
|
|
@@ -24909,6 +25008,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
24909
25008
|
|
|
24910
25009
|
@entity model lifecycleManagementSettings extends reference.`microsoft.graph`.entity {
|
|
24911
25010
|
emailSettings: reference.`microsoft.graph`.emailSettings;
|
|
25011
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
24912
25012
|
workflowScheduleIntervalInHours: int32;
|
|
24913
25013
|
}
|
|
24914
25014
|
|
|
@@ -24966,6 +25066,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
24966
25066
|
completedDateTime: offsetDateTime | null;
|
|
24967
25067
|
@computed createdDateTime: offsetDateTime;
|
|
24968
25068
|
failureReason: string | null;
|
|
25069
|
+
processingInfo: string | null;
|
|
24969
25070
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
24970
25071
|
startedDateTime: offsetDateTime | null;
|
|
24971
25072
|
@references subject: reference.`microsoft.graph`.user;
|
|
@@ -25006,8 +25107,11 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25006
25107
|
deletedDateTime: offsetDateTime | null;
|
|
25007
25108
|
@computed @key id: string;
|
|
25008
25109
|
nextScheduleRunDateTime: offsetDateTime | null;
|
|
25110
|
+
quarantineDetails: quarantineDetails;
|
|
25111
|
+
settings: workflowSetting;
|
|
25009
25112
|
version: int32 | null;
|
|
25010
25113
|
@references executionScope: userProcessingResult[];
|
|
25114
|
+
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
25011
25115
|
@contains runs: run[];
|
|
25012
25116
|
@contains taskReports: taskReport[];
|
|
25013
25117
|
@contains userProcessingResults: userProcessingResult[];
|
|
@@ -25039,6 +25143,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25039
25143
|
}
|
|
25040
25144
|
|
|
25041
25145
|
@entity model workflowVersion extends workflowBase {
|
|
25146
|
+
settings: workflowSetting;
|
|
25042
25147
|
@computed @key versionNumber: int32;
|
|
25043
25148
|
}
|
|
25044
25149
|
|
|
@@ -25083,6 +25188,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25083
25188
|
canceled: 4,
|
|
25084
25189
|
failed: 5,
|
|
25085
25190
|
unknownFutureValue: 6,
|
|
25191
|
+
quarantined: 8,
|
|
25192
|
+
}
|
|
25193
|
+
|
|
25194
|
+
enum matchMode {
|
|
25195
|
+
any: 0,
|
|
25196
|
+
all: 1,
|
|
25197
|
+
unknownFutureValue: 2,
|
|
25086
25198
|
}
|
|
25087
25199
|
|
|
25088
25200
|
enum membershipChangeType {
|
|
@@ -25091,6 +25203,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25091
25203
|
unknownFutureValue: 3,
|
|
25092
25204
|
}
|
|
25093
25205
|
|
|
25206
|
+
enum quarantineType {
|
|
25207
|
+
notQuarantined: 0,
|
|
25208
|
+
countBasedThresholdExceeded: 1,
|
|
25209
|
+
percentageBasedThresholdExceeded: 2,
|
|
25210
|
+
multipleConditionsExceeded: 3,
|
|
25211
|
+
unknownFutureValue: 4,
|
|
25212
|
+
}
|
|
25213
|
+
|
|
25094
25214
|
enum valueType {
|
|
25095
25215
|
`enum`: 0,
|
|
25096
25216
|
`string`: 1,
|
|
@@ -25104,6 +25224,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25104
25224
|
onDemand: 1,
|
|
25105
25225
|
unknownFutureValue: 2,
|
|
25106
25226
|
activatedWithScope: 3,
|
|
25227
|
+
preview: 4,
|
|
25107
25228
|
}
|
|
25108
25229
|
|
|
25109
25230
|
enum workflowTriggerTimeBasedAttribute {
|