Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -10397,6 +10397,10 @@
"searchAttributes": {
"$ref": "#/definitions/v1SearchAttributes",
"description": "Schedule search attributes to be updated.\nDo not set this field if you do not want to update the search attributes.\nA non-null empty object will set the search attributes to an empty map.\nNote: you cannot only update the search attributes with `UpdateScheduleRequest`,\nyou must also set the `schedule` field; otherwise, it will unset the schedule."
},
"memo": {
"$ref": "#/definitions/v1Memo",
"description": "Schedule memo to replace. If set, replaces the entire memo.\nDo not set this field if you do not want to update the memo.\nA non-null empty object will clear the memo."
}
}
},
Expand Down
7 changes: 7 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14797,6 +14797,13 @@ components:
A non-null empty object will set the search attributes to an empty map.
Note: you cannot only update the search attributes with `UpdateScheduleRequest`,
you must also set the `schedule` field; otherwise, it will unset the schedule.
memo:
allOf:
- $ref: '#/components/schemas/Memo'
description: |-
Schedule memo to replace. If set, replaces the entire memo.
Do not set this field if you do not want to update the memo.
A non-null empty object will clear the memo.
UpdateScheduleResponse:
type: object
properties: {}
Expand Down
4 changes: 4 additions & 0 deletions temporal/api/workflowservice/v1/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1355,6 +1355,10 @@ message UpdateScheduleRequest {
// Note: you cannot only update the search attributes with `UpdateScheduleRequest`,
// you must also set the `schedule` field; otherwise, it will unset the schedule.
temporal.api.common.v1.SearchAttributes search_attributes = 7;
// Schedule memo to replace. If set, replaces the entire memo.
// Do not set this field if you do not want to update the memo.
// A non-null empty object will clear the memo.
temporal.api.common.v1.Memo memo = 8;
}

message UpdateScheduleResponse {
Expand Down
Loading