aws-sdk-acm 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-acm/client.rb +1 -1
- data/lib/aws-sdk-acm/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-acm.rb +1 -1
- data/sig/client.rbs +267 -0
- data/sig/errors.rbs +64 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +346 -0
- data/sig/waiters.rbs +23 -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: 6dd7fb3d2dd5073c757a87f73277bf0211013572d2cb225fe021d37c3faf2768
|
4
|
+
data.tar.gz: 14932fd1060183193e509419aaa69568d7fc463941519e9315500cb3916aaffb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a371a317c83a84f77e7c2531cab74f88a3579235c9151e661ab3b3939e7d1ec122648109ee254f33d77543d8da81b5fffcfc5065e6e9318bc5a398fb27461cb
|
7
|
+
data.tar.gz: 9675a405c4587b6d00941c22ee35ba2f21d8ad99bb3799d9e1f6cb5f08d7a51100e2e522edec195b3d345a42f38e7f6e025e84751bf7f60bd16ed1c1b3c2761f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.65.0 (2024-01-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.64.0 (2023-11-28)
|
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-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.65.0
|
data/lib/aws-sdk-acm/client.rb
CHANGED
@@ -14,6 +14,7 @@ module Aws::ACM
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::ACM::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 '\
|
@@ -25,16 +26,17 @@ module Aws::ACM
|
|
25
26
|
# @api private
|
26
27
|
class Handler < Seahorse::Client::Handler
|
27
28
|
def call(context)
|
28
|
-
# If endpoint was discovered, do not resolve or apply the endpoint.
|
29
29
|
unless context[:discovered_endpoint]
|
30
30
|
params = parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
34
34
|
apply_endpoint_headers(context, endpoint.headers)
|
35
|
+
|
36
|
+
context[:endpoint_params] = params
|
37
|
+
context[:endpoint_properties] = endpoint.properties
|
35
38
|
end
|
36
39
|
|
37
|
-
context[:endpoint_params] = params
|
38
40
|
context[:auth_scheme] =
|
39
41
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
40
42
|
|
data/lib/aws-sdk-acm.rb
CHANGED
data/sig/client.rbs
ADDED
@@ -0,0 +1,267 @@
|
|
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 ACM
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/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/ACM/Client.html#add_tags_to_certificate-instance_method
|
77
|
+
def add_tags_to_certificate: (
|
78
|
+
certificate_arn: ::String,
|
79
|
+
tags: Array[
|
80
|
+
{
|
81
|
+
key: ::String,
|
82
|
+
value: ::String?
|
83
|
+
},
|
84
|
+
]
|
85
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
86
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
87
|
+
|
88
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Client.html#delete_certificate-instance_method
|
89
|
+
def delete_certificate: (
|
90
|
+
certificate_arn: ::String
|
91
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
92
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
93
|
+
|
94
|
+
interface _DescribeCertificateResponseSuccess
|
95
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCertificateResponse]
|
96
|
+
def certificate: () -> Types::CertificateDetail
|
97
|
+
end
|
98
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Client.html#describe_certificate-instance_method
|
99
|
+
def describe_certificate: (
|
100
|
+
certificate_arn: ::String
|
101
|
+
) -> _DescribeCertificateResponseSuccess
|
102
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCertificateResponseSuccess
|
103
|
+
|
104
|
+
interface _ExportCertificateResponseSuccess
|
105
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ExportCertificateResponse]
|
106
|
+
def certificate: () -> ::String
|
107
|
+
def certificate_chain: () -> ::String
|
108
|
+
def private_key: () -> ::String
|
109
|
+
end
|
110
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Client.html#export_certificate-instance_method
|
111
|
+
def export_certificate: (
|
112
|
+
certificate_arn: ::String,
|
113
|
+
passphrase: ::String
|
114
|
+
) -> _ExportCertificateResponseSuccess
|
115
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportCertificateResponseSuccess
|
116
|
+
|
117
|
+
interface _GetAccountConfigurationResponseSuccess
|
118
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountConfigurationResponse]
|
119
|
+
def expiry_events: () -> Types::ExpiryEventsConfiguration
|
120
|
+
end
|
121
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Client.html#get_account_configuration-instance_method
|
122
|
+
def get_account_configuration: () -> _GetAccountConfigurationResponseSuccess
|
123
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountConfigurationResponseSuccess
|
124
|
+
|
125
|
+
interface _GetCertificateResponseSuccess
|
126
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetCertificateResponse]
|
127
|
+
def certificate: () -> ::String
|
128
|
+
def certificate_chain: () -> ::String
|
129
|
+
end
|
130
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Client.html#get_certificate-instance_method
|
131
|
+
def get_certificate: (
|
132
|
+
certificate_arn: ::String
|
133
|
+
) -> _GetCertificateResponseSuccess
|
134
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCertificateResponseSuccess
|
135
|
+
|
136
|
+
interface _ImportCertificateResponseSuccess
|
137
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ImportCertificateResponse]
|
138
|
+
def certificate_arn: () -> ::String
|
139
|
+
end
|
140
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Client.html#import_certificate-instance_method
|
141
|
+
def import_certificate: (
|
142
|
+
?certificate_arn: ::String,
|
143
|
+
certificate: ::String,
|
144
|
+
private_key: ::String,
|
145
|
+
?certificate_chain: ::String,
|
146
|
+
?tags: Array[
|
147
|
+
{
|
148
|
+
key: ::String,
|
149
|
+
value: ::String?
|
150
|
+
},
|
151
|
+
]
|
152
|
+
) -> _ImportCertificateResponseSuccess
|
153
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportCertificateResponseSuccess
|
154
|
+
|
155
|
+
interface _ListCertificatesResponseSuccess
|
156
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCertificatesResponse]
|
157
|
+
def next_token: () -> ::String
|
158
|
+
def certificate_summary_list: () -> ::Array[Types::CertificateSummary]
|
159
|
+
end
|
160
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Client.html#list_certificates-instance_method
|
161
|
+
def list_certificates: (
|
162
|
+
?certificate_statuses: Array[("PENDING_VALIDATION" | "ISSUED" | "INACTIVE" | "EXPIRED" | "VALIDATION_TIMED_OUT" | "REVOKED" | "FAILED")],
|
163
|
+
?includes: {
|
164
|
+
extended_key_usage: Array[("TLS_WEB_SERVER_AUTHENTICATION" | "TLS_WEB_CLIENT_AUTHENTICATION" | "CODE_SIGNING" | "EMAIL_PROTECTION" | "TIME_STAMPING" | "OCSP_SIGNING" | "IPSEC_END_SYSTEM" | "IPSEC_TUNNEL" | "IPSEC_USER" | "ANY" | "NONE" | "CUSTOM")]?,
|
165
|
+
key_usage: Array[("DIGITAL_SIGNATURE" | "NON_REPUDIATION" | "KEY_ENCIPHERMENT" | "DATA_ENCIPHERMENT" | "KEY_AGREEMENT" | "CERTIFICATE_SIGNING" | "CRL_SIGNING" | "ENCIPHER_ONLY" | "DECIPHER_ONLY" | "ANY" | "CUSTOM")]?,
|
166
|
+
key_types: Array[("RSA_1024" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "EC_prime256v1" | "EC_secp384r1" | "EC_secp521r1")]?
|
167
|
+
},
|
168
|
+
?next_token: ::String,
|
169
|
+
?max_items: ::Integer,
|
170
|
+
?sort_by: ("CREATED_AT"),
|
171
|
+
?sort_order: ("ASCENDING" | "DESCENDING")
|
172
|
+
) -> _ListCertificatesResponseSuccess
|
173
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCertificatesResponseSuccess
|
174
|
+
|
175
|
+
interface _ListTagsForCertificateResponseSuccess
|
176
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForCertificateResponse]
|
177
|
+
def tags: () -> ::Array[Types::Tag]
|
178
|
+
end
|
179
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Client.html#list_tags_for_certificate-instance_method
|
180
|
+
def list_tags_for_certificate: (
|
181
|
+
certificate_arn: ::String
|
182
|
+
) -> _ListTagsForCertificateResponseSuccess
|
183
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForCertificateResponseSuccess
|
184
|
+
|
185
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Client.html#put_account_configuration-instance_method
|
186
|
+
def put_account_configuration: (
|
187
|
+
?expiry_events: {
|
188
|
+
days_before_expiry: ::Integer?
|
189
|
+
},
|
190
|
+
idempotency_token: ::String
|
191
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
192
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
193
|
+
|
194
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Client.html#remove_tags_from_certificate-instance_method
|
195
|
+
def remove_tags_from_certificate: (
|
196
|
+
certificate_arn: ::String,
|
197
|
+
tags: Array[
|
198
|
+
{
|
199
|
+
key: ::String,
|
200
|
+
value: ::String?
|
201
|
+
},
|
202
|
+
]
|
203
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
204
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
205
|
+
|
206
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Client.html#renew_certificate-instance_method
|
207
|
+
def renew_certificate: (
|
208
|
+
certificate_arn: ::String
|
209
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
210
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
211
|
+
|
212
|
+
interface _RequestCertificateResponseSuccess
|
213
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RequestCertificateResponse]
|
214
|
+
def certificate_arn: () -> ::String
|
215
|
+
end
|
216
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Client.html#request_certificate-instance_method
|
217
|
+
def request_certificate: (
|
218
|
+
domain_name: ::String,
|
219
|
+
?validation_method: ("EMAIL" | "DNS"),
|
220
|
+
?subject_alternative_names: Array[::String],
|
221
|
+
?idempotency_token: ::String,
|
222
|
+
?domain_validation_options: Array[
|
223
|
+
{
|
224
|
+
domain_name: ::String,
|
225
|
+
validation_domain: ::String
|
226
|
+
},
|
227
|
+
],
|
228
|
+
?options: {
|
229
|
+
certificate_transparency_logging_preference: ("ENABLED" | "DISABLED")?
|
230
|
+
},
|
231
|
+
?certificate_authority_arn: ::String,
|
232
|
+
?tags: Array[
|
233
|
+
{
|
234
|
+
key: ::String,
|
235
|
+
value: ::String?
|
236
|
+
},
|
237
|
+
],
|
238
|
+
?key_algorithm: ("RSA_1024" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "EC_prime256v1" | "EC_secp384r1" | "EC_secp521r1")
|
239
|
+
) -> _RequestCertificateResponseSuccess
|
240
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RequestCertificateResponseSuccess
|
241
|
+
|
242
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Client.html#resend_validation_email-instance_method
|
243
|
+
def resend_validation_email: (
|
244
|
+
certificate_arn: ::String,
|
245
|
+
domain: ::String,
|
246
|
+
validation_domain: ::String
|
247
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
248
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
249
|
+
|
250
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Client.html#update_certificate_options-instance_method
|
251
|
+
def update_certificate_options: (
|
252
|
+
certificate_arn: ::String,
|
253
|
+
options: {
|
254
|
+
certificate_transparency_logging_preference: ("ENABLED" | "DISABLED")?
|
255
|
+
}
|
256
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
257
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
258
|
+
|
259
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Client.html#wait_until-instance_method
|
260
|
+
def wait_until: (:certificate_validated waiter_name,
|
261
|
+
certificate_arn: ::String
|
262
|
+
) -> Client::_DescribeCertificateResponseSuccess
|
263
|
+
| (:certificate_validated waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeCertificateResponseSuccess
|
264
|
+
end
|
265
|
+
end
|
266
|
+
end
|
267
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,64 @@
|
|
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 ACM
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class InvalidArgsException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class InvalidArnException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class InvalidDomainValidationOptionsException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class InvalidParameterException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
class InvalidStateException < ::Aws::Errors::ServiceError
|
33
|
+
def message: () -> ::String
|
34
|
+
end
|
35
|
+
class InvalidTagException < ::Aws::Errors::ServiceError
|
36
|
+
def message: () -> ::String
|
37
|
+
end
|
38
|
+
class LimitExceededException < ::Aws::Errors::ServiceError
|
39
|
+
def message: () -> ::String
|
40
|
+
end
|
41
|
+
class RequestInProgressException < ::Aws::Errors::ServiceError
|
42
|
+
def message: () -> ::String
|
43
|
+
end
|
44
|
+
class ResourceInUseException < ::Aws::Errors::ServiceError
|
45
|
+
def message: () -> ::String
|
46
|
+
end
|
47
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
48
|
+
def message: () -> ::String
|
49
|
+
end
|
50
|
+
class TagPolicyException < ::Aws::Errors::ServiceError
|
51
|
+
def message: () -> ::String
|
52
|
+
end
|
53
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
54
|
+
def message: () -> ::String
|
55
|
+
end
|
56
|
+
class TooManyTagsException < ::Aws::Errors::ServiceError
|
57
|
+
def message: () -> ::String
|
58
|
+
end
|
59
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
60
|
+
def message: () -> ::String
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
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 ACM
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACM/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,346 @@
|
|
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::ACM
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AddTagsToCertificateRequest
|
17
|
+
attr_accessor certificate_arn: ::String
|
18
|
+
attr_accessor tags: ::Array[Types::Tag]
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class CertificateDetail
|
23
|
+
attr_accessor certificate_arn: ::String
|
24
|
+
attr_accessor domain_name: ::String
|
25
|
+
attr_accessor subject_alternative_names: ::Array[::String]
|
26
|
+
attr_accessor domain_validation_options: ::Array[Types::DomainValidation]
|
27
|
+
attr_accessor serial: ::String
|
28
|
+
attr_accessor subject: ::String
|
29
|
+
attr_accessor issuer: ::String
|
30
|
+
attr_accessor created_at: ::Time
|
31
|
+
attr_accessor issued_at: ::Time
|
32
|
+
attr_accessor imported_at: ::Time
|
33
|
+
attr_accessor status: ("PENDING_VALIDATION" | "ISSUED" | "INACTIVE" | "EXPIRED" | "VALIDATION_TIMED_OUT" | "REVOKED" | "FAILED")
|
34
|
+
attr_accessor revoked_at: ::Time
|
35
|
+
attr_accessor revocation_reason: ("UNSPECIFIED" | "KEY_COMPROMISE" | "CA_COMPROMISE" | "AFFILIATION_CHANGED" | "SUPERCEDED" | "CESSATION_OF_OPERATION" | "CERTIFICATE_HOLD" | "REMOVE_FROM_CRL" | "PRIVILEGE_WITHDRAWN" | "A_A_COMPROMISE")
|
36
|
+
attr_accessor not_before: ::Time
|
37
|
+
attr_accessor not_after: ::Time
|
38
|
+
attr_accessor key_algorithm: ("RSA_1024" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "EC_prime256v1" | "EC_secp384r1" | "EC_secp521r1")
|
39
|
+
attr_accessor signature_algorithm: ::String
|
40
|
+
attr_accessor in_use_by: ::Array[::String]
|
41
|
+
attr_accessor failure_reason: ("NO_AVAILABLE_CONTACTS" | "ADDITIONAL_VERIFICATION_REQUIRED" | "DOMAIN_NOT_ALLOWED" | "INVALID_PUBLIC_DOMAIN" | "DOMAIN_VALIDATION_DENIED" | "CAA_ERROR" | "PCA_LIMIT_EXCEEDED" | "PCA_INVALID_ARN" | "PCA_INVALID_STATE" | "PCA_REQUEST_FAILED" | "PCA_NAME_CONSTRAINTS_VALIDATION" | "PCA_RESOURCE_NOT_FOUND" | "PCA_INVALID_ARGS" | "PCA_INVALID_DURATION" | "PCA_ACCESS_DENIED" | "SLR_NOT_FOUND" | "OTHER")
|
42
|
+
attr_accessor type: ("IMPORTED" | "AMAZON_ISSUED" | "PRIVATE")
|
43
|
+
attr_accessor renewal_summary: Types::RenewalSummary
|
44
|
+
attr_accessor key_usages: ::Array[Types::KeyUsage]
|
45
|
+
attr_accessor extended_key_usages: ::Array[Types::ExtendedKeyUsage]
|
46
|
+
attr_accessor certificate_authority_arn: ::String
|
47
|
+
attr_accessor renewal_eligibility: ("ELIGIBLE" | "INELIGIBLE")
|
48
|
+
attr_accessor options: Types::CertificateOptions
|
49
|
+
SENSITIVE: []
|
50
|
+
end
|
51
|
+
|
52
|
+
class CertificateOptions
|
53
|
+
attr_accessor certificate_transparency_logging_preference: ("ENABLED" | "DISABLED")
|
54
|
+
SENSITIVE: []
|
55
|
+
end
|
56
|
+
|
57
|
+
class CertificateSummary
|
58
|
+
attr_accessor certificate_arn: ::String
|
59
|
+
attr_accessor domain_name: ::String
|
60
|
+
attr_accessor subject_alternative_name_summaries: ::Array[::String]
|
61
|
+
attr_accessor has_additional_subject_alternative_names: bool
|
62
|
+
attr_accessor status: ("PENDING_VALIDATION" | "ISSUED" | "INACTIVE" | "EXPIRED" | "VALIDATION_TIMED_OUT" | "REVOKED" | "FAILED")
|
63
|
+
attr_accessor type: ("IMPORTED" | "AMAZON_ISSUED" | "PRIVATE")
|
64
|
+
attr_accessor key_algorithm: ("RSA_1024" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "EC_prime256v1" | "EC_secp384r1" | "EC_secp521r1")
|
65
|
+
attr_accessor key_usages: ::Array[("DIGITAL_SIGNATURE" | "NON_REPUDIATION" | "KEY_ENCIPHERMENT" | "DATA_ENCIPHERMENT" | "KEY_AGREEMENT" | "CERTIFICATE_SIGNING" | "CRL_SIGNING" | "ENCIPHER_ONLY" | "DECIPHER_ONLY" | "ANY" | "CUSTOM")]
|
66
|
+
attr_accessor extended_key_usages: ::Array[("TLS_WEB_SERVER_AUTHENTICATION" | "TLS_WEB_CLIENT_AUTHENTICATION" | "CODE_SIGNING" | "EMAIL_PROTECTION" | "TIME_STAMPING" | "OCSP_SIGNING" | "IPSEC_END_SYSTEM" | "IPSEC_TUNNEL" | "IPSEC_USER" | "ANY" | "NONE" | "CUSTOM")]
|
67
|
+
attr_accessor in_use: bool
|
68
|
+
attr_accessor exported: bool
|
69
|
+
attr_accessor renewal_eligibility: ("ELIGIBLE" | "INELIGIBLE")
|
70
|
+
attr_accessor not_before: ::Time
|
71
|
+
attr_accessor not_after: ::Time
|
72
|
+
attr_accessor created_at: ::Time
|
73
|
+
attr_accessor issued_at: ::Time
|
74
|
+
attr_accessor imported_at: ::Time
|
75
|
+
attr_accessor revoked_at: ::Time
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class ConflictException
|
80
|
+
attr_accessor message: ::String
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class DeleteCertificateRequest
|
85
|
+
attr_accessor certificate_arn: ::String
|
86
|
+
SENSITIVE: []
|
87
|
+
end
|
88
|
+
|
89
|
+
class DescribeCertificateRequest
|
90
|
+
attr_accessor certificate_arn: ::String
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
94
|
+
class DescribeCertificateResponse
|
95
|
+
attr_accessor certificate: Types::CertificateDetail
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class DomainValidation
|
100
|
+
attr_accessor domain_name: ::String
|
101
|
+
attr_accessor validation_emails: ::Array[::String]
|
102
|
+
attr_accessor validation_domain: ::String
|
103
|
+
attr_accessor validation_status: ("PENDING_VALIDATION" | "SUCCESS" | "FAILED")
|
104
|
+
attr_accessor resource_record: Types::ResourceRecord
|
105
|
+
attr_accessor validation_method: ("EMAIL" | "DNS")
|
106
|
+
SENSITIVE: []
|
107
|
+
end
|
108
|
+
|
109
|
+
class DomainValidationOption
|
110
|
+
attr_accessor domain_name: ::String
|
111
|
+
attr_accessor validation_domain: ::String
|
112
|
+
SENSITIVE: []
|
113
|
+
end
|
114
|
+
|
115
|
+
class ExpiryEventsConfiguration
|
116
|
+
attr_accessor days_before_expiry: ::Integer
|
117
|
+
SENSITIVE: []
|
118
|
+
end
|
119
|
+
|
120
|
+
class ExportCertificateRequest
|
121
|
+
attr_accessor certificate_arn: ::String
|
122
|
+
attr_accessor passphrase: ::String
|
123
|
+
SENSITIVE: [:passphrase]
|
124
|
+
end
|
125
|
+
|
126
|
+
class ExportCertificateResponse
|
127
|
+
attr_accessor certificate: ::String
|
128
|
+
attr_accessor certificate_chain: ::String
|
129
|
+
attr_accessor private_key: ::String
|
130
|
+
SENSITIVE: [:private_key]
|
131
|
+
end
|
132
|
+
|
133
|
+
class ExtendedKeyUsage
|
134
|
+
attr_accessor name: ("TLS_WEB_SERVER_AUTHENTICATION" | "TLS_WEB_CLIENT_AUTHENTICATION" | "CODE_SIGNING" | "EMAIL_PROTECTION" | "TIME_STAMPING" | "OCSP_SIGNING" | "IPSEC_END_SYSTEM" | "IPSEC_TUNNEL" | "IPSEC_USER" | "ANY" | "NONE" | "CUSTOM")
|
135
|
+
attr_accessor oid: ::String
|
136
|
+
SENSITIVE: []
|
137
|
+
end
|
138
|
+
|
139
|
+
class Filters
|
140
|
+
attr_accessor extended_key_usage: ::Array[("TLS_WEB_SERVER_AUTHENTICATION" | "TLS_WEB_CLIENT_AUTHENTICATION" | "CODE_SIGNING" | "EMAIL_PROTECTION" | "TIME_STAMPING" | "OCSP_SIGNING" | "IPSEC_END_SYSTEM" | "IPSEC_TUNNEL" | "IPSEC_USER" | "ANY" | "NONE" | "CUSTOM")]
|
141
|
+
attr_accessor key_usage: ::Array[("DIGITAL_SIGNATURE" | "NON_REPUDIATION" | "KEY_ENCIPHERMENT" | "DATA_ENCIPHERMENT" | "KEY_AGREEMENT" | "CERTIFICATE_SIGNING" | "CRL_SIGNING" | "ENCIPHER_ONLY" | "DECIPHER_ONLY" | "ANY" | "CUSTOM")]
|
142
|
+
attr_accessor key_types: ::Array[("RSA_1024" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "EC_prime256v1" | "EC_secp384r1" | "EC_secp521r1")]
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class GetAccountConfigurationResponse
|
147
|
+
attr_accessor expiry_events: Types::ExpiryEventsConfiguration
|
148
|
+
SENSITIVE: []
|
149
|
+
end
|
150
|
+
|
151
|
+
class GetCertificateRequest
|
152
|
+
attr_accessor certificate_arn: ::String
|
153
|
+
SENSITIVE: []
|
154
|
+
end
|
155
|
+
|
156
|
+
class GetCertificateResponse
|
157
|
+
attr_accessor certificate: ::String
|
158
|
+
attr_accessor certificate_chain: ::String
|
159
|
+
SENSITIVE: []
|
160
|
+
end
|
161
|
+
|
162
|
+
class ImportCertificateRequest
|
163
|
+
attr_accessor certificate_arn: ::String
|
164
|
+
attr_accessor certificate: ::String
|
165
|
+
attr_accessor private_key: ::String
|
166
|
+
attr_accessor certificate_chain: ::String
|
167
|
+
attr_accessor tags: ::Array[Types::Tag]
|
168
|
+
SENSITIVE: [:private_key]
|
169
|
+
end
|
170
|
+
|
171
|
+
class ImportCertificateResponse
|
172
|
+
attr_accessor certificate_arn: ::String
|
173
|
+
SENSITIVE: []
|
174
|
+
end
|
175
|
+
|
176
|
+
class InvalidArgsException
|
177
|
+
attr_accessor message: ::String
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
181
|
+
class InvalidArnException
|
182
|
+
attr_accessor message: ::String
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class InvalidDomainValidationOptionsException
|
187
|
+
attr_accessor message: ::String
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class InvalidParameterException
|
192
|
+
attr_accessor message: ::String
|
193
|
+
SENSITIVE: []
|
194
|
+
end
|
195
|
+
|
196
|
+
class InvalidStateException
|
197
|
+
attr_accessor message: ::String
|
198
|
+
SENSITIVE: []
|
199
|
+
end
|
200
|
+
|
201
|
+
class InvalidTagException
|
202
|
+
attr_accessor message: ::String
|
203
|
+
SENSITIVE: []
|
204
|
+
end
|
205
|
+
|
206
|
+
class KeyUsage
|
207
|
+
attr_accessor name: ("DIGITAL_SIGNATURE" | "NON_REPUDIATION" | "KEY_ENCIPHERMENT" | "DATA_ENCIPHERMENT" | "KEY_AGREEMENT" | "CERTIFICATE_SIGNING" | "CRL_SIGNING" | "ENCIPHER_ONLY" | "DECIPHER_ONLY" | "ANY" | "CUSTOM")
|
208
|
+
SENSITIVE: []
|
209
|
+
end
|
210
|
+
|
211
|
+
class LimitExceededException
|
212
|
+
attr_accessor message: ::String
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class ListCertificatesRequest
|
217
|
+
attr_accessor certificate_statuses: ::Array[("PENDING_VALIDATION" | "ISSUED" | "INACTIVE" | "EXPIRED" | "VALIDATION_TIMED_OUT" | "REVOKED" | "FAILED")]
|
218
|
+
attr_accessor includes: Types::Filters
|
219
|
+
attr_accessor next_token: ::String
|
220
|
+
attr_accessor max_items: ::Integer
|
221
|
+
attr_accessor sort_by: ("CREATED_AT")
|
222
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class ListCertificatesResponse
|
227
|
+
attr_accessor next_token: ::String
|
228
|
+
attr_accessor certificate_summary_list: ::Array[Types::CertificateSummary]
|
229
|
+
SENSITIVE: []
|
230
|
+
end
|
231
|
+
|
232
|
+
class ListTagsForCertificateRequest
|
233
|
+
attr_accessor certificate_arn: ::String
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class ListTagsForCertificateResponse
|
238
|
+
attr_accessor tags: ::Array[Types::Tag]
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class PutAccountConfigurationRequest
|
243
|
+
attr_accessor expiry_events: Types::ExpiryEventsConfiguration
|
244
|
+
attr_accessor idempotency_token: ::String
|
245
|
+
SENSITIVE: []
|
246
|
+
end
|
247
|
+
|
248
|
+
class RemoveTagsFromCertificateRequest
|
249
|
+
attr_accessor certificate_arn: ::String
|
250
|
+
attr_accessor tags: ::Array[Types::Tag]
|
251
|
+
SENSITIVE: []
|
252
|
+
end
|
253
|
+
|
254
|
+
class RenewCertificateRequest
|
255
|
+
attr_accessor certificate_arn: ::String
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
259
|
+
class RenewalSummary
|
260
|
+
attr_accessor renewal_status: ("PENDING_AUTO_RENEWAL" | "PENDING_VALIDATION" | "SUCCESS" | "FAILED")
|
261
|
+
attr_accessor domain_validation_options: ::Array[Types::DomainValidation]
|
262
|
+
attr_accessor renewal_status_reason: ("NO_AVAILABLE_CONTACTS" | "ADDITIONAL_VERIFICATION_REQUIRED" | "DOMAIN_NOT_ALLOWED" | "INVALID_PUBLIC_DOMAIN" | "DOMAIN_VALIDATION_DENIED" | "CAA_ERROR" | "PCA_LIMIT_EXCEEDED" | "PCA_INVALID_ARN" | "PCA_INVALID_STATE" | "PCA_REQUEST_FAILED" | "PCA_NAME_CONSTRAINTS_VALIDATION" | "PCA_RESOURCE_NOT_FOUND" | "PCA_INVALID_ARGS" | "PCA_INVALID_DURATION" | "PCA_ACCESS_DENIED" | "SLR_NOT_FOUND" | "OTHER")
|
263
|
+
attr_accessor updated_at: ::Time
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
267
|
+
class RequestCertificateRequest
|
268
|
+
attr_accessor domain_name: ::String
|
269
|
+
attr_accessor validation_method: ("EMAIL" | "DNS")
|
270
|
+
attr_accessor subject_alternative_names: ::Array[::String]
|
271
|
+
attr_accessor idempotency_token: ::String
|
272
|
+
attr_accessor domain_validation_options: ::Array[Types::DomainValidationOption]
|
273
|
+
attr_accessor options: Types::CertificateOptions
|
274
|
+
attr_accessor certificate_authority_arn: ::String
|
275
|
+
attr_accessor tags: ::Array[Types::Tag]
|
276
|
+
attr_accessor key_algorithm: ("RSA_1024" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "EC_prime256v1" | "EC_secp384r1" | "EC_secp521r1")
|
277
|
+
SENSITIVE: []
|
278
|
+
end
|
279
|
+
|
280
|
+
class RequestCertificateResponse
|
281
|
+
attr_accessor certificate_arn: ::String
|
282
|
+
SENSITIVE: []
|
283
|
+
end
|
284
|
+
|
285
|
+
class RequestInProgressException
|
286
|
+
attr_accessor message: ::String
|
287
|
+
SENSITIVE: []
|
288
|
+
end
|
289
|
+
|
290
|
+
class ResendValidationEmailRequest
|
291
|
+
attr_accessor certificate_arn: ::String
|
292
|
+
attr_accessor domain: ::String
|
293
|
+
attr_accessor validation_domain: ::String
|
294
|
+
SENSITIVE: []
|
295
|
+
end
|
296
|
+
|
297
|
+
class ResourceInUseException
|
298
|
+
attr_accessor message: ::String
|
299
|
+
SENSITIVE: []
|
300
|
+
end
|
301
|
+
|
302
|
+
class ResourceNotFoundException
|
303
|
+
attr_accessor message: ::String
|
304
|
+
SENSITIVE: []
|
305
|
+
end
|
306
|
+
|
307
|
+
class ResourceRecord
|
308
|
+
attr_accessor name: ::String
|
309
|
+
attr_accessor type: ("CNAME")
|
310
|
+
attr_accessor value: ::String
|
311
|
+
SENSITIVE: []
|
312
|
+
end
|
313
|
+
|
314
|
+
class Tag
|
315
|
+
attr_accessor key: ::String
|
316
|
+
attr_accessor value: ::String
|
317
|
+
SENSITIVE: []
|
318
|
+
end
|
319
|
+
|
320
|
+
class TagPolicyException
|
321
|
+
attr_accessor message: ::String
|
322
|
+
SENSITIVE: []
|
323
|
+
end
|
324
|
+
|
325
|
+
class ThrottlingException
|
326
|
+
attr_accessor message: ::String
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class TooManyTagsException
|
331
|
+
attr_accessor message: ::String
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class UpdateCertificateOptionsRequest
|
336
|
+
attr_accessor certificate_arn: ::String
|
337
|
+
attr_accessor options: Types::CertificateOptions
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class ValidationException
|
342
|
+
attr_accessor message: ::String
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
end
|
346
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,23 @@
|
|
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 ACM
|
10
|
+
module Waiters
|
11
|
+
|
12
|
+
class CertificateValidated
|
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
|
+
certificate_arn: ::String
|
18
|
+
) -> Client::_DescribeCertificateResponseSuccess
|
19
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeCertificateResponseSuccess
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-acm
|
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-01-26 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.191.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.191.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-acm/resource.rb
|
68
68
|
- lib/aws-sdk-acm/types.rb
|
69
69
|
- lib/aws-sdk-acm/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-acm
|
75
80
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-acm/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 - ACM
|
95
100
|
test_files: []
|