@microsoft/typespec-msgraph-reference 1.0.8 → 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.
@@ -13,6 +13,8 @@ scalar binary; //TODO: Enables support for Edm.Binary
13
13
  @privatePreviewDefinition("photoEditPolicy", "2024-02-16", "2025-02-16", "<theOwner>")
14
14
  @deprecatedDefinition("Reporting", "<ChangeLogCategory>", "2021-04-11", "2021-12-31", "The action property is deprecated. The provisioningAction holds the same information as this. This only exists in the beta api.")
15
15
  // Metadata item DeprecatedDefinition_Reporting was already defined with a different value.
16
+ @deprecatedDefinition("SynchronizationSecret_Deprecation", "<ChangeLogCategory>", "2026-02-06", "2027-07-06", "Use connectivityParameters for oauth flows and scim endpoint connectivity. Use SynchronizationJobSettings for job-specific settings This property will be removed.")
17
+ // Metadata item DeprecatedDefinition_SynchronizationSecret_Deprecation was already defined with a different value.
16
18
  @privatePreviewDefinition("AgenticSP", "2025-04-14", "2025-07-13", "<theOwner>")
17
19
  @deprecatedDefinition("beta:DisplayNameRename", "<ChangeLogCategory>", "2026-04-28", "2027-04-28", "The agentDisplayName property is deprecated. Use displayName instead.")
18
20
  @deprecatedDefinition("beta:IdentityIDRename", "<ChangeLogCategory>", "2026-04-28", "2027-04-28", "The agentId property is deprecated. Use identityId instead.")
