@microsoft/typespec-msgraph-reference 1.0.7 → 1.0.9
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 +15 -15
- package/.rush/temp/shrinkwrap-deps.json +37 -59
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +100 -2
- package/lib/Delos/Beta/main.tsp +764 -9
- package/lib/Delos/V1.0/main.tsp +670 -9
- package/lib/Fairfax/Beta/main.tsp +100 -2
- package/lib/Fairfax/V1.0/main.tsp +16 -11
- package/lib/GovSG/Beta/main.tsp +85 -0
- package/lib/Mooncake/Beta/main.tsp +100 -2
- package/lib/Prod/Beta/main.tsp +87 -22
- package/lib/USNat/Beta/main.tsp +100 -2
- package/lib/USNat/V1.0/main.tsp +14 -9
- package/lib/USSec/Beta/main.tsp +100 -2
- package/lib/USSec/V1.0/main.tsp +14 -9
- package/package.json +5 -5
package/lib/Delos/V1.0/main.tsp
CHANGED
|
@@ -289,6 +289,50 @@ namespace reference.`microsoft.graph` {
|
|
|
289
289
|
type: attendeeType | null;
|
|
290
290
|
}
|
|
291
291
|
|
|
292
|
+
@complex model attributeDefinition {
|
|
293
|
+
anchor: boolean;
|
|
294
|
+
apiExpressions: stringKeyStringValuePair[] | null;
|
|
295
|
+
caseExact: boolean;
|
|
296
|
+
defaultValue: string | null;
|
|
297
|
+
flowNullValues: boolean;
|
|
298
|
+
metadata: attributeDefinitionMetadataEntry[] | null;
|
|
299
|
+
multivalued: boolean;
|
|
300
|
+
mutability: mutability;
|
|
301
|
+
name: string | null;
|
|
302
|
+
referencedObjects: referencedObject[] | null;
|
|
303
|
+
required: boolean;
|
|
304
|
+
type: attributeType;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
@complex model attributeDefinitionMetadataEntry {
|
|
308
|
+
key: attributeDefinitionMetadata | null;
|
|
309
|
+
value: string | null;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
@complex model attributeMapping {
|
|
313
|
+
defaultValue: string | null;
|
|
314
|
+
exportMissingReferences: boolean;
|
|
315
|
+
flowBehavior: attributeFlowBehavior;
|
|
316
|
+
flowType: attributeFlowType;
|
|
317
|
+
matchingPriority: int32;
|
|
318
|
+
source: attributeMappingSource | null;
|
|
319
|
+
targetAttributeName: string | null;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
@complex model attributeMappingParameterSchema {
|
|
323
|
+
allowMultipleOccurrences: boolean;
|
|
324
|
+
name: string | null;
|
|
325
|
+
required: boolean;
|
|
326
|
+
type: attributeType;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
@complex model attributeMappingSource {
|
|
330
|
+
expression: string | null;
|
|
331
|
+
name: string | null;
|
|
332
|
+
parameters: stringKeyAttributeMappingSourceValuePair[] | null;
|
|
333
|
+
type: attributeMappingSourceType;
|
|
334
|
+
}
|
|
335
|
+
|
|
292
336
|
@complex model audio {
|
|
293
337
|
album: string | null;
|
|
294
338
|
albumArtist: string | null;
|
|
@@ -704,6 +748,10 @@ namespace reference.`microsoft.graph` {
|
|
|
704
748
|
collectionId: string | null;
|
|
705
749
|
}
|
|
706
750
|
|
|
751
|
+
@complex model containerFilter {
|
|
752
|
+
includedContainers: string[] | null;
|
|
753
|
+
}
|
|
754
|
+
|
|
707
755
|
@complex model contentApprovalStatusColumn {
|
|
708
756
|
}
|
|
709
757
|
|
|
@@ -1529,6 +1577,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1529
1577
|
@complex model exclusionGroupAssignmentTarget extends groupAssignmentTarget {
|
|
1530
1578
|
}
|
|
1531
1579
|
|
|
1580
|
+
@complex model expressionInputObject {
|
|
1581
|
+
definition: objectDefinition | null;
|
|
1582
|
+
properties: stringKeyObjectValuePair[] | null;
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1532
1585
|
@complex model extensionSchemaProperty {
|
|
1533
1586
|
name: string | null;
|
|
1534
1587
|
type: string | null;
|
|
@@ -1637,6 +1690,27 @@ namespace reference.`microsoft.graph` {
|
|
|
1637
1690
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
1638
1691
|
}
|
|
1639
1692
|
|
|
1693
|
+
@complex model filter {
|
|
1694
|
+
categoryFilterGroups: filterGroup[] | null;
|
|
1695
|
+
groups: filterGroup[] | null;
|
|
1696
|
+
inputFilterGroups: filterGroup[] | null;
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
@complex model filterClause {
|
|
1700
|
+
operatorName: string | null;
|
|
1701
|
+
sourceOperandName: string | null;
|
|
1702
|
+
targetOperand: filterOperand | null;
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
@complex model filterGroup {
|
|
1706
|
+
clauses: filterClause[] | null;
|
|
1707
|
+
name: string | null;
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
@complex model filterOperand {
|
|
1711
|
+
values: string[] | null;
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1640
1714
|
@complex model folder {
|
|
1641
1715
|
childCount: int32 | null;
|
|
1642
1716
|
view: folderView | null;
|
|
@@ -1684,6 +1758,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1684
1758
|
groupId: string | null;
|
|
1685
1759
|
}
|
|
1686
1760
|
|
|
1761
|
+
@complex model groupFilter {
|
|
1762
|
+
includedGroups: string[] | null;
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1687
1765
|
@complex model hashes {
|
|
1688
1766
|
crc32Hash: string | null;
|
|
1689
1767
|
quickXorHash: string | null;
|
|
@@ -2213,17 +2291,8 @@ namespace reference.`microsoft.graph` {
|
|
|
2213
2291
|
value: string | null;
|
|
2214
2292
|
}
|
|
2215
2293
|
|
|
2216
|
-
/**
|
|
2217
|
-
* Key value pair for storing custom settings
|
|
2218
|
-
*/
|
|
2219
2294
|
@complex model keyValuePair {
|
|
2220
|
-
/**
|
|
2221
|
-
* Name for this key-value pair
|
|
2222
|
-
*/
|
|
2223
2295
|
name: string;
|
|
2224
|
-
/**
|
|
2225
|
-
* Value for this key-value pair
|
|
2226
|
-
*/
|
|
2227
2296
|
value: string | null;
|
|
2228
2297
|
}
|
|
2229
2298
|
|
|
@@ -2747,12 +2816,40 @@ namespace reference.`microsoft.graph` {
|
|
|
2747
2816
|
minimum: float64 | null;
|
|
2748
2817
|
}
|
|
2749
2818
|
|
|
2819
|
+
@complex model objectDefinition {
|
|
2820
|
+
attributes: attributeDefinition[] | null;
|
|
2821
|
+
metadata: objectDefinitionMetadataEntry[] | null;
|
|
2822
|
+
name: string | null;
|
|
2823
|
+
supportedApis: string[] | null;
|
|
2824
|
+
}
|
|
2825
|
+
|
|
2826
|
+
@complex model objectDefinitionMetadataEntry {
|
|
2827
|
+
key: objectDefinitionMetadata | null;
|
|
2828
|
+
value: string | null;
|
|
2829
|
+
}
|
|
2830
|
+
|
|
2750
2831
|
@complex model objectIdentity {
|
|
2751
2832
|
issuer: string | null;
|
|
2752
2833
|
issuerAssignedId: string | null;
|
|
2753
2834
|
signInType: string | null;
|
|
2754
2835
|
}
|
|
2755
2836
|
|
|
2837
|
+
@complex model objectMapping {
|
|
2838
|
+
attributeMappings: attributeMapping[] | null;
|
|
2839
|
+
enabled: boolean;
|
|
2840
|
+
flowTypes: objectFlowTypes;
|
|
2841
|
+
metadata: objectMappingMetadataEntry[] | null;
|
|
2842
|
+
name: string | null;
|
|
2843
|
+
scope: filter | null;
|
|
2844
|
+
sourceObjectName: string | null;
|
|
2845
|
+
targetObjectName: string | null;
|
|
2846
|
+
}
|
|
2847
|
+
|
|
2848
|
+
@complex model objectMappingMetadataEntry {
|
|
2849
|
+
key: objectMappingMetadata | null;
|
|
2850
|
+
value: string | null;
|
|
2851
|
+
}
|
|
2852
|
+
|
|
2756
2853
|
/**
|
|
2757
2854
|
* OMA Settings definition.
|
|
2758
2855
|
*/
|
|
@@ -3000,6 +3097,14 @@ namespace reference.`microsoft.graph` {
|
|
|
3000
3097
|
legalAgeGroupRule: string | null;
|
|
3001
3098
|
}
|
|
3002
3099
|
|
|
3100
|
+
@complex model parseExpressionResponse {
|
|
3101
|
+
error: publicError | null;
|
|
3102
|
+
evaluationResult: string[] | null;
|
|
3103
|
+
evaluationSucceeded: boolean;
|
|
3104
|
+
parsedExpression: attributeMappingSource | null;
|
|
3105
|
+
parsingSucceeded: boolean;
|
|
3106
|
+
}
|
|
3107
|
+
|
|
3003
3108
|
@complex model passwordCredential {
|
|
3004
3109
|
customKeyIdentifier: binary | null;
|
|
3005
3110
|
displayName: string | null;
|
|
@@ -3278,6 +3383,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3278
3383
|
target: string | null;
|
|
3279
3384
|
}
|
|
3280
3385
|
|
|
3386
|
+
@complex model publicErrorResponse {
|
|
3387
|
+
error: publicError | null;
|
|
3388
|
+
}
|
|
3389
|
+
|
|
3281
3390
|
@open
|
|
3282
3391
|
@complex model publicInnerError {
|
|
3283
3392
|
code: string | null;
|
|
@@ -3339,6 +3448,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3339
3448
|
uri: string | null;
|
|
3340
3449
|
}
|
|
3341
3450
|
|
|
3451
|
+
@complex model referencedObject {
|
|
3452
|
+
referencedObjectName: string | null;
|
|
3453
|
+
referencedProperty: string | null;
|
|
3454
|
+
}
|
|
3455
|
+
|
|
3342
3456
|
@complex model registrationEnforcement {
|
|
3343
3457
|
authenticationMethodsRegistrationCampaign: authenticationMethodsRegistrationCampaign | null;
|
|
3344
3458
|
}
|
|
@@ -3566,6 +3680,12 @@ namespace reference.`microsoft.graph` {
|
|
|
3566
3680
|
searchablePlainTexts: metaDataKeyStringPair[] | null;
|
|
3567
3681
|
}
|
|
3568
3682
|
|
|
3683
|
+
@complex model serviceHealthIssuePost {
|
|
3684
|
+
@computed createdDateTime: offsetDateTime;
|
|
3685
|
+
description: itemBody | null;
|
|
3686
|
+
postType: postType | null;
|
|
3687
|
+
}
|
|
3688
|
+
|
|
3569
3689
|
@complex model servicePlanInfo {
|
|
3570
3690
|
appliesTo: string | null;
|
|
3571
3691
|
provisioningStatus: string | null;
|
|
@@ -3585,6 +3705,12 @@ namespace reference.`microsoft.graph` {
|
|
|
3585
3705
|
servicePrincipalId: string | null;
|
|
3586
3706
|
}
|
|
3587
3707
|
|
|
3708
|
+
@complex model serviceUpdateMessageViewpoint {
|
|
3709
|
+
isArchived: boolean | null;
|
|
3710
|
+
isFavorited: boolean | null;
|
|
3711
|
+
isRead: boolean | null;
|
|
3712
|
+
}
|
|
3713
|
+
|
|
3588
3714
|
@complex model settingSource {
|
|
3589
3715
|
displayName: string | null;
|
|
3590
3716
|
id: string | null;
|
|
@@ -3777,6 +3903,130 @@ namespace reference.`microsoft.graph` {
|
|
|
3777
3903
|
upgradeAvailable: boolean | null;
|
|
3778
3904
|
}
|
|
3779
3905
|
|
|
3906
|
+
@complex model stringKeyAttributeMappingSourceValuePair {
|
|
3907
|
+
key: string | null;
|
|
3908
|
+
value: attributeMappingSource | null;
|
|
3909
|
+
}
|
|
3910
|
+
|
|
3911
|
+
@complex model stringKeyLongValuePair {
|
|
3912
|
+
key: string | null;
|
|
3913
|
+
value: int64;
|
|
3914
|
+
}
|
|
3915
|
+
|
|
3916
|
+
@open
|
|
3917
|
+
@complex model stringKeyObjectValuePair {
|
|
3918
|
+
key: string | null;
|
|
3919
|
+
}
|
|
3920
|
+
|
|
3921
|
+
@complex model stringKeyStringValuePair {
|
|
3922
|
+
key: string | null;
|
|
3923
|
+
value: string | null;
|
|
3924
|
+
}
|
|
3925
|
+
|
|
3926
|
+
@complex model synchronizationError {
|
|
3927
|
+
code: string | null;
|
|
3928
|
+
message: string | null;
|
|
3929
|
+
tenantActionable: boolean;
|
|
3930
|
+
}
|
|
3931
|
+
|
|
3932
|
+
@complex model synchronizationJobApplicationParameters {
|
|
3933
|
+
ruleId: string | null;
|
|
3934
|
+
subjects: synchronizationJobSubject[] | null;
|
|
3935
|
+
}
|
|
3936
|
+
|
|
3937
|
+
@complex model synchronizationJobRestartCriteria {
|
|
3938
|
+
resetScope: synchronizationJobRestartScope | null;
|
|
3939
|
+
}
|
|
3940
|
+
|
|
3941
|
+
@complex model synchronizationJobSubject {
|
|
3942
|
+
links: synchronizationLinkedObjects | null;
|
|
3943
|
+
objectId: string | null;
|
|
3944
|
+
objectTypeName: string | null;
|
|
3945
|
+
}
|
|
3946
|
+
|
|
3947
|
+
@complex model synchronizationLinkedObjects {
|
|
3948
|
+
manager: synchronizationJobSubject | null;
|
|
3949
|
+
members: synchronizationJobSubject[] | null;
|
|
3950
|
+
owners: synchronizationJobSubject[] | null;
|
|
3951
|
+
}
|
|
3952
|
+
|
|
3953
|
+
@complex model synchronizationMetadataEntry {
|
|
3954
|
+
key: synchronizationMetadata | null;
|
|
3955
|
+
value: string | null;
|
|
3956
|
+
}
|
|
3957
|
+
|
|
3958
|
+
@complex model synchronizationProgress {
|
|
3959
|
+
completedUnits: int64;
|
|
3960
|
+
progressObservationDateTime: offsetDateTime;
|
|
3961
|
+
totalUnits: int64;
|
|
3962
|
+
units: string | null;
|
|
3963
|
+
}
|
|
3964
|
+
|
|
3965
|
+
@complex model synchronizationQuarantine {
|
|
3966
|
+
currentBegan: offsetDateTime;
|
|
3967
|
+
error: synchronizationError | null;
|
|
3968
|
+
nextAttempt: offsetDateTime;
|
|
3969
|
+
reason: quarantineReason;
|
|
3970
|
+
seriesBegan: offsetDateTime;
|
|
3971
|
+
seriesCount: int64;
|
|
3972
|
+
}
|
|
3973
|
+
|
|
3974
|
+
@complex model synchronizationRule {
|
|
3975
|
+
containerFilter: containerFilter | null;
|
|
3976
|
+
editable: boolean;
|
|
3977
|
+
groupFilter: groupFilter | null;
|
|
3978
|
+
id: string | null;
|
|
3979
|
+
metadata: stringKeyStringValuePair[] | null;
|
|
3980
|
+
name: string | null;
|
|
3981
|
+
objectMappings: objectMapping[] | null;
|
|
3982
|
+
priority: int32;
|
|
3983
|
+
sourceDirectoryName: string | null;
|
|
3984
|
+
targetDirectoryName: string | null;
|
|
3985
|
+
}
|
|
3986
|
+
|
|
3987
|
+
@complex model synchronizationSchedule {
|
|
3988
|
+
expiration: offsetDateTime | null;
|
|
3989
|
+
interval: duration;
|
|
3990
|
+
state: synchronizationScheduleState;
|
|
3991
|
+
}
|
|
3992
|
+
|
|
3993
|
+
@complex model synchronizationSecretKeyStringValuePair {
|
|
3994
|
+
key: synchronizationSecret;
|
|
3995
|
+
value: string | null;
|
|
3996
|
+
}
|
|
3997
|
+
|
|
3998
|
+
@complex model synchronizationStatus {
|
|
3999
|
+
code: synchronizationStatusCode;
|
|
4000
|
+
countSuccessiveCompleteFailures: int64;
|
|
4001
|
+
escrowsPruned: boolean;
|
|
4002
|
+
lastExecution: synchronizationTaskExecution | null;
|
|
4003
|
+
lastSuccessfulExecution: synchronizationTaskExecution | null;
|
|
4004
|
+
lastSuccessfulExecutionWithExports: synchronizationTaskExecution | null;
|
|
4005
|
+
progress: synchronizationProgress[] | null;
|
|
4006
|
+
quarantine: synchronizationQuarantine | null;
|
|
4007
|
+
steadyStateFirstAchievedTime: offsetDateTime;
|
|
4008
|
+
steadyStateLastAchievedTime: offsetDateTime;
|
|
4009
|
+
synchronizedEntryCountByType: stringKeyLongValuePair[] | null;
|
|
4010
|
+
troubleshootingUrl: string | null;
|
|
4011
|
+
}
|
|
4012
|
+
|
|
4013
|
+
@complex model synchronizationTaskExecution {
|
|
4014
|
+
activityIdentifier: string | null;
|
|
4015
|
+
countEntitled: int64;
|
|
4016
|
+
countEntitledForProvisioning: int64;
|
|
4017
|
+
countEscrowed: int64;
|
|
4018
|
+
countEscrowedRaw: int64;
|
|
4019
|
+
countExported: int64;
|
|
4020
|
+
countExports: int64;
|
|
4021
|
+
countImported: int64;
|
|
4022
|
+
countImportedDeltas: int64;
|
|
4023
|
+
countImportedReferenceDeltas: int64;
|
|
4024
|
+
error: synchronizationError | null;
|
|
4025
|
+
state: synchronizationTaskExecutionResult;
|
|
4026
|
+
timeBegan: offsetDateTime;
|
|
4027
|
+
timeEnded: offsetDateTime;
|
|
4028
|
+
}
|
|
4029
|
+
|
|
3780
4030
|
@complex model systemFacet {
|
|
3781
4031
|
}
|
|
3782
4032
|
|
|
@@ -4934,6 +5184,7 @@ namespace reference.`microsoft.graph` {
|
|
|
4934
5184
|
|
|
4935
5185
|
@entity model admin extends MsGraph.SharedModels.entity {
|
|
4936
5186
|
@contains people: peopleAdminSettings | null;
|
|
5187
|
+
@contains serviceAnnouncement: serviceAnnouncement | null;
|
|
4937
5188
|
@contains sharepoint: sharepoint | null;
|
|
4938
5189
|
}
|
|
4939
5190
|
|
|
@@ -5694,6 +5945,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5694
5945
|
@contains extensionProperties: extensionProperty[];
|
|
5695
5946
|
@contains federatedIdentityCredentials: federatedIdentityCredential[];
|
|
5696
5947
|
@references owners: directoryObject[];
|
|
5948
|
+
@contains synchronization: synchronization | null;
|
|
5697
5949
|
@references tokenIssuancePolicies: tokenIssuancePolicy[];
|
|
5698
5950
|
@references tokenLifetimePolicies: tokenLifetimePolicy[];
|
|
5699
5951
|
}
|
|
@@ -5765,6 +6017,10 @@ namespace reference.`microsoft.graph` {
|
|
|
5765
6017
|
size: int32;
|
|
5766
6018
|
}
|
|
5767
6019
|
|
|
6020
|
+
@entity model attributeMappingFunctionSchema extends entity {
|
|
6021
|
+
parameters: attributeMappingParameterSchema[] | null;
|
|
6022
|
+
}
|
|
6023
|
+
|
|
5768
6024
|
@entity model attributeSet extends entity {
|
|
5769
6025
|
description: string | null;
|
|
5770
6026
|
maxAttributesPerSet: int32 | null;
|
|
@@ -5912,6 +6168,9 @@ namespace reference.`microsoft.graph` {
|
|
|
5912
6168
|
volumeType: volumeType | null;
|
|
5913
6169
|
}
|
|
5914
6170
|
|
|
6171
|
+
@entity model bulkUpload extends entity {
|
|
6172
|
+
}
|
|
6173
|
+
|
|
5915
6174
|
@entity model calendar extends entity {
|
|
5916
6175
|
allowedOnlineMeetingProviders: onlineMeetingProviderType[] | null;
|
|
5917
6176
|
canEdit: boolean | null;
|
|
@@ -7758,6 +8017,15 @@ namespace reference.`microsoft.graph` {
|
|
|
7758
8017
|
targetResources: targetResource[] | null;
|
|
7759
8018
|
}
|
|
7760
8019
|
|
|
8020
|
+
@entity model directoryDefinition extends entity {
|
|
8021
|
+
discoverabilities: directoryDefinitionDiscoverabilities;
|
|
8022
|
+
discoveryDateTime: offsetDateTime | null;
|
|
8023
|
+
name: string | null;
|
|
8024
|
+
objects: objectDefinition[] | null;
|
|
8025
|
+
readOnly: boolean;
|
|
8026
|
+
version: string | null;
|
|
8027
|
+
}
|
|
8028
|
+
|
|
7761
8029
|
@open
|
|
7762
8030
|
@entity model directoryObject extends entity {
|
|
7763
8031
|
deletedDateTime: offsetDateTime | null;
|
|
@@ -8232,6 +8500,12 @@ namespace reference.`microsoft.graph` {
|
|
|
8232
8500
|
@contains applicationPermissionGrants: fileStorageContainerTypeAppPermissionGrant[];
|
|
8233
8501
|
}
|
|
8234
8502
|
|
|
8503
|
+
@entity model filterOperatorSchema extends entity {
|
|
8504
|
+
arity: scopeOperatorType;
|
|
8505
|
+
multivaluedComparisonType: scopeOperatorMultiValuedComparisonType;
|
|
8506
|
+
supportedAttributeTypes: attributeType[];
|
|
8507
|
+
}
|
|
8508
|
+
|
|
8235
8509
|
@open
|
|
8236
8510
|
@entity model group extends directoryObject {
|
|
8237
8511
|
accessType: groupAccessType | null;
|
|
@@ -11823,6 +12097,47 @@ namespace reference.`microsoft.graph` {
|
|
|
11823
12097
|
roleMemberInfo: identity;
|
|
11824
12098
|
}
|
|
11825
12099
|
|
|
12100
|
+
@entity model serviceAnnouncement extends entity {
|
|
12101
|
+
@contains healthOverviews: serviceHealth[];
|
|
12102
|
+
@contains issues: serviceHealthIssue[];
|
|
12103
|
+
@contains messages: serviceUpdateMessage[];
|
|
12104
|
+
}
|
|
12105
|
+
|
|
12106
|
+
@entity model serviceAnnouncementAttachment extends entity {
|
|
12107
|
+
content: stream | null;
|
|
12108
|
+
contentType: string | null;
|
|
12109
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
12110
|
+
name: string | null;
|
|
12111
|
+
size: int32;
|
|
12112
|
+
}
|
|
12113
|
+
|
|
12114
|
+
@abstract
|
|
12115
|
+
@entity model serviceAnnouncementBase extends entity {
|
|
12116
|
+
details: keyValuePair[] | null;
|
|
12117
|
+
endDateTime: offsetDateTime | null;
|
|
12118
|
+
@computed lastModifiedDateTime: offsetDateTime;
|
|
12119
|
+
startDateTime: offsetDateTime;
|
|
12120
|
+
title: string;
|
|
12121
|
+
}
|
|
12122
|
+
|
|
12123
|
+
@entity model serviceHealth extends entity {
|
|
12124
|
+
service: string;
|
|
12125
|
+
status: serviceHealthStatus;
|
|
12126
|
+
@contains issues: serviceHealthIssue[];
|
|
12127
|
+
}
|
|
12128
|
+
|
|
12129
|
+
@entity model serviceHealthIssue extends serviceAnnouncementBase {
|
|
12130
|
+
classification: serviceHealthClassificationType;
|
|
12131
|
+
feature: string | null;
|
|
12132
|
+
featureGroup: string | null;
|
|
12133
|
+
impactDescription: string;
|
|
12134
|
+
isResolved: boolean;
|
|
12135
|
+
origin: serviceHealthOrigin;
|
|
12136
|
+
posts: serviceHealthIssuePost[];
|
|
12137
|
+
service: string;
|
|
12138
|
+
status: serviceHealthStatus;
|
|
12139
|
+
}
|
|
12140
|
+
|
|
11826
12141
|
@open
|
|
11827
12142
|
@entity model servicePrincipal extends directoryObject {
|
|
11828
12143
|
accountEnabled: boolean | null;
|
|
@@ -11873,6 +12188,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11873
12188
|
@references ownedObjects: directoryObject[];
|
|
11874
12189
|
@references owners: directoryObject[];
|
|
11875
12190
|
@contains remoteDesktopSecurityConfiguration: remoteDesktopSecurityConfiguration | null;
|
|
12191
|
+
@contains synchronization: synchronization | null;
|
|
11876
12192
|
@references tokenIssuancePolicies: tokenIssuancePolicy[];
|
|
11877
12193
|
@references tokenLifetimePolicies: tokenLifetimePolicy[];
|
|
11878
12194
|
@references transitiveMemberOf: directoryObject[];
|
|
@@ -11901,6 +12217,20 @@ namespace reference.`microsoft.graph` {
|
|
|
11901
12217
|
tokenIssuerType: tokenIssuerType | null;
|
|
11902
12218
|
}
|
|
11903
12219
|
|
|
12220
|
+
@entity model serviceUpdateMessage extends serviceAnnouncementBase {
|
|
12221
|
+
actionRequiredByDateTime: offsetDateTime | null;
|
|
12222
|
+
attachmentsArchive: stream | null;
|
|
12223
|
+
body: itemBody;
|
|
12224
|
+
category: serviceUpdateCategory;
|
|
12225
|
+
hasAttachments: boolean;
|
|
12226
|
+
isMajorChange: boolean | null;
|
|
12227
|
+
services: string[] | null;
|
|
12228
|
+
severity: serviceUpdateSeverity;
|
|
12229
|
+
tags: string[] | null;
|
|
12230
|
+
viewPoint: serviceUpdateMessageViewpoint | null;
|
|
12231
|
+
@contains attachments: serviceAnnouncementAttachment[];
|
|
12232
|
+
}
|
|
12233
|
+
|
|
11904
12234
|
/**
|
|
11905
12235
|
* Device Compilance Policy and Configuration for a Setting State summary
|
|
11906
12236
|
*/
|
|
@@ -12295,6 +12625,37 @@ namespace reference.`microsoft.graph` {
|
|
|
12295
12625
|
resource: string;
|
|
12296
12626
|
}
|
|
12297
12627
|
|
|
12628
|
+
@entity model synchronization extends entity {
|
|
12629
|
+
secrets: synchronizationSecretKeyStringValuePair[] | null;
|
|
12630
|
+
@contains jobs: synchronizationJob[];
|
|
12631
|
+
@contains templates: synchronizationTemplate[];
|
|
12632
|
+
}
|
|
12633
|
+
|
|
12634
|
+
@entity model synchronizationJob extends entity {
|
|
12635
|
+
schedule: synchronizationSchedule | null;
|
|
12636
|
+
status: synchronizationStatus | null;
|
|
12637
|
+
synchronizationJobSettings: keyValuePair[] | null;
|
|
12638
|
+
templateId: string | null;
|
|
12639
|
+
@contains bulkUpload: bulkUpload | null;
|
|
12640
|
+
@contains schema: synchronizationSchema | null;
|
|
12641
|
+
}
|
|
12642
|
+
|
|
12643
|
+
@entity model synchronizationSchema extends entity {
|
|
12644
|
+
synchronizationRules: synchronizationRule[] | null;
|
|
12645
|
+
version: string | null;
|
|
12646
|
+
@contains directories: directoryDefinition[];
|
|
12647
|
+
}
|
|
12648
|
+
|
|
12649
|
+
@entity model synchronizationTemplate extends entity {
|
|
12650
|
+
applicationId: guid;
|
|
12651
|
+
default: boolean;
|
|
12652
|
+
description: string | null;
|
|
12653
|
+
discoverable: boolean;
|
|
12654
|
+
factoryTag: string | null;
|
|
12655
|
+
metadata: synchronizationMetadataEntry[] | null;
|
|
12656
|
+
@contains schema: synchronizationSchema | null;
|
|
12657
|
+
}
|
|
12658
|
+
|
|
12298
12659
|
@entity model targetDeviceGroup extends entity {
|
|
12299
12660
|
displayName: string | null;
|
|
12300
12661
|
}
|
|
@@ -16605,6 +16966,51 @@ namespace reference.`microsoft.graph` {
|
|
|
16605
16966
|
unknownFutureValue: 2,
|
|
16606
16967
|
}
|
|
16607
16968
|
|
|
16969
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
16970
|
+
enum attributeDefinitionMetadata {
|
|
16971
|
+
BaseAttributeName: 0,
|
|
16972
|
+
ComplexObjectDefinition: 1,
|
|
16973
|
+
IsContainer: 2,
|
|
16974
|
+
IsCustomerDefined: 3,
|
|
16975
|
+
IsDomainQualified: 4,
|
|
16976
|
+
LinkPropertyNames: 5,
|
|
16977
|
+
LinkTypeName: 6,
|
|
16978
|
+
MaximumLength: 7,
|
|
16979
|
+
ReferencedProperty: 8,
|
|
16980
|
+
}
|
|
16981
|
+
|
|
16982
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
16983
|
+
enum attributeFlowBehavior {
|
|
16984
|
+
FlowWhenChanged: 0,
|
|
16985
|
+
FlowAlways: 1,
|
|
16986
|
+
}
|
|
16987
|
+
|
|
16988
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
16989
|
+
enum attributeFlowType {
|
|
16990
|
+
Always: 0,
|
|
16991
|
+
ObjectAddOnly: 1,
|
|
16992
|
+
MultiValueAddOnly: 2,
|
|
16993
|
+
ValueAddOnly: 3,
|
|
16994
|
+
AttributeAddOnly: 4,
|
|
16995
|
+
}
|
|
16996
|
+
|
|
16997
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
16998
|
+
enum attributeMappingSourceType {
|
|
16999
|
+
Attribute: 0,
|
|
17000
|
+
Constant: 1,
|
|
17001
|
+
Function: 2,
|
|
17002
|
+
}
|
|
17003
|
+
|
|
17004
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
17005
|
+
enum attributeType {
|
|
17006
|
+
`String`: 0,
|
|
17007
|
+
`Integer`: 1,
|
|
17008
|
+
Reference: 2,
|
|
17009
|
+
Binary: 3,
|
|
17010
|
+
`Boolean`: 4,
|
|
17011
|
+
DateTime: 5,
|
|
17012
|
+
}
|
|
17013
|
+
|
|
16608
17014
|
enum authenticationMethodFeature {
|
|
16609
17015
|
ssprRegistered: 0,
|
|
16610
17016
|
ssprEnabled: 1,
|
|
@@ -17849,6 +18255,16 @@ namespace reference.`microsoft.graph` {
|
|
|
17849
18255
|
full: 4,
|
|
17850
18256
|
}
|
|
17851
18257
|
|
|
18258
|
+
@graphFlags
|
|
18259
|
+
enum directoryDefinitionDiscoverabilities {
|
|
18260
|
+
None: 0,
|
|
18261
|
+
AttributeNames: 1,
|
|
18262
|
+
AttributeDataTypes: 2,
|
|
18263
|
+
AttributeReadOnly: 4,
|
|
18264
|
+
ReferenceAttributes: 8,
|
|
18265
|
+
UnknownFutureValue: 16,
|
|
18266
|
+
}
|
|
18267
|
+
|
|
17852
18268
|
enum diskType {
|
|
17853
18269
|
/**
|
|
17854
18270
|
* Enum member for unknown or default diskType.
|
|
@@ -17975,6 +18391,23 @@ namespace reference.`microsoft.graph` {
|
|
|
17975
18391
|
notContacted: 4,
|
|
17976
18392
|
}
|
|
17977
18393
|
|
|
18394
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
18395
|
+
enum entryExportStatus {
|
|
18396
|
+
Noop: 0,
|
|
18397
|
+
Success: 1,
|
|
18398
|
+
RetryableError: 2,
|
|
18399
|
+
PermanentError: 3,
|
|
18400
|
+
Error: 4,
|
|
18401
|
+
}
|
|
18402
|
+
|
|
18403
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
18404
|
+
enum entrySyncOperation {
|
|
18405
|
+
None: 0,
|
|
18406
|
+
Add: 1,
|
|
18407
|
+
Delete: 2,
|
|
18408
|
+
Update: 3,
|
|
18409
|
+
}
|
|
18410
|
+
|
|
17978
18411
|
enum errorCorrectionLevel {
|
|
17979
18412
|
l: 1,
|
|
17980
18413
|
m: 2,
|
|
@@ -17983,6 +18416,12 @@ namespace reference.`microsoft.graph` {
|
|
|
17983
18416
|
unknownFutureValue: 5,
|
|
17984
18417
|
}
|
|
17985
18418
|
|
|
18419
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
18420
|
+
enum escrowBehavior {
|
|
18421
|
+
Default: 1,
|
|
18422
|
+
IgnoreLookupReferenceResolutionFailure: 2,
|
|
18423
|
+
}
|
|
18424
|
+
|
|
17986
18425
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
17987
18426
|
enum eventType {
|
|
17988
18427
|
singleInstance: 0,
|
|
@@ -19068,6 +19507,14 @@ namespace reference.`microsoft.graph` {
|
|
|
19068
19507
|
unknownFutureValue: 2,
|
|
19069
19508
|
}
|
|
19070
19509
|
|
|
19510
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19511
|
+
enum mutability {
|
|
19512
|
+
ReadWrite: 0,
|
|
19513
|
+
ReadOnly: 1,
|
|
19514
|
+
Immutable: 2,
|
|
19515
|
+
WriteOnly: 3,
|
|
19516
|
+
}
|
|
19517
|
+
|
|
19071
19518
|
/**
|
|
19072
19519
|
* Branding Options for the Message Template. Branding is defined in the Intune Admin Console.
|
|
19073
19520
|
*/
|
|
@@ -19100,6 +19547,37 @@ namespace reference.`microsoft.graph` {
|
|
|
19100
19547
|
unknownFutureValue: 32,
|
|
19101
19548
|
}
|
|
19102
19549
|
|
|
19550
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19551
|
+
enum objectDefinitionMetadata {
|
|
19552
|
+
PropertyNameAccountEnabled: 0,
|
|
19553
|
+
PropertyNameSoftDeleted: 1,
|
|
19554
|
+
IsSoftDeletionSupported: 2,
|
|
19555
|
+
IsSynchronizeAllSupported: 3,
|
|
19556
|
+
ConnectorDataStorageRequired: 4,
|
|
19557
|
+
Extensions: 5,
|
|
19558
|
+
BaseObjectName: 6,
|
|
19559
|
+
}
|
|
19560
|
+
|
|
19561
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19562
|
+
@graphFlags
|
|
19563
|
+
enum objectFlowTypes {
|
|
19564
|
+
None: 0,
|
|
19565
|
+
Add: 1,
|
|
19566
|
+
Update: 2,
|
|
19567
|
+
Delete: 4,
|
|
19568
|
+
}
|
|
19569
|
+
|
|
19570
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19571
|
+
enum objectMappingMetadata {
|
|
19572
|
+
EscrowBehavior: 0,
|
|
19573
|
+
DisableMonitoringForChanges: 1,
|
|
19574
|
+
OriginalJoiningProperty: 2,
|
|
19575
|
+
Disposition: 3,
|
|
19576
|
+
IsCustomerDefined: 4,
|
|
19577
|
+
ExcludeFromReporting: 5,
|
|
19578
|
+
Unsynchronized: 6,
|
|
19579
|
+
}
|
|
19580
|
+
|
|
19103
19581
|
/**
|
|
19104
19582
|
* In macOS 12 and later, this command uses Erase All Content and Settings (EACS) on Mac computers with the Apple M1 chip or the Apple T2 Security Chip. On those devices, if EACS can’t run, the device can use obliteration (macOS 11.x behavior). This key has no effect on machines prior to the T2 chip. Upon receiving this command, the device performs preflight checks to determine if the device is in a state that allows EACS. The ObliterationBehavior value defines the device's fallback behavior.
|
|
19105
19583
|
*/
|
|
@@ -19301,6 +19779,13 @@ namespace reference.`microsoft.graph` {
|
|
|
19301
19779
|
all: 100,
|
|
19302
19780
|
}
|
|
19303
19781
|
|
|
19782
|
+
enum postType {
|
|
19783
|
+
regular: 0,
|
|
19784
|
+
quick: 1,
|
|
19785
|
+
strategic: 2,
|
|
19786
|
+
unknownFutureValue: 3,
|
|
19787
|
+
}
|
|
19788
|
+
|
|
19304
19789
|
/**
|
|
19305
19790
|
* Possible values for pre-release features.
|
|
19306
19791
|
*/
|
|
@@ -19366,6 +19851,18 @@ namespace reference.`microsoft.graph` {
|
|
|
19366
19851
|
unknownFutureValue: 6,
|
|
19367
19852
|
}
|
|
19368
19853
|
|
|
19854
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19855
|
+
enum quarantineReason {
|
|
19856
|
+
EncounteredBaseEscrowThreshold: 0,
|
|
19857
|
+
EncounteredTotalEscrowThreshold: 1,
|
|
19858
|
+
EncounteredEscrowProportionThreshold: 2,
|
|
19859
|
+
EncounteredQuarantineException: 4,
|
|
19860
|
+
`Unknown`: 8,
|
|
19861
|
+
QuarantinedOnDemand: 16,
|
|
19862
|
+
TooManyDeletes: 32,
|
|
19863
|
+
IngestionInterrupted: 64,
|
|
19864
|
+
}
|
|
19865
|
+
|
|
19369
19866
|
/**
|
|
19370
19867
|
* Apps rating as in media content
|
|
19371
19868
|
*/
|
|
@@ -20212,6 +20709,18 @@ namespace reference.`microsoft.graph` {
|
|
|
20212
20709
|
unknownFutureValue: 4,
|
|
20213
20710
|
}
|
|
20214
20711
|
|
|
20712
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
20713
|
+
enum scopeOperatorMultiValuedComparisonType {
|
|
20714
|
+
All: 0,
|
|
20715
|
+
Any: 1,
|
|
20716
|
+
}
|
|
20717
|
+
|
|
20718
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
20719
|
+
enum scopeOperatorType {
|
|
20720
|
+
Binary: 0,
|
|
20721
|
+
Unary: 1,
|
|
20722
|
+
}
|
|
20723
|
+
|
|
20215
20724
|
enum sectionEmphasisType {
|
|
20216
20725
|
none: 0,
|
|
20217
20726
|
neutral: 1,
|
|
@@ -20241,6 +20750,54 @@ namespace reference.`microsoft.graph` {
|
|
|
20241
20750
|
unknownFutureValue: 3,
|
|
20242
20751
|
}
|
|
20243
20752
|
|
|
20753
|
+
enum serviceHealthClassificationType {
|
|
20754
|
+
advisory: 1,
|
|
20755
|
+
incident: 2,
|
|
20756
|
+
unknownFutureValue: 3,
|
|
20757
|
+
}
|
|
20758
|
+
|
|
20759
|
+
enum serviceHealthOrigin {
|
|
20760
|
+
microsoft: 1,
|
|
20761
|
+
thirdParty: 2,
|
|
20762
|
+
customer: 3,
|
|
20763
|
+
unknownFutureValue: 4,
|
|
20764
|
+
}
|
|
20765
|
+
|
|
20766
|
+
enum serviceHealthStatus {
|
|
20767
|
+
serviceOperational: 0,
|
|
20768
|
+
investigating: 1,
|
|
20769
|
+
restoringService: 2,
|
|
20770
|
+
verifyingService: 3,
|
|
20771
|
+
serviceRestored: 4,
|
|
20772
|
+
postIncidentReviewPublished: 5,
|
|
20773
|
+
serviceDegradation: 6,
|
|
20774
|
+
serviceInterruption: 7,
|
|
20775
|
+
extendedRecovery: 8,
|
|
20776
|
+
falsePositive: 9,
|
|
20777
|
+
investigationSuspended: 10,
|
|
20778
|
+
resolved: 11,
|
|
20779
|
+
mitigatedExternal: 12,
|
|
20780
|
+
mitigated: 13,
|
|
20781
|
+
resolvedExternal: 14,
|
|
20782
|
+
confirmed: 15,
|
|
20783
|
+
reported: 16,
|
|
20784
|
+
unknownFutureValue: 17,
|
|
20785
|
+
}
|
|
20786
|
+
|
|
20787
|
+
enum serviceUpdateCategory {
|
|
20788
|
+
preventOrFixIssue: 1,
|
|
20789
|
+
planForChange: 2,
|
|
20790
|
+
stayInformed: 3,
|
|
20791
|
+
unknownFutureValue: 4,
|
|
20792
|
+
}
|
|
20793
|
+
|
|
20794
|
+
enum serviceUpdateSeverity {
|
|
20795
|
+
normal: 1,
|
|
20796
|
+
high: 2,
|
|
20797
|
+
critical: 3,
|
|
20798
|
+
unknownFutureValue: 4,
|
|
20799
|
+
}
|
|
20800
|
+
|
|
20244
20801
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
20245
20802
|
enum settingSourceType {
|
|
20246
20803
|
deviceConfiguration: 0,
|
|
@@ -20417,6 +20974,110 @@ namespace reference.`microsoft.graph` {
|
|
|
20417
20974
|
allowed: 2,
|
|
20418
20975
|
}
|
|
20419
20976
|
|
|
20977
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
20978
|
+
enum synchronizationDisposition {
|
|
20979
|
+
Normal: 0,
|
|
20980
|
+
Discard: 1,
|
|
20981
|
+
Escrow: 2,
|
|
20982
|
+
}
|
|
20983
|
+
|
|
20984
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
20985
|
+
@graphFlags
|
|
20986
|
+
enum synchronizationJobRestartScope {
|
|
20987
|
+
None: 0,
|
|
20988
|
+
ConnectorDataStore: 1,
|
|
20989
|
+
Escrows: 2,
|
|
20990
|
+
Watermark: 4,
|
|
20991
|
+
QuarantineState: 8,
|
|
20992
|
+
Full: 15,
|
|
20993
|
+
ForceDeletes: 32,
|
|
20994
|
+
}
|
|
20995
|
+
|
|
20996
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
20997
|
+
enum synchronizationMetadata {
|
|
20998
|
+
GalleryApplicationIdentifier: 0,
|
|
20999
|
+
GalleryApplicationKey: 1,
|
|
21000
|
+
IsOAuthEnabled: 2,
|
|
21001
|
+
IsSynchronizationAgentAssignmentRequired: 3,
|
|
21002
|
+
IsSynchronizationAgentRequired: 4,
|
|
21003
|
+
IsSynchronizationInPreview: 5,
|
|
21004
|
+
OAuthSettings: 6,
|
|
21005
|
+
SynchronizationLearnMoreIbizaFwLink: 7,
|
|
21006
|
+
ConfigurationFields: 8,
|
|
21007
|
+
}
|
|
21008
|
+
|
|
21009
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
21010
|
+
enum synchronizationScheduleState {
|
|
21011
|
+
Active: 0,
|
|
21012
|
+
Disabled: 1,
|
|
21013
|
+
Paused: 2,
|
|
21014
|
+
}
|
|
21015
|
+
|
|
21016
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
21017
|
+
enum synchronizationSecret {
|
|
21018
|
+
None: 0,
|
|
21019
|
+
UserName: 1,
|
|
21020
|
+
Password: 2,
|
|
21021
|
+
SecretToken: 3,
|
|
21022
|
+
AppKey: 4,
|
|
21023
|
+
BaseAddress: 5,
|
|
21024
|
+
ClientIdentifier: 6,
|
|
21025
|
+
ClientSecret: 7,
|
|
21026
|
+
SingleSignOnType: 11,
|
|
21027
|
+
Sandbox: 12,
|
|
21028
|
+
Url: 13,
|
|
21029
|
+
Domain: 14,
|
|
21030
|
+
ConsumerKey: 15,
|
|
21031
|
+
ConsumerSecret: 16,
|
|
21032
|
+
TokenKey: 17,
|
|
21033
|
+
TokenExpiration: 18,
|
|
21034
|
+
Oauth2AccessToken: 19,
|
|
21035
|
+
Oauth2AccessTokenCreationTime: 20,
|
|
21036
|
+
Oauth2RefreshToken: 21,
|
|
21037
|
+
SyncAll: 22,
|
|
21038
|
+
InstanceName: 24,
|
|
21039
|
+
Oauth2ClientId: 27,
|
|
21040
|
+
Oauth2ClientSecret: 28,
|
|
21041
|
+
CompanyId: 29,
|
|
21042
|
+
UpdateKeyOnSoftDelete: 30,
|
|
21043
|
+
SynchronizationSchedule: 33,
|
|
21044
|
+
SystemOfRecord: 34,
|
|
21045
|
+
SandboxName: 35,
|
|
21046
|
+
EnforceDomain: 36,
|
|
21047
|
+
SyncNotificationSettings: 37,
|
|
21048
|
+
SkipOutOfScopeDeletions: 40,
|
|
21049
|
+
Oauth2AuthorizationCode: 62,
|
|
21050
|
+
Oauth2RedirectUri: 63,
|
|
21051
|
+
ApplicationTemplateIdentifier: 64,
|
|
21052
|
+
Oauth2TokenExchangeUri: 65,
|
|
21053
|
+
Oauth2AuthorizationUri: 66,
|
|
21054
|
+
AuthenticationType: 67,
|
|
21055
|
+
Server: 70,
|
|
21056
|
+
PerformInboundEntitlementGrants: 100,
|
|
21057
|
+
HardDeletesEnabled: 101,
|
|
21058
|
+
SyncAgentCompatibilityKey: 102,
|
|
21059
|
+
SyncAgentADContainer: 103,
|
|
21060
|
+
ValidateDomain: 206,
|
|
21061
|
+
TestReferences: 207,
|
|
21062
|
+
ConnectionString: 250,
|
|
21063
|
+
}
|
|
21064
|
+
|
|
21065
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
21066
|
+
enum synchronizationStatusCode {
|
|
21067
|
+
NotConfigured: 0,
|
|
21068
|
+
NotRun: 1,
|
|
21069
|
+
Active: 2,
|
|
21070
|
+
Paused: 3,
|
|
21071
|
+
Quarantine: 4,
|
|
21072
|
+
}
|
|
21073
|
+
|
|
21074
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
21075
|
+
enum synchronizationTaskExecutionResult {
|
|
21076
|
+
Succeeded: 0,
|
|
21077
|
+
Failed: 1,
|
|
21078
|
+
EntryLevelErrors: 2,
|
|
21079
|
+
}
|
|
21080
|
+
|
|
20420
21081
|
/**
|
|
20421
21082
|
* Indicates a collection of apps to target which can be one of several pre-defined lists of apps or a manually selected list of apps
|
|
20422
21083
|
*/
|