temporalio 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (124) hide show
  1. checksums.yaml +4 -4
  2. data/bridge/Cargo.lock +20 -20
  3. data/bridge/Cargo.toml +3 -3
  4. data/lib/temporalio/bridge.rb +1 -1
  5. data/lib/temporalio/version.rb +1 -1
  6. data/lib/thermite_patch.rb +10 -0
  7. data/sig/async.rbs +17 -0
  8. data/sig/protobuf.rbs +16 -0
  9. data/sig/protos/dependencies/gogoproto/gogo.rbs +914 -0
  10. data/sig/protos/google/protobuf/any.rbs +157 -0
  11. data/sig/protos/google/protobuf/descriptor.rbs +2825 -0
  12. data/sig/protos/google/protobuf/duration.rbs +114 -0
  13. data/sig/protos/google/protobuf/empty.rbs +36 -0
  14. data/sig/protos/google/protobuf/timestamp.rbs +145 -0
  15. data/sig/protos/google/protobuf/wrappers.rbs +358 -0
  16. data/sig/protos/temporal/api/batch/v1/message.rbs +300 -0
  17. data/sig/protos/temporal/api/command/v1/message.rbs +1399 -0
  18. data/sig/protos/temporal/api/common/v1/message.rbs +528 -0
  19. data/sig/protos/temporal/api/enums/v1/batch_operation.rbs +79 -0
  20. data/sig/protos/temporal/api/enums/v1/command_type.rbs +68 -0
  21. data/sig/protos/temporal/api/enums/v1/common.rbs +118 -0
  22. data/sig/protos/temporal/api/enums/v1/event_type.rbs +264 -0
  23. data/sig/protos/temporal/api/enums/v1/failed_cause.rbs +277 -0
  24. data/sig/protos/temporal/api/enums/v1/namespace.rbs +108 -0
  25. data/sig/protos/temporal/api/enums/v1/query.rbs +81 -0
  26. data/sig/protos/temporal/api/enums/v1/reset.rbs +44 -0
  27. data/sig/protos/temporal/api/enums/v1/schedule.rbs +72 -0
  28. data/sig/protos/temporal/api/enums/v1/task_queue.rbs +92 -0
  29. data/sig/protos/temporal/api/enums/v1/update.rbs +64 -0
  30. data/sig/protos/temporal/api/enums/v1/workflow.rbs +371 -0
  31. data/sig/protos/temporal/api/errordetails/v1/message.rbs +551 -0
  32. data/sig/protos/temporal/api/failure/v1/message.rbs +581 -0
  33. data/sig/protos/temporal/api/filter/v1/message.rbs +171 -0
  34. data/sig/protos/temporal/api/history/v1/message.rbs +4609 -0
  35. data/sig/protos/temporal/api/namespace/v1/message.rbs +410 -0
  36. data/sig/protos/temporal/api/operatorservice/v1/request_response.rbs +643 -0
  37. data/sig/protos/temporal/api/operatorservice/v1/service.rbs +17 -0
  38. data/sig/protos/temporal/api/protocol/v1/message.rbs +84 -0
  39. data/sig/protos/temporal/api/query/v1/message.rbs +182 -0
  40. data/sig/protos/temporal/api/replication/v1/message.rbs +148 -0
  41. data/sig/protos/temporal/api/schedule/v1/message.rbs +1488 -0
  42. data/sig/protos/temporal/api/sdk/v1/task_complete_metadata.rbs +110 -0
  43. data/sig/protos/temporal/api/taskqueue/v1/message.rbs +486 -0
  44. data/sig/protos/temporal/api/testservice/v1/request_response.rbs +249 -0
  45. data/sig/protos/temporal/api/testservice/v1/service.rbs +15 -0
  46. data/sig/protos/temporal/api/update/v1/message.rbs +489 -0
  47. data/sig/protos/temporal/api/version/v1/message.rbs +184 -0
  48. data/sig/protos/temporal/api/workflow/v1/message.rbs +824 -0
  49. data/sig/protos/temporal/api/workflowservice/v1/request_response.rbs +7250 -0
  50. data/sig/protos/temporal/api/workflowservice/v1/service.rbs +22 -0
  51. data/sig/protos/temporal/sdk/core/activity_result/activity_result.rbs +380 -0
  52. data/sig/protos/temporal/sdk/core/activity_task/activity_task.rbs +386 -0
  53. data/sig/protos/temporal/sdk/core/child_workflow/child_workflow.rbs +323 -0
  54. data/sig/protos/temporal/sdk/core/common/common.rbs +62 -0
  55. data/sig/protos/temporal/sdk/core/core_interface.rbs +101 -0
  56. data/sig/protos/temporal/sdk/core/external_data/external_data.rbs +119 -0
  57. data/sig/protos/temporal/sdk/core/workflow_activation/workflow_activation.rbs +1473 -0
  58. data/sig/protos/temporal/sdk/core/workflow_commands/workflow_commands.rbs +1784 -0
  59. data/sig/protos/temporal/sdk/core/workflow_completion/workflow_completion.rbs +180 -0
  60. data/sig/ruby.rbs +12 -0
  61. data/sig/temporalio/activity/context.rbs +29 -0
  62. data/sig/temporalio/activity/info.rbs +43 -0
  63. data/sig/temporalio/activity.rbs +19 -0
  64. data/sig/temporalio/bridge/connect_options.rbs +19 -0
  65. data/sig/temporalio/bridge/error.rbs +8 -0
  66. data/sig/temporalio/bridge/retry_config.rbs +21 -0
  67. data/sig/temporalio/bridge/tls_options.rbs +17 -0
  68. data/sig/temporalio/bridge.rbs +71 -0
  69. data/sig/temporalio/client/implementation.rbs +38 -0
  70. data/sig/temporalio/client/workflow_handle.rbs +41 -0
  71. data/sig/temporalio/client.rbs +35 -0
  72. data/sig/temporalio/connection/retry_config.rbs +37 -0
  73. data/sig/temporalio/connection/service.rbs +14 -0
  74. data/sig/temporalio/connection/test_service.rbs +13 -0
  75. data/sig/temporalio/connection/tls_options.rbs +43 -0
  76. data/sig/temporalio/connection/workflow_service.rbs +48 -0
  77. data/sig/temporalio/connection.rbs +30 -0
  78. data/sig/temporalio/data_converter.rbs +35 -0
  79. data/sig/temporalio/error/failure.rbs +121 -0
  80. data/sig/temporalio/error/workflow_failure.rbs +9 -0
  81. data/sig/temporalio/errors.rbs +36 -0
  82. data/sig/temporalio/failure_converter/base.rbs +12 -0
  83. data/sig/temporalio/failure_converter/basic.rbs +86 -0
  84. data/sig/temporalio/failure_converter.rbs +5 -0
  85. data/sig/temporalio/interceptor/activity_inbound.rbs +21 -0
  86. data/sig/temporalio/interceptor/activity_outbound.rbs +10 -0
  87. data/sig/temporalio/interceptor/chain.rbs +24 -0
  88. data/sig/temporalio/interceptor/client.rbs +148 -0
  89. data/sig/temporalio/interceptor.rbs +6 -0
  90. data/sig/temporalio/payload_codec/base.rbs +12 -0
  91. data/sig/temporalio/payload_converter/base.rbs +12 -0
  92. data/sig/temporalio/payload_converter/bytes.rbs +9 -0
  93. data/sig/temporalio/payload_converter/composite.rbs +19 -0
  94. data/sig/temporalio/payload_converter/encoding_base.rbs +14 -0
  95. data/sig/temporalio/payload_converter/json.rbs +9 -0
  96. data/sig/temporalio/payload_converter/nil.rbs +9 -0
  97. data/sig/temporalio/payload_converter.rbs +5 -0
  98. data/sig/temporalio/retry_policy.rbs +25 -0
  99. data/sig/temporalio/retry_state.rbs +20 -0
  100. data/sig/temporalio/runtime.rbs +12 -0
  101. data/sig/temporalio/testing/time_skipping_handle.rbs +15 -0
  102. data/sig/temporalio/testing/time_skipping_interceptor.rbs +13 -0
  103. data/sig/temporalio/testing/workflow_environment.rbs +22 -0
  104. data/sig/temporalio/testing.rbs +35 -0
  105. data/sig/temporalio/timeout_type.rbs +15 -0
  106. data/sig/temporalio/version.rbs +3 -0
  107. data/sig/temporalio/worker/activity_runner.rbs +35 -0
  108. data/sig/temporalio/worker/activity_worker.rbs +44 -0
  109. data/sig/temporalio/worker/reactor.rbs +22 -0
  110. data/sig/temporalio/worker/runner.rbs +21 -0
  111. data/sig/temporalio/worker/sync_worker.rbs +23 -0
  112. data/sig/temporalio/worker/thread_pool_executor.rbs +23 -0
  113. data/sig/temporalio/worker.rbs +46 -0
  114. data/sig/temporalio/workflow/async.rbs +9 -0
  115. data/sig/temporalio/workflow/execution_info.rbs +55 -0
  116. data/sig/temporalio/workflow/execution_status.rbs +21 -0
  117. data/sig/temporalio/workflow/future.rbs +40 -0
  118. data/sig/temporalio/workflow/id_reuse_policy.rbs +15 -0
  119. data/sig/temporalio/workflow/info.rbs +55 -0
  120. data/sig/temporalio/workflow/query_reject_condition.rbs +14 -0
  121. data/sig/temporalio.rbs +2 -0
  122. data/sig/thermite_patch.rbs +15 -0
  123. data/temporalio.gemspec +2 -1
  124. metadata +118 -2
