Skip to content

Commit

Permalink
Add namespace_delete_delay option to DeleteNamespaceRequest (#343)
Browse files Browse the repository at this point in the history
  • Loading branch information
hehaifengcn authored Jan 12, 2024
1 parent 59df52a commit 66e0fff
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions temporal/api/operatorservice/v1/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ option ruby_package = "Temporalio::Api::OperatorService::V1";
option csharp_namespace = "Temporalio.Api.OperatorService.V1";

import "temporal/api/enums/v1/common.proto";
import "google/protobuf/duration.proto";

// (-- Search Attribute --)

Expand Down Expand Up @@ -74,6 +75,9 @@ message DeleteNamespaceRequest {
// Only one of namespace or namespace_id must be specified to identify namespace.
string namespace = 1;
string namespace_id = 2;
// If provided, the deletion of namespace info will be delayed for the given duration (0 means no delay).
// If not provided, the default delay configured in the cluster will be used.
google.protobuf.Duration namespace_delete_delay = 3;
}

message DeleteNamespaceResponse {
Expand Down

0 comments on commit 66e0fff

Please sign in to comment.