You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi/openapiv2.json
+29Lines changed: 29 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -12879,6 +12879,11 @@
12879
12879
"properties": {
12880
12880
"deploymentVersion": {
12881
12881
"$ref": "#/definitions/v1WorkerDeploymentVersion"
12882
+
},
12883
+
"revisionNumber": {
12884
+
"type": "string",
12885
+
"format": "int64",
12886
+
"description": "Revision number of the task queue routing config at the time the target\nwas declined. If an incoming target's revision is <= this value, it is\nnot newer and is not used for deciding whether or not to suppress the\nupgrade signal."
12882
12887
}
12883
12888
},
12884
12889
"description": "Wrapper for a target deployment version that the SDK declined to upgrade to.\nSee declined_target_version_upgrade on WorkflowExecutionStartedEventAttributes."
@@ -15383,6 +15388,30 @@
15383
15388
"pollerScalingDecision": {
15384
15389
"$ref": "#/definitions/v1PollerScalingDecision",
15385
15390
"description": "Server-advised information the SDK may use to adjust its poller count."
15391
+
},
15392
+
"pollerGroupId": {
15393
+
"type": "string",
15394
+
"description": "This poller group ID identifies the owner of the workflow task awaiting for query response.\nCorresponding RespondQueryTaskCompleted should pass this value for proper routing."
15395
+
},
15396
+
"pollerGroupInfos": {
15397
+
"type": "array",
15398
+
"items": {
15399
+
"type": "object",
15400
+
"$ref": "#/definitions/v1PollerGroupInfo"
15401
+
},
15402
+
"description": "The weighted list of poller groups IDs that client should use for future polls to this task\nqueue. Client is expected to:\n 1. Maintain minimum number of pollers no less than the number of groups.\n 2. Try to assign the next poll to a group without any pending polls,\n 3. If every group has some pending polls, assign the next poll to a group randomly\n according to the weights."
0 commit comments