File tree Expand file tree Collapse file tree
temporal/api/workflowservice/v1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1121011210 "onConflictOptions": {
1121111211 "$ref": "#/definitions/apiCommonV1OnConflictOptions",
1121211212 "description": "Options for handling conflicts when using ACTIVITY_ID_CONFLICT_POLICY_USE_EXISTING."
11213+ },
11214+ "startDelay": {
11215+ "type": "string",
11216+ "description": "Time to wait before dispatching the first activity task. This delay is not applied to retry attempts."
1121311217 }
1121411218 }
1121511219 },
Original file line number Diff line number Diff line change @@ -15379,6 +15379,10 @@ components:
1537915379 allOf:
1538015380 - $ref: '#/components/schemas/OnConflictOptions'
1538115381 description: Options for handling conflicts when using ACTIVITY_ID_CONFLICT_POLICY_USE_EXISTING.
15382+ startDelay:
15383+ pattern: ^-?(?:0|[1-9][0-9]{0,11})(?:\.[0-9]{1,9})?s$
15384+ type: string
15385+ description: Time to wait before dispatching the first activity task. This delay is not applied to retry attempts.
1538215386 StartActivityExecutionResponse:
1538315387 type: object
1538415388 properties:
Original file line number Diff line number Diff line change @@ -3003,6 +3003,8 @@ message StartActivityExecutionRequest {
30033003 repeated temporal.api.common.v1.Link links = 20 ;
30043004 // Options for handling conflicts when using ACTIVITY_ID_CONFLICT_POLICY_USE_EXISTING.
30053005 temporal.api.common.v1.OnConflictOptions on_conflict_options = 21 ;
3006+ // Time to wait before dispatching the first activity task. This delay is not applied to retry attempts.
3007+ google.protobuf.Duration start_delay = 22 ;
30063008}
30073009
30083010message StartActivityExecutionResponse {
You can’t perform that action at this time.
0 commit comments