diff --git a/temporal/api/cloud/identity/v1/message.proto b/temporal/api/cloud/identity/v1/message.proto index af5372d..09d9389 100644 --- a/temporal/api/cloud/identity/v1/message.proto +++ b/temporal/api/cloud/identity/v1/message.proto @@ -9,7 +9,7 @@ option java_outer_classname = "MessageProto"; option ruby_package = "Temporalio::Api::Cloud::Identity::V1"; option csharp_namespace = "Temporalio.Api.Cloud.Identity.V1"; -import "temporal/api/cloud/common/v1/message.proto"; +import "temporal/api/cloud/resource/v1/message.proto"; import "google/protobuf/timestamp.proto"; message AccountAccess { @@ -97,7 +97,7 @@ message User { // The current state of the user. // For any failed state, reach out to Temporal Cloud support for remediation. // temporal:enums:replaces=state_deprecated - temporal.api.cloud.common.v1.ResourceState state = 9; + temporal.api.cloud.resource.v1.ResourceState state = 9; // The id of the async operation that is creating/updating/deleting the user, if any string async_operation_id = 5; // The details of the open invitation sent to the user, if any @@ -139,7 +139,7 @@ message UserGroup { // The current state of the group. // For any failed state, reach out to Temporal Cloud support for remediation. // temporal:enums:replaces=state_deprecated - temporal.api.cloud.common.v1.ResourceState state = 8; + temporal.api.cloud.resource.v1.ResourceState state = 8; // The id of the async operation that is creating/updating/deleting the group, if any string async_operation_id = 5; // The date and time when the group was created @@ -165,7 +165,7 @@ message ServiceAccount { // The current state of the service account. // For any failed state, reach out to Temporal Cloud support for remediation. // temporal:enums:replaces=state_deprecated - temporal.api.cloud.common.v1.ResourceState state = 8; + temporal.api.cloud.resource.v1.ResourceState state = 8; // The id of the async operation that is creating/updating/deleting the service account, if any. string async_operation_id = 5; // The date and time when the service account was created. @@ -203,7 +203,7 @@ message ApiKey { string state_deprecated = 4 [deprecated = true]; // The current state of the API key. // temporal:enums:replaces=state_deprecated - temporal.api.cloud.common.v1.ResourceState state = 8; + temporal.api.cloud.resource.v1.ResourceState state = 8; // The id of the async operation that is creating/updating/deleting the API key, if any. string async_operation_id = 5; // The date and time when the API key was created. diff --git a/temporal/api/cloud/namespace/v1/message.proto b/temporal/api/cloud/namespace/v1/message.proto index 60f4fd0..5028cec 100644 --- a/temporal/api/cloud/namespace/v1/message.proto +++ b/temporal/api/cloud/namespace/v1/message.proto @@ -9,7 +9,7 @@ option java_outer_classname = "MessageProto"; option ruby_package = "Temporalio::Api::Cloud::Namespace::V1"; option csharp_namespace = "Temporalio.Api.Cloud.Namespace.V1"; -import "temporal/api/cloud/common/v1/message.proto"; +import "temporal/api/cloud/resource/v1/message.proto"; import "google/protobuf/timestamp.proto"; message CertificateFilterSpec { @@ -161,7 +161,7 @@ message Namespace { // The current state of the namespace. // For any failed state, reach out to Temporal Cloud support for remediation. // temporal:enums:replaces=state_deprecated - temporal.api.cloud.common.v1.ResourceState state = 13; + temporal.api.cloud.resource.v1.ResourceState state = 13; // The id of the async operation that is creating/updating/deleting the namespace, if any. string async_operation_id = 5; // The endpoints for the namespace. diff --git a/temporal/api/cloud/common/v1/message.proto b/temporal/api/cloud/resource/v1/message.proto similarity index 80% rename from temporal/api/cloud/common/v1/message.proto rename to temporal/api/cloud/resource/v1/message.proto index 42b8148..eb15725 100644 --- a/temporal/api/cloud/common/v1/message.proto +++ b/temporal/api/cloud/resource/v1/message.proto @@ -1,13 +1,13 @@ syntax = "proto3"; -package temporal.api.cloud.common.v1; +package temporal.api.cloud.resource.v1; -option go_package = "go.temporal.io/api/cloud/common/v1;common"; -option java_package = "io.temporal.api.cloud.common.v1"; +option go_package = "go.temporal.io/api/cloud/resource/v1;resource"; +option java_package = "io.temporal.api.cloud.resource.v1"; option java_multiple_files = true; option java_outer_classname = "MessageProto"; -option ruby_package = "Temporalio::Api::Cloud::Common::V1"; -option csharp_namespace = "Temporalio.Api.Cloud.Common.V1"; +option ruby_package = "Temporalio::Api::Cloud::Resource::V1"; +option csharp_namespace = "Temporalio.Api.Cloud.Resource.V1"; enum ResourceState {