Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
anekkanti committed Aug 26, 2024
1 parent e054b80 commit 4ad58a4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions temporal/api/cloud/identity/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions temporal/api/cloud/namespace/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down

0 comments on commit 4ad58a4

Please sign in to comment.