aws-sdk-opsworkscm 1.63.0 → 1.65.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-opsworkscm/client.rb +70 -46
- data/lib/aws-sdk-opsworkscm/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-opsworkscm.rb +1 -1
- data/sig/client.rbs +366 -0
- data/sig/errors.rbs +34 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +360 -0
- data/sig/waiters.rbs +24 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c272f644503c8cf101ef5f2eeb449c41a0b6a8761ae6f316e74cb187f8e2640
|
4
|
+
data.tar.gz: 9d43d42be0749968ace13cc0b0a9f57391f65034c8e08544f6a1fcf5c82e4592
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce3ce9328c94d3d68d6cfb39685c6ba01d2beb5ee5e6ce9959e1203dfeeeeb6dbe725b8176e30bf1d2225f44af0d85e9eb500c56906a6ef9e0b25083c14697f5
|
7
|
+
data.tar.gz: 270689efef7e1461dffc62d2c9e1f03b5256878f61546538f7b724735d28dcceee0b981c0636ccf627c95b6dcc29fef608c30f365924b0bb2d3642af38e6e086
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.65.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.64.0 (2024-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.63.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.65.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::OpsWorksCM
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::OpsWorksCM
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -347,50 +356,65 @@ module Aws::OpsWorksCM
|
|
347
356
|
# @option options [Aws::OpsWorksCM::EndpointProvider] :endpoint_provider
|
348
357
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::OpsWorksCM::EndpointParameters`
|
349
358
|
#
|
350
|
-
# @option options [
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
# @option options [Float] :
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
368
|
-
#
|
369
|
-
#
|
370
|
-
#
|
371
|
-
#
|
372
|
-
#
|
373
|
-
#
|
374
|
-
#
|
359
|
+
# @option options [Float] :http_continue_timeout (1)
|
360
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
361
|
+
# request body. This option has no effect unless the request has "Expect"
|
362
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
363
|
+
# behaviour. This value can safely be set per request on the session.
|
364
|
+
#
|
365
|
+
# @option options [Float] :http_idle_timeout (5)
|
366
|
+
# The number of seconds a connection is allowed to sit idle before it
|
367
|
+
# is considered stale. Stale connections are closed and removed from the
|
368
|
+
# pool before making a request.
|
369
|
+
#
|
370
|
+
# @option options [Float] :http_open_timeout (15)
|
371
|
+
# The default number of seconds to wait for response data.
|
372
|
+
# This value can safely be set per-request on the session.
|
373
|
+
#
|
374
|
+
# @option options [URI::HTTP,String] :http_proxy
|
375
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
376
|
+
#
|
377
|
+
# @option options [Float] :http_read_timeout (60)
|
378
|
+
# The default number of seconds to wait for response data.
|
379
|
+
# This value can safely be set per-request on the session.
|
380
|
+
#
|
381
|
+
# @option options [Boolean] :http_wire_trace (false)
|
382
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
383
|
+
#
|
384
|
+
# @option options [Proc] :on_chunk_received
|
385
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
386
|
+
# of the response body is received. It provides three arguments: the chunk,
|
387
|
+
# the number of bytes received, and the total number of
|
388
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
389
|
+
#
|
390
|
+
# @option options [Proc] :on_chunk_sent
|
391
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
392
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
393
|
+
# the number of bytes read from the body, and the total number of
|
394
|
+
# bytes in the body.
|
395
|
+
#
|
396
|
+
# @option options [Boolean] :raise_response_errors (true)
|
397
|
+
# When `true`, response errors are raised.
|
398
|
+
#
|
399
|
+
# @option options [String] :ssl_ca_bundle
|
400
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
401
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
402
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
403
|
+
#
|
404
|
+
# @option options [String] :ssl_ca_directory
|
405
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
406
|
+
# authority files for verifying peer certificates. If you do
|
407
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
408
|
+
# default will be used if available.
|
375
409
|
#
|
376
|
-
# @option options [
|
377
|
-
#
|
410
|
+
# @option options [String] :ssl_ca_store
|
411
|
+
# Sets the X509::Store to verify peer certificate.
|
378
412
|
#
|
379
|
-
# @option options [
|
380
|
-
#
|
381
|
-
# connection.
|
413
|
+
# @option options [Float] :ssl_timeout
|
414
|
+
# Sets the SSL timeout in seconds
|
382
415
|
#
|
383
|
-
# @option options [
|
384
|
-
#
|
385
|
-
# verifying peer certificates. If you do not pass
|
386
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
387
|
-
# will be used if available.
|
388
|
-
#
|
389
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
390
|
-
# directory that contains the unbundled SSL certificate
|
391
|
-
# authority files for verifying peer certificates. If you do
|
392
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
393
|
-
# system default will be used if available.
|
416
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
417
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
394
418
|
#
|
395
419
|
def initialize(*args)
|
396
420
|
super
|
@@ -1878,7 +1902,7 @@ module Aws::OpsWorksCM
|
|
1878
1902
|
params: params,
|
1879
1903
|
config: config)
|
1880
1904
|
context[:gem_name] = 'aws-sdk-opsworkscm'
|
1881
|
-
context[:gem_version] = '1.
|
1905
|
+
context[:gem_version] = '1.65.0'
|
1882
1906
|
Seahorse::Client::Request.new(handlers, context)
|
1883
1907
|
end
|
1884
1908
|
|
@@ -14,6 +14,7 @@ module Aws::OpsWorksCM
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::OpsWorksCM::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/lib/aws-sdk-opsworkscm.rb
CHANGED
data/sig/client.rbs
ADDED
@@ -0,0 +1,366 @@
|
|
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 OpsWorksCM
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/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
|
+
interface _AssociateNodeResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateNodeResponse]
|
78
|
+
def node_association_status_token: () -> ::String
|
79
|
+
end
|
80
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#associate_node-instance_method
|
81
|
+
def associate_node: (
|
82
|
+
server_name: ::String,
|
83
|
+
node_name: ::String,
|
84
|
+
engine_attributes: Array[
|
85
|
+
{
|
86
|
+
name: ::String?,
|
87
|
+
value: ::String?
|
88
|
+
},
|
89
|
+
]
|
90
|
+
) -> _AssociateNodeResponseSuccess
|
91
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateNodeResponseSuccess
|
92
|
+
|
93
|
+
interface _CreateBackupResponseSuccess
|
94
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateBackupResponse]
|
95
|
+
def backup: () -> Types::Backup
|
96
|
+
end
|
97
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#create_backup-instance_method
|
98
|
+
def create_backup: (
|
99
|
+
server_name: ::String,
|
100
|
+
?description: ::String,
|
101
|
+
?tags: Array[
|
102
|
+
{
|
103
|
+
key: ::String,
|
104
|
+
value: ::String
|
105
|
+
},
|
106
|
+
]
|
107
|
+
) -> _CreateBackupResponseSuccess
|
108
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBackupResponseSuccess
|
109
|
+
|
110
|
+
interface _CreateServerResponseSuccess
|
111
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateServerResponse]
|
112
|
+
def server: () -> Types::Server
|
113
|
+
end
|
114
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#create_server-instance_method
|
115
|
+
def create_server: (
|
116
|
+
?associate_public_ip_address: bool,
|
117
|
+
?custom_domain: ::String,
|
118
|
+
?custom_certificate: ::String,
|
119
|
+
?custom_private_key: ::String,
|
120
|
+
?disable_automated_backup: bool,
|
121
|
+
engine: ::String,
|
122
|
+
?engine_model: ::String,
|
123
|
+
?engine_version: ::String,
|
124
|
+
?engine_attributes: Array[
|
125
|
+
{
|
126
|
+
name: ::String?,
|
127
|
+
value: ::String?
|
128
|
+
},
|
129
|
+
],
|
130
|
+
?backup_retention_count: ::Integer,
|
131
|
+
server_name: ::String,
|
132
|
+
instance_profile_arn: ::String,
|
133
|
+
instance_type: ::String,
|
134
|
+
?key_pair: ::String,
|
135
|
+
?preferred_maintenance_window: ::String,
|
136
|
+
?preferred_backup_window: ::String,
|
137
|
+
?security_group_ids: Array[::String],
|
138
|
+
service_role_arn: ::String,
|
139
|
+
?subnet_ids: Array[::String],
|
140
|
+
?tags: Array[
|
141
|
+
{
|
142
|
+
key: ::String,
|
143
|
+
value: ::String
|
144
|
+
},
|
145
|
+
],
|
146
|
+
?backup_id: ::String
|
147
|
+
) -> _CreateServerResponseSuccess
|
148
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServerResponseSuccess
|
149
|
+
|
150
|
+
interface _DeleteBackupResponseSuccess
|
151
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteBackupResponse]
|
152
|
+
end
|
153
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#delete_backup-instance_method
|
154
|
+
def delete_backup: (
|
155
|
+
backup_id: ::String
|
156
|
+
) -> _DeleteBackupResponseSuccess
|
157
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBackupResponseSuccess
|
158
|
+
|
159
|
+
interface _DeleteServerResponseSuccess
|
160
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteServerResponse]
|
161
|
+
end
|
162
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#delete_server-instance_method
|
163
|
+
def delete_server: (
|
164
|
+
server_name: ::String
|
165
|
+
) -> _DeleteServerResponseSuccess
|
166
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteServerResponseSuccess
|
167
|
+
|
168
|
+
interface _DescribeAccountAttributesResponseSuccess
|
169
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAccountAttributesResponse]
|
170
|
+
def attributes: () -> ::Array[Types::AccountAttribute]
|
171
|
+
end
|
172
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#describe_account_attributes-instance_method
|
173
|
+
def describe_account_attributes: (
|
174
|
+
) -> _DescribeAccountAttributesResponseSuccess
|
175
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAccountAttributesResponseSuccess
|
176
|
+
|
177
|
+
interface _DescribeBackupsResponseSuccess
|
178
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBackupsResponse]
|
179
|
+
def backups: () -> ::Array[Types::Backup]
|
180
|
+
def next_token: () -> ::String
|
181
|
+
end
|
182
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#describe_backups-instance_method
|
183
|
+
def describe_backups: (
|
184
|
+
?backup_id: ::String,
|
185
|
+
?server_name: ::String,
|
186
|
+
?next_token: ::String,
|
187
|
+
?max_results: ::Integer
|
188
|
+
) -> _DescribeBackupsResponseSuccess
|
189
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBackupsResponseSuccess
|
190
|
+
|
191
|
+
interface _DescribeEventsResponseSuccess
|
192
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventsResponse]
|
193
|
+
def server_events: () -> ::Array[Types::ServerEvent]
|
194
|
+
def next_token: () -> ::String
|
195
|
+
end
|
196
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#describe_events-instance_method
|
197
|
+
def describe_events: (
|
198
|
+
server_name: ::String,
|
199
|
+
?next_token: ::String,
|
200
|
+
?max_results: ::Integer
|
201
|
+
) -> _DescribeEventsResponseSuccess
|
202
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventsResponseSuccess
|
203
|
+
|
204
|
+
interface _DescribeNodeAssociationStatusResponseSuccess
|
205
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeNodeAssociationStatusResponse]
|
206
|
+
def node_association_status: () -> ("SUCCESS" | "FAILED" | "IN_PROGRESS")
|
207
|
+
def engine_attributes: () -> ::Array[Types::EngineAttribute]
|
208
|
+
end
|
209
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#describe_node_association_status-instance_method
|
210
|
+
def describe_node_association_status: (
|
211
|
+
node_association_status_token: ::String,
|
212
|
+
server_name: ::String
|
213
|
+
) -> _DescribeNodeAssociationStatusResponseSuccess
|
214
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeNodeAssociationStatusResponseSuccess
|
215
|
+
|
216
|
+
interface _DescribeServersResponseSuccess
|
217
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeServersResponse]
|
218
|
+
def servers: () -> ::Array[Types::Server]
|
219
|
+
def next_token: () -> ::String
|
220
|
+
end
|
221
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#describe_servers-instance_method
|
222
|
+
def describe_servers: (
|
223
|
+
?server_name: ::String,
|
224
|
+
?next_token: ::String,
|
225
|
+
?max_results: ::Integer
|
226
|
+
) -> _DescribeServersResponseSuccess
|
227
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeServersResponseSuccess
|
228
|
+
|
229
|
+
interface _DisassociateNodeResponseSuccess
|
230
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateNodeResponse]
|
231
|
+
def node_association_status_token: () -> ::String
|
232
|
+
end
|
233
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#disassociate_node-instance_method
|
234
|
+
def disassociate_node: (
|
235
|
+
server_name: ::String,
|
236
|
+
node_name: ::String,
|
237
|
+
?engine_attributes: Array[
|
238
|
+
{
|
239
|
+
name: ::String?,
|
240
|
+
value: ::String?
|
241
|
+
},
|
242
|
+
]
|
243
|
+
) -> _DisassociateNodeResponseSuccess
|
244
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateNodeResponseSuccess
|
245
|
+
|
246
|
+
interface _ExportServerEngineAttributeResponseSuccess
|
247
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ExportServerEngineAttributeResponse]
|
248
|
+
def engine_attribute: () -> Types::EngineAttribute
|
249
|
+
def server_name: () -> ::String
|
250
|
+
end
|
251
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#export_server_engine_attribute-instance_method
|
252
|
+
def export_server_engine_attribute: (
|
253
|
+
export_attribute_name: ::String,
|
254
|
+
server_name: ::String,
|
255
|
+
?input_attributes: Array[
|
256
|
+
{
|
257
|
+
name: ::String?,
|
258
|
+
value: ::String?
|
259
|
+
},
|
260
|
+
]
|
261
|
+
) -> _ExportServerEngineAttributeResponseSuccess
|
262
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportServerEngineAttributeResponseSuccess
|
263
|
+
|
264
|
+
interface _ListTagsForResourceResponseSuccess
|
265
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
266
|
+
def tags: () -> ::Array[Types::Tag]
|
267
|
+
def next_token: () -> ::String
|
268
|
+
end
|
269
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#list_tags_for_resource-instance_method
|
270
|
+
def list_tags_for_resource: (
|
271
|
+
resource_arn: ::String,
|
272
|
+
?next_token: ::String,
|
273
|
+
?max_results: ::Integer
|
274
|
+
) -> _ListTagsForResourceResponseSuccess
|
275
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
276
|
+
|
277
|
+
interface _RestoreServerResponseSuccess
|
278
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RestoreServerResponse]
|
279
|
+
def server: () -> Types::Server
|
280
|
+
end
|
281
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#restore_server-instance_method
|
282
|
+
def restore_server: (
|
283
|
+
backup_id: ::String,
|
284
|
+
server_name: ::String,
|
285
|
+
?instance_type: ::String,
|
286
|
+
?key_pair: ::String
|
287
|
+
) -> _RestoreServerResponseSuccess
|
288
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreServerResponseSuccess
|
289
|
+
|
290
|
+
interface _StartMaintenanceResponseSuccess
|
291
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartMaintenanceResponse]
|
292
|
+
def server: () -> Types::Server
|
293
|
+
end
|
294
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#start_maintenance-instance_method
|
295
|
+
def start_maintenance: (
|
296
|
+
server_name: ::String,
|
297
|
+
?engine_attributes: Array[
|
298
|
+
{
|
299
|
+
name: ::String?,
|
300
|
+
value: ::String?
|
301
|
+
},
|
302
|
+
]
|
303
|
+
) -> _StartMaintenanceResponseSuccess
|
304
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMaintenanceResponseSuccess
|
305
|
+
|
306
|
+
interface _TagResourceResponseSuccess
|
307
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
308
|
+
end
|
309
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#tag_resource-instance_method
|
310
|
+
def tag_resource: (
|
311
|
+
resource_arn: ::String,
|
312
|
+
tags: Array[
|
313
|
+
{
|
314
|
+
key: ::String,
|
315
|
+
value: ::String
|
316
|
+
},
|
317
|
+
]
|
318
|
+
) -> _TagResourceResponseSuccess
|
319
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
320
|
+
|
321
|
+
interface _UntagResourceResponseSuccess
|
322
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
323
|
+
end
|
324
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#untag_resource-instance_method
|
325
|
+
def untag_resource: (
|
326
|
+
resource_arn: ::String,
|
327
|
+
tag_keys: Array[::String]
|
328
|
+
) -> _UntagResourceResponseSuccess
|
329
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
330
|
+
|
331
|
+
interface _UpdateServerResponseSuccess
|
332
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateServerResponse]
|
333
|
+
def server: () -> Types::Server
|
334
|
+
end
|
335
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#update_server-instance_method
|
336
|
+
def update_server: (
|
337
|
+
?disable_automated_backup: bool,
|
338
|
+
?backup_retention_count: ::Integer,
|
339
|
+
server_name: ::String,
|
340
|
+
?preferred_maintenance_window: ::String,
|
341
|
+
?preferred_backup_window: ::String
|
342
|
+
) -> _UpdateServerResponseSuccess
|
343
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServerResponseSuccess
|
344
|
+
|
345
|
+
interface _UpdateServerEngineAttributesResponseSuccess
|
346
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateServerEngineAttributesResponse]
|
347
|
+
def server: () -> Types::Server
|
348
|
+
end
|
349
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#update_server_engine_attributes-instance_method
|
350
|
+
def update_server_engine_attributes: (
|
351
|
+
server_name: ::String,
|
352
|
+
attribute_name: ::String,
|
353
|
+
?attribute_value: ::String
|
354
|
+
) -> _UpdateServerEngineAttributesResponseSuccess
|
355
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServerEngineAttributesResponseSuccess
|
356
|
+
|
357
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Client.html#wait_until-instance_method
|
358
|
+
def wait_until: (:node_associated waiter_name,
|
359
|
+
node_association_status_token: ::String,
|
360
|
+
server_name: ::String
|
361
|
+
) -> Client::_DescribeNodeAssociationStatusResponseSuccess
|
362
|
+
| (:node_associated waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeNodeAssociationStatusResponseSuccess
|
363
|
+
end
|
364
|
+
end
|
365
|
+
end
|
366
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,34 @@
|
|
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 OpsWorksCM
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class InvalidNextTokenException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class InvalidStateException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class LimitExceededException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class ResourceAlreadyExistsException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,80 @@
|
|
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 OpsWorksCM
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpsWorksCM/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
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
|
+
) -> void
|
73
|
+
| (?Hash[Symbol, untyped]) -> void
|
74
|
+
|
75
|
+
def client: () -> Client
|
76
|
+
|
77
|
+
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,360 @@
|
|
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::OpsWorksCM
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccountAttribute
|
12
|
+
attr_accessor name: ::String
|
13
|
+
attr_accessor maximum: ::Integer
|
14
|
+
attr_accessor used: ::Integer
|
15
|
+
SENSITIVE: []
|
16
|
+
end
|
17
|
+
|
18
|
+
class AssociateNodeRequest
|
19
|
+
attr_accessor server_name: ::String
|
20
|
+
attr_accessor node_name: ::String
|
21
|
+
attr_accessor engine_attributes: ::Array[Types::EngineAttribute]
|
22
|
+
SENSITIVE: []
|
23
|
+
end
|
24
|
+
|
25
|
+
class AssociateNodeResponse
|
26
|
+
attr_accessor node_association_status_token: ::String
|
27
|
+
SENSITIVE: []
|
28
|
+
end
|
29
|
+
|
30
|
+
class Backup
|
31
|
+
attr_accessor backup_arn: ::String
|
32
|
+
attr_accessor backup_id: ::String
|
33
|
+
attr_accessor backup_type: ("AUTOMATED" | "MANUAL")
|
34
|
+
attr_accessor created_at: ::Time
|
35
|
+
attr_accessor description: ::String
|
36
|
+
attr_accessor engine: ::String
|
37
|
+
attr_accessor engine_model: ::String
|
38
|
+
attr_accessor engine_version: ::String
|
39
|
+
attr_accessor instance_profile_arn: ::String
|
40
|
+
attr_accessor instance_type: ::String
|
41
|
+
attr_accessor key_pair: ::String
|
42
|
+
attr_accessor preferred_backup_window: ::String
|
43
|
+
attr_accessor preferred_maintenance_window: ::String
|
44
|
+
attr_accessor s3_data_size: ::Integer
|
45
|
+
attr_accessor s3_data_url: ::String
|
46
|
+
attr_accessor s3_log_url: ::String
|
47
|
+
attr_accessor security_group_ids: ::Array[::String]
|
48
|
+
attr_accessor server_name: ::String
|
49
|
+
attr_accessor service_role_arn: ::String
|
50
|
+
attr_accessor status: ("IN_PROGRESS" | "OK" | "FAILED" | "DELETING")
|
51
|
+
attr_accessor status_description: ::String
|
52
|
+
attr_accessor subnet_ids: ::Array[::String]
|
53
|
+
attr_accessor tools_version: ::String
|
54
|
+
attr_accessor user_arn: ::String
|
55
|
+
SENSITIVE: []
|
56
|
+
end
|
57
|
+
|
58
|
+
class CreateBackupRequest
|
59
|
+
attr_accessor server_name: ::String
|
60
|
+
attr_accessor description: ::String
|
61
|
+
attr_accessor tags: ::Array[Types::Tag]
|
62
|
+
SENSITIVE: []
|
63
|
+
end
|
64
|
+
|
65
|
+
class CreateBackupResponse
|
66
|
+
attr_accessor backup: Types::Backup
|
67
|
+
SENSITIVE: []
|
68
|
+
end
|
69
|
+
|
70
|
+
class CreateServerRequest
|
71
|
+
attr_accessor associate_public_ip_address: bool
|
72
|
+
attr_accessor custom_domain: ::String
|
73
|
+
attr_accessor custom_certificate: ::String
|
74
|
+
attr_accessor custom_private_key: ::String
|
75
|
+
attr_accessor disable_automated_backup: bool
|
76
|
+
attr_accessor engine: ::String
|
77
|
+
attr_accessor engine_model: ::String
|
78
|
+
attr_accessor engine_version: ::String
|
79
|
+
attr_accessor engine_attributes: ::Array[Types::EngineAttribute]
|
80
|
+
attr_accessor backup_retention_count: ::Integer
|
81
|
+
attr_accessor server_name: ::String
|
82
|
+
attr_accessor instance_profile_arn: ::String
|
83
|
+
attr_accessor instance_type: ::String
|
84
|
+
attr_accessor key_pair: ::String
|
85
|
+
attr_accessor preferred_maintenance_window: ::String
|
86
|
+
attr_accessor preferred_backup_window: ::String
|
87
|
+
attr_accessor security_group_ids: ::Array[::String]
|
88
|
+
attr_accessor service_role_arn: ::String
|
89
|
+
attr_accessor subnet_ids: ::Array[::String]
|
90
|
+
attr_accessor tags: ::Array[Types::Tag]
|
91
|
+
attr_accessor backup_id: ::String
|
92
|
+
SENSITIVE: [:custom_private_key]
|
93
|
+
end
|
94
|
+
|
95
|
+
class CreateServerResponse
|
96
|
+
attr_accessor server: Types::Server
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class DeleteBackupRequest
|
101
|
+
attr_accessor backup_id: ::String
|
102
|
+
SENSITIVE: []
|
103
|
+
end
|
104
|
+
|
105
|
+
class DeleteBackupResponse < Aws::EmptyStructure
|
106
|
+
end
|
107
|
+
|
108
|
+
class DeleteServerRequest
|
109
|
+
attr_accessor server_name: ::String
|
110
|
+
SENSITIVE: []
|
111
|
+
end
|
112
|
+
|
113
|
+
class DeleteServerResponse < Aws::EmptyStructure
|
114
|
+
end
|
115
|
+
|
116
|
+
class DescribeAccountAttributesRequest < Aws::EmptyStructure
|
117
|
+
end
|
118
|
+
|
119
|
+
class DescribeAccountAttributesResponse
|
120
|
+
attr_accessor attributes: ::Array[Types::AccountAttribute]
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class DescribeBackupsRequest
|
125
|
+
attr_accessor backup_id: ::String
|
126
|
+
attr_accessor server_name: ::String
|
127
|
+
attr_accessor next_token: ::String
|
128
|
+
attr_accessor max_results: ::Integer
|
129
|
+
SENSITIVE: []
|
130
|
+
end
|
131
|
+
|
132
|
+
class DescribeBackupsResponse
|
133
|
+
attr_accessor backups: ::Array[Types::Backup]
|
134
|
+
attr_accessor next_token: ::String
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class DescribeEventsRequest
|
139
|
+
attr_accessor server_name: ::String
|
140
|
+
attr_accessor next_token: ::String
|
141
|
+
attr_accessor max_results: ::Integer
|
142
|
+
SENSITIVE: []
|
143
|
+
end
|
144
|
+
|
145
|
+
class DescribeEventsResponse
|
146
|
+
attr_accessor server_events: ::Array[Types::ServerEvent]
|
147
|
+
attr_accessor next_token: ::String
|
148
|
+
SENSITIVE: []
|
149
|
+
end
|
150
|
+
|
151
|
+
class DescribeNodeAssociationStatusRequest
|
152
|
+
attr_accessor node_association_status_token: ::String
|
153
|
+
attr_accessor server_name: ::String
|
154
|
+
SENSITIVE: []
|
155
|
+
end
|
156
|
+
|
157
|
+
class DescribeNodeAssociationStatusResponse
|
158
|
+
attr_accessor node_association_status: ("SUCCESS" | "FAILED" | "IN_PROGRESS")
|
159
|
+
attr_accessor engine_attributes: ::Array[Types::EngineAttribute]
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class DescribeServersRequest
|
164
|
+
attr_accessor server_name: ::String
|
165
|
+
attr_accessor next_token: ::String
|
166
|
+
attr_accessor max_results: ::Integer
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
170
|
+
class DescribeServersResponse
|
171
|
+
attr_accessor servers: ::Array[Types::Server]
|
172
|
+
attr_accessor next_token: ::String
|
173
|
+
SENSITIVE: []
|
174
|
+
end
|
175
|
+
|
176
|
+
class DisassociateNodeRequest
|
177
|
+
attr_accessor server_name: ::String
|
178
|
+
attr_accessor node_name: ::String
|
179
|
+
attr_accessor engine_attributes: ::Array[Types::EngineAttribute]
|
180
|
+
SENSITIVE: []
|
181
|
+
end
|
182
|
+
|
183
|
+
class DisassociateNodeResponse
|
184
|
+
attr_accessor node_association_status_token: ::String
|
185
|
+
SENSITIVE: []
|
186
|
+
end
|
187
|
+
|
188
|
+
class EngineAttribute
|
189
|
+
attr_accessor name: ::String
|
190
|
+
attr_accessor value: ::String
|
191
|
+
SENSITIVE: [:value]
|
192
|
+
end
|
193
|
+
|
194
|
+
class ExportServerEngineAttributeRequest
|
195
|
+
attr_accessor export_attribute_name: ::String
|
196
|
+
attr_accessor server_name: ::String
|
197
|
+
attr_accessor input_attributes: ::Array[Types::EngineAttribute]
|
198
|
+
SENSITIVE: []
|
199
|
+
end
|
200
|
+
|
201
|
+
class ExportServerEngineAttributeResponse
|
202
|
+
attr_accessor engine_attribute: Types::EngineAttribute
|
203
|
+
attr_accessor server_name: ::String
|
204
|
+
SENSITIVE: []
|
205
|
+
end
|
206
|
+
|
207
|
+
class InvalidNextTokenException
|
208
|
+
attr_accessor message: ::String
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class InvalidStateException
|
213
|
+
attr_accessor message: ::String
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class LimitExceededException
|
218
|
+
attr_accessor message: ::String
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class ListTagsForResourceRequest
|
223
|
+
attr_accessor resource_arn: ::String
|
224
|
+
attr_accessor next_token: ::String
|
225
|
+
attr_accessor max_results: ::Integer
|
226
|
+
SENSITIVE: []
|
227
|
+
end
|
228
|
+
|
229
|
+
class ListTagsForResourceResponse
|
230
|
+
attr_accessor tags: ::Array[Types::Tag]
|
231
|
+
attr_accessor next_token: ::String
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class ResourceAlreadyExistsException
|
236
|
+
attr_accessor message: ::String
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class ResourceNotFoundException
|
241
|
+
attr_accessor message: ::String
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
245
|
+
class RestoreServerRequest
|
246
|
+
attr_accessor backup_id: ::String
|
247
|
+
attr_accessor server_name: ::String
|
248
|
+
attr_accessor instance_type: ::String
|
249
|
+
attr_accessor key_pair: ::String
|
250
|
+
SENSITIVE: []
|
251
|
+
end
|
252
|
+
|
253
|
+
class RestoreServerResponse
|
254
|
+
attr_accessor server: Types::Server
|
255
|
+
SENSITIVE: []
|
256
|
+
end
|
257
|
+
|
258
|
+
class Server
|
259
|
+
attr_accessor associate_public_ip_address: bool
|
260
|
+
attr_accessor backup_retention_count: ::Integer
|
261
|
+
attr_accessor server_name: ::String
|
262
|
+
attr_accessor created_at: ::Time
|
263
|
+
attr_accessor cloud_formation_stack_arn: ::String
|
264
|
+
attr_accessor custom_domain: ::String
|
265
|
+
attr_accessor disable_automated_backup: bool
|
266
|
+
attr_accessor endpoint: ::String
|
267
|
+
attr_accessor engine: ::String
|
268
|
+
attr_accessor engine_model: ::String
|
269
|
+
attr_accessor engine_attributes: ::Array[Types::EngineAttribute]
|
270
|
+
attr_accessor engine_version: ::String
|
271
|
+
attr_accessor instance_profile_arn: ::String
|
272
|
+
attr_accessor instance_type: ::String
|
273
|
+
attr_accessor key_pair: ::String
|
274
|
+
attr_accessor maintenance_status: ("SUCCESS" | "FAILED")
|
275
|
+
attr_accessor preferred_maintenance_window: ::String
|
276
|
+
attr_accessor preferred_backup_window: ::String
|
277
|
+
attr_accessor security_group_ids: ::Array[::String]
|
278
|
+
attr_accessor service_role_arn: ::String
|
279
|
+
attr_accessor status: ("BACKING_UP" | "CONNECTION_LOST" | "CREATING" | "DELETING" | "MODIFYING" | "FAILED" | "HEALTHY" | "RUNNING" | "RESTORING" | "SETUP" | "UNDER_MAINTENANCE" | "UNHEALTHY" | "TERMINATED")
|
280
|
+
attr_accessor status_reason: ::String
|
281
|
+
attr_accessor subnet_ids: ::Array[::String]
|
282
|
+
attr_accessor server_arn: ::String
|
283
|
+
SENSITIVE: []
|
284
|
+
end
|
285
|
+
|
286
|
+
class ServerEvent
|
287
|
+
attr_accessor created_at: ::Time
|
288
|
+
attr_accessor server_name: ::String
|
289
|
+
attr_accessor message: ::String
|
290
|
+
attr_accessor log_url: ::String
|
291
|
+
SENSITIVE: []
|
292
|
+
end
|
293
|
+
|
294
|
+
class StartMaintenanceRequest
|
295
|
+
attr_accessor server_name: ::String
|
296
|
+
attr_accessor engine_attributes: ::Array[Types::EngineAttribute]
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class StartMaintenanceResponse
|
301
|
+
attr_accessor server: Types::Server
|
302
|
+
SENSITIVE: []
|
303
|
+
end
|
304
|
+
|
305
|
+
class Tag
|
306
|
+
attr_accessor key: ::String
|
307
|
+
attr_accessor value: ::String
|
308
|
+
SENSITIVE: []
|
309
|
+
end
|
310
|
+
|
311
|
+
class TagResourceRequest
|
312
|
+
attr_accessor resource_arn: ::String
|
313
|
+
attr_accessor tags: ::Array[Types::Tag]
|
314
|
+
SENSITIVE: []
|
315
|
+
end
|
316
|
+
|
317
|
+
class TagResourceResponse < Aws::EmptyStructure
|
318
|
+
end
|
319
|
+
|
320
|
+
class UntagResourceRequest
|
321
|
+
attr_accessor resource_arn: ::String
|
322
|
+
attr_accessor tag_keys: ::Array[::String]
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
327
|
+
end
|
328
|
+
|
329
|
+
class UpdateServerEngineAttributesRequest
|
330
|
+
attr_accessor server_name: ::String
|
331
|
+
attr_accessor attribute_name: ::String
|
332
|
+
attr_accessor attribute_value: ::String
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class UpdateServerEngineAttributesResponse
|
337
|
+
attr_accessor server: Types::Server
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class UpdateServerRequest
|
342
|
+
attr_accessor disable_automated_backup: bool
|
343
|
+
attr_accessor backup_retention_count: ::Integer
|
344
|
+
attr_accessor server_name: ::String
|
345
|
+
attr_accessor preferred_maintenance_window: ::String
|
346
|
+
attr_accessor preferred_backup_window: ::String
|
347
|
+
SENSITIVE: []
|
348
|
+
end
|
349
|
+
|
350
|
+
class UpdateServerResponse
|
351
|
+
attr_accessor server: Types::Server
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class ValidationException
|
356
|
+
attr_accessor message: ::String
|
357
|
+
SENSITIVE: []
|
358
|
+
end
|
359
|
+
end
|
360
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,24 @@
|
|
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 OpsWorksCM
|
10
|
+
module Waiters
|
11
|
+
|
12
|
+
class NodeAssociated
|
13
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
14
|
+
| (?Hash[Symbol, untyped]) -> void
|
15
|
+
|
16
|
+
def wait: (
|
17
|
+
node_association_status_token: ::String,
|
18
|
+
server_name: ::String
|
19
|
+
) -> Client::_DescribeNodeAssociationStatusResponseSuccess
|
20
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeNodeAssociationStatusResponseSuccess
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-opsworkscm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.65.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.193.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -67,13 +67,18 @@ files:
|
|
67
67
|
- lib/aws-sdk-opsworkscm/resource.rb
|
68
68
|
- lib/aws-sdk-opsworkscm/types.rb
|
69
69
|
- lib/aws-sdk-opsworkscm/waiters.rb
|
70
|
+
- sig/client.rbs
|
71
|
+
- sig/errors.rbs
|
72
|
+
- sig/resource.rbs
|
73
|
+
- sig/types.rbs
|
74
|
+
- sig/waiters.rbs
|
70
75
|
homepage: https://github.com/aws/aws-sdk-ruby
|
71
76
|
licenses:
|
72
77
|
- Apache-2.0
|
73
78
|
metadata:
|
74
79
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-opsworkscm
|
75
80
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-opsworkscm/CHANGELOG.md
|
76
|
-
post_install_message:
|
81
|
+
post_install_message:
|
77
82
|
rdoc_options: []
|
78
83
|
require_paths:
|
79
84
|
- lib
|
@@ -88,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
93
|
- !ruby/object:Gem::Version
|
89
94
|
version: '0'
|
90
95
|
requirements: []
|
91
|
-
rubygems_version: 3.
|
92
|
-
signing_key:
|
96
|
+
rubygems_version: 3.4.10
|
97
|
+
signing_key:
|
93
98
|
specification_version: 4
|
94
99
|
summary: AWS SDK for Ruby - OpsWorksCM
|
95
100
|
test_files: []
|