Skip to content

Commit

Permalink
naming
Browse files Browse the repository at this point in the history
  • Loading branch information
ychebotarev committed Aug 29, 2024
1 parent ba9f3ab commit 22a606f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -5722,15 +5722,15 @@
},
"activityOptions": {
"$ref": "#/definitions/v1ActivityOptions",
"title": "activity options. Partial updates are accepted and controlled by update_mask"
"title": "Activity options. Partial updates are accepted and controlled by update_mask"
},
"identity": {
"type": "string",
"title": "The identity of the client who initiated this request"
},
"updateMask": {
"type": "string",
"title": "the way to control partial updates"
"title": "Controls which fields from `activity_options` will be applied"
}
}
},
Expand Down Expand Up @@ -5759,7 +5759,7 @@
},
"updateMask": {
"type": "string",
"title": "The way to control partial updates"
"title": "Controls which fields from `activity_options` will be applied"
}
}
},
Expand Down
6 changes: 3 additions & 3 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8636,7 +8636,7 @@ components:
description: The identity of the client who initiated this request
updateMask:
type: string
description: The way to control partial updates
description: Controls which fields from `activity_options` will be applied
format: field-mask
UpdateActivityOptionsByIdResponse:
type: object
Expand All @@ -8657,13 +8657,13 @@ components:
activityOptions:
allOf:
- $ref: '#/components/schemas/ActivityOptions'
description: activity options. Partial updates are accepted and controlled by update_mask
description: Activity options. Partial updates are accepted and controlled by update_mask
identity:
type: string
description: The identity of the client who initiated this request
updateMask:
type: string
description: the way to control partial updates
description: Controls which fields from `activity_options` will be applied
format: field-mask
UpdateActivityOptionsResponse:
type: object
Expand Down
6 changes: 3 additions & 3 deletions temporal/api/workflowservice/v1/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1664,11 +1664,11 @@ message UpdateActivityOptionsRequest {
// A unique identifier for this task
bytes task_token = 2;

// activity options. Partial updates are accepted and controlled by update_mask
// Activity options. Partial updates are accepted and controlled by update_mask
temporal.api.activity.v1.ActivityOptions activity_options = 3;
// The identity of the client who initiated this request
string identity = 4;
// the way to control partial updates
// Controls which fields from `activity_options` will be applied
google.protobuf.FieldMask update_mask = 5;
}

Expand All @@ -1688,7 +1688,7 @@ message UpdateActivityOptionsByIdRequest {

// The identity of the client who initiated this request
string identity = 6;
// The way to control partial updates
// Controls which fields from `activity_options` will be applied
google.protobuf.FieldMask update_mask = 7;
}

Expand Down

0 comments on commit 22a606f

Please sign in to comment.