Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
anekkanti committed Oct 16, 2023
1 parent dd1f37b commit 5bc4314
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions temporal/api/cloud/namespace/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -77,20 +77,20 @@ message NamespaceSpec {
message Endpoints {
// The web ui address.
string web_address = 1;
// The grpc hostport temporal workers, clients and tctl connect to.
// The grpc hostport that the temporal workers, clients and tctl connect to.
string grpc_hostport = 2;
// The list of private links, if any, that are associated with the namespace.
repeated string vpc_endpoint_service_names = 3;
}

message OperatingEnvelope {
// The namespace may be throttled if its APS exceeds the limit.
int32 actions_per_second_limit = 1;
}

message PrivateLink {
message AWSPrivateLink {
// The list of principals that are allowed to access the private links on the namespace.
repeated string allowed_principals = 1;
repeated string allowed_principal_arns = 1;
// The list of private links, if any, that are associated with the namespace.
repeated string vpc_endpoint_service_names = 2;
}

message Namespace {
Expand All @@ -110,7 +110,9 @@ message Namespace {
// The envelope is a list of service level agreements (SLAs) that can be provided around a given namespace.
OperatingEnvelope operating_envelope = 7;
// The private link for the namespace, if any.
PrivateLink private_link = 8;
oneof private_link {
AWSPrivateLink aws_private_link = 8;
}
// The date and time when the user was created.
google.protobuf.Timestamp created_time = 9;
// The date and time when the namespace was last modified.
Expand Down

0 comments on commit 5bc4314

Please sign in to comment.