Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -14952,6 +14952,10 @@
"properties": {
"clusterName": {
"type": "string"
},
"replicationRampDuration": {
"type": "string",
"description": "Ramp duration when this cluster is added as passive by UpdateNamespace; unset or non-positive disables gradual connect.\nThis field is not persisted and is omitted from namespace responses."
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11089,6 +11089,12 @@ components:
properties:
clusterName:
type: string
replicationRampDuration:
pattern: ^-?(?:0|[1-9][0-9]{0,11})(?:\.[0-9]{1,9})?s$
type: string
description: |-
Ramp duration when this cluster is added as passive by UpdateNamespace; unset or non-positive disables gradual connect.
This field is not persisted and is omitted from namespace responses.
CompatibleBuildIdRedirectRule:
type: object
properties:
Expand Down
4 changes: 4 additions & 0 deletions temporal/api/replication/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@ option java_outer_classname = "MessageProto";
option ruby_package = "Temporalio::Api::Replication::V1";
option csharp_namespace = "Temporalio.Api.Replication.V1";

import "google/protobuf/duration.proto";
import "google/protobuf/timestamp.proto";

import "temporal/api/enums/v1/namespace.proto";

message ClusterReplicationConfig {
string cluster_name = 1;
// Ramp duration when this cluster is added as passive by UpdateNamespace; unset or non-positive disables gradual connect.
// This field is not persisted and is omitted from namespace responses.
google.protobuf.Duration replication_ramp_duration = 2;
}

message NamespaceReplicationConfig {
Expand Down
Loading