Skip to content
Open
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 @@ -17251,6 +17251,10 @@
},
"state": {
"$ref": "#/definitions/v1ReplicationState"
},
"replicationRampDuration": {
"type": "string",
"description": "Ramp duration for passive clusters added by an UpdateNamespace request; 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 @@ -13564,6 +13564,12 @@ components:
- REPLICATION_STATE_HANDOVER
type: string
format: enum
replicationRampDuration:
pattern: ^-?(?:0|[1-9][0-9]{0,11})(?:\.[0-9]{1,9})?s$
type: string
description: |-
Ramp duration for passive clusters added by an UpdateNamespace request; unset or non-positive disables gradual connect.
This field is not persisted and is omitted from namespace responses.
NewWorkflowExecutionInfo:
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,6 +9,7 @@ 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";
Expand All @@ -21,6 +22,9 @@ message NamespaceReplicationConfig {
string active_cluster_name = 1;
repeated ClusterReplicationConfig clusters = 2;
temporal.api.enums.v1.ReplicationState state = 3;
// Ramp duration for passive clusters added by an UpdateNamespace request; unset or non-positive disables gradual connect.
// This field is not persisted and is omitted from namespace responses.
google.protobuf.Duration replication_ramp_duration = 4;
}

// Represents a historical replication status of a Namespace
Expand Down
Loading