diff --git a/temporal/api/cloud/cloudservice/v1/request_response.proto b/temporal/api/cloud/cloudservice/v1/request_response.proto index 3249bc6..2aeb6d4 100644 --- a/temporal/api/cloud/cloudservice/v1/request_response.proto +++ b/temporal/api/cloud/cloudservice/v1/request_response.proto @@ -1095,7 +1095,6 @@ message GetBillingReportResponse { temporal.api.cloud.billing.v1.BillingReport billing_report = 1; } -// temporal:versioning:min_version=v0.13.0 message GetCustomRolesRequest { // The requested size of the page to retrieve. // Cannot exceed 1000. Defaults to 100. @@ -1104,7 +1103,6 @@ message GetCustomRolesRequest { string page_token = 2; } -// temporal:versioning:min_version=v0.13.0 message GetCustomRolesResponse { // The list of custom roles in ascending ID order. repeated temporal.api.cloud.identity.v1.CustomRole custom_roles = 1; @@ -1112,19 +1110,16 @@ message GetCustomRolesResponse { string next_page_token = 2; } -// temporal:versioning:min_version=v0.13.0 message GetCustomRoleRequest { // The ID of the custom role to retrieve. string role_id = 1; } -// temporal:versioning:min_version=v0.13.0 message GetCustomRoleResponse { // The custom role retrieved. temporal.api.cloud.identity.v1.CustomRole custom_role = 1; } -// temporal:versioning:min_version=v0.13.0 message CreateCustomRoleRequest { // The specification for the custom role to create. temporal.api.cloud.identity.v1.CustomRoleSpec spec = 1; @@ -1133,7 +1128,6 @@ message CreateCustomRoleRequest { string async_operation_id = 2; } -// temporal:versioning:min_version=v0.13.0 message CreateCustomRoleResponse { // The ID of the custom role created. string role_id = 1; @@ -1141,7 +1135,6 @@ message CreateCustomRoleResponse { temporal.api.cloud.operation.v1.AsyncOperation async_operation = 2; } -// temporal:versioning:min_version=v0.13.0 message UpdateCustomRoleRequest { // The ID of the custom role to update. string role_id = 1; @@ -1155,13 +1148,11 @@ message UpdateCustomRoleRequest { string async_operation_id = 4; } -// temporal:versioning:min_version=v0.13.0 message UpdateCustomRoleResponse { // The async operation. temporal.api.cloud.operation.v1.AsyncOperation async_operation = 1; } -// temporal:versioning:min_version=v0.13.0 message DeleteCustomRoleRequest { // The ID of the custom role to delete. string role_id = 1; @@ -1173,7 +1164,6 @@ message DeleteCustomRoleRequest { string async_operation_id = 3; } -// temporal:versioning:min_version=v0.13.0 message DeleteCustomRoleResponse { // The async operation. temporal.api.cloud.operation.v1.AsyncOperation async_operation = 1; diff --git a/temporal/api/cloud/cloudservice/v1/service.proto b/temporal/api/cloud/cloudservice/v1/service.proto index a6c764c..7af26e0 100644 --- a/temporal/api/cloud/cloudservice/v1/service.proto +++ b/temporal/api/cloud/cloudservice/v1/service.proto @@ -1160,7 +1160,6 @@ service CloudService { } // Get custom roles - // temporal:versioning:min_version=v0.13.0 rpc GetCustomRoles(GetCustomRolesRequest) returns (GetCustomRolesResponse) { option (google.api.http) = { get: "/cloud/custom-roles" @@ -1177,7 +1176,6 @@ service CloudService { } // Get a custom role - // temporal:versioning:min_version=v0.13.0 rpc GetCustomRole(GetCustomRoleRequest) returns (GetCustomRoleResponse) { option (google.api.http) = { get: "/cloud/custom-roles/{role_id}" @@ -1194,7 +1192,6 @@ service CloudService { } // Create a custom role - // temporal:versioning:min_version=v0.13.0 rpc CreateCustomRole(CreateCustomRoleRequest) returns (CreateCustomRoleResponse) { option (google.api.http) = { post: "/cloud/custom-roles" @@ -1212,7 +1209,6 @@ service CloudService { } // Update a custom role - // temporal:versioning:min_version=v0.13.0 rpc UpdateCustomRole(UpdateCustomRoleRequest) returns (UpdateCustomRoleResponse) { option (google.api.http) = { post: "/cloud/custom-roles/{role_id}" @@ -1230,7 +1226,6 @@ service CloudService { } // Delete a custom role - // temporal:versioning:min_version=v0.13.0 rpc DeleteCustomRole(DeleteCustomRoleRequest) returns (DeleteCustomRoleResponse) { option (google.api.http) = { delete: "/cloud/custom-roles/{role_id}" diff --git a/temporal/api/cloud/identity/v1/message.proto b/temporal/api/cloud/identity/v1/message.proto index 3b304da..44913b1 100644 --- a/temporal/api/cloud/identity/v1/message.proto +++ b/temporal/api/cloud/identity/v1/message.proto @@ -303,7 +303,6 @@ message ApiKeySpec { bool disabled = 6; } -// temporal:versioning:min_version=v0.13.0 message CustomRoleSpec { // The name of the custom role. string name = 1; @@ -329,7 +328,6 @@ message CustomRoleSpec { } } -// temporal:versioning:min_version=v0.13.0 message CustomRole { // The id of the custom role. string id = 1;