aws-sdk-drs 1.27.0 → 1.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-drs/client.rb +1 -1
- data/lib/aws-sdk-drs/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-drs.rb +1 -1
- data/sig/client.rbs +871 -0
- data/sig/errors.rbs +60 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1175 -0
- data/sig/waiters.rbs +13 -0
- metadata +9 -4
data/sig/client.rbs
ADDED
@@ -0,0 +1,871 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Drs
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _AssociateSourceNetworkStackResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateSourceNetworkStackResponse]
|
77
|
+
def job: () -> Types::Job
|
78
|
+
end
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#associate_source_network_stack-instance_method
|
80
|
+
def associate_source_network_stack: (
|
81
|
+
cfn_stack_name: ::String,
|
82
|
+
source_network_id: ::String
|
83
|
+
) -> _AssociateSourceNetworkStackResponseSuccess
|
84
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateSourceNetworkStackResponseSuccess
|
85
|
+
|
86
|
+
interface _CreateExtendedSourceServerResponseSuccess
|
87
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateExtendedSourceServerResponse]
|
88
|
+
def source_server: () -> Types::SourceServer
|
89
|
+
end
|
90
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#create_extended_source_server-instance_method
|
91
|
+
def create_extended_source_server: (
|
92
|
+
source_server_arn: ::String,
|
93
|
+
?tags: Hash[::String, ::String]
|
94
|
+
) -> _CreateExtendedSourceServerResponseSuccess
|
95
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateExtendedSourceServerResponseSuccess
|
96
|
+
|
97
|
+
interface _CreateLaunchConfigurationTemplateResponseSuccess
|
98
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateLaunchConfigurationTemplateResponse]
|
99
|
+
def launch_configuration_template: () -> Types::LaunchConfigurationTemplate
|
100
|
+
end
|
101
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#create_launch_configuration_template-instance_method
|
102
|
+
def create_launch_configuration_template: (
|
103
|
+
?copy_private_ip: bool,
|
104
|
+
?copy_tags: bool,
|
105
|
+
?export_bucket_arn: ::String,
|
106
|
+
?launch_disposition: ("STOPPED" | "STARTED"),
|
107
|
+
?launch_into_source_instance: bool,
|
108
|
+
?licensing: {
|
109
|
+
os_byol: bool?
|
110
|
+
},
|
111
|
+
?post_launch_enabled: bool,
|
112
|
+
?tags: Hash[::String, ::String],
|
113
|
+
?target_instance_type_right_sizing_method: ("NONE" | "BASIC" | "IN_AWS")
|
114
|
+
) -> _CreateLaunchConfigurationTemplateResponseSuccess
|
115
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLaunchConfigurationTemplateResponseSuccess
|
116
|
+
|
117
|
+
interface _CreateReplicationConfigurationTemplateResponseSuccess
|
118
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ReplicationConfigurationTemplate]
|
119
|
+
def arn: () -> ::String
|
120
|
+
def associate_default_security_group: () -> bool
|
121
|
+
def auto_replicate_new_disks: () -> bool
|
122
|
+
def bandwidth_throttling: () -> ::Integer
|
123
|
+
def create_public_ip: () -> bool
|
124
|
+
def data_plane_routing: () -> ("PRIVATE_IP" | "PUBLIC_IP")
|
125
|
+
def default_large_staging_disk_type: () -> ("GP2" | "GP3" | "ST1" | "AUTO")
|
126
|
+
def ebs_encryption: () -> ("DEFAULT" | "CUSTOM" | "NONE")
|
127
|
+
def ebs_encryption_key_arn: () -> ::String
|
128
|
+
def pit_policy: () -> ::Array[Types::PITPolicyRule]
|
129
|
+
def replication_configuration_template_id: () -> ::String
|
130
|
+
def replication_server_instance_type: () -> ::String
|
131
|
+
def replication_servers_security_groups_i_ds: () -> ::Array[::String]
|
132
|
+
def staging_area_subnet_id: () -> ::String
|
133
|
+
def staging_area_tags: () -> ::Hash[::String, ::String]
|
134
|
+
def tags: () -> ::Hash[::String, ::String]
|
135
|
+
def use_dedicated_replication_server: () -> bool
|
136
|
+
end
|
137
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#create_replication_configuration_template-instance_method
|
138
|
+
def create_replication_configuration_template: (
|
139
|
+
associate_default_security_group: bool,
|
140
|
+
?auto_replicate_new_disks: bool,
|
141
|
+
bandwidth_throttling: ::Integer,
|
142
|
+
create_public_ip: bool,
|
143
|
+
data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP"),
|
144
|
+
default_large_staging_disk_type: ("GP2" | "GP3" | "ST1" | "AUTO"),
|
145
|
+
ebs_encryption: ("DEFAULT" | "CUSTOM" | "NONE"),
|
146
|
+
?ebs_encryption_key_arn: ::String,
|
147
|
+
pit_policy: Array[
|
148
|
+
{
|
149
|
+
enabled: bool?,
|
150
|
+
interval: ::Integer,
|
151
|
+
retention_duration: ::Integer,
|
152
|
+
rule_id: ::Integer?,
|
153
|
+
units: ("MINUTE" | "HOUR" | "DAY")
|
154
|
+
},
|
155
|
+
],
|
156
|
+
replication_server_instance_type: ::String,
|
157
|
+
replication_servers_security_groups_i_ds: Array[::String],
|
158
|
+
staging_area_subnet_id: ::String,
|
159
|
+
staging_area_tags: Hash[::String, ::String],
|
160
|
+
?tags: Hash[::String, ::String],
|
161
|
+
use_dedicated_replication_server: bool
|
162
|
+
) -> _CreateReplicationConfigurationTemplateResponseSuccess
|
163
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReplicationConfigurationTemplateResponseSuccess
|
164
|
+
|
165
|
+
interface _CreateSourceNetworkResponseSuccess
|
166
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSourceNetworkResponse]
|
167
|
+
def source_network_id: () -> ::String
|
168
|
+
end
|
169
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#create_source_network-instance_method
|
170
|
+
def create_source_network: (
|
171
|
+
origin_account_id: ::String,
|
172
|
+
origin_region: ::String,
|
173
|
+
?tags: Hash[::String, ::String],
|
174
|
+
vpc_id: ::String
|
175
|
+
) -> _CreateSourceNetworkResponseSuccess
|
176
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSourceNetworkResponseSuccess
|
177
|
+
|
178
|
+
interface _DeleteJobResponseSuccess
|
179
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteJobResponse]
|
180
|
+
end
|
181
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#delete_job-instance_method
|
182
|
+
def delete_job: (
|
183
|
+
job_id: ::String
|
184
|
+
) -> _DeleteJobResponseSuccess
|
185
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteJobResponseSuccess
|
186
|
+
|
187
|
+
interface _DeleteLaunchActionResponseSuccess
|
188
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLaunchActionResponse]
|
189
|
+
end
|
190
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#delete_launch_action-instance_method
|
191
|
+
def delete_launch_action: (
|
192
|
+
action_id: ::String,
|
193
|
+
resource_id: ::String
|
194
|
+
) -> _DeleteLaunchActionResponseSuccess
|
195
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLaunchActionResponseSuccess
|
196
|
+
|
197
|
+
interface _DeleteLaunchConfigurationTemplateResponseSuccess
|
198
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLaunchConfigurationTemplateResponse]
|
199
|
+
end
|
200
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#delete_launch_configuration_template-instance_method
|
201
|
+
def delete_launch_configuration_template: (
|
202
|
+
launch_configuration_template_id: ::String
|
203
|
+
) -> _DeleteLaunchConfigurationTemplateResponseSuccess
|
204
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLaunchConfigurationTemplateResponseSuccess
|
205
|
+
|
206
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#delete_recovery_instance-instance_method
|
207
|
+
def delete_recovery_instance: (
|
208
|
+
recovery_instance_id: ::String
|
209
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
210
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
211
|
+
|
212
|
+
interface _DeleteReplicationConfigurationTemplateResponseSuccess
|
213
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReplicationConfigurationTemplateResponse]
|
214
|
+
end
|
215
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#delete_replication_configuration_template-instance_method
|
216
|
+
def delete_replication_configuration_template: (
|
217
|
+
replication_configuration_template_id: ::String
|
218
|
+
) -> _DeleteReplicationConfigurationTemplateResponseSuccess
|
219
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReplicationConfigurationTemplateResponseSuccess
|
220
|
+
|
221
|
+
interface _DeleteSourceNetworkResponseSuccess
|
222
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSourceNetworkResponse]
|
223
|
+
end
|
224
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#delete_source_network-instance_method
|
225
|
+
def delete_source_network: (
|
226
|
+
source_network_id: ::String
|
227
|
+
) -> _DeleteSourceNetworkResponseSuccess
|
228
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSourceNetworkResponseSuccess
|
229
|
+
|
230
|
+
interface _DeleteSourceServerResponseSuccess
|
231
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSourceServerResponse]
|
232
|
+
end
|
233
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#delete_source_server-instance_method
|
234
|
+
def delete_source_server: (
|
235
|
+
source_server_id: ::String
|
236
|
+
) -> _DeleteSourceServerResponseSuccess
|
237
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSourceServerResponseSuccess
|
238
|
+
|
239
|
+
interface _DescribeJobLogItemsResponseSuccess
|
240
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeJobLogItemsResponse]
|
241
|
+
def items: () -> ::Array[Types::JobLog]
|
242
|
+
def next_token: () -> ::String
|
243
|
+
end
|
244
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#describe_job_log_items-instance_method
|
245
|
+
def describe_job_log_items: (
|
246
|
+
job_id: ::String,
|
247
|
+
?max_results: ::Integer,
|
248
|
+
?next_token: ::String
|
249
|
+
) -> _DescribeJobLogItemsResponseSuccess
|
250
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeJobLogItemsResponseSuccess
|
251
|
+
|
252
|
+
interface _DescribeJobsResponseSuccess
|
253
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeJobsResponse]
|
254
|
+
def items: () -> ::Array[Types::Job]
|
255
|
+
def next_token: () -> ::String
|
256
|
+
end
|
257
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#describe_jobs-instance_method
|
258
|
+
def describe_jobs: (
|
259
|
+
?filters: {
|
260
|
+
from_date: ::String?,
|
261
|
+
job_i_ds: Array[::String]?,
|
262
|
+
to_date: ::String?
|
263
|
+
},
|
264
|
+
?max_results: ::Integer,
|
265
|
+
?next_token: ::String
|
266
|
+
) -> _DescribeJobsResponseSuccess
|
267
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeJobsResponseSuccess
|
268
|
+
|
269
|
+
interface _DescribeLaunchConfigurationTemplatesResponseSuccess
|
270
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLaunchConfigurationTemplatesResponse]
|
271
|
+
def items: () -> ::Array[Types::LaunchConfigurationTemplate]
|
272
|
+
def next_token: () -> ::String
|
273
|
+
end
|
274
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#describe_launch_configuration_templates-instance_method
|
275
|
+
def describe_launch_configuration_templates: (
|
276
|
+
?launch_configuration_template_i_ds: Array[::String],
|
277
|
+
?max_results: ::Integer,
|
278
|
+
?next_token: ::String
|
279
|
+
) -> _DescribeLaunchConfigurationTemplatesResponseSuccess
|
280
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLaunchConfigurationTemplatesResponseSuccess
|
281
|
+
|
282
|
+
interface _DescribeRecoveryInstancesResponseSuccess
|
283
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRecoveryInstancesResponse]
|
284
|
+
def items: () -> ::Array[Types::RecoveryInstance]
|
285
|
+
def next_token: () -> ::String
|
286
|
+
end
|
287
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#describe_recovery_instances-instance_method
|
288
|
+
def describe_recovery_instances: (
|
289
|
+
?filters: {
|
290
|
+
recovery_instance_i_ds: Array[::String]?,
|
291
|
+
source_server_i_ds: Array[::String]?
|
292
|
+
},
|
293
|
+
?max_results: ::Integer,
|
294
|
+
?next_token: ::String
|
295
|
+
) -> _DescribeRecoveryInstancesResponseSuccess
|
296
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRecoveryInstancesResponseSuccess
|
297
|
+
|
298
|
+
interface _DescribeRecoverySnapshotsResponseSuccess
|
299
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRecoverySnapshotsResponse]
|
300
|
+
def items: () -> ::Array[Types::RecoverySnapshot]
|
301
|
+
def next_token: () -> ::String
|
302
|
+
end
|
303
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#describe_recovery_snapshots-instance_method
|
304
|
+
def describe_recovery_snapshots: (
|
305
|
+
?filters: {
|
306
|
+
from_date_time: ::String?,
|
307
|
+
to_date_time: ::String?
|
308
|
+
},
|
309
|
+
?max_results: ::Integer,
|
310
|
+
?next_token: ::String,
|
311
|
+
?order: ("ASC" | "DESC"),
|
312
|
+
source_server_id: ::String
|
313
|
+
) -> _DescribeRecoverySnapshotsResponseSuccess
|
314
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRecoverySnapshotsResponseSuccess
|
315
|
+
|
316
|
+
interface _DescribeReplicationConfigurationTemplatesResponseSuccess
|
317
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReplicationConfigurationTemplatesResponse]
|
318
|
+
def items: () -> ::Array[Types::ReplicationConfigurationTemplate]
|
319
|
+
def next_token: () -> ::String
|
320
|
+
end
|
321
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#describe_replication_configuration_templates-instance_method
|
322
|
+
def describe_replication_configuration_templates: (
|
323
|
+
?max_results: ::Integer,
|
324
|
+
?next_token: ::String,
|
325
|
+
?replication_configuration_template_i_ds: Array[::String]
|
326
|
+
) -> _DescribeReplicationConfigurationTemplatesResponseSuccess
|
327
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReplicationConfigurationTemplatesResponseSuccess
|
328
|
+
|
329
|
+
interface _DescribeSourceNetworksResponseSuccess
|
330
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSourceNetworksResponse]
|
331
|
+
def items: () -> ::Array[Types::SourceNetwork]
|
332
|
+
def next_token: () -> ::String
|
333
|
+
end
|
334
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#describe_source_networks-instance_method
|
335
|
+
def describe_source_networks: (
|
336
|
+
?filters: {
|
337
|
+
origin_account_id: ::String?,
|
338
|
+
origin_region: ::String?,
|
339
|
+
source_network_i_ds: Array[::String]?
|
340
|
+
},
|
341
|
+
?max_results: ::Integer,
|
342
|
+
?next_token: ::String
|
343
|
+
) -> _DescribeSourceNetworksResponseSuccess
|
344
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSourceNetworksResponseSuccess
|
345
|
+
|
346
|
+
interface _DescribeSourceServersResponseSuccess
|
347
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSourceServersResponse]
|
348
|
+
def items: () -> ::Array[Types::SourceServer]
|
349
|
+
def next_token: () -> ::String
|
350
|
+
end
|
351
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#describe_source_servers-instance_method
|
352
|
+
def describe_source_servers: (
|
353
|
+
?filters: {
|
354
|
+
hardware_id: ::String?,
|
355
|
+
source_server_i_ds: Array[::String]?,
|
356
|
+
staging_account_i_ds: Array[::String]?
|
357
|
+
},
|
358
|
+
?max_results: ::Integer,
|
359
|
+
?next_token: ::String
|
360
|
+
) -> _DescribeSourceServersResponseSuccess
|
361
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSourceServersResponseSuccess
|
362
|
+
|
363
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#disconnect_recovery_instance-instance_method
|
364
|
+
def disconnect_recovery_instance: (
|
365
|
+
recovery_instance_id: ::String
|
366
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
367
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
368
|
+
|
369
|
+
interface _DisconnectSourceServerResponseSuccess
|
370
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SourceServer]
|
371
|
+
def agent_version: () -> ::String
|
372
|
+
def arn: () -> ::String
|
373
|
+
def data_replication_info: () -> Types::DataReplicationInfo
|
374
|
+
def last_launch_result: () -> ("NOT_STARTED" | "PENDING" | "SUCCEEDED" | "FAILED")
|
375
|
+
def life_cycle: () -> Types::LifeCycle
|
376
|
+
def recovery_instance_id: () -> ::String
|
377
|
+
def replication_direction: () -> ("FAILOVER" | "FAILBACK")
|
378
|
+
def reversed_direction_source_server_arn: () -> ::String
|
379
|
+
def source_cloud_properties: () -> Types::SourceCloudProperties
|
380
|
+
def source_network_id: () -> ::String
|
381
|
+
def source_properties: () -> Types::SourceProperties
|
382
|
+
def source_server_id: () -> ::String
|
383
|
+
def staging_area: () -> Types::StagingArea
|
384
|
+
def tags: () -> ::Hash[::String, ::String]
|
385
|
+
end
|
386
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#disconnect_source_server-instance_method
|
387
|
+
def disconnect_source_server: (
|
388
|
+
source_server_id: ::String
|
389
|
+
) -> _DisconnectSourceServerResponseSuccess
|
390
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisconnectSourceServerResponseSuccess
|
391
|
+
|
392
|
+
interface _ExportSourceNetworkCfnTemplateResponseSuccess
|
393
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ExportSourceNetworkCfnTemplateResponse]
|
394
|
+
def s3_destination_url: () -> ::String
|
395
|
+
end
|
396
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#export_source_network_cfn_template-instance_method
|
397
|
+
def export_source_network_cfn_template: (
|
398
|
+
source_network_id: ::String
|
399
|
+
) -> _ExportSourceNetworkCfnTemplateResponseSuccess
|
400
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportSourceNetworkCfnTemplateResponseSuccess
|
401
|
+
|
402
|
+
interface _GetFailbackReplicationConfigurationResponseSuccess
|
403
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetFailbackReplicationConfigurationResponse]
|
404
|
+
def bandwidth_throttling: () -> ::Integer
|
405
|
+
def name: () -> ::String
|
406
|
+
def recovery_instance_id: () -> ::String
|
407
|
+
def use_private_ip: () -> bool
|
408
|
+
end
|
409
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#get_failback_replication_configuration-instance_method
|
410
|
+
def get_failback_replication_configuration: (
|
411
|
+
recovery_instance_id: ::String
|
412
|
+
) -> _GetFailbackReplicationConfigurationResponseSuccess
|
413
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFailbackReplicationConfigurationResponseSuccess
|
414
|
+
|
415
|
+
interface _GetLaunchConfigurationResponseSuccess
|
416
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::LaunchConfiguration]
|
417
|
+
def copy_private_ip: () -> bool
|
418
|
+
def copy_tags: () -> bool
|
419
|
+
def ec2_launch_template_id: () -> ::String
|
420
|
+
def launch_disposition: () -> ("STOPPED" | "STARTED")
|
421
|
+
def launch_into_instance_properties: () -> Types::LaunchIntoInstanceProperties
|
422
|
+
def licensing: () -> Types::Licensing
|
423
|
+
def name: () -> ::String
|
424
|
+
def post_launch_enabled: () -> bool
|
425
|
+
def source_server_id: () -> ::String
|
426
|
+
def target_instance_type_right_sizing_method: () -> ("NONE" | "BASIC" | "IN_AWS")
|
427
|
+
end
|
428
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#get_launch_configuration-instance_method
|
429
|
+
def get_launch_configuration: (
|
430
|
+
source_server_id: ::String
|
431
|
+
) -> _GetLaunchConfigurationResponseSuccess
|
432
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLaunchConfigurationResponseSuccess
|
433
|
+
|
434
|
+
interface _GetReplicationConfigurationResponseSuccess
|
435
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ReplicationConfiguration]
|
436
|
+
def associate_default_security_group: () -> bool
|
437
|
+
def auto_replicate_new_disks: () -> bool
|
438
|
+
def bandwidth_throttling: () -> ::Integer
|
439
|
+
def create_public_ip: () -> bool
|
440
|
+
def data_plane_routing: () -> ("PRIVATE_IP" | "PUBLIC_IP")
|
441
|
+
def default_large_staging_disk_type: () -> ("GP2" | "GP3" | "ST1" | "AUTO")
|
442
|
+
def ebs_encryption: () -> ("DEFAULT" | "CUSTOM" | "NONE")
|
443
|
+
def ebs_encryption_key_arn: () -> ::String
|
444
|
+
def name: () -> ::String
|
445
|
+
def pit_policy: () -> ::Array[Types::PITPolicyRule]
|
446
|
+
def replicated_disks: () -> ::Array[Types::ReplicationConfigurationReplicatedDisk]
|
447
|
+
def replication_server_instance_type: () -> ::String
|
448
|
+
def replication_servers_security_groups_i_ds: () -> ::Array[::String]
|
449
|
+
def source_server_id: () -> ::String
|
450
|
+
def staging_area_subnet_id: () -> ::String
|
451
|
+
def staging_area_tags: () -> ::Hash[::String, ::String]
|
452
|
+
def use_dedicated_replication_server: () -> bool
|
453
|
+
end
|
454
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#get_replication_configuration-instance_method
|
455
|
+
def get_replication_configuration: (
|
456
|
+
source_server_id: ::String
|
457
|
+
) -> _GetReplicationConfigurationResponseSuccess
|
458
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReplicationConfigurationResponseSuccess
|
459
|
+
|
460
|
+
interface _InitializeServiceResponseSuccess
|
461
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::InitializeServiceResponse]
|
462
|
+
end
|
463
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#initialize_service-instance_method
|
464
|
+
def initialize_service: (
|
465
|
+
) -> _InitializeServiceResponseSuccess
|
466
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _InitializeServiceResponseSuccess
|
467
|
+
|
468
|
+
interface _ListExtensibleSourceServersResponseSuccess
|
469
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListExtensibleSourceServersResponse]
|
470
|
+
def items: () -> ::Array[Types::StagingSourceServer]
|
471
|
+
def next_token: () -> ::String
|
472
|
+
end
|
473
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#list_extensible_source_servers-instance_method
|
474
|
+
def list_extensible_source_servers: (
|
475
|
+
?max_results: ::Integer,
|
476
|
+
?next_token: ::String,
|
477
|
+
staging_account_id: ::String
|
478
|
+
) -> _ListExtensibleSourceServersResponseSuccess
|
479
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExtensibleSourceServersResponseSuccess
|
480
|
+
|
481
|
+
interface _ListLaunchActionsResponseSuccess
|
482
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListLaunchActionsResponse]
|
483
|
+
def items: () -> ::Array[Types::LaunchAction]
|
484
|
+
def next_token: () -> ::String
|
485
|
+
end
|
486
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#list_launch_actions-instance_method
|
487
|
+
def list_launch_actions: (
|
488
|
+
?filters: {
|
489
|
+
action_ids: Array[::String]?
|
490
|
+
},
|
491
|
+
?max_results: ::Integer,
|
492
|
+
?next_token: ::String,
|
493
|
+
resource_id: ::String
|
494
|
+
) -> _ListLaunchActionsResponseSuccess
|
495
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLaunchActionsResponseSuccess
|
496
|
+
|
497
|
+
interface _ListStagingAccountsResponseSuccess
|
498
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListStagingAccountsResponse]
|
499
|
+
def accounts: () -> ::Array[Types::Account]
|
500
|
+
def next_token: () -> ::String
|
501
|
+
end
|
502
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#list_staging_accounts-instance_method
|
503
|
+
def list_staging_accounts: (
|
504
|
+
?max_results: ::Integer,
|
505
|
+
?next_token: ::String
|
506
|
+
) -> _ListStagingAccountsResponseSuccess
|
507
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStagingAccountsResponseSuccess
|
508
|
+
|
509
|
+
interface _ListTagsForResourceResponseSuccess
|
510
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
511
|
+
def tags: () -> ::Hash[::String, ::String]
|
512
|
+
end
|
513
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#list_tags_for_resource-instance_method
|
514
|
+
def list_tags_for_resource: (
|
515
|
+
resource_arn: ::String
|
516
|
+
) -> _ListTagsForResourceResponseSuccess
|
517
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
518
|
+
|
519
|
+
interface _PutLaunchActionResponseSuccess
|
520
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutLaunchActionResponse]
|
521
|
+
def action_code: () -> ::String
|
522
|
+
def action_id: () -> ::String
|
523
|
+
def action_version: () -> ::String
|
524
|
+
def active: () -> bool
|
525
|
+
def category: () -> ("MONITORING" | "VALIDATION" | "CONFIGURATION" | "SECURITY" | "OTHER")
|
526
|
+
def description: () -> ::String
|
527
|
+
def name: () -> ::String
|
528
|
+
def optional: () -> bool
|
529
|
+
def order: () -> ::Integer
|
530
|
+
def parameters: () -> ::Hash[::String, Types::LaunchActionParameter]
|
531
|
+
def resource_id: () -> ::String
|
532
|
+
def type: () -> ("SSM_AUTOMATION" | "SSM_COMMAND")
|
533
|
+
end
|
534
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#put_launch_action-instance_method
|
535
|
+
def put_launch_action: (
|
536
|
+
action_code: ::String,
|
537
|
+
action_id: ::String,
|
538
|
+
action_version: ::String,
|
539
|
+
active: bool,
|
540
|
+
category: ("MONITORING" | "VALIDATION" | "CONFIGURATION" | "SECURITY" | "OTHER"),
|
541
|
+
description: ::String,
|
542
|
+
name: ::String,
|
543
|
+
optional: bool,
|
544
|
+
order: ::Integer,
|
545
|
+
?parameters: Hash[::String, {
|
546
|
+
type: ("SSM_STORE" | "DYNAMIC")?,
|
547
|
+
value: ::String?
|
548
|
+
}],
|
549
|
+
resource_id: ::String
|
550
|
+
) -> _PutLaunchActionResponseSuccess
|
551
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutLaunchActionResponseSuccess
|
552
|
+
|
553
|
+
interface _RetryDataReplicationResponseSuccess
|
554
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SourceServer]
|
555
|
+
def agent_version: () -> ::String
|
556
|
+
def arn: () -> ::String
|
557
|
+
def data_replication_info: () -> Types::DataReplicationInfo
|
558
|
+
def last_launch_result: () -> ("NOT_STARTED" | "PENDING" | "SUCCEEDED" | "FAILED")
|
559
|
+
def life_cycle: () -> Types::LifeCycle
|
560
|
+
def recovery_instance_id: () -> ::String
|
561
|
+
def replication_direction: () -> ("FAILOVER" | "FAILBACK")
|
562
|
+
def reversed_direction_source_server_arn: () -> ::String
|
563
|
+
def source_cloud_properties: () -> Types::SourceCloudProperties
|
564
|
+
def source_network_id: () -> ::String
|
565
|
+
def source_properties: () -> Types::SourceProperties
|
566
|
+
def source_server_id: () -> ::String
|
567
|
+
def staging_area: () -> Types::StagingArea
|
568
|
+
def tags: () -> ::Hash[::String, ::String]
|
569
|
+
end
|
570
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#retry_data_replication-instance_method
|
571
|
+
def retry_data_replication: (
|
572
|
+
source_server_id: ::String
|
573
|
+
) -> _RetryDataReplicationResponseSuccess
|
574
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RetryDataReplicationResponseSuccess
|
575
|
+
|
576
|
+
interface _ReverseReplicationResponseSuccess
|
577
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ReverseReplicationResponse]
|
578
|
+
def reversed_direction_source_server_arn: () -> ::String
|
579
|
+
end
|
580
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#reverse_replication-instance_method
|
581
|
+
def reverse_replication: (
|
582
|
+
recovery_instance_id: ::String
|
583
|
+
) -> _ReverseReplicationResponseSuccess
|
584
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ReverseReplicationResponseSuccess
|
585
|
+
|
586
|
+
interface _StartFailbackLaunchResponseSuccess
|
587
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartFailbackLaunchResponse]
|
588
|
+
def job: () -> Types::Job
|
589
|
+
end
|
590
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#start_failback_launch-instance_method
|
591
|
+
def start_failback_launch: (
|
592
|
+
recovery_instance_i_ds: Array[::String],
|
593
|
+
?tags: Hash[::String, ::String]
|
594
|
+
) -> _StartFailbackLaunchResponseSuccess
|
595
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartFailbackLaunchResponseSuccess
|
596
|
+
|
597
|
+
interface _StartRecoveryResponseSuccess
|
598
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartRecoveryResponse]
|
599
|
+
def job: () -> Types::Job
|
600
|
+
end
|
601
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#start_recovery-instance_method
|
602
|
+
def start_recovery: (
|
603
|
+
?is_drill: bool,
|
604
|
+
source_servers: Array[
|
605
|
+
{
|
606
|
+
recovery_snapshot_id: ::String?,
|
607
|
+
source_server_id: ::String
|
608
|
+
},
|
609
|
+
],
|
610
|
+
?tags: Hash[::String, ::String]
|
611
|
+
) -> _StartRecoveryResponseSuccess
|
612
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRecoveryResponseSuccess
|
613
|
+
|
614
|
+
interface _StartReplicationResponseSuccess
|
615
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartReplicationResponse]
|
616
|
+
def source_server: () -> Types::SourceServer
|
617
|
+
end
|
618
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#start_replication-instance_method
|
619
|
+
def start_replication: (
|
620
|
+
source_server_id: ::String
|
621
|
+
) -> _StartReplicationResponseSuccess
|
622
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReplicationResponseSuccess
|
623
|
+
|
624
|
+
interface _StartSourceNetworkRecoveryResponseSuccess
|
625
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartSourceNetworkRecoveryResponse]
|
626
|
+
def job: () -> Types::Job
|
627
|
+
end
|
628
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#start_source_network_recovery-instance_method
|
629
|
+
def start_source_network_recovery: (
|
630
|
+
?deploy_as_new: bool,
|
631
|
+
source_networks: Array[
|
632
|
+
{
|
633
|
+
cfn_stack_name: ::String?,
|
634
|
+
source_network_id: ::String
|
635
|
+
},
|
636
|
+
],
|
637
|
+
?tags: Hash[::String, ::String]
|
638
|
+
) -> _StartSourceNetworkRecoveryResponseSuccess
|
639
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartSourceNetworkRecoveryResponseSuccess
|
640
|
+
|
641
|
+
interface _StartSourceNetworkReplicationResponseSuccess
|
642
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartSourceNetworkReplicationResponse]
|
643
|
+
def source_network: () -> Types::SourceNetwork
|
644
|
+
end
|
645
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#start_source_network_replication-instance_method
|
646
|
+
def start_source_network_replication: (
|
647
|
+
source_network_id: ::String
|
648
|
+
) -> _StartSourceNetworkReplicationResponseSuccess
|
649
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartSourceNetworkReplicationResponseSuccess
|
650
|
+
|
651
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#stop_failback-instance_method
|
652
|
+
def stop_failback: (
|
653
|
+
recovery_instance_id: ::String
|
654
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
655
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
656
|
+
|
657
|
+
interface _StopReplicationResponseSuccess
|
658
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopReplicationResponse]
|
659
|
+
def source_server: () -> Types::SourceServer
|
660
|
+
end
|
661
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#stop_replication-instance_method
|
662
|
+
def stop_replication: (
|
663
|
+
source_server_id: ::String
|
664
|
+
) -> _StopReplicationResponseSuccess
|
665
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopReplicationResponseSuccess
|
666
|
+
|
667
|
+
interface _StopSourceNetworkReplicationResponseSuccess
|
668
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopSourceNetworkReplicationResponse]
|
669
|
+
def source_network: () -> Types::SourceNetwork
|
670
|
+
end
|
671
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#stop_source_network_replication-instance_method
|
672
|
+
def stop_source_network_replication: (
|
673
|
+
source_network_id: ::String
|
674
|
+
) -> _StopSourceNetworkReplicationResponseSuccess
|
675
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopSourceNetworkReplicationResponseSuccess
|
676
|
+
|
677
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#tag_resource-instance_method
|
678
|
+
def tag_resource: (
|
679
|
+
resource_arn: ::String,
|
680
|
+
tags: Hash[::String, ::String]
|
681
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
682
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
683
|
+
|
684
|
+
interface _TerminateRecoveryInstancesResponseSuccess
|
685
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TerminateRecoveryInstancesResponse]
|
686
|
+
def job: () -> Types::Job
|
687
|
+
end
|
688
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#terminate_recovery_instances-instance_method
|
689
|
+
def terminate_recovery_instances: (
|
690
|
+
recovery_instance_i_ds: Array[::String]
|
691
|
+
) -> _TerminateRecoveryInstancesResponseSuccess
|
692
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TerminateRecoveryInstancesResponseSuccess
|
693
|
+
|
694
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#untag_resource-instance_method
|
695
|
+
def untag_resource: (
|
696
|
+
resource_arn: ::String,
|
697
|
+
tag_keys: Array[::String]
|
698
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
699
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
700
|
+
|
701
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#update_failback_replication_configuration-instance_method
|
702
|
+
def update_failback_replication_configuration: (
|
703
|
+
?bandwidth_throttling: ::Integer,
|
704
|
+
?name: ::String,
|
705
|
+
recovery_instance_id: ::String,
|
706
|
+
?use_private_ip: bool
|
707
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
708
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
709
|
+
|
710
|
+
interface _UpdateLaunchConfigurationResponseSuccess
|
711
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::LaunchConfiguration]
|
712
|
+
def copy_private_ip: () -> bool
|
713
|
+
def copy_tags: () -> bool
|
714
|
+
def ec2_launch_template_id: () -> ::String
|
715
|
+
def launch_disposition: () -> ("STOPPED" | "STARTED")
|
716
|
+
def launch_into_instance_properties: () -> Types::LaunchIntoInstanceProperties
|
717
|
+
def licensing: () -> Types::Licensing
|
718
|
+
def name: () -> ::String
|
719
|
+
def post_launch_enabled: () -> bool
|
720
|
+
def source_server_id: () -> ::String
|
721
|
+
def target_instance_type_right_sizing_method: () -> ("NONE" | "BASIC" | "IN_AWS")
|
722
|
+
end
|
723
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#update_launch_configuration-instance_method
|
724
|
+
def update_launch_configuration: (
|
725
|
+
?copy_private_ip: bool,
|
726
|
+
?copy_tags: bool,
|
727
|
+
?launch_disposition: ("STOPPED" | "STARTED"),
|
728
|
+
?launch_into_instance_properties: {
|
729
|
+
launch_into_ec2_instance_id: ::String?
|
730
|
+
},
|
731
|
+
?licensing: {
|
732
|
+
os_byol: bool?
|
733
|
+
},
|
734
|
+
?name: ::String,
|
735
|
+
?post_launch_enabled: bool,
|
736
|
+
source_server_id: ::String,
|
737
|
+
?target_instance_type_right_sizing_method: ("NONE" | "BASIC" | "IN_AWS")
|
738
|
+
) -> _UpdateLaunchConfigurationResponseSuccess
|
739
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLaunchConfigurationResponseSuccess
|
740
|
+
|
741
|
+
interface _UpdateLaunchConfigurationTemplateResponseSuccess
|
742
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLaunchConfigurationTemplateResponse]
|
743
|
+
def launch_configuration_template: () -> Types::LaunchConfigurationTemplate
|
744
|
+
end
|
745
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#update_launch_configuration_template-instance_method
|
746
|
+
def update_launch_configuration_template: (
|
747
|
+
?copy_private_ip: bool,
|
748
|
+
?copy_tags: bool,
|
749
|
+
?export_bucket_arn: ::String,
|
750
|
+
launch_configuration_template_id: ::String,
|
751
|
+
?launch_disposition: ("STOPPED" | "STARTED"),
|
752
|
+
?launch_into_source_instance: bool,
|
753
|
+
?licensing: {
|
754
|
+
os_byol: bool?
|
755
|
+
},
|
756
|
+
?post_launch_enabled: bool,
|
757
|
+
?target_instance_type_right_sizing_method: ("NONE" | "BASIC" | "IN_AWS")
|
758
|
+
) -> _UpdateLaunchConfigurationTemplateResponseSuccess
|
759
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLaunchConfigurationTemplateResponseSuccess
|
760
|
+
|
761
|
+
interface _UpdateReplicationConfigurationResponseSuccess
|
762
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ReplicationConfiguration]
|
763
|
+
def associate_default_security_group: () -> bool
|
764
|
+
def auto_replicate_new_disks: () -> bool
|
765
|
+
def bandwidth_throttling: () -> ::Integer
|
766
|
+
def create_public_ip: () -> bool
|
767
|
+
def data_plane_routing: () -> ("PRIVATE_IP" | "PUBLIC_IP")
|
768
|
+
def default_large_staging_disk_type: () -> ("GP2" | "GP3" | "ST1" | "AUTO")
|
769
|
+
def ebs_encryption: () -> ("DEFAULT" | "CUSTOM" | "NONE")
|
770
|
+
def ebs_encryption_key_arn: () -> ::String
|
771
|
+
def name: () -> ::String
|
772
|
+
def pit_policy: () -> ::Array[Types::PITPolicyRule]
|
773
|
+
def replicated_disks: () -> ::Array[Types::ReplicationConfigurationReplicatedDisk]
|
774
|
+
def replication_server_instance_type: () -> ::String
|
775
|
+
def replication_servers_security_groups_i_ds: () -> ::Array[::String]
|
776
|
+
def source_server_id: () -> ::String
|
777
|
+
def staging_area_subnet_id: () -> ::String
|
778
|
+
def staging_area_tags: () -> ::Hash[::String, ::String]
|
779
|
+
def use_dedicated_replication_server: () -> bool
|
780
|
+
end
|
781
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#update_replication_configuration-instance_method
|
782
|
+
def update_replication_configuration: (
|
783
|
+
?associate_default_security_group: bool,
|
784
|
+
?auto_replicate_new_disks: bool,
|
785
|
+
?bandwidth_throttling: ::Integer,
|
786
|
+
?create_public_ip: bool,
|
787
|
+
?data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP"),
|
788
|
+
?default_large_staging_disk_type: ("GP2" | "GP3" | "ST1" | "AUTO"),
|
789
|
+
?ebs_encryption: ("DEFAULT" | "CUSTOM" | "NONE"),
|
790
|
+
?ebs_encryption_key_arn: ::String,
|
791
|
+
?name: ::String,
|
792
|
+
?pit_policy: Array[
|
793
|
+
{
|
794
|
+
enabled: bool?,
|
795
|
+
interval: ::Integer,
|
796
|
+
retention_duration: ::Integer,
|
797
|
+
rule_id: ::Integer?,
|
798
|
+
units: ("MINUTE" | "HOUR" | "DAY")
|
799
|
+
},
|
800
|
+
],
|
801
|
+
?replicated_disks: Array[
|
802
|
+
{
|
803
|
+
device_name: ::String?,
|
804
|
+
iops: ::Integer?,
|
805
|
+
is_boot_disk: bool?,
|
806
|
+
optimized_staging_disk_type: ("AUTO" | "GP2" | "GP3" | "IO1" | "SC1" | "ST1" | "STANDARD")?,
|
807
|
+
staging_disk_type: ("AUTO" | "GP2" | "GP3" | "IO1" | "SC1" | "ST1" | "STANDARD")?,
|
808
|
+
throughput: ::Integer?
|
809
|
+
},
|
810
|
+
],
|
811
|
+
?replication_server_instance_type: ::String,
|
812
|
+
?replication_servers_security_groups_i_ds: Array[::String],
|
813
|
+
source_server_id: ::String,
|
814
|
+
?staging_area_subnet_id: ::String,
|
815
|
+
?staging_area_tags: Hash[::String, ::String],
|
816
|
+
?use_dedicated_replication_server: bool
|
817
|
+
) -> _UpdateReplicationConfigurationResponseSuccess
|
818
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReplicationConfigurationResponseSuccess
|
819
|
+
|
820
|
+
interface _UpdateReplicationConfigurationTemplateResponseSuccess
|
821
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ReplicationConfigurationTemplate]
|
822
|
+
def arn: () -> ::String
|
823
|
+
def associate_default_security_group: () -> bool
|
824
|
+
def auto_replicate_new_disks: () -> bool
|
825
|
+
def bandwidth_throttling: () -> ::Integer
|
826
|
+
def create_public_ip: () -> bool
|
827
|
+
def data_plane_routing: () -> ("PRIVATE_IP" | "PUBLIC_IP")
|
828
|
+
def default_large_staging_disk_type: () -> ("GP2" | "GP3" | "ST1" | "AUTO")
|
829
|
+
def ebs_encryption: () -> ("DEFAULT" | "CUSTOM" | "NONE")
|
830
|
+
def ebs_encryption_key_arn: () -> ::String
|
831
|
+
def pit_policy: () -> ::Array[Types::PITPolicyRule]
|
832
|
+
def replication_configuration_template_id: () -> ::String
|
833
|
+
def replication_server_instance_type: () -> ::String
|
834
|
+
def replication_servers_security_groups_i_ds: () -> ::Array[::String]
|
835
|
+
def staging_area_subnet_id: () -> ::String
|
836
|
+
def staging_area_tags: () -> ::Hash[::String, ::String]
|
837
|
+
def tags: () -> ::Hash[::String, ::String]
|
838
|
+
def use_dedicated_replication_server: () -> bool
|
839
|
+
end
|
840
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#update_replication_configuration_template-instance_method
|
841
|
+
def update_replication_configuration_template: (
|
842
|
+
?arn: ::String,
|
843
|
+
?associate_default_security_group: bool,
|
844
|
+
?auto_replicate_new_disks: bool,
|
845
|
+
?bandwidth_throttling: ::Integer,
|
846
|
+
?create_public_ip: bool,
|
847
|
+
?data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP"),
|
848
|
+
?default_large_staging_disk_type: ("GP2" | "GP3" | "ST1" | "AUTO"),
|
849
|
+
?ebs_encryption: ("DEFAULT" | "CUSTOM" | "NONE"),
|
850
|
+
?ebs_encryption_key_arn: ::String,
|
851
|
+
?pit_policy: Array[
|
852
|
+
{
|
853
|
+
enabled: bool?,
|
854
|
+
interval: ::Integer,
|
855
|
+
retention_duration: ::Integer,
|
856
|
+
rule_id: ::Integer?,
|
857
|
+
units: ("MINUTE" | "HOUR" | "DAY")
|
858
|
+
},
|
859
|
+
],
|
860
|
+
replication_configuration_template_id: ::String,
|
861
|
+
?replication_server_instance_type: ::String,
|
862
|
+
?replication_servers_security_groups_i_ds: Array[::String],
|
863
|
+
?staging_area_subnet_id: ::String,
|
864
|
+
?staging_area_tags: Hash[::String, ::String],
|
865
|
+
?use_dedicated_replication_server: bool
|
866
|
+
) -> _UpdateReplicationConfigurationTemplateResponseSuccess
|
867
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReplicationConfigurationTemplateResponseSuccess
|
868
|
+
end
|
869
|
+
end
|
870
|
+
end
|
871
|
+
|