@@ -0,0 +1,84 @@
1
+ module Temporalio
2
+ module Api
3
+ module Protocol
4
+ module V1
5
+ # (-- api-linter: core::0146::any=disabled
6
+ # aip.dev/not-precedent: We want runtime extensibility for the body field --)
7
+ #
8
+ class Message < ::Protobuf::Message
9
+ # Encode the message to a binary string
10
+ #
11
+ def self.encode: (Message) -> String
12
+
13
+ # An ID for this specific message.
14
+ #
15
+ attr_accessor id(): ::String
16
+
17
+ def id!: () -> ::String?
18
+
19
+ # Identifies the specific instance of a protocol to which this message
20
+ # belongs.
21
+ #
22
+ attr_accessor protocol_instance_id(): ::String
23
+
24
+ def protocol_instance_id!: () -> ::String?
25
+
26
+ attr_accessor event_id(): ::Integer
27
+
28
+ def event_id!: () -> ::Integer?
29
+
30
+ attr_accessor command_index(): ::Integer
31
+
32
+ def command_index!: () -> ::Integer?
33
+
34
+ # The opaque data carried by this message. The protocol type can be
35
+ # extracted from the package name of the message carried inside the Any.
36
+ #
37
+ attr_accessor body(): ::Google::Protobuf::Any?
38
+
39
+ # The opaque data carried by this message. The protocol type can be
40
+ # extracted from the package name of the message carried inside the Any.
41
+ #
42
+ def body=: [M < ::Google::Protobuf::Any::_ToProto] (M?) -> M?
43
+ | ...
44
+
45
+ def body!: () -> ::Google::Protobuf::Any?
46
+
47
+ def initialize: (?id: ::String, ?protocol_instance_id: ::String, ?event_id: ::Integer, ?command_index: ::Integer, ?body: ::Google::Protobuf::Any::init?) -> void
48
+
49
+ def []: (:id) -> ::String
50
+ | (:protocol_instance_id) -> ::String
51
+ | (:event_id) -> ::Integer
52
+ | (:command_index) -> ::Integer
53
+ | (:body) -> ::Google::Protobuf::Any?
54
+ | (::Symbol) -> untyped
55
+
56
+ def []=: (:id, ::String) -> ::String
57
+ | (:protocol_instance_id, ::String) -> ::String
58
+ | (:event_id, ::Integer) -> ::Integer
59
+ | (:command_index, ::Integer) -> ::Integer
60
+ | (:body, ::Google::Protobuf::Any?) -> ::Google::Protobuf::Any?
61
+ | [M < ::Google::Protobuf::Any::_ToProto] (:body, M?) -> M?
62
+ | (::Symbol, untyped) -> untyped
63
+
64
+ interface _ToProto
65
+ def to_proto: () -> Message
66
+ end
67
+
68
+ # The type of `#initialize` parameter.
69
+ type init = Message | _ToProto
70
+
71
+ # The type of `repeated` field.
72
+ type field_array = ::Protobuf::Field::FieldArray[Message, Message | _ToProto]
73
+
74
+ # The type of `map` field.
75
+ type field_hash[KEY] = ::Protobuf::Field::FieldHash[KEY, Message, Message | _ToProto]
76
+
77
+ type array = ::Array[Message | _ToProto]
78
+
79
+ type hash[KEY] = ::Hash[KEY, Message | _ToProto]
80
+ end
81
+ end
82
+ end
83
+ end
84
+ end
@@ -0,0 +1,182 @@
1
+ module Temporalio
2
+ module Api
3
+ module Query
4
+ module V1
5
+ # See https://docs.temporal.io/docs/concepts/queries/
6
+ #
7
+ class WorkflowQuery < ::Protobuf::Message
8
+ # Encode the message to a binary string
9
+ #
10
+ def self.encode: (WorkflowQuery) -> String
11
+
12
+ # The workflow-author-defined identifier of the query. Typically a function name.
13
+ #
14
+ attr_accessor query_type(): ::String
15
+
16
+ def query_type!: () -> ::String?
17
+
18
+ # Serialized arguments that will be provided to the query handler.
19
+ #
20
+ attr_accessor query_args(): ::Temporalio::Api::Common::V1::Payloads?
21
+
22
+ # Serialized arguments that will be provided to the query handler.
23
+ #
24
+ def query_args=: [M < ::Temporalio::Api::Common::V1::Payloads::_ToProto] (M?) -> M?
25
+ | ...
26
+
27
+ def query_args!: () -> ::Temporalio::Api::Common::V1::Payloads?
28
+
29
+ # Headers that were passed by the caller of the query and copied by temporal
30
+ # server into the workflow task.
31
+ #
32
+ attr_accessor header(): ::Temporalio::Api::Common::V1::Header?
33
+
34
+ # Headers that were passed by the caller of the query and copied by temporal
35
+ # server into the workflow task.
36
+ #
37
+ def header=: [M < ::Temporalio::Api::Common::V1::Header::_ToProto] (M?) -> M?
38
+ | ...
39
+
40
+ def header!: () -> ::Temporalio::Api::Common::V1::Header?
41
+
42
+ def initialize: (?query_type: ::String, ?query_args: ::Temporalio::Api::Common::V1::Payloads::init?, ?header: ::Temporalio::Api::Common::V1::Header::init?) -> void
43
+
44
+ def []: (:query_type) -> ::String
45
+ | (:query_args) -> ::Temporalio::Api::Common::V1::Payloads?
46
+ | (:header) -> ::Temporalio::Api::Common::V1::Header?
47
+ | (::Symbol) -> untyped
48
+
49
+ def []=: (:query_type, ::String) -> ::String
50
+ | (:query_args, ::Temporalio::Api::Common::V1::Payloads?) -> ::Temporalio::Api::Common::V1::Payloads?
51
+ | [M < ::Temporalio::Api::Common::V1::Payloads::_ToProto] (:query_args, M?) -> M?
52
+ | (:header, ::Temporalio::Api::Common::V1::Header?) -> ::Temporalio::Api::Common::V1::Header?
53
+ | [M < ::Temporalio::Api::Common::V1::Header::_ToProto] (:header, M?) -> M?
54
+ | (::Symbol, untyped) -> untyped
55
+
56
+ interface _ToProto
57
+ def to_proto: () -> WorkflowQuery
58
+ end
59
+
60
+ # The type of `#initialize` parameter.
61
+ type init = WorkflowQuery | _ToProto
62
+
63
+ # The type of `repeated` field.
64
+ type field_array = ::Protobuf::Field::FieldArray[WorkflowQuery, WorkflowQuery | _ToProto]
65
+
66
+ # The type of `map` field.
67
+ type field_hash[KEY] = ::Protobuf::Field::FieldHash[KEY, WorkflowQuery, WorkflowQuery | _ToProto]
68
+
69
+ type array = ::Array[WorkflowQuery | _ToProto]
70
+
71
+ type hash[KEY] = ::Hash[KEY, WorkflowQuery | _ToProto]
72
+ end
73
+
74
+ # Answer to a `WorkflowQuery`
75
+ #
76
+ class WorkflowQueryResult < ::Protobuf::Message
77
+ # Encode the message to a binary string
78
+ #
79
+ def self.encode: (WorkflowQueryResult) -> String
80
+
81
+ # Did the query succeed or fail?
82
+ #
83
+ attr_accessor result_type(): ::Temporalio::Api::Enums::V1::QueryResultType
84
+
85
+ # Did the query succeed or fail?
86
+ #
87
+ def result_type=: (::Temporalio::Api::Enums::V1::QueryResultType::values) -> ::Temporalio::Api::Enums::V1::QueryResultType::values
88
+ | ...
89
+
90
+ def result_type!: () -> ::Temporalio::Api::Enums::V1::QueryResultType?
91
+
92
+ # Set when the query succeeds with the results
93
+ #
94
+ attr_accessor answer(): ::Temporalio::Api::Common::V1::Payloads?
95
+
96
+ # Set when the query succeeds with the results
97
+ #
98
+ def answer=: [M < ::Temporalio::Api::Common::V1::Payloads::_ToProto] (M?) -> M?
99
+ | ...
100
+
101
+ def answer!: () -> ::Temporalio::Api::Common::V1::Payloads?
102
+
103
+ # Mutually exclusive with `answer`. Set when the query fails.
104
+ #
105
+ attr_accessor error_message(): ::String
106
+
107
+ def error_message!: () -> ::String?
108
+
109
+ def initialize: (?result_type: ::Temporalio::Api::Enums::V1::QueryResultType::init, ?answer: ::Temporalio::Api::Common::V1::Payloads::init?, ?error_message: ::String) -> void
110
+
111
+ def []: (:result_type) -> ::Temporalio::Api::Enums::V1::QueryResultType
112
+ | (:answer) -> ::Temporalio::Api::Common::V1::Payloads?
113
+ | (:error_message) -> ::String
114
+ | (::Symbol) -> untyped
115
+
116
+ def []=: (:result_type, ::Temporalio::Api::Enums::V1::QueryResultType) -> ::Temporalio::Api::Enums::V1::QueryResultType
117
+ | (:result_type, ::Temporalio::Api::Enums::V1::QueryResultType::values) -> ::Temporalio::Api::Enums::V1::QueryResultType::values
118
+ | (:answer, ::Temporalio::Api::Common::V1::Payloads?) -> ::Temporalio::Api::Common::V1::Payloads?
119
+ | [M < ::Temporalio::Api::Common::V1::Payloads::_ToProto] (:answer, M?) -> M?
120
+ | (:error_message, ::String) -> ::String
121
+ | (::Symbol, untyped) -> untyped
122
+
123
+ interface _ToProto
124
+ def to_proto: () -> WorkflowQueryResult
125
+ end
126
+
127
+ # The type of `#initialize` parameter.
128
+ type init = WorkflowQueryResult | _ToProto
129
+
130
+ # The type of `repeated` field.
131
+ type field_array = ::Protobuf::Field::FieldArray[WorkflowQueryResult, WorkflowQueryResult | _ToProto]
132
+
133
+ # The type of `map` field.
134
+ type field_hash[KEY] = ::Protobuf::Field::FieldHash[KEY, WorkflowQueryResult, WorkflowQueryResult | _ToProto]
135
+
136
+ type array = ::Array[WorkflowQueryResult | _ToProto]
137
+
138
+ type hash[KEY] = ::Hash[KEY, WorkflowQueryResult | _ToProto]
139
+ end
140
+
141
+ class QueryRejected < ::Protobuf::Message
142
+ # Encode the message to a binary string
143
+ #
144
+ def self.encode: (QueryRejected) -> String
145
+
146
+ attr_accessor status(): ::Temporalio::Api::Enums::V1::WorkflowExecutionStatus
147
+
148
+ def status=: (::Temporalio::Api::Enums::V1::WorkflowExecutionStatus::values) -> ::Temporalio::Api::Enums::V1::WorkflowExecutionStatus::values
149
+ | ...
150
+
151
+ def status!: () -> ::Temporalio::Api::Enums::V1::WorkflowExecutionStatus?
152
+
153
+ def initialize: (?status: ::Temporalio::Api::Enums::V1::WorkflowExecutionStatus::init) -> void
154
+
155
+ def []: (:status) -> ::Temporalio::Api::Enums::V1::WorkflowExecutionStatus
156
+ | (::Symbol) -> untyped
157
+
158
+ def []=: (:status, ::Temporalio::Api::Enums::V1::WorkflowExecutionStatus) -> ::Temporalio::Api::Enums::V1::WorkflowExecutionStatus
159
+ | (:status, ::Temporalio::Api::Enums::V1::WorkflowExecutionStatus::values) -> ::Temporalio::Api::Enums::V1::WorkflowExecutionStatus::values
160
+ | (::Symbol, untyped) -> untyped
161
+
162
+ interface _ToProto
163
+ def to_proto: () -> QueryRejected
164
+ end
165
+
166
+ # The type of `#initialize` parameter.
167
+ type init = QueryRejected | _ToProto
168
+
169
+ # The type of `repeated` field.
170
+ type field_array = ::Protobuf::Field::FieldArray[QueryRejected, QueryRejected | _ToProto]
171
+
172
+ # The type of `map` field.
173
+ type field_hash[KEY] = ::Protobuf::Field::FieldHash[KEY, QueryRejected, QueryRejected | _ToProto]
174
+
175
+ type array = ::Array[QueryRejected | _ToProto]
176
+
177
+ type hash[KEY] = ::Hash[KEY, QueryRejected | _ToProto]
178
+ end
179
+ end
180
+ end
181
+ end
182
+ end
@@ -0,0 +1,148 @@
1
+ module Temporalio
2
+ module Api
3
+ module Replication
4
+ module V1
5
+ class ClusterReplicationConfig < ::Protobuf::Message
6
+ # Encode the message to a binary string
7
+ #
8
+ def self.encode: (ClusterReplicationConfig) -> String
9
+
10
+ attr_accessor cluster_name(): ::String
11
+
12
+ def cluster_name!: () -> ::String?
13
+
14
+ def initialize: (?cluster_name: ::String) -> void
15
+
16
+ def []: (:cluster_name) -> ::String
17
+ | (::Symbol) -> untyped
18
+
19
+ def []=: (:cluster_name, ::String) -> ::String
20
+ | (::Symbol, untyped) -> untyped
21
+
22
+ interface _ToProto
23
+ def to_proto: () -> ClusterReplicationConfig
24
+ end
25
+
26
+ # The type of `#initialize` parameter.
27
+ type init = ClusterReplicationConfig | _ToProto
28
+
29
+ # The type of `repeated` field.
30
+ type field_array = ::Protobuf::Field::FieldArray[ClusterReplicationConfig, ClusterReplicationConfig | _ToProto]
31
+
32
+ # The type of `map` field.
33
+ type field_hash[KEY] = ::Protobuf::Field::FieldHash[KEY, ClusterReplicationConfig, ClusterReplicationConfig | _ToProto]
34
+
35
+ type array = ::Array[ClusterReplicationConfig | _ToProto]
36
+
37
+ type hash[KEY] = ::Hash[KEY, ClusterReplicationConfig | _ToProto]
38
+ end
39
+
40
+ class NamespaceReplicationConfig < ::Protobuf::Message
41
+ # Encode the message to a binary string
42
+ #
43
+ def self.encode: (NamespaceReplicationConfig) -> String
44
+
45
+ attr_accessor active_cluster_name(): ::String
46
+
47
+ def active_cluster_name!: () -> ::String?
48
+
49
+ attr_accessor clusters(): ::Temporalio::Api::Replication::V1::ClusterReplicationConfig::field_array
50
+
51
+ def clusters=: (::Temporalio::Api::Replication::V1::ClusterReplicationConfig::array) -> ::Temporalio::Api::Replication::V1::ClusterReplicationConfig::array
52
+ | ...
53
+
54
+ def clusters!: () -> ::Temporalio::Api::Replication::V1::ClusterReplicationConfig::field_array?
55
+
56
+ attr_accessor state(): ::Temporalio::Api::Enums::V1::ReplicationState
57
+
58
+ def state=: (::Temporalio::Api::Enums::V1::ReplicationState::values) -> ::Temporalio::Api::Enums::V1::ReplicationState::values
59
+ | ...
60
+
61
+ def state!: () -> ::Temporalio::Api::Enums::V1::ReplicationState?
62
+
63
+ def initialize: (?active_cluster_name: ::String, ?clusters: ::Temporalio::Api::Replication::V1::ClusterReplicationConfig::array, ?state: ::Temporalio::Api::Enums::V1::ReplicationState::init) -> void
64
+
65
+ def []: (:active_cluster_name) -> ::String
66
+ | (:clusters) -> ::Temporalio::Api::Replication::V1::ClusterReplicationConfig::field_array
67
+ | (:state) -> ::Temporalio::Api::Enums::V1::ReplicationState
68
+ | (::Symbol) -> untyped
69
+
70
+ def []=: (:active_cluster_name, ::String) -> ::String
71
+ | (:clusters, ::Temporalio::Api::Replication::V1::ClusterReplicationConfig::field_array) -> ::Temporalio::Api::Replication::V1::ClusterReplicationConfig::field_array
72
+ | (:clusters, ::Temporalio::Api::Replication::V1::ClusterReplicationConfig::array) -> ::Temporalio::Api::Replication::V1::ClusterReplicationConfig::array
73
+ | (:state, ::Temporalio::Api::Enums::V1::ReplicationState) -> ::Temporalio::Api::Enums::V1::ReplicationState
74
+ | (:state, ::Temporalio::Api::Enums::V1::ReplicationState::values) -> ::Temporalio::Api::Enums::V1::ReplicationState::values
75
+ | (::Symbol, untyped) -> untyped
76
+
77
+ interface _ToProto
78
+ def to_proto: () -> NamespaceReplicationConfig
79
+ end
80
+
81
+ # The type of `#initialize` parameter.
82
+ type init = NamespaceReplicationConfig | _ToProto
83
+
84
+ # The type of `repeated` field.
85
+ type field_array = ::Protobuf::Field::FieldArray[NamespaceReplicationConfig, NamespaceReplicationConfig | _ToProto]
86
+
87
+ # The type of `map` field.
88
+ type field_hash[KEY] = ::Protobuf::Field::FieldHash[KEY, NamespaceReplicationConfig, NamespaceReplicationConfig | _ToProto]
89
+
90
+ type array = ::Array[NamespaceReplicationConfig | _ToProto]
91
+
92
+ type hash[KEY] = ::Hash[KEY, NamespaceReplicationConfig | _ToProto]
93
+ end
94
+
95
+ # Represents a historical replication status of a Namespace
96
+ #
97
+ class FailoverStatus < ::Protobuf::Message
98
+ # Encode the message to a binary string
99
+ #
100
+ def self.encode: (FailoverStatus) -> String
101
+
102
+ # Timestamp when the Cluster switched to the following failover_version
103
+ #
104
+ attr_accessor failover_time(): ::Google::Protobuf::Timestamp?
105
+
106
+ # Timestamp when the Cluster switched to the following failover_version
107
+ #
108
+ def failover_time=: [M < ::Google::Protobuf::Timestamp::_ToProto] (M?) -> M?
109
+ | ...
110
+
111
+ def failover_time!: () -> ::Google::Protobuf::Timestamp?
112
+
113
+ attr_accessor failover_version(): ::Integer
114
+
115
+ def failover_version!: () -> ::Integer?
116
+
117
+ def initialize: (?failover_time: ::Google::Protobuf::Timestamp::init?, ?failover_version: ::Integer) -> void
118
+
119
+ def []: (:failover_time) -> ::Google::Protobuf::Timestamp?
120
+ | (:failover_version) -> ::Integer
121
+ | (::Symbol) -> untyped
122
+
123
+ def []=: (:failover_time, ::Google::Protobuf::Timestamp?) -> ::Google::Protobuf::Timestamp?
124
+ | [M < ::Google::Protobuf::Timestamp::_ToProto] (:failover_time, M?) -> M?
125
+ | (:failover_version, ::Integer) -> ::Integer
126
+ | (::Symbol, untyped) -> untyped
127
+
128
+ interface _ToProto
129
+ def to_proto: () -> FailoverStatus
130
+ end
131
+
132
+ # The type of `#initialize` parameter.
133
+ type init = FailoverStatus | _ToProto
134
+
135
+ # The type of `repeated` field.
136
+ type field_array = ::Protobuf::Field::FieldArray[FailoverStatus, FailoverStatus | _ToProto]
137
+
138
+ # The type of `map` field.
139
+ type field_hash[KEY] = ::Protobuf::Field::FieldHash[KEY, FailoverStatus, FailoverStatus | _ToProto]
140
+
141
+ type array = ::Array[FailoverStatus | _ToProto]
142
+
143
+ type hash[KEY] = ::Hash[KEY, FailoverStatus | _ToProto]
144
+ end
145
+ end
146
+ end
147
+ end
148
+ end