@@ -878,6 +880,7 @@ namespace reference.`microsoft.graph` {
878
880
 
879
881
  @complex model appManagementApplicationConfiguration extends appManagementConfiguration {
880
882
  identifierUris: identifierUriConfiguration | null;
883
+ redirectUris: redirectUriConfiguration | null;
881
884
  }
882
885
 
883
886
  @abstract
@@ -1110,6 +1113,50 @@ namespace reference.`microsoft.graph` {
1110
1113
  type: attendeeType | null;
1111
1114
  }
1112
1115
 
1116
+ @complex model attributeDefinition {
1117
+ anchor: boolean;
1118
+ apiExpressions: stringKeyStringValuePair[] | null;
1119
+ caseExact: boolean;
1120
+ defaultValue: string | null;
1121
+ flowNullValues: boolean;
1122
+ metadata: attributeDefinitionMetadataEntry[] | null;
1123
+ multivalued: boolean;
1124
+ mutability: mutability;
1125
+ name: string | null;
1126
+ referencedObjects: referencedObject[] | null;
1127
+ required: boolean;
1128
+ type: attributeType;
1129
+ }
1130
+
1131
+ @complex model attributeDefinitionMetadataEntry {
1132
+ key: attributeDefinitionMetadata | null;
1133
+ value: string | null;
1134
+ }
1135
+
1136
+ @complex model attributeMapping {
1137
+ defaultValue: string | null;
1138
+ exportMissingReferences: boolean;
1139
+ flowBehavior: attributeFlowBehavior;
1140
+ flowType: attributeFlowType;
1141
+ matchingPriority: int32;
1142
+ source: attributeMappingSource | null;
1143
+ targetAttributeName: string | null;
1144
+ }
1145
+
1146
+ @complex model attributeMappingParameterSchema {
1147
+ allowMultipleOccurrences: boolean;
1148
+ name: string | null;
1149
+ required: boolean;
1150
+ type: attributeType;
1151
+ }
1152
+
1153
+ @complex model attributeMappingSource {
1154
+ expression: string | null;
1155
+ name: string | null;
1156
+ parameters: stringKeyAttributeMappingSourceValuePair[] | null;
1157
+ type: attributeMappingSourceType;
1158
+ }
1159
+
1113
1160
  @complex model audio {
1114
1161
  album: string | null;
1115
1162
  albumArtist: string | null;
@@ -2084,6 +2131,10 @@ namespace reference.`microsoft.graph` {
2084
2131
  values: string[] | null;
2085
2132
  }
2086
2133
 
2134
+ @complex model connectivityParameterEntry {
2135
+ value: string | null;
2136
+ }
2137
+
2087
2138
  /**
2088
2139
  * Represent connector status
2089
2140
  */
@@ -2106,6 +2157,10 @@ namespace reference.`microsoft.graph` {
2106
2157
  status: connectorHealthState;
2107
2158
  }
2108
2159
 
2160
+ @complex model containerFilter {
2161
+ includedContainers: string[] | null;
2162
+ }
2163
+
2109
2164
  @complex model contentApprovalStatusColumn {
2110
2165
  }
2111
2166
 
@@ -2274,6 +2329,7 @@ namespace reference.`microsoft.graph` {
2274
2329
 
2275
2330
  @complex model customAppManagementApplicationConfiguration {
2276
2331
  identifierUris: identifierUriConfiguration | null;
2332
+ redirectUris: redirectUriConfiguration | null;
2277
2333
  }
2278
2334
 
2279
2335
  @complex model customAppManagementConfiguration extends appManagementConfiguration {
@@ -5208,6 +5264,11 @@ namespace reference.`microsoft.graph` {
5208
5264
  propertyToEvaluate: propertyToEvaluate | null;
5209
5265
  }
5210
5266
 
5267
+ @complex model expressionInputObject {
5268
+ definition: objectDefinition | null;
5269
+ properties: stringKeyObjectValuePair[] | null;
5270
+ }
5271
+
5211
5272
  /**
5212
5273
  * The Custom Extended Key Usage definition
5213
5274
  */
@@ -5365,6 +5426,27 @@ namespace reference.`microsoft.graph` {
5365
5426
  @computed lastModifiedDateTime: offsetDateTime | null;
5366
5427
  }
5367
5428
 
5429
+ @complex model filter {
5430
+ categoryFilterGroups: filterGroup[] | null;
5431
+ groups: filterGroup[] | null;
5432
+ inputFilterGroups: filterGroup[] | null;
5433
+ }
5434
+
5435
+ @complex model filterClause {
5436
+ operatorName: string | null;
5437
+ sourceOperandName: string | null;
5438
+ targetOperand: filterOperand | null;
5439
+ }
5440
+
5441
+ @complex model filterGroup {
5442
+ clauses: filterClause[] | null;
5443
+ name: string | null;
5444
+ }
5445
+
5446
+ @complex model filterOperand {
5447
+ values: string[] | null;
5448
+ }
5449
+
5368
5450
  @open
5369
5451
  @complex model flexSchemaContainer {
5370
5452
  }
@@ -5416,6 +5498,10 @@ namespace reference.`microsoft.graph` {
5416
5498
  groupId: string | null;
5417
5499
  }
5418
5500
 
5501
+ @complex model groupFilter {
5502
+ includedGroups: string[] | null;
5503
+ }
5504
+
5419
5505
  @open
5420
5506
  @complex model groupIdentity extends identity {
5421
5507
  mailNickname: string | null;
@@ -6921,17 +7007,8 @@ namespace reference.`microsoft.graph` {
6921
7007
  value: string | null;
6922
7008
  }
6923
7009
 
6924
- /**
6925
- * Key value pair for storing custom settings
6926
- */
6927
7010
  @complex model keyValuePair {
6928
- /**
6929
- * Name for this key-value pair
6930
- */
6931
7011
  name: string;
6932
- /**
6933
- * Value for this key-value pair
6934
- */
6935
7012
  value: string | null;
6936
7013
  }
6937
7014
 
@@ -8427,12 +8504,40 @@ namespace reference.`microsoft.graph` {
8427
8504
  upperNumber: int32;
8428
8505
  }
8429
8506
 
8507
+ @complex model objectDefinition {
8508
+ attributes: attributeDefinition[] | null;
8509
+ metadata: objectDefinitionMetadataEntry[] | null;
8510
+ name: string | null;
8511
+ supportedApis: string[] | null;
8512
+ }
8513
+
8514
+ @complex model objectDefinitionMetadataEntry {
8515
+ key: objectDefinitionMetadata | null;
8516
+ value: string | null;
8517
+ }
8518
+
8430
8519
  @complex model objectIdentity {
8431
8520
  issuer: string | null;
8432
8521
  issuerAssignedId: string | null;
8433
8522
  signInType: string | null;
8434
8523
  }
8435
8524
 
8525
+ @complex model objectMapping {
8526
+ attributeMappings: attributeMapping[] | null;
8527
+ enabled: boolean;
8528
+ flowTypes: objectFlowTypes;
8529
+ metadata: objectMappingMetadataEntry[] | null;
8530
+ name: string | null;
8531
+ scope: filter | null;
8532
+ sourceObjectName: string | null;
8533
+ targetObjectName: string | null;
8534
+ }
8535
+
8536
+ @complex model objectMappingMetadataEntry {
8537
+ key: objectMappingMetadata | null;
8538
+ value: string | null;
8539
+ }
8540
+
8436
8541
  /**
8437
8542
  * OMA Settings definition.
8438
8543
  */
@@ -8824,6 +8929,14 @@ namespace reference.`microsoft.graph` {
8824
8929
  legalAgeGroupRule: string | null;
8825
8930
  }
8826
8931
 
8932
+ @complex model parseExpressionResponse {
8933
+ error: publicError | null;
8934
+ evaluationResult: string[] | null;
8935
+ evaluationSucceeded: boolean;
8936
+ parsedExpression: attributeMappingSource | null;
8937
+ parsingSucceeded: boolean;
8938
+ }
8939
+
8827
8940
  @complex model passkeyProfileStructure {
8828
8941
  attestationEnforcement: attestationEnforcement;
8829
8942
  id: string;
@@ -9539,6 +9652,10 @@ namespace reference.`microsoft.graph` {
9539
9652
  target: string | null;
9540
9653
  }
9541
9654
 
9655
+ @complex model publicErrorResponse {
9656
+ error: publicError | null;
9657
+ }
9658
+
9542
9659
  @open
9543
9660
  @complex model publicInnerError {
9544
9661
  code: string | null;
@@ -9622,11 +9739,99 @@ namespace reference.`microsoft.graph` {
9622
9739
  urlPrefixes: string[] | null;
9623
9740
  }
9624
9741
 
9742
+ @complex model redirectUriAllowedDomainConfiguration {
9743
+ allowedDomains: string[];
9744
+ excludeActors: appManagementPolicyActorExemptions | null;
9745
+ isStateSetByMicrosoft: boolean;
9746
+ publicClient: redirectUriPlatformAllowedDomainConfiguration | null;
9747
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
9748
+ spa: redirectUriPlatformAllowedDomainConfiguration | null;
9749
+ state: appManagementRestrictionState;
9750
+ web: redirectUriPlatformAllowedDomainConfiguration | null;
9751
+ }
9752
+
9753
+ @complex model redirectUriAllowedSchemeConfiguration {
9754
+ allowedSchemes: string[];
9755
+ excludeActors: appManagementPolicyActorExemptions | null;
9756
+ isStateSetByMicrosoft: boolean;
9757
+ publicClient: redirectUriPlatformAllowedSchemeConfiguration | null;
9758
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
9759
+ spa: redirectUriPlatformAllowedSchemeConfiguration | null;
9760
+ state: appManagementRestrictionState;
9761
+ web: redirectUriPlatformAllowedSchemeConfiguration | null;
9762
+ }
9763
+
9764
+ @complex model redirectUriBlockedDomainConfiguration {
9765
+ blockedDomains: string[];
9766
+ excludeActors: appManagementPolicyActorExemptions | null;
9767
+ isStateSetByMicrosoft: boolean;
9768
+ publicClient: redirectUriPlatformBlockedDomainConfiguration | null;
9769
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
9770
+ spa: redirectUriPlatformBlockedDomainConfiguration | null;
9771
+ state: appManagementRestrictionState;
9772
+ web: redirectUriPlatformBlockedDomainConfiguration | null;
9773
+ }
9774
+
9775
+ @complex model redirectUriBlockedSchemeConfiguration {
9776
+ blockedSchemes: string[];
9777
+ excludeActors: appManagementPolicyActorExemptions | null;
9778
+ exemptFormats: string[];
9779
+ isStateSetByMicrosoft: boolean;
9780
+ publicClient: redirectUriPlatformBlockedSchemeConfiguration | null;
9781
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
9782
+ spa: redirectUriPlatformBlockedSchemeConfiguration | null;
9783
+ state: appManagementRestrictionState;
9784
+ web: redirectUriPlatformBlockedSchemeConfiguration | null;
9785
+ }
9786
+
9787
+ @complex model redirectUriConfiguration {
9788
+ uriWithBlockedDomain: redirectUriBlockedDomainConfiguration | null;
9789
+ uriWithBlockedScheme: redirectUriBlockedSchemeConfiguration | null;
9790
+ uriWithoutAllowedDomain: redirectUriAllowedDomainConfiguration | null;
9791
+ uriWithoutAllowedScheme: redirectUriAllowedSchemeConfiguration | null;
9792
+ uriWithWildcard: redirectUriWildcardConfiguration | null;
9793
+ }
9794
+
9795
+ @complex model redirectUriPlatformAllowedDomainConfiguration {
9796
+ allowedDomains: string[];
9797
+ }
9798
+
9799
+ @complex model redirectUriPlatformAllowedSchemeConfiguration {
9800
+ allowedSchemes: string[];
9801
+ }
9802
+
9803
+ @complex model redirectUriPlatformBlockedDomainConfiguration {
9804
+ blockedDomains: string[];
9805
+ }
9806
+
9807
+ @complex model redirectUriPlatformBlockedSchemeConfiguration {
9808
+ blockedSchemes: string[];
9809
+ exemptFormats: string[];
9810
+ }
9811
+
9625
9812
  @complex model redirectUriSettings {
9626
9813
  index: int32 | null;
9627
9814
  uri: string | null;
9628
9815
  }
9629
9816
 
9817
+ @complex model redirectUriWildcardConfiguration {
9818
+ excludeActors: appManagementPolicyActorExemptions | null;
9819
+ excludeFormats: redirectUriWildcardExcludeFormats | null;
9820
+ isStateSetByMicrosoft: boolean;
9821
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
9822
+ state: appManagementRestrictionState;
9823
+ }
9824
+
9825
+ @complex model redirectUriWildcardExcludeFormats {
9826
+ excludeWildcardsInPath: boolean;
9827
+ excludeWildcardsInPathWithDomains: string[];
9828
+ }
9829
+
9830
+ @complex model referencedObject {
9831
+ referencedObjectName: string | null;
9832
+ referencedProperty: string | null;
9833
+ }
9834
+
9630
9835
  @complex model regionalFormatOverrides {
9631
9836
  calendar: string | null;
9632
9837
  firstDayOfWeek: string | null;
@@ -10134,6 +10339,12 @@ namespace reference.`microsoft.graph` {
10134
10339
  value: int64;
10135
10340
  }
10136
10341
 
10342
+ @complex model serviceHealthIssuePost {
10343
+ @computed createdDateTime: offsetDateTime;
10344
+ description: itemBody | null;
10345
+ postType: postType | null;
10346
+ }
10347
+
10137
10348
  @complex model serviceInformation {
10138
10349
  name: string | null;
10139
10350
  webUrl: string | null;
@@ -10181,6 +10392,12 @@ namespace reference.`microsoft.graph` {
10181
10392
  servicePrincipalId: string | null;
10182
10393
  }
10183
10394
 
10395
+ @complex model serviceUpdateMessageViewpoint {
10396
+ isArchived: boolean | null;
10397
+ isFavorited: boolean | null;
10398
+ isRead: boolean | null;
10399
+ }
10400
+
10184
10401
  @complex model sessionLifetimePolicy {
10185
10402
  detail: string | null;
10186
10403
  expirationRequirement: expirationRequirement | null;
@@ -10530,6 +10747,26 @@ namespace reference.`microsoft.graph` {
10530
10747
  upgradeAvailable: boolean | null;
10531
10748
  }
10532
10749
 
10750
+ @complex model stringKeyAttributeMappingSourceValuePair {
10751
+ key: string | null;
10752
+ value: attributeMappingSource | null;
10753
+ }
10754
+
10755
+ @complex model stringKeyLongValuePair {
10756
+ key: string | null;
10757
+ value: int64;
10758
+ }
10759
+
10760
+ @open
10761
+ @complex model stringKeyObjectValuePair {
10762
+ key: string | null;
10763
+ }
10764
+
10765
+ @complex model stringKeyStringValuePair {
10766
+ key: string | null;
10767
+ value: string | null;
10768
+ }
10769
+
10533
10770
  @complex model strongAuthenticationRequirements {
10534
10771
  perUserMfaState: perUserMfaState | null;
10535
10772
  }
@@ -10567,6 +10804,111 @@ namespace reference.`microsoft.graph` {
10567
10804
  status: syncComponentStatus;
10568
10805
  }
10569
10806
 
10807
+ @complex model synchronizationError {
10808
+ code: string | null;
10809
+ message: string | null;
10810
+ tenantActionable: boolean;
10811
+ }
10812
+
10813
+ @complex model synchronizationJobApplicationParameters {
10814
+ ruleId: string | null;
10815
+ subjects: synchronizationJobSubject[] | null;
10816
+ }
10817
+
10818
+ @complex model synchronizationJobRestartCriteria {
10819
+ resetScope: synchronizationJobRestartScope | null;
10820
+ }
10821
+
10822
+ @complex model synchronizationJobSubject {
10823
+ links: synchronizationLinkedObjects | null;
10824
+ objectId: string | null;
10825
+ objectTypeName: string | null;
10826
+ }
10827
+
10828
+ @complex model synchronizationLinkedObjects {
10829
+ manager: synchronizationJobSubject | null;
10830
+ members: synchronizationJobSubject[] | null;
10831
+ owners: synchronizationJobSubject[] | null;
10832
+ }
10833
+
10834
+ @complex model synchronizationMetadataEntry {
10835
+ key: synchronizationMetadata | null;
10836
+ value: string | null;
10837
+ }
10838
+
10839
+ @complex model synchronizationProgress {
10840
+ completedUnits: int64;
10841
+ progressObservationDateTime: offsetDateTime;
10842
+ totalUnits: int64;
10843
+ units: string | null;
10844
+ }
10845
+
10846
+ @complex model synchronizationQuarantine {
10847
+ currentBegan: offsetDateTime;
10848
+ error: synchronizationError | null;
10849
+ nextAttempt: offsetDateTime;
10850
+ reason: quarantineReason;
10851
+ seriesBegan: offsetDateTime;
10852
+ seriesCount: int64;
10853
+ }
10854
+
10855
+ @complex model synchronizationRule {
10856
+ containerFilter: containerFilter | null;
10857
+ editable: boolean;
10858
+ groupFilter: groupFilter | null;
10859
+ id: string | null;
10860
+ metadata: stringKeyStringValuePair[] | null;
10861
+ name: string | null;
10862
+ objectMappings: objectMapping[] | null;
10863
+ priority: int32;
10864
+ sourceDirectoryName: string | null;
10865
+ targetDirectoryName: string | null;
10866
+ }
10867
+
10868
+ @complex model synchronizationSchedule {
10869
+ expiration: offsetDateTime | null;
10870
+ interval: duration;
10871
+ state: synchronizationScheduleState;
10872
+ }
10873
+
10874
+ @graphDeprecated("SynchronizationSecret_Deprecation")
10875
+ @complex model synchronizationSecretKeyStringValuePair {
10876
+ key: synchronizationSecret;
10877
+ value: string | null;
10878
+ }
10879
+
10880
+ @complex model synchronizationStatus {
10881
+ code: synchronizationStatusCode;
10882
+ countSuccessiveCompleteFailures: int64;
10883
+ escrowsPruned: boolean;
10884
+ lastExecution: synchronizationTaskExecution | null;
10885
+ lastSuccessfulExecution: synchronizationTaskExecution | null;
10886
+ lastSuccessfulExecutionWithExports: synchronizationTaskExecution | null;
10887
+ progress: synchronizationProgress[] | null;
10888
+ quarantine: synchronizationQuarantine | null;
10889
+ steadyStateFirstAchievedTime: offsetDateTime;
10890
+ steadyStateLastAchievedTime: offsetDateTime;
10891
+ synchronizedEntryCountByType: stringKeyLongValuePair[] | null;
10892
+ troubleshootingUrl: string | null;
10893
+ }
10894
+
10895
+ @complex model synchronizationTaskExecution {
10896
+ activityIdentifier: string | null;
10897
+ countEntitled: int64;
10898
+ countEntitledForProvisioning: int64;
10899
+ countEscrowed: int64;
10900
+ countEscrowedRaw: int64;
10901
+ countExported: int64;
10902
+ countExports: int64;
10903
+ countImported: int64;
10904
+ countImportedDeltas: int64;
10905
+ countImportedReferenceDeltas: int64;
10906
+ error: synchronizationError | null;
10907
+ state: synchronizationTaskExecutionResult;
10908
+ timeBegan: offsetDateTime;
10909
+ timeEnded: offsetDateTime;
10910
+ }
10911
+
10570
10912
  @complex model systemCredentialPreferences {
10571
10913
  excludeTargets: excludeTarget[];
10572
10914
  includeTargets: includeTarget[];
@@ -13609,6 +13951,7 @@ namespace reference.`microsoft.graph` {
13609
13951
 
13610
13952
  @entity model admin extends MsGraph.SharedModels.entity {
13611
13953
  @contains people: peopleAdminSettings | null;
13954
+ @contains serviceAnnouncement: serviceAnnouncement | null;
13612
13955
  @contains sharepoint: sharepoint | null;
13613
13956
  }
13614
13957
 
@@ -18084,6 +18427,7 @@ namespace reference.`microsoft.graph` {
18084
18427
  @contains federatedIdentityCredentials: federatedIdentityCredential[];
18085
18428
  @references homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
18086
18429
  @references owners: directoryObject[];
18430
+ @contains synchronization: synchronization | null;
18087
18431
  @references tokenIssuancePolicies: tokenIssuancePolicy[];
18088
18432
  @references tokenLifetimePolicies: tokenLifetimePolicy[];
18089
18433
  }
@@ -18281,6 +18625,10 @@ namespace reference.`microsoft.graph` {
18281
18625
  size: int32;
18282
18626
  }
18283
18627
 
18628
+ @entity model attributeMappingFunctionSchema extends entity {
18629
+ parameters: attributeMappingParameterSchema[] | null;
18630
+ }
18631
+
18284
18632
  @entity model attributeSet extends entity {
18285
18633
  description: string | null;
18286
18634
  maxAttributesPerSet: int32 | null;
@@ -18478,6 +18826,9 @@ namespace reference.`microsoft.graph` {
18478
18826
  volumeType: volumeType | null;
18479
18827
  }
18480
18828
 
18829
+ @entity model bulkUpload extends entity {
18830
+ }
18831
+
18481
18832
  @entity model calendar extends entity {
18482
18833
  allowedOnlineMeetingProviders: onlineMeetingProviderType[] | null;
18483
18834
  calendarGroupId: string | null;
@@ -24772,6 +25123,15 @@ namespace reference.`microsoft.graph` {
24772
25123
  targetResources: targetResource[] | null;
24773
25124
  }
24774
25125
 
25126
+ @entity model directoryDefinition extends entity {
25127
+ discoverabilities: directoryDefinitionDiscoverabilities;
25128
+ discoveryDateTime: offsetDateTime | null;
25129
+ name: string | null;
25130
+ objects: objectDefinition[] | null;
25131
+ readOnly: boolean;
25132
+ version: string | null;
25133
+ }
25134
+
24775
25135
  @open
24776
25136
  @entity model directoryObject extends entity {
24777
25137
  deletedDateTime: offsetDateTime | null;
@@ -25471,6 +25831,12 @@ namespace reference.`microsoft.graph` {
25471
25831
  @contains applicationPermissionGrants: fileStorageContainerTypeAppPermissionGrant[];
25472
25832
  }
25473
25833
 
25834
+ @entity model filterOperatorSchema extends entity {
25835
+ arity: scopeOperatorType;
25836
+ multivaluedComparisonType: scopeOperatorMultiValuedComparisonType;
25837
+ supportedAttributeTypes: attributeType[];
25838
+ }
25839
+
25474
25840
  @abstract
25475
25841
  @entity model governanceInsight extends entity {
25476
25842
  }
@@ -35197,6 +35563,47 @@ namespace reference.`microsoft.graph` {
35197
35563
  @entity model serviceActivity extends entity {
35198
35564
  }
35199
35565
 
35566
+ @entity model serviceAnnouncement extends entity {
35567
+ @contains healthOverviews: serviceHealth[];
35568
+ @contains issues: serviceHealthIssue[];
35569
+ @contains messages: serviceUpdateMessage[];
35570
+ }
35571
+
35572
+ @entity model serviceAnnouncementAttachment extends entity {
35573
+ content: stream | null;
35574
+ contentType: string | null;
35575
+ @computed lastModifiedDateTime: offsetDateTime | null;
35576
+ name: string | null;
35577
+ size: int32;
35578
+ }
35579
+
35580
+ @abstract
35581
+ @entity model serviceAnnouncementBase extends entity {
35582
+ details: keyValuePair[] | null;
35583
+ endDateTime: offsetDateTime | null;
35584
+ @computed lastModifiedDateTime: offsetDateTime;
35585
+ startDateTime: offsetDateTime;
35586
+ title: string;
35587
+ }
35588
+
35589
+ @entity model serviceHealth extends entity {
35590
+ service: string;
35591
+ status: serviceHealthStatus;
35592
+ @contains issues: serviceHealthIssue[];
35593
+ }
35594
+
35595
+ @entity model serviceHealthIssue extends serviceAnnouncementBase {
35596
+ classification: serviceHealthClassificationType;
35597
+ feature: string | null;
35598
+ featureGroup: string | null;
35599
+ impactDescription: string;
35600
+ isResolved: boolean;
35601
+ origin: serviceHealthOrigin;
35602
+ posts: serviceHealthIssuePost[];
35603
+ service: string;
35604
+ status: serviceHealthStatus;
35605
+ }
35606
+
35200
35607
  @entity model serviceLevelAgreementRoot extends entity {
35201
35608
  @contains azureADAuthentication: azureADAuthentication | null;
35202
35609
  }
@@ -35292,6 +35699,7 @@ namespace reference.`microsoft.graph` {
35292
35699
  @references owners: directoryObject[];
35293
35700
  @references permissionGrantPreApprovalPolicies: permissionGrantPreApprovalPolicy[];
35294
35701
  @contains remoteDesktopSecurityConfiguration: remoteDesktopSecurityConfiguration | null;
35702
+ @contains synchronization: synchronization | null;
35295
35703
  @references tokenIssuancePolicies: tokenIssuancePolicy[];
35296
35704
  @references tokenLifetimePolicies: tokenLifetimePolicy[];
35297
35705
  @references transitiveMemberOf: directoryObject[];
@@ -35321,6 +35729,20 @@ namespace reference.`microsoft.graph` {
35321
35729
  tokenIssuerType: tokenIssuerType | null;
35322
35730
  }
35323
35731
 
35732
+ @entity model serviceUpdateMessage extends serviceAnnouncementBase {
35733
+ actionRequiredByDateTime: offsetDateTime | null;
35734
+ attachmentsArchive: stream | null;
35735
+ body: itemBody;
35736
+ category: serviceUpdateCategory;
35737
+ hasAttachments: boolean;
35738
+ isMajorChange: boolean | null;
35739
+ services: string[] | null;
35740
+ severity: serviceUpdateSeverity;
35741
+ tags: string[] | null;
35742
+ viewPoint: serviceUpdateMessageViewpoint | null;
35743
+ @contains attachments: serviceAnnouncementAttachment[];
35744
+ }
35745
+
35324
35746
  /**
35325
35747
  * Device Compilance Policy and Configuration for a Setting State summary
35326
35748
  */
@@ -35927,6 +36349,39 @@ namespace reference.`microsoft.graph` {
35927
36349
  uploadDateTime: offsetDateTime;
35928
36350
  }
35929
36351
 
36352
+ @entity model synchronization extends entity {
36353
+
36354
+ @graphDeprecated("SynchronizationSecret_Deprecation")
36355
+ secrets: synchronizationSecretKeyStringValuePair[] | null;
36356
+ @contains jobs: synchronizationJob[];
36357
+ @contains templates: synchronizationTemplate[];
36358
+ }
36359
+
36360
+ @entity model synchronizationJob extends entity {
36361
+ schedule: synchronizationSchedule | null;
36362
+ status: synchronizationStatus | null;
36363
+ synchronizationJobSettings: keyValuePair[] | null;
36364
+ templateId: string | null;
36365
+ @contains bulkUpload: bulkUpload | null;
36366
+ @contains schema: synchronizationSchema | null;
36367
+ }
36368
+
36369
+ @entity model synchronizationSchema extends entity {
36370
+ synchronizationRules: synchronizationRule[] | null;
36371
+ version: string | null;
36372
+ @contains directories: directoryDefinition[];
36373
+ }
36374
+
36375
+ @entity model synchronizationTemplate extends entity {
36376
+ applicationId: guid;
36377
+ default: boolean;
36378
+ description: string | null;
36379
+ discoverable: boolean;
36380
+ factoryTag: string | null;
36381
+ metadata: synchronizationMetadataEntry[] | null;
36382
+ @contains schema: synchronizationSchema | null;
36383
+ }
36384
+
35930
36385
  @entity model targetDeviceGroup extends entity {
35931
36386
  displayName: string | null;
35932
36387
  }
@@ -47099,6 +47554,51 @@ namespace reference.`microsoft.graph` {
47099
47554
  unknownFutureValue: 2,
47100
47555
  }
47101
47556
 
47557
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
47558
+ enum attributeDefinitionMetadata {
47559
+ BaseAttributeName: 0,
47560
+ ComplexObjectDefinition: 1,
47561
+ IsContainer: 2,
47562
+ IsCustomerDefined: 3,
47563
+ IsDomainQualified: 4,
47564
+ LinkPropertyNames: 5,
47565
+ LinkTypeName: 6,
47566
+ MaximumLength: 7,
47567
+ ReferencedProperty: 8,
47568
+ }
47569
+
47570
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
47571
+ enum attributeFlowBehavior {
47572
+ FlowWhenChanged: 0,
47573
+ FlowAlways: 1,
47574
+ }
47575
+
47576
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
47577
+ enum attributeFlowType {
47578
+ Always: 0,
47579
+ ObjectAddOnly: 1,
47580
+ MultiValueAddOnly: 2,
47581
+ ValueAddOnly: 3,
47582
+ AttributeAddOnly: 4,
47583
+ }
47584
+
47585
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
47586
+ enum attributeMappingSourceType {
47587
+ Attribute: 0,
47588
+ Constant: 1,
47589
+ Function: 2,
47590
+ }
47591
+
47592
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
47593
+ enum attributeType {
47594
+ `String`: 0,
47595
+ `Integer`: 1,
47596
+ Reference: 2,
47597
+ Binary: 3,
47598
+ `Boolean`: 4,
47599
+ DateTime: 5,
47600
+ }
47601
+
47102
47602
  enum authenticationAppAdminConfiguration {
47103
47603
  notApplicable: 0,
47104
47604
  enabled: 1,
@@ -52117,6 +52617,16 @@ namespace reference.`microsoft.graph` {
52117
52617
  group24: 5,
52118
52618
  }
52119
52619
 
52620
+ @graphFlags
52621
+ enum directoryDefinitionDiscoverabilities {
52622
+ None: 0,
52623
+ AttributeNames: 1,
52624
+ AttributeDataTypes: 2,
52625
+ AttributeReadOnly: 4,
52626
+ ReferenceAttributes: 8,
52627
+ UnknownFutureValue: 16,
52628
+ }
52629
+
52120
52630
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
52121
52631
  enum discoverySource {
52122
52632
  /**
@@ -53043,6 +53553,23 @@ namespace reference.`microsoft.graph` {
53043
53553
  unknownFutureValue: 6,
53044
53554
  }
53045
53555
 
53556
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
53557
+ enum entryExportStatus {
53558
+ Noop: 0,
53559
+ Success: 1,
53560
+ RetryableError: 2,
53561
+ PermanentError: 3,
53562
+ Error: 4,
53563
+ }
53564
+
53565
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
53566
+ enum entrySyncOperation {
53567
+ None: 0,
53568
+ Add: 1,
53569
+ Delete: 2,
53570
+ Update: 3,
53571
+ }
53572
+
53046
53573
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
53047
53574
  enum errorCode {
53048
53575
  /**
@@ -53071,6 +53598,12 @@ namespace reference.`microsoft.graph` {
53071
53598
  unknownFutureValue: 5,
53072
53599
  }
53073
53600
 
53601
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
53602
+ enum escrowBehavior {
53603
+ Default: 1,
53604
+ IgnoreLookupReferenceResolutionFailure: 2,
53605
+ }
53606
+
53074
53607
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
53075
53608
  enum eventType {
53076
53609
  singleInstance: 0,
@@ -56574,6 +57107,14 @@ namespace reference.`microsoft.graph` {
56574
57107
  unknownFutureValue: 2,
56575
57108
  }
56576
57109
 
57110
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
57111
+ enum mutability {
57112
+ ReadWrite: 0,
57113
+ ReadOnly: 1,
57114
+ Immutable: 2,
57115
+ WriteOnly: 3,
57116
+ }
57117
+
56577
57118
  /**
56578
57119
  * The current status of the Ndes Connector.
56579
57120
  */
@@ -56691,6 +57232,37 @@ namespace reference.`microsoft.graph` {
56691
57232
  unknownFutureValue: 32,
56692
57233
  }
56693
57234
 
57235
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
57236
+ enum objectDefinitionMetadata {
57237
+ PropertyNameAccountEnabled: 0,
57238
+ PropertyNameSoftDeleted: 1,
57239
+ IsSoftDeletionSupported: 2,
57240
+ IsSynchronizeAllSupported: 3,
57241
+ ConnectorDataStorageRequired: 4,
57242
+ Extensions: 5,
57243
+ BaseObjectName: 6,
57244
+ }
57245
+
57246
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
57247
+ @graphFlags
57248
+ enum objectFlowTypes {
57249
+ None: 0,
57250
+ Add: 1,
57251
+ Update: 2,
57252
+ Delete: 4,
57253
+ }
57254
+
57255
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
57256
+ enum objectMappingMetadata {
57257
+ EscrowBehavior: 0,
57258
+ DisableMonitoringForChanges: 1,
57259
+ OriginalJoiningProperty: 2,
57260
+ Disposition: 3,
57261
+ IsCustomerDefined: 4,
57262
+ ExcludeFromReporting: 5,
57263
+ Unsynchronized: 6,
57264
+ }
57265
+
56694
57266
  /**
56695
57267
  * 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.
56696
57268
  */
@@ -57516,6 +58088,13 @@ namespace reference.`microsoft.graph` {
57516
58088
  notAssigned: 5,
57517
58089
  }
57518
58090
 
58091
+ enum postType {
58092
+ regular: 0,
58093
+ quick: 1,
58094
+ strategic: 2,
58095
+ unknownFutureValue: 3,
58096
+ }
58097
+
57519
58098
  /**
57520
58099
  * Power action types
57521
58100
  */
@@ -57726,6 +58305,18 @@ namespace reference.`microsoft.graph` {
57726
58305
  unknownFutureValue: 6,
57727
58306
  }
57728
58307
 
58308
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
58309
+ enum quarantineReason {
58310
+ EncounteredBaseEscrowThreshold: 0,
58311
+ EncounteredTotalEscrowThreshold: 1,
58312
+ EncounteredEscrowProportionThreshold: 2,
58313
+ EncounteredQuarantineException: 4,
58314
+ `Unknown`: 8,
58315
+ QuarantinedOnDemand: 16,
58316
+ TooManyDeletes: 32,
58317
+ IngestionInterrupted: 64,
58318
+ }
58319
+
57729
58320
  /**
57730
58321
  * Apps rating as in media content
57731
58322
  */
@@ -59203,6 +59794,18 @@ namespace reference.`microsoft.graph` {
59203
59794
  unknownFutureValue: 4,
59204
59795
  }
59205
59796
 
59797
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
59798
+ enum scopeOperatorMultiValuedComparisonType {
59799
+ All: 0,
59800
+ Any: 1,
59801
+ }
59802
+
59803
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
59804
+ enum scopeOperatorType {
59805
+ Binary: 0,
59806
+ Unary: 1,
59807
+ }
59808
+
59206
59809
  /**
59207
59810
  * Configuration state set by admin for screen capture Apple Intelligence setting
59208
59811
  */
@@ -59335,6 +59938,40 @@ namespace reference.`microsoft.graph` {
59335
59938
  unknownFutureValue: 2,
59336
59939
  }
59337
59940
 
59941
+ enum serviceHealthClassificationType {
59942
+ advisory: 1,
59943
+ incident: 2,
59944
+ unknownFutureValue: 3,
59945
+ }
59946
+
59947
+ enum serviceHealthOrigin {
59948
+ microsoft: 1,
59949
+ thirdParty: 2,
59950
+ customer: 3,
59951
+ unknownFutureValue: 4,
59952
+ }
59953
+
59954
+ enum serviceHealthStatus {
59955
+ serviceOperational: 0,
59956
+ investigating: 1,
59957
+ restoringService: 2,
59958
+ verifyingService: 3,
59959
+ serviceRestored: 4,
59960
+ postIncidentReviewPublished: 5,
59961
+ serviceDegradation: 6,
59962
+ serviceInterruption: 7,
59963
+ extendedRecovery: 8,
59964
+ falsePositive: 9,
59965
+ investigationSuspended: 10,
59966
+ resolved: 11,
59967
+ mitigatedExternal: 12,
59968
+ mitigated: 13,
59969
+ resolvedExternal: 14,
59970
+ confirmed: 15,
59971
+ reported: 16,
59972
+ unknownFutureValue: 17,
59973
+ }
59974
+
59338
59975
  /**
59339
59976
  * Status of ServiceNow Connection
59340
59977
  */
@@ -59369,6 +60006,20 @@ namespace reference.`microsoft.graph` {
59369
60006
  disabled: 2,
59370
60007
  }
59371
60008
 
60009
+ enum serviceUpdateCategory {
60010
+ preventOrFixIssue: 1,
60011
+ planForChange: 2,
60012
+ stayInformed: 3,
60013
+ unknownFutureValue: 4,
60014
+ }
60015
+
60016
+ enum serviceUpdateSeverity {
60017
+ normal: 1,
60018
+ high: 2,
60019
+ critical: 3,
60020
+ unknownFutureValue: 4,
60021
+ }
60022
+
59372
60023
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
59373
60024
  enum settingSourceType {
59374
60025
  deviceConfiguration: 0,
@@ -59767,6 +60418,110 @@ namespace reference.`microsoft.graph` {
59767
60418
  unknownFutureValue: 5,
59768
60419
  }
59769
60420
 
60421
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
60422
+ enum synchronizationDisposition {
60423
+ Normal: 0,
60424
+ Discard: 1,
60425
+ Escrow: 2,
60426
+ }
60427
+
60428
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
60429
+ @graphFlags
60430
+ enum synchronizationJobRestartScope {
60431
+ None: 0,
60432
+ ConnectorDataStore: 1,
60433
+ Escrows: 2,
60434
+ Watermark: 4,
60435
+ QuarantineState: 8,
60436
+ Full: 15,
60437
+ ForceDeletes: 32,
60438
+ }
60439
+
60440
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
60441
+ enum synchronizationMetadata {
60442
+ galleryApplicationIdentifier: 0,
60443
+ galleryApplicationKey: 1,
60444
+ isOAuthEnabled: 2,
60445
+ IsSynchronizationAgentAssignmentRequired: 3,
60446
+ isSynchronizationAgentRequired: 4,
60447
+ isSynchronizationInPreview: 5,
60448
+ oAuthSettings: 6,
60449
+ synchronizationLearnMoreIbizaFwLink: 7,
60450
+ configurationFields: 8,
60451
+ }
60452
+
60453
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
60454
+ enum synchronizationScheduleState {
60455
+ Active: 0,
60456
+ Disabled: 1,
60457
+ Paused: 2,
60458
+ }
60459
+
60460
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
60461
+ enum synchronizationSecret {
60462
+ None: 0,
60463
+ UserName: 1,
60464
+ Password: 2,
60465
+ SecretToken: 3,
60466
+ AppKey: 4,
60467
+ BaseAddress: 5,
60468
+ ClientIdentifier: 6,
60469
+ ClientSecret: 7,
60470
+ SingleSignOnType: 11,
60471
+ Sandbox: 12,
60472
+ Url: 13,
60473
+ Domain: 14,
60474
+ ConsumerKey: 15,
60475
+ ConsumerSecret: 16,
60476
+ TokenKey: 17,
60477
+ TokenExpiration: 18,
60478
+ Oauth2AccessToken: 19,
60479
+ Oauth2AccessTokenCreationTime: 20,
60480
+ Oauth2RefreshToken: 21,
60481
+ SyncAll: 22,
60482
+ InstanceName: 24,
60483
+ Oauth2ClientId: 27,
60484
+ Oauth2ClientSecret: 28,
60485
+ CompanyId: 29,
60486
+ UpdateKeyOnSoftDelete: 30,
60487
+ SynchronizationSchedule: 33,
60488
+ SystemOfRecord: 34,
60489
+ SandboxName: 35,
60490
+ EnforceDomain: 36,
60491
+ SyncNotificationSettings: 37,
60492
+ SkipOutOfScopeDeletions: 40,
60493
+ Oauth2AuthorizationCode: 62,
60494
+ Oauth2RedirectUri: 63,
60495
+ ApplicationTemplateIdentifier: 64,
60496
+ Oauth2TokenExchangeUri: 65,
60497
+ Oauth2AuthorizationUri: 66,
60498
+ AuthenticationType: 67,
60499
+ Server: 70,
60500
+ PerformInboundEntitlementGrants: 100,
60501
+ HardDeletesEnabled: 101,
60502
+ SyncAgentCompatibilityKey: 102,
60503
+ SyncAgentADContainer: 103,
60504
+ ValidateDomain: 206,
60505
+ TestReferences: 207,
60506
+ ConnectionString: 250,
60507
+ }
60508
+
60509
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
60510
+ enum synchronizationStatusCode {
60511
+ NotConfigured: 0,
60512
+ NotRun: 1,
60513
+ Active: 2,
60514
+ Paused: 3,
60515
+ Quarantine: 4,
60516
+ }
60517
+
60518
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
60519
+ enum synchronizationTaskExecutionResult {
60520
+ Succeeded: 0,
60521
+ Failed: 1,
60522
+ EntryLevelErrors: 2,
60523
+ }
60524
+
59770
60525
  /**
59771
60526
  * A list of possible System Management Mode levels for a device. System Management Mode levels is determined by report sent from Microsoft Azure Attestation service. Only specific hardwares support System Management Mode. Windows 11 devices will have values "notApplicable", "level1", "level2" or "level3". Windows 10 devices will have value "notApplicable".
59772
60527
  */