@microsoft/typespec-msgraph-reference 1.0.9 → 1.0.11

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.
@@ -7912,7 +7912,7 @@ namespace reference.`microsoft.graph` {
7912
7912
  /**
7913
7913
  * Singleton entity that acts as a container for all device app management functionality.
7914
7914
  */
7915
- @entity model deviceAppManagement extends entity {
7915
+ @entity model deviceAppManagement extends MsGraph.SharedModels.entity {
7916
7916
  /**
7917
7917
  * Whether the account is enabled for syncing applications from the Microsoft Store for Business.
7918
7918
  */
@@ -9696,6 +9696,15 @@ namespace reference.`microsoft.graph` {
9696
9696
  @entity model externalDomainName extends entity {
9697
9697
  }
9698
9698
 
9699
+ @entity model featureRolloutPolicy extends entity {
9700
+ description: string | null;
9701
+ displayName: string;
9702
+ feature: stagedFeatureName;
9703
+ isAppliedToOrganization: boolean;
9704
+ isEnabled: boolean;
9705
+ @contains appliesTo: directoryObject[];
9706
+ }
9707
+
9699
9708
  @entity model federatedIdentityCredential extends entity {
9700
9709
  audiences: string[];
9701
9710
  description: string | null;
@@ -13029,6 +13038,7 @@ namespace reference.`microsoft.graph` {
13029
13038
  @contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
13030
13039
  @contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
13031
13040
  @contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
13041
+ @contains featureRolloutPolicies: featureRolloutPolicy[];
13032
13042
  @contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
13033
13043
  @contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
13034
13044
  @contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
@@ -13413,7 +13423,7 @@ namespace reference.`microsoft.graph` {
13413
13423
  roleMemberInfo: identity;
13414
13424
  }
13415
13425
 
13416
- @entity model searchEntity extends entity {
13426
+ @entity model searchEntity extends MsGraph.SharedModels.entity {
13417
13427
  }
13418
13428
 
13419
13429
  @entity model serviceAnnouncement extends entity {
@@ -14113,7 +14123,7 @@ namespace reference.`microsoft.graph` {
14113
14123
  @entity model teamsTemplate extends entity {
14114
14124
  }
14115
14125
 
14116
- @entity model teamwork extends entity {
14126
+ @entity model teamwork extends MsGraph.SharedModels.entity {
14117
14127
  isTeamsEnabled: boolean;
14118
14128
  region: string | null;
14119
14129
  @contains deletedChats: deletedChat[];
@@ -22872,6 +22882,16 @@ namespace reference.`microsoft.graph` {
22872
22882
  high: 5,
22873
22883
  }
22874
22884
 
22885
+ enum stagedFeatureName {
22886
+ passthroughAuthentication: 0,
22887
+ seamlessSso: 1,
22888
+ passwordHashSync: 2,
22889
+ emailAsAlternateId: 3,
22890
+ unknownFutureValue: 4,
22891
+ certificateBasedAuthentication: 5,
22892
+ multiFactorAuthentication: 6,
22893
+ }
22894
+
22875
22895
  /**
22876
22896
  * State Management Setting.
22877
22897
  */
@@ -24819,6 +24839,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
24819
24839
  triggerAttributes: triggerAttribute[];
24820
24840
  }
24821
24841
 
24842
+ @complex model attributeSetEntry {
24843
+ name: string;
24844
+ value: string | null;
24845
+ }
24846
+
24847
+ @complex model awaitedWorkflowProcessingResult {
24848
+ processingStatus: lifecycleWorkflowProcessingStatus;
24849
+ statusReasons: string[];
24850
+ subject: workflowSubject | null;
24851
+ }
24852
+
24822
24853
  @complex model countBasedQuarantineCondition extends quarantineCondition {
24823
24854
  threshold: int64;
24824
24855
  }
@@ -24832,12 +24863,23 @@ namespace reference.`microsoft.graph.identityGovernance` {
24832
24863
  }
24833
24864
 
24834
24865
  @complex model customTaskExtensionCalloutData extends reference.`microsoft.graph`.customExtensionData {
24866
+ targetSubject: workflowSubject | null;
24835
24867
  @references subject: reference.`microsoft.graph`.user | null;
24836
24868
  @references task: task | null;
24837
24869
  @references taskProcessingresult: taskProcessingResult | null;
24838
24870
  @references workflow: workflow | null;
24839
24871
  }
24840
24872
 
24873
+ @complex model customTaskExtensionResponseData extends reference.`microsoft.graph`.customExtensionData {
24874
+ operationStatus: customTaskExtensionOperationStatus;
24875
+ statusReasons: string[];
24876
+ targetSubject: workflowSubject | null;
24877
+ }
24878
+
24879
+ @complex model directoryObjectWorkflowSubject extends workflowSubject {
24880
+ @references directoryObject: reference.`microsoft.graph`.directoryObject;
24881
+ }
24882
+
24841
24883
  @complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
24842
24884
  @references groups: reference.`microsoft.graph`.group[];
24843
24885
  }
@@ -24866,6 +24908,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
24866
24908
  taskId: string;
24867
24909
  }
24868
24910
 
24911
+ @complex model provisioningAttributeMapping extends workflowExecutionConditions {
24912
+ }
24913
+
24914
+ @complex model provisioningObjectWorkflowSubject extends workflowSubject {
24915
+ attributeSetEntries: attributeSetEntry[];
24916
+ id: string;
24917
+ }
24918
+
24869
24919
  @abstract
24870
24920
  @complex model quarantineCondition {
24871
24921
  }
@@ -24894,6 +24944,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
24894
24944
  totalUsers: int32;
24895
24945
  }
24896
24946
 
24947
+ @complex model subjectSummary {
24948
+ failedSubjects: int32;
24949
+ failedTasks: int32;
24950
+ successfulSubjects: int32;
24951
+ totalSubjects: int32;
24952
+ totalTasks: int32;
24953
+ }
24954
+
24897
24955
  @complex model taskReportSummary {
24898
24956
  failedTasks: int32;
24899
24957
  successfulTasks: int32;
@@ -24995,10 +25053,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
24995
25053
  totalUsers: int32;
24996
25054
  }
24997
25055
 
25056
+ @abstract
25057
+ @complex model workflowSubject {
25058
+ }
25059
+
24998
25060
  @entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
24999
25061
  callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
25000
25062
  @computed createdDateTime: offsetDateTime | null;
25001
25063
  @computed lastModifiedDateTime: offsetDateTime | null;
25064
+ replyMode: customTaskExtensionReplyMode;
25002
25065
  @references createdBy: reference.`microsoft.graph`.user | null;
25003
25066
  @references lastModifiedBy: reference.`microsoft.graph`.user | null;
25004
25067
  }
@@ -25037,10 +25100,27 @@ namespace reference.`microsoft.graph.identityGovernance` {
25037
25100
  totalUsersCount: int32;
25038
25101
  workflowExecutionType: workflowExecutionType;
25039
25102
  @references reprocessedRuns: run[];
25103
+ @contains subjectProcessingResults: subjectProcessingResult[];
25040
25104
  @contains taskProcessingResults: taskProcessingResult[];
25041
25105
  @contains userProcessingResults: userProcessingResult[];
25042
25106
  }
25043
25107
 
25108
+ @entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
25109
+ completedDateTime: offsetDateTime | null;
25110
+ failedTasksCount: int32;
25111
+ processingStatus: lifecycleWorkflowProcessingStatus;
25112
+ scheduledDateTime: offsetDateTime;
25113
+ startedDateTime: offsetDateTime | null;
25114
+ subject: workflowSubject;
25115
+ subjectType: subjectType;
25116
+ totalTasksCount: int32;
25117
+ totalUnprocessedTasksCount: int32;
25118
+ workflowExecutionType: workflowExecutionType;
25119
+ workflowVersion: int32;
25120
+ @references reprocessedRuns: run[];
25121
+ @contains taskProcessingResults: taskProcessingResult[];
25122
+ }
25123
+
25044
25124
  @entity model task extends reference.`microsoft.graph`.entity {
25045
25125
  arguments: reference.`microsoft.graph`.keyValuePair[];
25046
25126
  category: lifecycleTaskCategory;
@@ -25069,6 +25149,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
25069
25149
  processingInfo: string | null;
25070
25150
  processingStatus: lifecycleWorkflowProcessingStatus;
25071
25151
  startedDateTime: offsetDateTime | null;
25152
+ workflowSubject: workflowSubject | null;
25072
25153
  @references subject: reference.`microsoft.graph`.user;
25073
25154
  @references task: task;
25074
25155
  }
@@ -25113,6 +25194,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
25113
25194
  @references executionScope: userProcessingResult[];
25114
25195
  @references previewScope: reference.`microsoft.graph`.directoryObject[];
25115
25196
  @contains runs: run[];
25197
+ @contains subjectProcessingResults: subjectProcessingResult[];
25116
25198
  @contains taskReports: taskReport[];
25117
25199
  @contains userProcessingResults: userProcessingResult[];
25118
25200
  @contains versions: workflowVersion[];
@@ -25128,6 +25210,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
25128
25210
  isEnabled: boolean;
25129
25211
  isSchedulingEnabled: boolean;
25130
25212
  @computed lastModifiedDateTime: offsetDateTime | null;
25213
+ targetSubjectType: subjectType;
25131
25214
  @references administrationScopeTargets: reference.`microsoft.graph`.directoryObject[];
25132
25215
  @references createdBy: reference.`microsoft.graph`.user | null;
25133
25216
  @references lastModifiedBy: reference.`microsoft.graph`.user | null;
@@ -25165,12 +25248,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
25165
25248
  unknownFutureValue: 2,
25166
25249
  }
25167
25250
 
25251
+ enum customTaskExtensionReplyMode {
25252
+ none: 0,
25253
+ callback: 1,
25254
+ response: 2,
25255
+ unknownFutureValue: 3,
25256
+ }
25257
+
25168
25258
  @graphFlags
25169
25259
  enum lifecycleTaskCategory {
25170
25260
  joiner: 1,
25171
25261
  leaver: 2,
25172
25262
  unknownFutureValue: 4,
25173
25263
  mover: 8,
25264
+ extensibility: 16,
25174
25265
  }
25175
25266
 
25176
25267
  enum lifecycleWorkflowCategory {
@@ -25178,6 +25269,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
25178
25269
  leaver: 1,
25179
25270
  unknownFutureValue: 2,
25180
25271
  mover: 3,
25272
+ extensibility: 4,
25181
25273
  }
25182
25274
 
25183
25275
  enum lifecycleWorkflowProcessingStatus {
@@ -25211,6 +25303,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
25211
25303
  unknownFutureValue: 4,
25212
25304
  }
25213
25305
 
25306
+ @graphFlags
25307
+ enum subjectType {
25308
+ user: 1,
25309
+ unknownFutureValue: 8,
25310
+ provisioningObject: 16,
25311
+ }
25312
+
25214
25313
  enum valueType {
25215
25314
  `enum`: 0,
25216
25315
  `string`: 1,
@@ -25225,6 +25324,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
25225
25324
  unknownFutureValue: 2,
25226
25325
  activatedWithScope: 3,
25227
25326
  preview: 4,
25327
+ extensibilityOnDemand: 5,
25228
25328
  }
25229
25329
 
25230
25330
  enum workflowTriggerTimeBasedAttribute {