aws-sdk-opsworks 1.51.0 → 1.53.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.
data/sig/client.rbs ADDED
@@ -0,0 +1,1122 @@
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 OpsWorks
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/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
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> instance
73
+ | (?Hash[Symbol, untyped]) -> instance
74
+
75
+
76
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#assign_instance-instance_method
77
+ def assign_instance: (
78
+ instance_id: ::String,
79
+ layer_ids: Array[::String]
80
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
81
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
82
+
83
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#assign_volume-instance_method
84
+ def assign_volume: (
85
+ volume_id: ::String,
86
+ ?instance_id: ::String
87
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
88
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
89
+
90
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#associate_elastic_ip-instance_method
91
+ def associate_elastic_ip: (
92
+ elastic_ip: ::String,
93
+ ?instance_id: ::String
94
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
95
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
96
+
97
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#attach_elastic_load_balancer-instance_method
98
+ def attach_elastic_load_balancer: (
99
+ elastic_load_balancer_name: ::String,
100
+ layer_id: ::String
101
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
102
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
103
+
104
+ interface _CloneStackResponseSuccess
105
+ include ::Seahorse::Client::_ResponseSuccess[Types::CloneStackResult]
106
+ def stack_id: () -> ::String
107
+ end
108
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#clone_stack-instance_method
109
+ def clone_stack: (
110
+ source_stack_id: ::String,
111
+ ?name: ::String,
112
+ ?region: ::String,
113
+ ?vpc_id: ::String,
114
+ ?attributes: Hash[("Color"), ::String],
115
+ service_role_arn: ::String,
116
+ ?default_instance_profile_arn: ::String,
117
+ ?default_os: ::String,
118
+ ?hostname_theme: ::String,
119
+ ?default_availability_zone: ::String,
120
+ ?default_subnet_id: ::String,
121
+ ?custom_json: ::String,
122
+ ?configuration_manager: {
123
+ name: ::String?,
124
+ version: ::String?
125
+ },
126
+ ?chef_configuration: {
127
+ manage_berkshelf: bool?,
128
+ berkshelf_version: ::String?
129
+ },
130
+ ?use_custom_cookbooks: bool,
131
+ ?use_opsworks_security_groups: bool,
132
+ ?custom_cookbooks_source: {
133
+ type: ("git" | "svn" | "archive" | "s3")?,
134
+ url: ::String?,
135
+ username: ::String?,
136
+ password: ::String?,
137
+ ssh_key: ::String?,
138
+ revision: ::String?
139
+ },
140
+ ?default_ssh_key_name: ::String,
141
+ ?clone_permissions: bool,
142
+ ?clone_app_ids: Array[::String],
143
+ ?default_root_device_type: ("ebs" | "instance-store"),
144
+ ?agent_version: ::String
145
+ ) -> _CloneStackResponseSuccess
146
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CloneStackResponseSuccess
147
+
148
+ interface _CreateAppResponseSuccess
149
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAppResult]
150
+ def app_id: () -> ::String
151
+ end
152
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#create_app-instance_method
153
+ def create_app: (
154
+ stack_id: ::String,
155
+ ?shortname: ::String,
156
+ name: ::String,
157
+ ?description: ::String,
158
+ ?data_sources: Array[
159
+ {
160
+ type: ::String?,
161
+ arn: ::String?,
162
+ database_name: ::String?
163
+ },
164
+ ],
165
+ type: ("aws-flow-ruby" | "java" | "rails" | "php" | "nodejs" | "static" | "other"),
166
+ ?app_source: {
167
+ type: ("git" | "svn" | "archive" | "s3")?,
168
+ url: ::String?,
169
+ username: ::String?,
170
+ password: ::String?,
171
+ ssh_key: ::String?,
172
+ revision: ::String?
173
+ },
174
+ ?domains: Array[::String],
175
+ ?enable_ssl: bool,
176
+ ?ssl_configuration: {
177
+ certificate: ::String,
178
+ private_key: ::String,
179
+ chain: ::String?
180
+ },
181
+ ?attributes: Hash[("DocumentRoot" | "RailsEnv" | "AutoBundleOnDeploy" | "AwsFlowRubySettings"), ::String],
182
+ ?environment: Array[
183
+ {
184
+ key: ::String,
185
+ value: ::String,
186
+ secure: bool?
187
+ },
188
+ ]
189
+ ) -> _CreateAppResponseSuccess
190
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAppResponseSuccess
191
+
192
+ interface _CreateDeploymentResponseSuccess
193
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDeploymentResult]
194
+ def deployment_id: () -> ::String
195
+ end
196
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#create_deployment-instance_method
197
+ def create_deployment: (
198
+ stack_id: ::String,
199
+ ?app_id: ::String,
200
+ ?instance_ids: Array[::String],
201
+ ?layer_ids: Array[::String],
202
+ command: {
203
+ name: ("install_dependencies" | "update_dependencies" | "update_custom_cookbooks" | "execute_recipes" | "configure" | "setup" | "deploy" | "rollback" | "start" | "stop" | "restart" | "undeploy"),
204
+ args: Hash[::String, Array[::String]]?
205
+ },
206
+ ?comment: ::String,
207
+ ?custom_json: ::String
208
+ ) -> _CreateDeploymentResponseSuccess
209
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDeploymentResponseSuccess
210
+
211
+ interface _CreateInstanceResponseSuccess
212
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateInstanceResult]
213
+ def instance_id: () -> ::String
214
+ end
215
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#create_instance-instance_method
216
+ def create_instance: (
217
+ stack_id: ::String,
218
+ layer_ids: Array[::String],
219
+ instance_type: ::String,
220
+ ?auto_scaling_type: ("load" | "timer"),
221
+ ?hostname: ::String,
222
+ ?os: ::String,
223
+ ?ami_id: ::String,
224
+ ?ssh_key_name: ::String,
225
+ ?availability_zone: ::String,
226
+ ?virtualization_type: ::String,
227
+ ?subnet_id: ::String,
228
+ ?architecture: ("x86_64" | "i386"),
229
+ ?root_device_type: ("ebs" | "instance-store"),
230
+ ?block_device_mappings: Array[
231
+ {
232
+ device_name: ::String?,
233
+ no_device: ::String?,
234
+ virtual_name: ::String?,
235
+ ebs: {
236
+ snapshot_id: ::String?,
237
+ iops: ::Integer?,
238
+ volume_size: ::Integer?,
239
+ volume_type: ("gp2" | "io1" | "standard")?,
240
+ delete_on_termination: bool?
241
+ }?
242
+ },
243
+ ],
244
+ ?install_updates_on_boot: bool,
245
+ ?ebs_optimized: bool,
246
+ ?agent_version: ::String,
247
+ ?tenancy: ::String
248
+ ) -> _CreateInstanceResponseSuccess
249
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInstanceResponseSuccess
250
+
251
+ interface _CreateLayerResponseSuccess
252
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLayerResult]
253
+ def layer_id: () -> ::String
254
+ end
255
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#create_layer-instance_method
256
+ def create_layer: (
257
+ stack_id: ::String,
258
+ type: ("aws-flow-ruby" | "ecs-cluster" | "java-app" | "lb" | "web" | "php-app" | "rails-app" | "nodejs-app" | "memcached" | "db-master" | "monitoring-master" | "custom"),
259
+ name: ::String,
260
+ shortname: ::String,
261
+ ?attributes: Hash[("EcsClusterArn" | "EnableHaproxyStats" | "HaproxyStatsUrl" | "HaproxyStatsUser" | "HaproxyStatsPassword" | "HaproxyHealthCheckUrl" | "HaproxyHealthCheckMethod" | "MysqlRootPassword" | "MysqlRootPasswordUbiquitous" | "GangliaUrl" | "GangliaUser" | "GangliaPassword" | "MemcachedMemory" | "NodejsVersion" | "RubyVersion" | "RubygemsVersion" | "ManageBundler" | "BundlerVersion" | "RailsStack" | "PassengerVersion" | "Jvm" | "JvmVersion" | "JvmOptions" | "JavaAppServer" | "JavaAppServerVersion"), ::String],
262
+ ?cloud_watch_logs_configuration: {
263
+ enabled: bool?,
264
+ log_streams: Array[
265
+ {
266
+ log_group_name: ::String?,
267
+ datetime_format: ::String?,
268
+ time_zone: ("LOCAL" | "UTC")?,
269
+ file: ::String?,
270
+ file_fingerprint_lines: ::String?,
271
+ multi_line_start_pattern: ::String?,
272
+ initial_position: ("start_of_file" | "end_of_file")?,
273
+ encoding: ("ascii" | "big5" | "big5hkscs" | "cp037" | "cp424" | "cp437" | "cp500" | "cp720" | "cp737" | "cp775" | "cp850" | "cp852" | "cp855" | "cp856" | "cp857" | "cp858" | "cp860" | "cp861" | "cp862" | "cp863" | "cp864" | "cp865" | "cp866" | "cp869" | "cp874" | "cp875" | "cp932" | "cp949" | "cp950" | "cp1006" | "cp1026" | "cp1140" | "cp1250" | "cp1251" | "cp1252" | "cp1253" | "cp1254" | "cp1255" | "cp1256" | "cp1257" | "cp1258" | "euc_jp" | "euc_jis_2004" | "euc_jisx0213" | "euc_kr" | "gb2312" | "gbk" | "gb18030" | "hz" | "iso2022_jp" | "iso2022_jp_1" | "iso2022_jp_2" | "iso2022_jp_2004" | "iso2022_jp_3" | "iso2022_jp_ext" | "iso2022_kr" | "latin_1" | "iso8859_2" | "iso8859_3" | "iso8859_4" | "iso8859_5" | "iso8859_6" | "iso8859_7" | "iso8859_8" | "iso8859_9" | "iso8859_10" | "iso8859_13" | "iso8859_14" | "iso8859_15" | "iso8859_16" | "johab" | "koi8_r" | "koi8_u" | "mac_cyrillic" | "mac_greek" | "mac_iceland" | "mac_latin2" | "mac_roman" | "mac_turkish" | "ptcp154" | "shift_jis" | "shift_jis_2004" | "shift_jisx0213" | "utf_32" | "utf_32_be" | "utf_32_le" | "utf_16" | "utf_16_be" | "utf_16_le" | "utf_7" | "utf_8" | "utf_8_sig")?,
274
+ buffer_duration: ::Integer?,
275
+ batch_count: ::Integer?,
276
+ batch_size: ::Integer?
277
+ },
278
+ ]?
279
+ },
280
+ ?custom_instance_profile_arn: ::String,
281
+ ?custom_json: ::String,
282
+ ?custom_security_group_ids: Array[::String],
283
+ ?packages: Array[::String],
284
+ ?volume_configurations: Array[
285
+ {
286
+ mount_point: ::String,
287
+ raid_level: ::Integer?,
288
+ number_of_disks: ::Integer,
289
+ size: ::Integer,
290
+ volume_type: ::String?,
291
+ iops: ::Integer?,
292
+ encrypted: bool?
293
+ },
294
+ ],
295
+ ?enable_auto_healing: bool,
296
+ ?auto_assign_elastic_ips: bool,
297
+ ?auto_assign_public_ips: bool,
298
+ ?custom_recipes: {
299
+ setup: Array[::String]?,
300
+ configure: Array[::String]?,
301
+ deploy: Array[::String]?,
302
+ undeploy: Array[::String]?,
303
+ shutdown: Array[::String]?
304
+ },
305
+ ?install_updates_on_boot: bool,
306
+ ?use_ebs_optimized_instances: bool,
307
+ ?lifecycle_event_configuration: {
308
+ shutdown: {
309
+ execution_timeout: ::Integer?,
310
+ delay_until_elb_connections_drained: bool?
311
+ }?
312
+ }
313
+ ) -> _CreateLayerResponseSuccess
314
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLayerResponseSuccess
315
+
316
+ interface _CreateStackResponseSuccess
317
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStackResult]
318
+ def stack_id: () -> ::String
319
+ end
320
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#create_stack-instance_method
321
+ def create_stack: (
322
+ name: ::String,
323
+ region: ::String,
324
+ ?vpc_id: ::String,
325
+ ?attributes: Hash[("Color"), ::String],
326
+ service_role_arn: ::String,
327
+ default_instance_profile_arn: ::String,
328
+ ?default_os: ::String,
329
+ ?hostname_theme: ::String,
330
+ ?default_availability_zone: ::String,
331
+ ?default_subnet_id: ::String,
332
+ ?custom_json: ::String,
333
+ ?configuration_manager: {
334
+ name: ::String?,
335
+ version: ::String?
336
+ },
337
+ ?chef_configuration: {
338
+ manage_berkshelf: bool?,
339
+ berkshelf_version: ::String?
340
+ },
341
+ ?use_custom_cookbooks: bool,
342
+ ?use_opsworks_security_groups: bool,
343
+ ?custom_cookbooks_source: {
344
+ type: ("git" | "svn" | "archive" | "s3")?,
345
+ url: ::String?,
346
+ username: ::String?,
347
+ password: ::String?,
348
+ ssh_key: ::String?,
349
+ revision: ::String?
350
+ },
351
+ ?default_ssh_key_name: ::String,
352
+ ?default_root_device_type: ("ebs" | "instance-store"),
353
+ ?agent_version: ::String
354
+ ) -> _CreateStackResponseSuccess
355
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStackResponseSuccess
356
+
357
+ interface _CreateUserProfileResponseSuccess
358
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateUserProfileResult]
359
+ def iam_user_arn: () -> ::String
360
+ end
361
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#create_user_profile-instance_method
362
+ def create_user_profile: (
363
+ iam_user_arn: ::String,
364
+ ?ssh_username: ::String,
365
+ ?ssh_public_key: ::String,
366
+ ?allow_self_management: bool
367
+ ) -> _CreateUserProfileResponseSuccess
368
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserProfileResponseSuccess
369
+
370
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#delete_app-instance_method
371
+ def delete_app: (
372
+ app_id: ::String
373
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
374
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
375
+
376
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#delete_instance-instance_method
377
+ def delete_instance: (
378
+ instance_id: ::String,
379
+ ?delete_elastic_ip: bool,
380
+ ?delete_volumes: bool
381
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
382
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
383
+
384
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#delete_layer-instance_method
385
+ def delete_layer: (
386
+ layer_id: ::String
387
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
388
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
389
+
390
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#delete_stack-instance_method
391
+ def delete_stack: (
392
+ stack_id: ::String
393
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
394
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
395
+
396
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#delete_user_profile-instance_method
397
+ def delete_user_profile: (
398
+ iam_user_arn: ::String
399
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
400
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
401
+
402
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#deregister_ecs_cluster-instance_method
403
+ def deregister_ecs_cluster: (
404
+ ecs_cluster_arn: ::String
405
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
406
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
407
+
408
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#deregister_elastic_ip-instance_method
409
+ def deregister_elastic_ip: (
410
+ elastic_ip: ::String
411
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
412
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
413
+
414
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#deregister_instance-instance_method
415
+ def deregister_instance: (
416
+ instance_id: ::String
417
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
418
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
419
+
420
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#deregister_rds_db_instance-instance_method
421
+ def deregister_rds_db_instance: (
422
+ rds_db_instance_arn: ::String
423
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
424
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
425
+
426
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#deregister_volume-instance_method
427
+ def deregister_volume: (
428
+ volume_id: ::String
429
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
430
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
431
+
432
+ interface _DescribeAgentVersionsResponseSuccess
433
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAgentVersionsResult]
434
+ def agent_versions: () -> ::Array[Types::AgentVersion]
435
+ end
436
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_agent_versions-instance_method
437
+ def describe_agent_versions: (
438
+ ?stack_id: ::String,
439
+ ?configuration_manager: {
440
+ name: ::String?,
441
+ version: ::String?
442
+ }
443
+ ) -> _DescribeAgentVersionsResponseSuccess
444
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAgentVersionsResponseSuccess
445
+
446
+ interface _DescribeAppsResponseSuccess
447
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAppsResult]
448
+ def apps: () -> ::Array[Types::App]
449
+ end
450
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_apps-instance_method
451
+ def describe_apps: (
452
+ ?stack_id: ::String,
453
+ ?app_ids: Array[::String]
454
+ ) -> _DescribeAppsResponseSuccess
455
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAppsResponseSuccess
456
+
457
+ interface _DescribeCommandsResponseSuccess
458
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCommandsResult]
459
+ def commands: () -> ::Array[Types::Command]
460
+ end
461
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_commands-instance_method
462
+ def describe_commands: (
463
+ ?deployment_id: ::String,
464
+ ?instance_id: ::String,
465
+ ?command_ids: Array[::String]
466
+ ) -> _DescribeCommandsResponseSuccess
467
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCommandsResponseSuccess
468
+
469
+ interface _DescribeDeploymentsResponseSuccess
470
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDeploymentsResult]
471
+ def deployments: () -> ::Array[Types::Deployment]
472
+ end
473
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_deployments-instance_method
474
+ def describe_deployments: (
475
+ ?stack_id: ::String,
476
+ ?app_id: ::String,
477
+ ?deployment_ids: Array[::String]
478
+ ) -> _DescribeDeploymentsResponseSuccess
479
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDeploymentsResponseSuccess
480
+
481
+ interface _DescribeEcsClustersResponseSuccess
482
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEcsClustersResult]
483
+ def ecs_clusters: () -> ::Array[Types::EcsCluster]
484
+ def next_token: () -> ::String
485
+ end
486
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_ecs_clusters-instance_method
487
+ def describe_ecs_clusters: (
488
+ ?ecs_cluster_arns: Array[::String],
489
+ ?stack_id: ::String,
490
+ ?next_token: ::String,
491
+ ?max_results: ::Integer
492
+ ) -> _DescribeEcsClustersResponseSuccess
493
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEcsClustersResponseSuccess
494
+
495
+ interface _DescribeElasticIpsResponseSuccess
496
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeElasticIpsResult]
497
+ def elastic_ips: () -> ::Array[Types::ElasticIp]
498
+ end
499
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_elastic_ips-instance_method
500
+ def describe_elastic_ips: (
501
+ ?instance_id: ::String,
502
+ ?stack_id: ::String,
503
+ ?ips: Array[::String]
504
+ ) -> _DescribeElasticIpsResponseSuccess
505
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeElasticIpsResponseSuccess
506
+
507
+ interface _DescribeElasticLoadBalancersResponseSuccess
508
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeElasticLoadBalancersResult]
509
+ def elastic_load_balancers: () -> ::Array[Types::ElasticLoadBalancer]
510
+ end
511
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_elastic_load_balancers-instance_method
512
+ def describe_elastic_load_balancers: (
513
+ ?stack_id: ::String,
514
+ ?layer_ids: Array[::String]
515
+ ) -> _DescribeElasticLoadBalancersResponseSuccess
516
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeElasticLoadBalancersResponseSuccess
517
+
518
+ interface _DescribeInstancesResponseSuccess
519
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInstancesResult]
520
+ def instances: () -> ::Array[Types::Instance]
521
+ end
522
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_instances-instance_method
523
+ def describe_instances: (
524
+ ?stack_id: ::String,
525
+ ?layer_id: ::String,
526
+ ?instance_ids: Array[::String]
527
+ ) -> _DescribeInstancesResponseSuccess
528
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstancesResponseSuccess
529
+
530
+ interface _DescribeLayersResponseSuccess
531
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLayersResult]
532
+ def layers: () -> ::Array[Types::Layer]
533
+ end
534
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_layers-instance_method
535
+ def describe_layers: (
536
+ ?stack_id: ::String,
537
+ ?layer_ids: Array[::String]
538
+ ) -> _DescribeLayersResponseSuccess
539
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLayersResponseSuccess
540
+
541
+ interface _DescribeLoadBasedAutoScalingResponseSuccess
542
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLoadBasedAutoScalingResult]
543
+ def load_based_auto_scaling_configurations: () -> ::Array[Types::LoadBasedAutoScalingConfiguration]
544
+ end
545
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_load_based_auto_scaling-instance_method
546
+ def describe_load_based_auto_scaling: (
547
+ layer_ids: Array[::String]
548
+ ) -> _DescribeLoadBasedAutoScalingResponseSuccess
549
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLoadBasedAutoScalingResponseSuccess
550
+
551
+ interface _DescribeMyUserProfileResponseSuccess
552
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMyUserProfileResult]
553
+ def user_profile: () -> Types::SelfUserProfile
554
+ end
555
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_my_user_profile-instance_method
556
+ def describe_my_user_profile: () -> _DescribeMyUserProfileResponseSuccess
557
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMyUserProfileResponseSuccess
558
+
559
+ interface _DescribeOperatingSystemsResponseSuccess
560
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeOperatingSystemsResponse]
561
+ def operating_systems: () -> ::Array[Types::OperatingSystem]
562
+ end
563
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_operating_systems-instance_method
564
+ def describe_operating_systems: () -> _DescribeOperatingSystemsResponseSuccess
565
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeOperatingSystemsResponseSuccess
566
+
567
+ interface _DescribePermissionsResponseSuccess
568
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribePermissionsResult]
569
+ def permissions: () -> ::Array[Types::Permission]
570
+ end
571
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_permissions-instance_method
572
+ def describe_permissions: (
573
+ ?iam_user_arn: ::String,
574
+ ?stack_id: ::String
575
+ ) -> _DescribePermissionsResponseSuccess
576
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePermissionsResponseSuccess
577
+
578
+ interface _DescribeRaidArraysResponseSuccess
579
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRaidArraysResult]
580
+ def raid_arrays: () -> ::Array[Types::RaidArray]
581
+ end
582
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_raid_arrays-instance_method
583
+ def describe_raid_arrays: (
584
+ ?instance_id: ::String,
585
+ ?stack_id: ::String,
586
+ ?raid_array_ids: Array[::String]
587
+ ) -> _DescribeRaidArraysResponseSuccess
588
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRaidArraysResponseSuccess
589
+
590
+ interface _DescribeRdsDbInstancesResponseSuccess
591
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRdsDbInstancesResult]
592
+ def rds_db_instances: () -> ::Array[Types::RdsDbInstance]
593
+ end
594
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_rds_db_instances-instance_method
595
+ def describe_rds_db_instances: (
596
+ stack_id: ::String,
597
+ ?rds_db_instance_arns: Array[::String]
598
+ ) -> _DescribeRdsDbInstancesResponseSuccess
599
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRdsDbInstancesResponseSuccess
600
+
601
+ interface _DescribeServiceErrorsResponseSuccess
602
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeServiceErrorsResult]
603
+ def service_errors: () -> ::Array[Types::ServiceError]
604
+ end
605
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_service_errors-instance_method
606
+ def describe_service_errors: (
607
+ ?stack_id: ::String,
608
+ ?instance_id: ::String,
609
+ ?service_error_ids: Array[::String]
610
+ ) -> _DescribeServiceErrorsResponseSuccess
611
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeServiceErrorsResponseSuccess
612
+
613
+ interface _DescribeStackProvisioningParametersResponseSuccess
614
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackProvisioningParametersResult]
615
+ def agent_installer_url: () -> ::String
616
+ def parameters: () -> ::Hash[::String, ::String]
617
+ end
618
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_stack_provisioning_parameters-instance_method
619
+ def describe_stack_provisioning_parameters: (
620
+ stack_id: ::String
621
+ ) -> _DescribeStackProvisioningParametersResponseSuccess
622
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackProvisioningParametersResponseSuccess
623
+
624
+ interface _DescribeStackSummaryResponseSuccess
625
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackSummaryResult]
626
+ def stack_summary: () -> Types::StackSummary
627
+ end
628
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_stack_summary-instance_method
629
+ def describe_stack_summary: (
630
+ stack_id: ::String
631
+ ) -> _DescribeStackSummaryResponseSuccess
632
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackSummaryResponseSuccess
633
+
634
+ interface _DescribeStacksResponseSuccess
635
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStacksResult]
636
+ def stacks: () -> ::Array[Types::Stack]
637
+ end
638
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_stacks-instance_method
639
+ def describe_stacks: (
640
+ ?stack_ids: Array[::String]
641
+ ) -> _DescribeStacksResponseSuccess
642
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStacksResponseSuccess
643
+
644
+ interface _DescribeTimeBasedAutoScalingResponseSuccess
645
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTimeBasedAutoScalingResult]
646
+ def time_based_auto_scaling_configurations: () -> ::Array[Types::TimeBasedAutoScalingConfiguration]
647
+ end
648
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_time_based_auto_scaling-instance_method
649
+ def describe_time_based_auto_scaling: (
650
+ instance_ids: Array[::String]
651
+ ) -> _DescribeTimeBasedAutoScalingResponseSuccess
652
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTimeBasedAutoScalingResponseSuccess
653
+
654
+ interface _DescribeUserProfilesResponseSuccess
655
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeUserProfilesResult]
656
+ def user_profiles: () -> ::Array[Types::UserProfile]
657
+ end
658
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_user_profiles-instance_method
659
+ def describe_user_profiles: (
660
+ ?iam_user_arns: Array[::String]
661
+ ) -> _DescribeUserProfilesResponseSuccess
662
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeUserProfilesResponseSuccess
663
+
664
+ interface _DescribeVolumesResponseSuccess
665
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeVolumesResult]
666
+ def volumes: () -> ::Array[Types::Volume]
667
+ end
668
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#describe_volumes-instance_method
669
+ def describe_volumes: (
670
+ ?instance_id: ::String,
671
+ ?stack_id: ::String,
672
+ ?raid_array_id: ::String,
673
+ ?volume_ids: Array[::String]
674
+ ) -> _DescribeVolumesResponseSuccess
675
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVolumesResponseSuccess
676
+
677
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#detach_elastic_load_balancer-instance_method
678
+ def detach_elastic_load_balancer: (
679
+ elastic_load_balancer_name: ::String,
680
+ layer_id: ::String
681
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
682
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
683
+
684
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#disassociate_elastic_ip-instance_method
685
+ def disassociate_elastic_ip: (
686
+ elastic_ip: ::String
687
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
688
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
689
+
690
+ interface _GetHostnameSuggestionResponseSuccess
691
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetHostnameSuggestionResult]
692
+ def layer_id: () -> ::String
693
+ def hostname: () -> ::String
694
+ end
695
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#get_hostname_suggestion-instance_method
696
+ def get_hostname_suggestion: (
697
+ layer_id: ::String
698
+ ) -> _GetHostnameSuggestionResponseSuccess
699
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetHostnameSuggestionResponseSuccess
700
+
701
+ interface _GrantAccessResponseSuccess
702
+ include ::Seahorse::Client::_ResponseSuccess[Types::GrantAccessResult]
703
+ def temporary_credential: () -> Types::TemporaryCredential
704
+ end
705
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#grant_access-instance_method
706
+ def grant_access: (
707
+ instance_id: ::String,
708
+ ?valid_for_in_minutes: ::Integer
709
+ ) -> _GrantAccessResponseSuccess
710
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GrantAccessResponseSuccess
711
+
712
+ interface _ListTagsResponseSuccess
713
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsResult]
714
+ def tags: () -> ::Hash[::String, ::String]
715
+ def next_token: () -> ::String
716
+ end
717
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#list_tags-instance_method
718
+ def list_tags: (
719
+ resource_arn: ::String,
720
+ ?max_results: ::Integer,
721
+ ?next_token: ::String
722
+ ) -> _ListTagsResponseSuccess
723
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsResponseSuccess
724
+
725
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#reboot_instance-instance_method
726
+ def reboot_instance: (
727
+ instance_id: ::String
728
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
729
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
730
+
731
+ interface _RegisterEcsClusterResponseSuccess
732
+ include ::Seahorse::Client::_ResponseSuccess[Types::RegisterEcsClusterResult]
733
+ def ecs_cluster_arn: () -> ::String
734
+ end
735
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#register_ecs_cluster-instance_method
736
+ def register_ecs_cluster: (
737
+ ecs_cluster_arn: ::String,
738
+ stack_id: ::String
739
+ ) -> _RegisterEcsClusterResponseSuccess
740
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterEcsClusterResponseSuccess
741
+
742
+ interface _RegisterElasticIpResponseSuccess
743
+ include ::Seahorse::Client::_ResponseSuccess[Types::RegisterElasticIpResult]
744
+ def elastic_ip: () -> ::String
745
+ end
746
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#register_elastic_ip-instance_method
747
+ def register_elastic_ip: (
748
+ elastic_ip: ::String,
749
+ stack_id: ::String
750
+ ) -> _RegisterElasticIpResponseSuccess
751
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterElasticIpResponseSuccess
752
+
753
+ interface _RegisterInstanceResponseSuccess
754
+ include ::Seahorse::Client::_ResponseSuccess[Types::RegisterInstanceResult]
755
+ def instance_id: () -> ::String
756
+ end
757
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#register_instance-instance_method
758
+ def register_instance: (
759
+ stack_id: ::String,
760
+ ?hostname: ::String,
761
+ ?public_ip: ::String,
762
+ ?private_ip: ::String,
763
+ ?rsa_public_key: ::String,
764
+ ?rsa_public_key_fingerprint: ::String,
765
+ ?instance_identity: {
766
+ document: ::String?,
767
+ signature: ::String?
768
+ }
769
+ ) -> _RegisterInstanceResponseSuccess
770
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterInstanceResponseSuccess
771
+
772
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#register_rds_db_instance-instance_method
773
+ def register_rds_db_instance: (
774
+ stack_id: ::String,
775
+ rds_db_instance_arn: ::String,
776
+ db_user: ::String,
777
+ db_password: ::String
778
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
779
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
780
+
781
+ interface _RegisterVolumeResponseSuccess
782
+ include ::Seahorse::Client::_ResponseSuccess[Types::RegisterVolumeResult]
783
+ def volume_id: () -> ::String
784
+ end
785
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#register_volume-instance_method
786
+ def register_volume: (
787
+ ?ec2_volume_id: ::String,
788
+ stack_id: ::String
789
+ ) -> _RegisterVolumeResponseSuccess
790
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterVolumeResponseSuccess
791
+
792
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#set_load_based_auto_scaling-instance_method
793
+ def set_load_based_auto_scaling: (
794
+ layer_id: ::String,
795
+ ?enable: bool,
796
+ ?up_scaling: {
797
+ instance_count: ::Integer?,
798
+ thresholds_wait_time: ::Integer?,
799
+ ignore_metrics_time: ::Integer?,
800
+ cpu_threshold: ::Float?,
801
+ memory_threshold: ::Float?,
802
+ load_threshold: ::Float?,
803
+ alarms: Array[::String]?
804
+ },
805
+ ?down_scaling: {
806
+ instance_count: ::Integer?,
807
+ thresholds_wait_time: ::Integer?,
808
+ ignore_metrics_time: ::Integer?,
809
+ cpu_threshold: ::Float?,
810
+ memory_threshold: ::Float?,
811
+ load_threshold: ::Float?,
812
+ alarms: Array[::String]?
813
+ }
814
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
815
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
816
+
817
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#set_permission-instance_method
818
+ def set_permission: (
819
+ stack_id: ::String,
820
+ iam_user_arn: ::String,
821
+ ?allow_ssh: bool,
822
+ ?allow_sudo: bool,
823
+ ?level: ::String
824
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
825
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
826
+
827
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#set_time_based_auto_scaling-instance_method
828
+ def set_time_based_auto_scaling: (
829
+ instance_id: ::String,
830
+ ?auto_scaling_schedule: {
831
+ monday: Hash[::String, ::String]?,
832
+ tuesday: Hash[::String, ::String]?,
833
+ wednesday: Hash[::String, ::String]?,
834
+ thursday: Hash[::String, ::String]?,
835
+ friday: Hash[::String, ::String]?,
836
+ saturday: Hash[::String, ::String]?,
837
+ sunday: Hash[::String, ::String]?
838
+ }
839
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
840
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
841
+
842
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#start_instance-instance_method
843
+ def start_instance: (
844
+ instance_id: ::String
845
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
846
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
847
+
848
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#start_stack-instance_method
849
+ def start_stack: (
850
+ stack_id: ::String
851
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
852
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
853
+
854
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#stop_instance-instance_method
855
+ def stop_instance: (
856
+ instance_id: ::String,
857
+ ?force: bool
858
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
859
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
860
+
861
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#stop_stack-instance_method
862
+ def stop_stack: (
863
+ stack_id: ::String
864
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
865
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
866
+
867
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#tag_resource-instance_method
868
+ def tag_resource: (
869
+ resource_arn: ::String,
870
+ tags: Hash[::String, ::String]
871
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
872
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
873
+
874
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#unassign_instance-instance_method
875
+ def unassign_instance: (
876
+ instance_id: ::String
877
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
878
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
879
+
880
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#unassign_volume-instance_method
881
+ def unassign_volume: (
882
+ volume_id: ::String
883
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
884
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
885
+
886
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#untag_resource-instance_method
887
+ def untag_resource: (
888
+ resource_arn: ::String,
889
+ tag_keys: Array[::String]
890
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
891
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
892
+
893
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#update_app-instance_method
894
+ def update_app: (
895
+ app_id: ::String,
896
+ ?name: ::String,
897
+ ?description: ::String,
898
+ ?data_sources: Array[
899
+ {
900
+ type: ::String?,
901
+ arn: ::String?,
902
+ database_name: ::String?
903
+ },
904
+ ],
905
+ ?type: ("aws-flow-ruby" | "java" | "rails" | "php" | "nodejs" | "static" | "other"),
906
+ ?app_source: {
907
+ type: ("git" | "svn" | "archive" | "s3")?,
908
+ url: ::String?,
909
+ username: ::String?,
910
+ password: ::String?,
911
+ ssh_key: ::String?,
912
+ revision: ::String?
913
+ },
914
+ ?domains: Array[::String],
915
+ ?enable_ssl: bool,
916
+ ?ssl_configuration: {
917
+ certificate: ::String,
918
+ private_key: ::String,
919
+ chain: ::String?
920
+ },
921
+ ?attributes: Hash[("DocumentRoot" | "RailsEnv" | "AutoBundleOnDeploy" | "AwsFlowRubySettings"), ::String],
922
+ ?environment: Array[
923
+ {
924
+ key: ::String,
925
+ value: ::String,
926
+ secure: bool?
927
+ },
928
+ ]
929
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
930
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
931
+
932
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#update_elastic_ip-instance_method
933
+ def update_elastic_ip: (
934
+ elastic_ip: ::String,
935
+ ?name: ::String
936
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
937
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
938
+
939
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#update_instance-instance_method
940
+ def update_instance: (
941
+ instance_id: ::String,
942
+ ?layer_ids: Array[::String],
943
+ ?instance_type: ::String,
944
+ ?auto_scaling_type: ("load" | "timer"),
945
+ ?hostname: ::String,
946
+ ?os: ::String,
947
+ ?ami_id: ::String,
948
+ ?ssh_key_name: ::String,
949
+ ?architecture: ("x86_64" | "i386"),
950
+ ?install_updates_on_boot: bool,
951
+ ?ebs_optimized: bool,
952
+ ?agent_version: ::String
953
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
954
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
955
+
956
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#update_layer-instance_method
957
+ def update_layer: (
958
+ layer_id: ::String,
959
+ ?name: ::String,
960
+ ?shortname: ::String,
961
+ ?attributes: Hash[("EcsClusterArn" | "EnableHaproxyStats" | "HaproxyStatsUrl" | "HaproxyStatsUser" | "HaproxyStatsPassword" | "HaproxyHealthCheckUrl" | "HaproxyHealthCheckMethod" | "MysqlRootPassword" | "MysqlRootPasswordUbiquitous" | "GangliaUrl" | "GangliaUser" | "GangliaPassword" | "MemcachedMemory" | "NodejsVersion" | "RubyVersion" | "RubygemsVersion" | "ManageBundler" | "BundlerVersion" | "RailsStack" | "PassengerVersion" | "Jvm" | "JvmVersion" | "JvmOptions" | "JavaAppServer" | "JavaAppServerVersion"), ::String],
962
+ ?cloud_watch_logs_configuration: {
963
+ enabled: bool?,
964
+ log_streams: Array[
965
+ {
966
+ log_group_name: ::String?,
967
+ datetime_format: ::String?,
968
+ time_zone: ("LOCAL" | "UTC")?,
969
+ file: ::String?,
970
+ file_fingerprint_lines: ::String?,
971
+ multi_line_start_pattern: ::String?,
972
+ initial_position: ("start_of_file" | "end_of_file")?,
973
+ encoding: ("ascii" | "big5" | "big5hkscs" | "cp037" | "cp424" | "cp437" | "cp500" | "cp720" | "cp737" | "cp775" | "cp850" | "cp852" | "cp855" | "cp856" | "cp857" | "cp858" | "cp860" | "cp861" | "cp862" | "cp863" | "cp864" | "cp865" | "cp866" | "cp869" | "cp874" | "cp875" | "cp932" | "cp949" | "cp950" | "cp1006" | "cp1026" | "cp1140" | "cp1250" | "cp1251" | "cp1252" | "cp1253" | "cp1254" | "cp1255" | "cp1256" | "cp1257" | "cp1258" | "euc_jp" | "euc_jis_2004" | "euc_jisx0213" | "euc_kr" | "gb2312" | "gbk" | "gb18030" | "hz" | "iso2022_jp" | "iso2022_jp_1" | "iso2022_jp_2" | "iso2022_jp_2004" | "iso2022_jp_3" | "iso2022_jp_ext" | "iso2022_kr" | "latin_1" | "iso8859_2" | "iso8859_3" | "iso8859_4" | "iso8859_5" | "iso8859_6" | "iso8859_7" | "iso8859_8" | "iso8859_9" | "iso8859_10" | "iso8859_13" | "iso8859_14" | "iso8859_15" | "iso8859_16" | "johab" | "koi8_r" | "koi8_u" | "mac_cyrillic" | "mac_greek" | "mac_iceland" | "mac_latin2" | "mac_roman" | "mac_turkish" | "ptcp154" | "shift_jis" | "shift_jis_2004" | "shift_jisx0213" | "utf_32" | "utf_32_be" | "utf_32_le" | "utf_16" | "utf_16_be" | "utf_16_le" | "utf_7" | "utf_8" | "utf_8_sig")?,
974
+ buffer_duration: ::Integer?,
975
+ batch_count: ::Integer?,
976
+ batch_size: ::Integer?
977
+ },
978
+ ]?
979
+ },
980
+ ?custom_instance_profile_arn: ::String,
981
+ ?custom_json: ::String,
982
+ ?custom_security_group_ids: Array[::String],
983
+ ?packages: Array[::String],
984
+ ?volume_configurations: Array[
985
+ {
986
+ mount_point: ::String,
987
+ raid_level: ::Integer?,
988
+ number_of_disks: ::Integer,
989
+ size: ::Integer,
990
+ volume_type: ::String?,
991
+ iops: ::Integer?,
992
+ encrypted: bool?
993
+ },
994
+ ],
995
+ ?enable_auto_healing: bool,
996
+ ?auto_assign_elastic_ips: bool,
997
+ ?auto_assign_public_ips: bool,
998
+ ?custom_recipes: {
999
+ setup: Array[::String]?,
1000
+ configure: Array[::String]?,
1001
+ deploy: Array[::String]?,
1002
+ undeploy: Array[::String]?,
1003
+ shutdown: Array[::String]?
1004
+ },
1005
+ ?install_updates_on_boot: bool,
1006
+ ?use_ebs_optimized_instances: bool,
1007
+ ?lifecycle_event_configuration: {
1008
+ shutdown: {
1009
+ execution_timeout: ::Integer?,
1010
+ delay_until_elb_connections_drained: bool?
1011
+ }?
1012
+ }
1013
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1014
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1015
+
1016
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#update_my_user_profile-instance_method
1017
+ def update_my_user_profile: (
1018
+ ?ssh_public_key: ::String
1019
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1020
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1021
+
1022
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#update_rds_db_instance-instance_method
1023
+ def update_rds_db_instance: (
1024
+ rds_db_instance_arn: ::String,
1025
+ ?db_user: ::String,
1026
+ ?db_password: ::String
1027
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1028
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1029
+
1030
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#update_stack-instance_method
1031
+ def update_stack: (
1032
+ stack_id: ::String,
1033
+ ?name: ::String,
1034
+ ?attributes: Hash[("Color"), ::String],
1035
+ ?service_role_arn: ::String,
1036
+ ?default_instance_profile_arn: ::String,
1037
+ ?default_os: ::String,
1038
+ ?hostname_theme: ::String,
1039
+ ?default_availability_zone: ::String,
1040
+ ?default_subnet_id: ::String,
1041
+ ?custom_json: ::String,
1042
+ ?configuration_manager: {
1043
+ name: ::String?,
1044
+ version: ::String?
1045
+ },
1046
+ ?chef_configuration: {
1047
+ manage_berkshelf: bool?,
1048
+ berkshelf_version: ::String?
1049
+ },
1050
+ ?use_custom_cookbooks: bool,
1051
+ ?custom_cookbooks_source: {
1052
+ type: ("git" | "svn" | "archive" | "s3")?,
1053
+ url: ::String?,
1054
+ username: ::String?,
1055
+ password: ::String?,
1056
+ ssh_key: ::String?,
1057
+ revision: ::String?
1058
+ },
1059
+ ?default_ssh_key_name: ::String,
1060
+ ?default_root_device_type: ("ebs" | "instance-store"),
1061
+ ?use_opsworks_security_groups: bool,
1062
+ ?agent_version: ::String
1063
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1064
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1065
+
1066
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#update_user_profile-instance_method
1067
+ def update_user_profile: (
1068
+ iam_user_arn: ::String,
1069
+ ?ssh_username: ::String,
1070
+ ?ssh_public_key: ::String,
1071
+ ?allow_self_management: bool
1072
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1073
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1074
+
1075
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#update_volume-instance_method
1076
+ def update_volume: (
1077
+ volume_id: ::String,
1078
+ ?name: ::String,
1079
+ ?mount_point: ::String
1080
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1081
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1082
+
1083
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorks/Client.html#wait_until-instance_method
1084
+ def wait_until: (:app_exists waiter_name,
1085
+ ?stack_id: ::String,
1086
+ ?app_ids: Array[::String]
1087
+ ) -> Client::_DescribeAppsResponseSuccess
1088
+ | (:app_exists waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeAppsResponseSuccess
1089
+ | (:deployment_successful waiter_name,
1090
+ ?stack_id: ::String,
1091
+ ?app_id: ::String,
1092
+ ?deployment_ids: Array[::String]
1093
+ ) -> Client::_DescribeDeploymentsResponseSuccess
1094
+ | (:deployment_successful waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeDeploymentsResponseSuccess
1095
+ | (:instance_online waiter_name,
1096
+ ?stack_id: ::String,
1097
+ ?layer_id: ::String,
1098
+ ?instance_ids: Array[::String]
1099
+ ) -> Client::_DescribeInstancesResponseSuccess
1100
+ | (:instance_online waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeInstancesResponseSuccess
1101
+ | (:instance_registered waiter_name,
1102
+ ?stack_id: ::String,
1103
+ ?layer_id: ::String,
1104
+ ?instance_ids: Array[::String]
1105
+ ) -> Client::_DescribeInstancesResponseSuccess
1106
+ | (:instance_registered waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeInstancesResponseSuccess
1107
+ | (:instance_stopped waiter_name,
1108
+ ?stack_id: ::String,
1109
+ ?layer_id: ::String,
1110
+ ?instance_ids: Array[::String]
1111
+ ) -> Client::_DescribeInstancesResponseSuccess
1112
+ | (:instance_stopped waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeInstancesResponseSuccess
1113
+ | (:instance_terminated waiter_name,
1114
+ ?stack_id: ::String,
1115
+ ?layer_id: ::String,
1116
+ ?instance_ids: Array[::String]
1117
+ ) -> Client::_DescribeInstancesResponseSuccess
1118
+ | (:instance_terminated waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeInstancesResponseSuccess
1119
+ end
1120
+ end
1121
+ end
1122
+