@microsoft/typespec-msgraph-reference 1.0.3 → 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 +18 -18
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +2411 -55
- package/lib/Bleu/V1.0/main.tsp +2245 -40
- package/lib/Delos/Beta/main.tsp +2674 -52
- package/lib/Delos/V1.0/main.tsp +401 -20
- package/lib/Fairfax/Beta/main.tsp +1261 -74
- package/lib/Fairfax/V1.0/main.tsp +307 -20
- package/lib/GovSG/Beta/main.tsp +113 -13
- package/lib/GovSG/V1.0/main.tsp +196 -0
- package/lib/Mooncake/Beta/main.tsp +858 -54
- package/lib/Mooncake/V1.0/main.tsp +173 -20
- package/lib/Prod/Beta/main.tsp +4453 -269
- package/lib/Prod/V1.0/main.tsp +1457 -26
- package/lib/USNat/Beta/main.tsp +609 -37
- package/lib/USNat/V1.0/main.tsp +609 -3
- package/lib/USSec/Beta/main.tsp +1012 -69
- package/lib/USSec/V1.0/main.tsp +912 -3
- package/package.json +2 -2
package/lib/GovSG/Beta/main.tsp
CHANGED
|
@@ -18,6 +18,9 @@ namespace reference.`microsoft.graph` {
|
|
|
18
18
|
@complex model allAllowedScopes extends inheritableScopes {
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
+
@complex model allDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
22
|
+
}
|
|
23
|
+
|
|
21
24
|
@complex model allDomains extends validatingDomains {
|
|
22
25
|
}
|
|
23
26
|
|
|
@@ -69,7 +72,7 @@ namespace reference.`microsoft.graph` {
|
|
|
69
72
|
}
|
|
70
73
|
|
|
71
74
|
@complex model appManagementPolicyActorExemptions {
|
|
72
|
-
|
|
75
|
+
customSecurityAttributes: customSecurityAttributeExemption[] | null;
|
|
73
76
|
}
|
|
74
77
|
|
|
75
78
|
@complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
|
|
@@ -121,6 +124,17 @@ namespace reference.`microsoft.graph` {
|
|
|
121
124
|
certificateUserIds: string[] | null;
|
|
122
125
|
}
|
|
123
126
|
|
|
127
|
+
@complex model azureADJoinPolicy {
|
|
128
|
+
allowedToJoin: deviceRegistrationMembership | null;
|
|
129
|
+
isAdminConfigurable: boolean | null;
|
|
130
|
+
localAdmins: localAdminSettings | null;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
@complex model azureADRegistrationPolicy {
|
|
134
|
+
allowedToRegister: deviceRegistrationMembership | null;
|
|
135
|
+
isAdminConfigurable: boolean | null;
|
|
136
|
+
}
|
|
137
|
+
|
|
124
138
|
@complex model certificateAuthority {
|
|
125
139
|
certificate: binary;
|
|
126
140
|
certificateRevocationListUrl: string | null;
|
|
@@ -185,6 +199,16 @@ namespace reference.`microsoft.graph` {
|
|
|
185
199
|
applicationRestrictions: customAppManagementApplicationConfiguration | null;
|
|
186
200
|
}
|
|
187
201
|
|
|
202
|
+
@abstract
|
|
203
|
+
@complex model customSecurityAttributeExemption {
|
|
204
|
+
id: string;
|
|
205
|
+
operator: customSecurityAttributeComparisonOperator;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
@complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
209
|
+
value: string | null;
|
|
210
|
+
}
|
|
211
|
+
|
|
188
212
|
@open
|
|
189
213
|
@complex model customSecurityAttributeValue {
|
|
190
214
|
}
|
|
@@ -206,6 +230,16 @@ namespace reference.`microsoft.graph` {
|
|
|
206
230
|
keyType: string | null;
|
|
207
231
|
}
|
|
208
232
|
|
|
233
|
+
@complex model deviceLocalCredential {
|
|
234
|
+
accountName: string;
|
|
235
|
+
accountSid: string;
|
|
236
|
+
backupDateTime: offsetDateTime;
|
|
237
|
+
passwordBase64: string;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
@complex model deviceRegistrationMembership {
|
|
241
|
+
}
|
|
242
|
+
|
|
209
243
|
@open
|
|
210
244
|
@complex model Dictionary {
|
|
211
245
|
}
|
|
@@ -226,6 +260,11 @@ namespace reference.`microsoft.graph` {
|
|
|
226
260
|
division: string | null;
|
|
227
261
|
}
|
|
228
262
|
|
|
263
|
+
@complex model enumeratedDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
264
|
+
groups: string[] | null;
|
|
265
|
+
users: string[] | null;
|
|
266
|
+
}
|
|
267
|
+
|
|
229
268
|
@complex model enumeratedDomains extends validatingDomains {
|
|
230
269
|
domainNames: string[];
|
|
231
270
|
}
|
|
@@ -272,6 +311,7 @@ namespace reference.`microsoft.graph` {
|
|
|
272
311
|
|
|
273
312
|
@complex model identifierUriConfiguration {
|
|
274
313
|
nonDefaultUriAddition: identifierUriRestriction | null;
|
|
314
|
+
uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
|
|
275
315
|
}
|
|
276
316
|
|
|
277
317
|
@complex model identifierUriRestriction {
|
|
@@ -333,6 +373,7 @@ namespace reference.`microsoft.graph` {
|
|
|
333
373
|
usage: string | null;
|
|
334
374
|
}
|
|
335
375
|
|
|
376
|
+
|
|
336
377
|
@complex model keyValue {
|
|
337
378
|
key: string | null;
|
|
338
379
|
value: string | null;
|
|
@@ -357,6 +398,15 @@ namespace reference.`microsoft.graph` {
|
|
|
357
398
|
warning: int32 | null;
|
|
358
399
|
}
|
|
359
400
|
|
|
401
|
+
@complex model localAdminPasswordSettings {
|
|
402
|
+
isEnabled: boolean | null;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
@complex model localAdminSettings {
|
|
406
|
+
enableGlobalAdmins: boolean | null;
|
|
407
|
+
registeringUsers: deviceRegistrationMembership | null;
|
|
408
|
+
}
|
|
409
|
+
|
|
360
410
|
@complex model loginPageBrandingVisualElement {
|
|
361
411
|
customText: string | null;
|
|
362
412
|
customUrl: string | null;
|
|
@@ -388,6 +438,9 @@ namespace reference.`microsoft.graph` {
|
|
|
388
438
|
status: MembershipRuleProcessingStatusDetails | null;
|
|
389
439
|
}
|
|
390
440
|
|
|
441
|
+
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
442
|
+
}
|
|
443
|
+
|
|
391
444
|
@complex model noScopes extends inheritableScopes {
|
|
392
445
|
}
|
|
393
446
|
|
|
@@ -481,6 +534,7 @@ namespace reference.`microsoft.graph` {
|
|
|
481
534
|
startDateTime: offsetDateTime | null;
|
|
482
535
|
}
|
|
483
536
|
|
|
537
|
+
|
|
484
538
|
@complex model passwordProfile {
|
|
485
539
|
forceChangePasswordNextSignIn: boolean | null;
|
|
486
540
|
forceChangePasswordNextSignInWithMfa: boolean | null;
|
|
@@ -771,9 +825,11 @@ namespace reference.`microsoft.graph` {
|
|
|
771
825
|
identifierUris: string[];
|
|
772
826
|
info: informationalUrl | null;
|
|
773
827
|
isDeviceOnlyAuthSupported: boolean | null;
|
|
828
|
+
isDisabled: boolean | null;
|
|
774
829
|
isFallbackPublicClient: boolean | null;
|
|
775
830
|
keyCredentials: keyCredential[];
|
|
776
831
|
logo: stream;
|
|
832
|
+
managerApplications: guid;
|
|
777
833
|
notes: string | null;
|
|
778
834
|
optionalClaims: optionalClaims | null;
|
|
779
835
|
parentalControlSettings: parentalControlSettings | null;
|
|
@@ -817,6 +873,10 @@ namespace reference.`microsoft.graph` {
|
|
|
817
873
|
resourceId: guid | null;
|
|
818
874
|
}
|
|
819
875
|
|
|
876
|
+
@entity model approvedClientApp extends entity {
|
|
877
|
+
displayName: string | null;
|
|
878
|
+
}
|
|
879
|
+
|
|
820
880
|
@entity model appScope extends entity {
|
|
821
881
|
displayName: string | null;
|
|
822
882
|
type: string | null;
|
|
@@ -846,6 +906,17 @@ namespace reference.`microsoft.graph` {
|
|
|
846
906
|
permissionGrantPolicyIdsAssignedToDefaultUserRole: string[] | null;
|
|
847
907
|
}
|
|
848
908
|
|
|
909
|
+
@entity model bitlocker extends entity {
|
|
910
|
+
@contains recoveryKeys: bitlockerRecoveryKey[];
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
@entity model bitlockerRecoveryKey extends entity {
|
|
914
|
+
@computed createdDateTime: offsetDateTime;
|
|
915
|
+
deviceId: string | null;
|
|
916
|
+
key: string;
|
|
917
|
+
volumeType: volumeType | null;
|
|
918
|
+
}
|
|
919
|
+
|
|
849
920
|
@entity model certificateAuthorityAsEntity extends entity {
|
|
850
921
|
certificate: binary;
|
|
851
922
|
isRootAuthority: boolean;
|
|
@@ -965,15 +1036,6 @@ namespace reference.`microsoft.graph` {
|
|
|
965
1036
|
@contains allowedValues: allowedValue[];
|
|
966
1037
|
}
|
|
967
1038
|
|
|
968
|
-
@abstract
|
|
969
|
-
@entity model customSecurityAttributeExemption extends entity {
|
|
970
|
-
operator: customSecurityAttributeComparisonOperator | null;
|
|
971
|
-
}
|
|
972
|
-
|
|
973
|
-
@entity model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
974
|
-
value: string | null;
|
|
975
|
-
}
|
|
976
|
-
|
|
977
1039
|
@entity model delegatedPermissionClassification extends entity {
|
|
978
1040
|
classification: permissionClassificationType | null;
|
|
979
1041
|
permissionId: string | null;
|
|
@@ -1021,12 +1083,30 @@ namespace reference.`microsoft.graph` {
|
|
|
1021
1083
|
@references transitiveMemberOf: directoryObject[];
|
|
1022
1084
|
}
|
|
1023
1085
|
|
|
1086
|
+
@entity model deviceLocalCredentialInfo extends entity {
|
|
1087
|
+
credentials: deviceLocalCredential[];
|
|
1088
|
+
deviceName: string;
|
|
1089
|
+
@computed lastBackupDateTime: offsetDateTime;
|
|
1090
|
+
refreshDateTime: offsetDateTime;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
@entity model deviceRegistrationPolicy extends entity {
|
|
1094
|
+
azureADJoin: azureADJoinPolicy | null;
|
|
1095
|
+
azureADRegistration: azureADRegistrationPolicy | null;
|
|
1096
|
+
description: string | null;
|
|
1097
|
+
displayName: string | null;
|
|
1098
|
+
localAdminPassword: localAdminPasswordSettings | null;
|
|
1099
|
+
multiFactorAuthConfiguration: multiFactorAuthConfiguration;
|
|
1100
|
+
userDeviceQuota: int32;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1024
1103
|
@entity model directory extends entity {
|
|
1025
1104
|
@contains administrativeUnits: administrativeUnit[];
|
|
1026
1105
|
@contains attributeSets: attributeSet[];
|
|
1027
1106
|
@contains certificateAuthorities: certificateAuthorityPath | null;
|
|
1028
1107
|
@contains customSecurityAttributeDefinitions: customSecurityAttributeDefinition[];
|
|
1029
1108
|
@contains deletedItems: directoryObject[];
|
|
1109
|
+
@contains deviceLocalCredentials: deviceLocalCredentialInfo[];
|
|
1030
1110
|
@contains federationConfigurations: identityProviderBase[];
|
|
1031
1111
|
@contains onPremisesSynchronization: onPremisesDirectorySynchronization[];
|
|
1032
1112
|
@contains publicKeyInfrastructure: publicKeyInfrastructureRoot | null;
|
|
@@ -1198,12 +1278,14 @@ namespace reference.`microsoft.graph` {
|
|
|
1198
1278
|
membershipRuleProcessingState: string | null;
|
|
1199
1279
|
membershipRuleProcessingStatus: membershipRuleProcessingStatus | null;
|
|
1200
1280
|
onPremisesDomainName: string | null;
|
|
1281
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
1201
1282
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
1202
1283
|
onPremisesNetBiosName: string | null;
|
|
1203
1284
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
1204
1285
|
onPremisesSamAccountName: string | null;
|
|
1205
1286
|
onPremisesSecurityIdentifier: string | null;
|
|
1206
1287
|
onPremisesSyncEnabled: boolean | null;
|
|
1288
|
+
organizationId: string | null;
|
|
1207
1289
|
preferredDataLocation: string | null;
|
|
1208
1290
|
preferredLanguage: string | null;
|
|
1209
1291
|
proxyAddresses: string[];
|
|
@@ -1256,8 +1338,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1256
1338
|
userPrincipalName: string;
|
|
1257
1339
|
}
|
|
1258
1340
|
|
|
1341
|
+
@entity model informationProtection extends MsGraph.SharedModels.entity {
|
|
1342
|
+
@contains bitlocker: bitlocker | null;
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1259
1345
|
@entity model inheritablePermission extends MsGraph.SharedModels.entity {
|
|
1260
|
-
inheritableScopes: inheritableScopes;
|
|
1346
|
+
inheritableScopes: inheritableScopes | null;
|
|
1261
1347
|
@computed @key resourceAppId: string;
|
|
1262
1348
|
}
|
|
1263
1349
|
|
|
@@ -1272,7 +1358,6 @@ namespace reference.`microsoft.graph` {
|
|
|
1272
1358
|
signOutUri: string | null;
|
|
1273
1359
|
}
|
|
1274
1360
|
|
|
1275
|
-
|
|
1276
1361
|
@entity model licenseDetails extends entity {
|
|
1277
1362
|
servicePlans: servicePlanInfo[];
|
|
1278
1363
|
skuId: guid | null;
|
|
@@ -1411,7 +1496,6 @@ namespace reference.`microsoft.graph` {
|
|
|
1411
1496
|
supportUrl: string | null;
|
|
1412
1497
|
}
|
|
1413
1498
|
|
|
1414
|
-
|
|
1415
1499
|
@entity model permissionGrantConditionSet extends entity {
|
|
1416
1500
|
clientApplicationIds: string[] | null;
|
|
1417
1501
|
clientApplicationPublisherIds: string[] | null;
|
|
@@ -1448,6 +1532,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1448
1532
|
@contains claimsMappingPolicies: claimsMappingPolicy[];
|
|
1449
1533
|
@contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
|
|
1450
1534
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
1535
|
+
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
1451
1536
|
@contains externalIdentitiesPolicy: externalIdentitiesPolicy | null;
|
|
1452
1537
|
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
1453
1538
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
@@ -1476,6 +1561,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1476
1561
|
|
|
1477
1562
|
@entity model remoteDesktopSecurityConfiguration extends entity {
|
|
1478
1563
|
isRemoteDesktopProtocolEnabled: boolean;
|
|
1564
|
+
@contains approvedClientApps: approvedClientApp[];
|
|
1479
1565
|
@contains targetDeviceGroups: targetDeviceGroup[];
|
|
1480
1566
|
}
|
|
1481
1567
|
|
|
@@ -1538,6 +1624,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1538
1624
|
errorUrl: string | null;
|
|
1539
1625
|
homepage: string | null;
|
|
1540
1626
|
info: informationalUrl | null;
|
|
1627
|
+
isDisabled: boolean | null;
|
|
1541
1628
|
keyCredentials: keyCredential[];
|
|
1542
1629
|
loginUrl: string | null;
|
|
1543
1630
|
logoutUrl: string | null;
|
|
@@ -1894,6 +1981,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1894
1981
|
UnsupportedFutureValue: 4,
|
|
1895
1982
|
}
|
|
1896
1983
|
|
|
1984
|
+
enum multiFactorAuthConfiguration {
|
|
1985
|
+
notRequired: 0,
|
|
1986
|
+
required: 1,
|
|
1987
|
+
unknownFutureValue: 2,
|
|
1988
|
+
}
|
|
1989
|
+
|
|
1897
1990
|
enum onPremisesDirectorySynchronizationDeletionPreventionType {
|
|
1898
1991
|
disabled: 0,
|
|
1899
1992
|
enabledForCount: 1,
|
|
@@ -1986,6 +2079,13 @@ namespace reference.`microsoft.graph` {
|
|
|
1986
2079
|
unknownFutureValue: 4,
|
|
1987
2080
|
}
|
|
1988
2081
|
|
|
2082
|
+
enum volumeType {
|
|
2083
|
+
operatingSystemVolume: 1,
|
|
2084
|
+
fixedDataVolume: 2,
|
|
2085
|
+
removableDataVolume: 3,
|
|
2086
|
+
unknownFutureValue: 4,
|
|
2087
|
+
}
|
|
2088
|
+
|
|
1989
2089
|
@graphFlags
|
|
1990
2090
|
enum weakAlgorithms {
|
|
1991
2091
|
rsaSha1: 1,
|
package/lib/GovSG/V1.0/main.tsp
CHANGED
|
@@ -15,6 +15,12 @@ namespace reference.`microsoft.graph` {
|
|
|
15
15
|
type: string;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
+
@complex model allAllowedScopes extends inheritableScopes {
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@complex model allDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
22
|
+
}
|
|
23
|
+
|
|
18
24
|
@complex model alternativeSecurityId {
|
|
19
25
|
identityProvider: string | null;
|
|
20
26
|
key: binary | null;
|
|
@@ -30,6 +36,7 @@ namespace reference.`microsoft.graph` {
|
|
|
30
36
|
}
|
|
31
37
|
|
|
32
38
|
@complex model appManagementApplicationConfiguration extends appManagementConfiguration {
|
|
39
|
+
identifierUris: identifierUriConfiguration | null;
|
|
33
40
|
}
|
|
34
41
|
|
|
35
42
|
@abstract
|
|
@@ -38,6 +45,10 @@ namespace reference.`microsoft.graph` {
|
|
|
38
45
|
|
|
39
46
|
}
|
|
40
47
|
|
|
48
|
+
@complex model appManagementPolicyActorExemptions {
|
|
49
|
+
customSecurityAttributes: customSecurityAttributeExemption[] | null;
|
|
50
|
+
}
|
|
51
|
+
|
|
41
52
|
@complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
|
|
42
53
|
}
|
|
43
54
|
|
|
@@ -72,6 +83,17 @@ namespace reference.`microsoft.graph` {
|
|
|
72
83
|
certificateUserIds: string[] | null;
|
|
73
84
|
}
|
|
74
85
|
|
|
86
|
+
@complex model azureADJoinPolicy {
|
|
87
|
+
allowedToJoin: deviceRegistrationMembership | null;
|
|
88
|
+
isAdminConfigurable: boolean | null;
|
|
89
|
+
localAdmins: localAdminSettings | null;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
@complex model azureADRegistrationPolicy {
|
|
93
|
+
allowedToRegister: deviceRegistrationMembership | null;
|
|
94
|
+
isAdminConfigurable: boolean | null;
|
|
95
|
+
}
|
|
96
|
+
|
|
75
97
|
@complex model certificateAuthority {
|
|
76
98
|
certificate: binary;
|
|
77
99
|
certificateRevocationListUrl: string | null;
|
|
@@ -117,7 +139,22 @@ namespace reference.`microsoft.graph` {
|
|
|
117
139
|
isSyncAllowed: boolean | null;
|
|
118
140
|
}
|
|
119
141
|
|
|
142
|
+
@complex model customAppManagementApplicationConfiguration {
|
|
143
|
+
identifierUris: identifierUriConfiguration | null;
|
|
144
|
+
}
|
|
145
|
+
|
|
120
146
|
@complex model customAppManagementConfiguration extends appManagementConfiguration {
|
|
147
|
+
applicationRestrictions: customAppManagementApplicationConfiguration | null;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
@abstract
|
|
151
|
+
@complex model customSecurityAttributeExemption {
|
|
152
|
+
id: string;
|
|
153
|
+
operator: customSecurityAttributeComparisonOperator;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
@complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
157
|
+
value: string | null;
|
|
121
158
|
}
|
|
122
159
|
|
|
123
160
|
@open
|
|
@@ -136,6 +173,16 @@ namespace reference.`microsoft.graph` {
|
|
|
136
173
|
permissionGrantPoliciesAssigned: string[] | null;
|
|
137
174
|
}
|
|
138
175
|
|
|
176
|
+
@complex model deviceLocalCredential {
|
|
177
|
+
accountName: string;
|
|
178
|
+
accountSid: string;
|
|
179
|
+
backupDateTime: offsetDateTime;
|
|
180
|
+
passwordBase64: string;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
@complex model deviceRegistrationMembership {
|
|
184
|
+
}
|
|
185
|
+
|
|
139
186
|
@complex model domainState {
|
|
140
187
|
@computed lastActionDateTime: offsetDateTime | null;
|
|
141
188
|
operation: string | null;
|
|
@@ -147,11 +194,34 @@ namespace reference.`microsoft.graph` {
|
|
|
147
194
|
division: string | null;
|
|
148
195
|
}
|
|
149
196
|
|
|
197
|
+
@complex model enumeratedDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
198
|
+
groups: string[] | null;
|
|
199
|
+
users: string[] | null;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
@complex model enumeratedScopes extends inheritableScopes {
|
|
203
|
+
scopes: string[];
|
|
204
|
+
}
|
|
205
|
+
|
|
150
206
|
@complex model extensionSchemaProperty {
|
|
151
207
|
name: string | null;
|
|
152
208
|
type: string | null;
|
|
153
209
|
}
|
|
154
210
|
|
|
211
|
+
@complex model identifierUriConfiguration {
|
|
212
|
+
nonDefaultUriAddition: identifierUriRestriction | null;
|
|
213
|
+
uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
@complex model identifierUriRestriction {
|
|
217
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
218
|
+
excludeAppsReceivingV2Tokens: boolean | null;
|
|
219
|
+
excludeSaml: boolean | null;
|
|
220
|
+
isStateSetByMicrosoft: boolean;
|
|
221
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
222
|
+
state: appManagementRestrictionState;
|
|
223
|
+
}
|
|
224
|
+
|
|
155
225
|
@open
|
|
156
226
|
@complex model identity {
|
|
157
227
|
displayName: string | null;
|
|
@@ -176,6 +246,11 @@ namespace reference.`microsoft.graph` {
|
|
|
176
246
|
termsOfServiceUrl: string | null;
|
|
177
247
|
}
|
|
178
248
|
|
|
249
|
+
@abstract
|
|
250
|
+
@complex model inheritableScopes {
|
|
251
|
+
kind: scopeCollectionKind;
|
|
252
|
+
}
|
|
253
|
+
|
|
179
254
|
@complex model instanceResourceAccess {
|
|
180
255
|
permissions: resourcePermission[];
|
|
181
256
|
resourceAppId: string;
|
|
@@ -222,6 +297,15 @@ namespace reference.`microsoft.graph` {
|
|
|
222
297
|
warning: int32 | null;
|
|
223
298
|
}
|
|
224
299
|
|
|
300
|
+
@complex model localAdminPasswordSettings {
|
|
301
|
+
isEnabled: boolean | null;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
@complex model localAdminSettings {
|
|
305
|
+
enableGlobalAdmins: boolean | null;
|
|
306
|
+
registeringUsers: deviceRegistrationMembership | null;
|
|
307
|
+
}
|
|
308
|
+
|
|
225
309
|
@complex model loginPageLayoutConfiguration {
|
|
226
310
|
isFooterShown: boolean | null;
|
|
227
311
|
isHeaderShown: boolean | null;
|
|
@@ -237,6 +321,12 @@ namespace reference.`microsoft.graph` {
|
|
|
237
321
|
hideTermsOfUse: boolean | null;
|
|
238
322
|
}
|
|
239
323
|
|
|
324
|
+
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
@complex model noScopes extends inheritableScopes {
|
|
328
|
+
}
|
|
329
|
+
|
|
240
330
|
@complex model objectIdentity {
|
|
241
331
|
issuer: string | null;
|
|
242
332
|
issuerAssignedId: string | null;
|
|
@@ -492,6 +582,28 @@ namespace reference.`microsoft.graph` {
|
|
|
492
582
|
@contains scopedRoleMembers: scopedRoleMembership[];
|
|
493
583
|
}
|
|
494
584
|
|
|
585
|
+
@open
|
|
586
|
+
@entity model agentIdentity extends servicePrincipal {
|
|
587
|
+
agentIdentityBlueprintId: string;
|
|
588
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
589
|
+
@references sponsors: directoryObject[];
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
@open
|
|
593
|
+
@entity model agentIdentityBlueprint extends application {
|
|
594
|
+
@contains inheritablePermissions: inheritablePermission[];
|
|
595
|
+
@references sponsors: directoryObject[];
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
@open
|
|
599
|
+
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
600
|
+
@references sponsors: directoryObject[];
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
@open
|
|
604
|
+
@entity model agentUser extends user {
|
|
605
|
+
}
|
|
606
|
+
|
|
495
607
|
@entity model allowedValue extends entity {
|
|
496
608
|
isActive: boolean | null;
|
|
497
609
|
}
|
|
@@ -503,6 +615,7 @@ namespace reference.`microsoft.graph` {
|
|
|
503
615
|
appId: string | null;
|
|
504
616
|
applicationTemplateId: string | null;
|
|
505
617
|
appRoles: appRole[];
|
|
618
|
+
createdByAppId: string | null;
|
|
506
619
|
@computed createdDateTime: offsetDateTime | null;
|
|
507
620
|
defaultRedirectUri: string | null;
|
|
508
621
|
description: string | null;
|
|
@@ -512,9 +625,11 @@ namespace reference.`microsoft.graph` {
|
|
|
512
625
|
identifierUris: string[];
|
|
513
626
|
info: informationalUrl | null;
|
|
514
627
|
isDeviceOnlyAuthSupported: boolean | null;
|
|
628
|
+
isDisabled: boolean | null;
|
|
515
629
|
isFallbackPublicClient: boolean | null;
|
|
516
630
|
keyCredentials: keyCredential[];
|
|
517
631
|
logo: stream;
|
|
632
|
+
managerApplications: guid;
|
|
518
633
|
notes: string | null;
|
|
519
634
|
oauth2RequirePostResponse: boolean;
|
|
520
635
|
optionalClaims: optionalClaims | null;
|
|
@@ -557,6 +672,10 @@ namespace reference.`microsoft.graph` {
|
|
|
557
672
|
resourceId: guid | null;
|
|
558
673
|
}
|
|
559
674
|
|
|
675
|
+
@entity model approvedClientApp extends entity {
|
|
676
|
+
displayName: string | null;
|
|
677
|
+
}
|
|
678
|
+
|
|
560
679
|
@entity model appScope extends entity {
|
|
561
680
|
displayName: string | null;
|
|
562
681
|
type: string | null;
|
|
@@ -578,6 +697,17 @@ namespace reference.`microsoft.graph` {
|
|
|
578
697
|
guestUserRoleId: guid | null;
|
|
579
698
|
}
|
|
580
699
|
|
|
700
|
+
@entity model bitlocker extends entity {
|
|
701
|
+
@contains recoveryKeys: bitlockerRecoveryKey[];
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
@entity model bitlockerRecoveryKey extends entity {
|
|
705
|
+
@computed createdDateTime: offsetDateTime;
|
|
706
|
+
deviceId: string | null;
|
|
707
|
+
key: string;
|
|
708
|
+
volumeType: volumeType | null;
|
|
709
|
+
}
|
|
710
|
+
|
|
581
711
|
@entity model certificateBasedAuthConfiguration extends entity {
|
|
582
712
|
certificateAuthorities: certificateAuthority[];
|
|
583
713
|
}
|
|
@@ -699,11 +829,29 @@ namespace reference.`microsoft.graph` {
|
|
|
699
829
|
@references transitiveMemberOf: directoryObject[];
|
|
700
830
|
}
|
|
701
831
|
|
|
832
|
+
@entity model deviceLocalCredentialInfo extends entity {
|
|
833
|
+
credentials: deviceLocalCredential[];
|
|
834
|
+
deviceName: string;
|
|
835
|
+
@computed lastBackupDateTime: offsetDateTime;
|
|
836
|
+
refreshDateTime: offsetDateTime;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
@entity model deviceRegistrationPolicy extends entity {
|
|
840
|
+
azureADJoin: azureADJoinPolicy | null;
|
|
841
|
+
azureADRegistration: azureADRegistrationPolicy | null;
|
|
842
|
+
description: string | null;
|
|
843
|
+
displayName: string | null;
|
|
844
|
+
localAdminPassword: localAdminPasswordSettings | null;
|
|
845
|
+
multiFactorAuthConfiguration: multiFactorAuthConfiguration;
|
|
846
|
+
userDeviceQuota: int32;
|
|
847
|
+
}
|
|
848
|
+
|
|
702
849
|
@entity model directory extends MsGraph.SharedModels.entity {
|
|
703
850
|
@contains administrativeUnits: administrativeUnit[];
|
|
704
851
|
@contains attributeSets: attributeSet[];
|
|
705
852
|
@contains customSecurityAttributeDefinitions: customSecurityAttributeDefinition[];
|
|
706
853
|
@contains deletedItems: directoryObject[];
|
|
854
|
+
@contains deviceLocalCredentials: deviceLocalCredentialInfo[];
|
|
707
855
|
@contains federationConfigurations: identityProviderBase[];
|
|
708
856
|
@contains onPremisesSynchronization: onPremisesDirectorySynchronization[];
|
|
709
857
|
@contains subscriptions: companySubscription[];
|
|
@@ -839,6 +987,7 @@ namespace reference.`microsoft.graph` {
|
|
|
839
987
|
expirationDateTime: offsetDateTime | null;
|
|
840
988
|
groupTypes: string[];
|
|
841
989
|
hasMembersWithLicenseErrors: boolean | null;
|
|
990
|
+
infoCatalogs: string[];
|
|
842
991
|
isAssignableToRole: boolean | null;
|
|
843
992
|
isManagementRestricted: boolean | null;
|
|
844
993
|
licenseProcessingState: licenseProcessingState | null;
|
|
@@ -848,6 +997,7 @@ namespace reference.`microsoft.graph` {
|
|
|
848
997
|
membershipRule: string | null;
|
|
849
998
|
membershipRuleProcessingState: string | null;
|
|
850
999
|
onPremisesDomainName: string | null;
|
|
1000
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
851
1001
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
852
1002
|
onPremisesNetBiosName: string | null;
|
|
853
1003
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -908,6 +1058,15 @@ namespace reference.`microsoft.graph` {
|
|
|
908
1058
|
displayName: string | null;
|
|
909
1059
|
}
|
|
910
1060
|
|
|
1061
|
+
@entity model informationProtection extends MsGraph.SharedModels.entity {
|
|
1062
|
+
@contains bitlocker: bitlocker | null;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
@entity model inheritablePermission extends MsGraph.SharedModels.entity {
|
|
1066
|
+
inheritableScopes: inheritableScopes | null;
|
|
1067
|
+
@computed @key resourceAppId: string;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
911
1070
|
@entity model internalDomainFederation extends samlOrWsFedProvider {
|
|
912
1071
|
activeSignInUri: string | null;
|
|
913
1072
|
federatedIdpMfaBehavior: federatedIdpMfaBehavior | null;
|
|
@@ -1065,6 +1224,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1065
1224
|
@contains claimsMappingPolicies: claimsMappingPolicy[];
|
|
1066
1225
|
@contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
|
|
1067
1226
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
1227
|
+
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
1068
1228
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
1069
1229
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
1070
1230
|
@contains tokenIssuancePolicies: tokenIssuancePolicy[];
|
|
@@ -1079,6 +1239,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1079
1239
|
|
|
1080
1240
|
@entity model remoteDesktopSecurityConfiguration extends entity {
|
|
1081
1241
|
isRemoteDesktopProtocolEnabled: boolean;
|
|
1242
|
+
@contains approvedClientApps: approvedClientApp[];
|
|
1082
1243
|
@contains targetDeviceGroups: targetDeviceGroup[];
|
|
1083
1244
|
}
|
|
1084
1245
|
|
|
@@ -1133,12 +1294,14 @@ namespace reference.`microsoft.graph` {
|
|
|
1133
1294
|
appOwnerOrganizationId: guid | null;
|
|
1134
1295
|
appRoleAssignmentRequired: boolean;
|
|
1135
1296
|
appRoles: appRole[];
|
|
1297
|
+
createdByAppId: string | null;
|
|
1136
1298
|
customSecurityAttributes: customSecurityAttributeValue | null;
|
|
1137
1299
|
description: string | null;
|
|
1138
1300
|
disabledByMicrosoftStatus: string | null;
|
|
1139
1301
|
displayName: string | null;
|
|
1140
1302
|
homepage: string | null;
|
|
1141
1303
|
info: informationalUrl | null;
|
|
1304
|
+
isDisabled: boolean | null;
|
|
1142
1305
|
keyCredentials: keyCredential[];
|
|
1143
1306
|
loginUrl: string | null;
|
|
1144
1307
|
logoutUrl: string | null;
|
|
@@ -1278,6 +1441,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1278
1441
|
faxNumber: string | null;
|
|
1279
1442
|
givenName: string | null;
|
|
1280
1443
|
identities: objectIdentity[] | null;
|
|
1444
|
+
identityParentId: string | null;
|
|
1281
1445
|
imAddresses: string[] | null;
|
|
1282
1446
|
isManagementRestricted: boolean | null;
|
|
1283
1447
|
isResourceAccount: boolean | null;
|
|
@@ -1355,6 +1519,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1355
1519
|
unknownFutureValue: 99,
|
|
1356
1520
|
}
|
|
1357
1521
|
|
|
1522
|
+
enum appManagementRestrictionState {
|
|
1523
|
+
enabled: 1,
|
|
1524
|
+
disabled: 2,
|
|
1525
|
+
unknownFutureValue: 3,
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1358
1528
|
enum authenticationProtocol {
|
|
1359
1529
|
wsFed: 0,
|
|
1360
1530
|
saml: 1,
|
|
@@ -1384,6 +1554,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1384
1554
|
unknownFutureValue: 4,
|
|
1385
1555
|
}
|
|
1386
1556
|
|
|
1557
|
+
enum customSecurityAttributeComparisonOperator {
|
|
1558
|
+
equals: 1,
|
|
1559
|
+
unknownFutureValue: 2,
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1387
1562
|
enum federatedIdpMfaBehavior {
|
|
1388
1563
|
acceptIfMfaDoneByFederatedIdp: 0,
|
|
1389
1564
|
enforceMfaByFederatedIdp: 1,
|
|
@@ -1397,6 +1572,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1397
1572
|
unknownFutureValue: 10,
|
|
1398
1573
|
}
|
|
1399
1574
|
|
|
1575
|
+
enum multiFactorAuthConfiguration {
|
|
1576
|
+
notRequired: 0,
|
|
1577
|
+
required: 1,
|
|
1578
|
+
unknownFutureValue: 2,
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1400
1581
|
enum onPremisesDirectorySynchronizationDeletionPreventionType {
|
|
1401
1582
|
disabled: 0,
|
|
1402
1583
|
enabledForCount: 1,
|
|
@@ -1449,6 +1630,21 @@ namespace reference.`microsoft.graph` {
|
|
|
1449
1630
|
unknownFutureValue: 3,
|
|
1450
1631
|
}
|
|
1451
1632
|
|
|
1633
|
+
enum scopeCollectionKind {
|
|
1634
|
+
allAllowed: 0,
|
|
1635
|
+
enumerated: 1,
|
|
1636
|
+
none: 2,
|
|
1637
|
+
scopeKindNotSet: 3,
|
|
1638
|
+
unknownFutureValue: 4,
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
enum volumeType {
|
|
1642
|
+
operatingSystemVolume: 1,
|
|
1643
|
+
fixedDataVolume: 2,
|
|
1644
|
+
removableDataVolume: 3,
|
|
1645
|
+
unknownFutureValue: 4,
|
|
1646
|
+
}
|
|
1647
|
+
|
|
1452
1648
|
@graphFlags
|
|
1453
1649
|
enum weakAlgorithms {
|
|
1454
1650
|
rsaSha1: 1,
|