aws-sdk-support 1.53.0 → 1.55.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-support/client.rb +1 -1
- data/lib/aws-sdk-support/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-support.rb +1 -1
- data/sig/client.rbs +279 -0
- data/sig/errors.rbs +46 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +409 -0
- data/sig/waiters.rbs +13 -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: e38864df776c939dd3560aae203173ed4f315d66b5d2a16ad31fd7137b7f3cc2
|
4
|
+
data.tar.gz: df8ddd776c54035f41adc13a730fa11cc7111700badd46dff785dfc65d03eb33
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9428510dbf95ef41a28c3e069e6ee5727097c55f351c5ced6c0468ea7a3e8e174c5151a14463093928ba782c27b06d73bcf4727b5cb83c76b4c93f79ed6a4d53
|
7
|
+
data.tar.gz: 440705160b74a7d6de9d5f7ca88c2349879ce1d9eb29eb4957753db2161c911bb65c8682efcd69df39fc4e63c5d342ceba06982419aa48eb4a20c2e6bd3cbf73
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.55.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.54.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.53.0 (2023-11-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.55.0
|
@@ -1666,7 +1666,7 @@ module Aws::Support
|
|
1666
1666
|
params: params,
|
1667
1667
|
config: config)
|
1668
1668
|
context[:gem_name] = 'aws-sdk-support'
|
1669
|
-
context[:gem_version] = '1.
|
1669
|
+
context[:gem_version] = '1.55.0'
|
1670
1670
|
Seahorse::Client::Request.new(handlers, context)
|
1671
1671
|
end
|
1672
1672
|
|
@@ -14,6 +14,7 @@ module Aws::Support
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::Support::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::Support
|
|
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-support.rb
CHANGED
data/sig/client.rbs
ADDED
@@ -0,0 +1,279 @@
|
|
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 Support
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/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 _AddAttachmentsToSetResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddAttachmentsToSetResponse]
|
78
|
+
def attachment_set_id: () -> ::String
|
79
|
+
def expiry_time: () -> ::String
|
80
|
+
end
|
81
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#add_attachments_to_set-instance_method
|
82
|
+
def add_attachments_to_set: (
|
83
|
+
?attachment_set_id: ::String,
|
84
|
+
attachments: Array[
|
85
|
+
{
|
86
|
+
file_name: ::String?,
|
87
|
+
data: ::String?
|
88
|
+
},
|
89
|
+
]
|
90
|
+
) -> _AddAttachmentsToSetResponseSuccess
|
91
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddAttachmentsToSetResponseSuccess
|
92
|
+
|
93
|
+
interface _AddCommunicationToCaseResponseSuccess
|
94
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddCommunicationToCaseResponse]
|
95
|
+
def result: () -> bool
|
96
|
+
end
|
97
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#add_communication_to_case-instance_method
|
98
|
+
def add_communication_to_case: (
|
99
|
+
?case_id: ::String,
|
100
|
+
communication_body: ::String,
|
101
|
+
?cc_email_addresses: Array[::String],
|
102
|
+
?attachment_set_id: ::String
|
103
|
+
) -> _AddCommunicationToCaseResponseSuccess
|
104
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddCommunicationToCaseResponseSuccess
|
105
|
+
|
106
|
+
interface _CreateCaseResponseSuccess
|
107
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCaseResponse]
|
108
|
+
def case_id: () -> ::String
|
109
|
+
end
|
110
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#create_case-instance_method
|
111
|
+
def create_case: (
|
112
|
+
subject: ::String,
|
113
|
+
?service_code: ::String,
|
114
|
+
?severity_code: ::String,
|
115
|
+
?category_code: ::String,
|
116
|
+
communication_body: ::String,
|
117
|
+
?cc_email_addresses: Array[::String],
|
118
|
+
?language: ::String,
|
119
|
+
?issue_type: ::String,
|
120
|
+
?attachment_set_id: ::String
|
121
|
+
) -> _CreateCaseResponseSuccess
|
122
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCaseResponseSuccess
|
123
|
+
|
124
|
+
interface _DescribeAttachmentResponseSuccess
|
125
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAttachmentResponse]
|
126
|
+
def attachment: () -> Types::Attachment
|
127
|
+
end
|
128
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#describe_attachment-instance_method
|
129
|
+
def describe_attachment: (
|
130
|
+
attachment_id: ::String
|
131
|
+
) -> _DescribeAttachmentResponseSuccess
|
132
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAttachmentResponseSuccess
|
133
|
+
|
134
|
+
interface _DescribeCasesResponseSuccess
|
135
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCasesResponse]
|
136
|
+
def cases: () -> ::Array[Types::CaseDetails]
|
137
|
+
def next_token: () -> ::String
|
138
|
+
end
|
139
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#describe_cases-instance_method
|
140
|
+
def describe_cases: (
|
141
|
+
?case_id_list: Array[::String],
|
142
|
+
?display_id: ::String,
|
143
|
+
?after_time: ::String,
|
144
|
+
?before_time: ::String,
|
145
|
+
?include_resolved_cases: bool,
|
146
|
+
?next_token: ::String,
|
147
|
+
?max_results: ::Integer,
|
148
|
+
?language: ::String,
|
149
|
+
?include_communications: bool
|
150
|
+
) -> _DescribeCasesResponseSuccess
|
151
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCasesResponseSuccess
|
152
|
+
|
153
|
+
interface _DescribeCommunicationsResponseSuccess
|
154
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCommunicationsResponse]
|
155
|
+
def communications: () -> ::Array[Types::Communication]
|
156
|
+
def next_token: () -> ::String
|
157
|
+
end
|
158
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#describe_communications-instance_method
|
159
|
+
def describe_communications: (
|
160
|
+
case_id: ::String,
|
161
|
+
?before_time: ::String,
|
162
|
+
?after_time: ::String,
|
163
|
+
?next_token: ::String,
|
164
|
+
?max_results: ::Integer
|
165
|
+
) -> _DescribeCommunicationsResponseSuccess
|
166
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCommunicationsResponseSuccess
|
167
|
+
|
168
|
+
interface _DescribeCreateCaseOptionsResponseSuccess
|
169
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCreateCaseOptionsResponse]
|
170
|
+
def language_availability: () -> ::String
|
171
|
+
def communication_types: () -> ::Array[Types::CommunicationTypeOptions]
|
172
|
+
end
|
173
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#describe_create_case_options-instance_method
|
174
|
+
def describe_create_case_options: (
|
175
|
+
issue_type: ::String,
|
176
|
+
service_code: ::String,
|
177
|
+
language: ::String,
|
178
|
+
category_code: ::String
|
179
|
+
) -> _DescribeCreateCaseOptionsResponseSuccess
|
180
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCreateCaseOptionsResponseSuccess
|
181
|
+
|
182
|
+
interface _DescribeServicesResponseSuccess
|
183
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeServicesResponse]
|
184
|
+
def services: () -> ::Array[Types::Service]
|
185
|
+
end
|
186
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#describe_services-instance_method
|
187
|
+
def describe_services: (
|
188
|
+
?service_code_list: Array[::String],
|
189
|
+
?language: ::String
|
190
|
+
) -> _DescribeServicesResponseSuccess
|
191
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeServicesResponseSuccess
|
192
|
+
|
193
|
+
interface _DescribeSeverityLevelsResponseSuccess
|
194
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSeverityLevelsResponse]
|
195
|
+
def severity_levels: () -> ::Array[Types::SeverityLevel]
|
196
|
+
end
|
197
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#describe_severity_levels-instance_method
|
198
|
+
def describe_severity_levels: (
|
199
|
+
?language: ::String
|
200
|
+
) -> _DescribeSeverityLevelsResponseSuccess
|
201
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSeverityLevelsResponseSuccess
|
202
|
+
|
203
|
+
interface _DescribeSupportedLanguagesResponseSuccess
|
204
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSupportedLanguagesResponse]
|
205
|
+
def supported_languages: () -> ::Array[Types::SupportedLanguage]
|
206
|
+
end
|
207
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#describe_supported_languages-instance_method
|
208
|
+
def describe_supported_languages: (
|
209
|
+
issue_type: ::String,
|
210
|
+
service_code: ::String,
|
211
|
+
category_code: ::String
|
212
|
+
) -> _DescribeSupportedLanguagesResponseSuccess
|
213
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSupportedLanguagesResponseSuccess
|
214
|
+
|
215
|
+
interface _DescribeTrustedAdvisorCheckRefreshStatusesResponseSuccess
|
216
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTrustedAdvisorCheckRefreshStatusesResponse]
|
217
|
+
def statuses: () -> ::Array[Types::TrustedAdvisorCheckRefreshStatus]
|
218
|
+
end
|
219
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#describe_trusted_advisor_check_refresh_statuses-instance_method
|
220
|
+
def describe_trusted_advisor_check_refresh_statuses: (
|
221
|
+
check_ids: Array[::String]
|
222
|
+
) -> _DescribeTrustedAdvisorCheckRefreshStatusesResponseSuccess
|
223
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTrustedAdvisorCheckRefreshStatusesResponseSuccess
|
224
|
+
|
225
|
+
interface _DescribeTrustedAdvisorCheckResultResponseSuccess
|
226
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTrustedAdvisorCheckResultResponse]
|
227
|
+
def result: () -> Types::TrustedAdvisorCheckResult
|
228
|
+
end
|
229
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#describe_trusted_advisor_check_result-instance_method
|
230
|
+
def describe_trusted_advisor_check_result: (
|
231
|
+
check_id: ::String,
|
232
|
+
?language: ::String
|
233
|
+
) -> _DescribeTrustedAdvisorCheckResultResponseSuccess
|
234
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTrustedAdvisorCheckResultResponseSuccess
|
235
|
+
|
236
|
+
interface _DescribeTrustedAdvisorCheckSummariesResponseSuccess
|
237
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTrustedAdvisorCheckSummariesResponse]
|
238
|
+
def summaries: () -> ::Array[Types::TrustedAdvisorCheckSummary]
|
239
|
+
end
|
240
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#describe_trusted_advisor_check_summaries-instance_method
|
241
|
+
def describe_trusted_advisor_check_summaries: (
|
242
|
+
check_ids: Array[::String]
|
243
|
+
) -> _DescribeTrustedAdvisorCheckSummariesResponseSuccess
|
244
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTrustedAdvisorCheckSummariesResponseSuccess
|
245
|
+
|
246
|
+
interface _DescribeTrustedAdvisorChecksResponseSuccess
|
247
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTrustedAdvisorChecksResponse]
|
248
|
+
def checks: () -> ::Array[Types::TrustedAdvisorCheckDescription]
|
249
|
+
end
|
250
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#describe_trusted_advisor_checks-instance_method
|
251
|
+
def describe_trusted_advisor_checks: (
|
252
|
+
language: ::String
|
253
|
+
) -> _DescribeTrustedAdvisorChecksResponseSuccess
|
254
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTrustedAdvisorChecksResponseSuccess
|
255
|
+
|
256
|
+
interface _RefreshTrustedAdvisorCheckResponseSuccess
|
257
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RefreshTrustedAdvisorCheckResponse]
|
258
|
+
def status: () -> Types::TrustedAdvisorCheckRefreshStatus
|
259
|
+
end
|
260
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#refresh_trusted_advisor_check-instance_method
|
261
|
+
def refresh_trusted_advisor_check: (
|
262
|
+
check_id: ::String
|
263
|
+
) -> _RefreshTrustedAdvisorCheckResponseSuccess
|
264
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RefreshTrustedAdvisorCheckResponseSuccess
|
265
|
+
|
266
|
+
interface _ResolveCaseResponseSuccess
|
267
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ResolveCaseResponse]
|
268
|
+
def initial_case_status: () -> ::String
|
269
|
+
def final_case_status: () -> ::String
|
270
|
+
end
|
271
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#resolve_case-instance_method
|
272
|
+
def resolve_case: (
|
273
|
+
?case_id: ::String
|
274
|
+
) -> _ResolveCaseResponseSuccess
|
275
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResolveCaseResponseSuccess
|
276
|
+
end
|
277
|
+
end
|
278
|
+
end
|
279
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,46 @@
|
|
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 Support
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AttachmentIdNotFound < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class AttachmentLimitExceeded < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class AttachmentSetExpired < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class AttachmentSetIdNotFound < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class AttachmentSetSizeLimitExceeded < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class CaseCreationLimitExceeded < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
class CaseIdNotFound < ::Aws::Errors::ServiceError
|
33
|
+
def message: () -> ::String
|
34
|
+
end
|
35
|
+
class DescribeAttachmentLimitExceeded < ::Aws::Errors::ServiceError
|
36
|
+
def message: () -> ::String
|
37
|
+
end
|
38
|
+
class InternalServerError < ::Aws::Errors::ServiceError
|
39
|
+
def message: () -> ::String
|
40
|
+
end
|
41
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
42
|
+
def message: () -> ::String
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
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 Support
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/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,409 @@
|
|
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::Support
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AddAttachmentsToSetRequest
|
12
|
+
attr_accessor attachment_set_id: ::String
|
13
|
+
attr_accessor attachments: ::Array[Types::Attachment]
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class AddAttachmentsToSetResponse
|
18
|
+
attr_accessor attachment_set_id: ::String
|
19
|
+
attr_accessor expiry_time: ::String
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class AddCommunicationToCaseRequest
|
24
|
+
attr_accessor case_id: ::String
|
25
|
+
attr_accessor communication_body: ::String
|
26
|
+
attr_accessor cc_email_addresses: ::Array[::String]
|
27
|
+
attr_accessor attachment_set_id: ::String
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class AddCommunicationToCaseResponse
|
32
|
+
attr_accessor result: bool
|
33
|
+
SENSITIVE: []
|
34
|
+
end
|
35
|
+
|
36
|
+
class Attachment
|
37
|
+
attr_accessor file_name: ::String
|
38
|
+
attr_accessor data: ::String
|
39
|
+
SENSITIVE: []
|
40
|
+
end
|
41
|
+
|
42
|
+
class AttachmentDetails
|
43
|
+
attr_accessor attachment_id: ::String
|
44
|
+
attr_accessor file_name: ::String
|
45
|
+
SENSITIVE: []
|
46
|
+
end
|
47
|
+
|
48
|
+
class AttachmentIdNotFound
|
49
|
+
attr_accessor message: ::String
|
50
|
+
SENSITIVE: []
|
51
|
+
end
|
52
|
+
|
53
|
+
class AttachmentLimitExceeded
|
54
|
+
attr_accessor message: ::String
|
55
|
+
SENSITIVE: []
|
56
|
+
end
|
57
|
+
|
58
|
+
class AttachmentSetExpired
|
59
|
+
attr_accessor message: ::String
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class AttachmentSetIdNotFound
|
64
|
+
attr_accessor message: ::String
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
68
|
+
class AttachmentSetSizeLimitExceeded
|
69
|
+
attr_accessor message: ::String
|
70
|
+
SENSITIVE: []
|
71
|
+
end
|
72
|
+
|
73
|
+
class CaseCreationLimitExceeded
|
74
|
+
attr_accessor message: ::String
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class CaseDetails
|
79
|
+
attr_accessor case_id: ::String
|
80
|
+
attr_accessor display_id: ::String
|
81
|
+
attr_accessor subject: ::String
|
82
|
+
attr_accessor status: ::String
|
83
|
+
attr_accessor service_code: ::String
|
84
|
+
attr_accessor category_code: ::String
|
85
|
+
attr_accessor severity_code: ::String
|
86
|
+
attr_accessor submitted_by: ::String
|
87
|
+
attr_accessor time_created: ::String
|
88
|
+
attr_accessor recent_communications: Types::RecentCaseCommunications
|
89
|
+
attr_accessor cc_email_addresses: ::Array[::String]
|
90
|
+
attr_accessor language: ::String
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
94
|
+
class CaseIdNotFound
|
95
|
+
attr_accessor message: ::String
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class Category
|
100
|
+
attr_accessor code: ::String
|
101
|
+
attr_accessor name: ::String
|
102
|
+
SENSITIVE: []
|
103
|
+
end
|
104
|
+
|
105
|
+
class Communication
|
106
|
+
attr_accessor case_id: ::String
|
107
|
+
attr_accessor body: ::String
|
108
|
+
attr_accessor submitted_by: ::String
|
109
|
+
attr_accessor time_created: ::String
|
110
|
+
attr_accessor attachment_set: ::Array[Types::AttachmentDetails]
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class CommunicationTypeOptions
|
115
|
+
attr_accessor type: ::String
|
116
|
+
attr_accessor supported_hours: ::Array[Types::SupportedHour]
|
117
|
+
attr_accessor dates_without_support: ::Array[Types::DateInterval]
|
118
|
+
SENSITIVE: []
|
119
|
+
end
|
120
|
+
|
121
|
+
class CreateCaseRequest
|
122
|
+
attr_accessor subject: ::String
|
123
|
+
attr_accessor service_code: ::String
|
124
|
+
attr_accessor severity_code: ::String
|
125
|
+
attr_accessor category_code: ::String
|
126
|
+
attr_accessor communication_body: ::String
|
127
|
+
attr_accessor cc_email_addresses: ::Array[::String]
|
128
|
+
attr_accessor language: ::String
|
129
|
+
attr_accessor issue_type: ::String
|
130
|
+
attr_accessor attachment_set_id: ::String
|
131
|
+
SENSITIVE: []
|
132
|
+
end
|
133
|
+
|
134
|
+
class CreateCaseResponse
|
135
|
+
attr_accessor case_id: ::String
|
136
|
+
SENSITIVE: []
|
137
|
+
end
|
138
|
+
|
139
|
+
class DateInterval
|
140
|
+
attr_accessor start_date_time: ::String
|
141
|
+
attr_accessor end_date_time: ::String
|
142
|
+
SENSITIVE: []
|
143
|
+
end
|
144
|
+
|
145
|
+
class DescribeAttachmentLimitExceeded
|
146
|
+
attr_accessor message: ::String
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class DescribeAttachmentRequest
|
151
|
+
attr_accessor attachment_id: ::String
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class DescribeAttachmentResponse
|
156
|
+
attr_accessor attachment: Types::Attachment
|
157
|
+
SENSITIVE: []
|
158
|
+
end
|
159
|
+
|
160
|
+
class DescribeCasesRequest
|
161
|
+
attr_accessor case_id_list: ::Array[::String]
|
162
|
+
attr_accessor display_id: ::String
|
163
|
+
attr_accessor after_time: ::String
|
164
|
+
attr_accessor before_time: ::String
|
165
|
+
attr_accessor include_resolved_cases: bool
|
166
|
+
attr_accessor next_token: ::String
|
167
|
+
attr_accessor max_results: ::Integer
|
168
|
+
attr_accessor language: ::String
|
169
|
+
attr_accessor include_communications: bool
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class DescribeCasesResponse
|
174
|
+
attr_accessor cases: ::Array[Types::CaseDetails]
|
175
|
+
attr_accessor next_token: ::String
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class DescribeCommunicationsRequest
|
180
|
+
attr_accessor case_id: ::String
|
181
|
+
attr_accessor before_time: ::String
|
182
|
+
attr_accessor after_time: ::String
|
183
|
+
attr_accessor next_token: ::String
|
184
|
+
attr_accessor max_results: ::Integer
|
185
|
+
SENSITIVE: []
|
186
|
+
end
|
187
|
+
|
188
|
+
class DescribeCommunicationsResponse
|
189
|
+
attr_accessor communications: ::Array[Types::Communication]
|
190
|
+
attr_accessor next_token: ::String
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class DescribeCreateCaseOptionsRequest
|
195
|
+
attr_accessor issue_type: ::String
|
196
|
+
attr_accessor service_code: ::String
|
197
|
+
attr_accessor language: ::String
|
198
|
+
attr_accessor category_code: ::String
|
199
|
+
SENSITIVE: []
|
200
|
+
end
|
201
|
+
|
202
|
+
class DescribeCreateCaseOptionsResponse
|
203
|
+
attr_accessor language_availability: ::String
|
204
|
+
attr_accessor communication_types: ::Array[Types::CommunicationTypeOptions]
|
205
|
+
SENSITIVE: []
|
206
|
+
end
|
207
|
+
|
208
|
+
class DescribeServicesRequest
|
209
|
+
attr_accessor service_code_list: ::Array[::String]
|
210
|
+
attr_accessor language: ::String
|
211
|
+
SENSITIVE: []
|
212
|
+
end
|
213
|
+
|
214
|
+
class DescribeServicesResponse
|
215
|
+
attr_accessor services: ::Array[Types::Service]
|
216
|
+
SENSITIVE: []
|
217
|
+
end
|
218
|
+
|
219
|
+
class DescribeSeverityLevelsRequest
|
220
|
+
attr_accessor language: ::String
|
221
|
+
SENSITIVE: []
|
222
|
+
end
|
223
|
+
|
224
|
+
class DescribeSeverityLevelsResponse
|
225
|
+
attr_accessor severity_levels: ::Array[Types::SeverityLevel]
|
226
|
+
SENSITIVE: []
|
227
|
+
end
|
228
|
+
|
229
|
+
class DescribeSupportedLanguagesRequest
|
230
|
+
attr_accessor issue_type: ::String
|
231
|
+
attr_accessor service_code: ::String
|
232
|
+
attr_accessor category_code: ::String
|
233
|
+
SENSITIVE: []
|
234
|
+
end
|
235
|
+
|
236
|
+
class DescribeSupportedLanguagesResponse
|
237
|
+
attr_accessor supported_languages: ::Array[Types::SupportedLanguage]
|
238
|
+
SENSITIVE: []
|
239
|
+
end
|
240
|
+
|
241
|
+
class DescribeTrustedAdvisorCheckRefreshStatusesRequest
|
242
|
+
attr_accessor check_ids: ::Array[::String]
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class DescribeTrustedAdvisorCheckRefreshStatusesResponse
|
247
|
+
attr_accessor statuses: ::Array[Types::TrustedAdvisorCheckRefreshStatus]
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class DescribeTrustedAdvisorCheckResultRequest
|
252
|
+
attr_accessor check_id: ::String
|
253
|
+
attr_accessor language: ::String
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class DescribeTrustedAdvisorCheckResultResponse
|
258
|
+
attr_accessor result: Types::TrustedAdvisorCheckResult
|
259
|
+
SENSITIVE: []
|
260
|
+
end
|
261
|
+
|
262
|
+
class DescribeTrustedAdvisorCheckSummariesRequest
|
263
|
+
attr_accessor check_ids: ::Array[::String]
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
267
|
+
class DescribeTrustedAdvisorCheckSummariesResponse
|
268
|
+
attr_accessor summaries: ::Array[Types::TrustedAdvisorCheckSummary]
|
269
|
+
SENSITIVE: []
|
270
|
+
end
|
271
|
+
|
272
|
+
class DescribeTrustedAdvisorChecksRequest
|
273
|
+
attr_accessor language: ::String
|
274
|
+
SENSITIVE: []
|
275
|
+
end
|
276
|
+
|
277
|
+
class DescribeTrustedAdvisorChecksResponse
|
278
|
+
attr_accessor checks: ::Array[Types::TrustedAdvisorCheckDescription]
|
279
|
+
SENSITIVE: []
|
280
|
+
end
|
281
|
+
|
282
|
+
class InternalServerError
|
283
|
+
attr_accessor message: ::String
|
284
|
+
SENSITIVE: []
|
285
|
+
end
|
286
|
+
|
287
|
+
class RecentCaseCommunications
|
288
|
+
attr_accessor communications: ::Array[Types::Communication]
|
289
|
+
attr_accessor next_token: ::String
|
290
|
+
SENSITIVE: []
|
291
|
+
end
|
292
|
+
|
293
|
+
class RefreshTrustedAdvisorCheckRequest
|
294
|
+
attr_accessor check_id: ::String
|
295
|
+
SENSITIVE: []
|
296
|
+
end
|
297
|
+
|
298
|
+
class RefreshTrustedAdvisorCheckResponse
|
299
|
+
attr_accessor status: Types::TrustedAdvisorCheckRefreshStatus
|
300
|
+
SENSITIVE: []
|
301
|
+
end
|
302
|
+
|
303
|
+
class ResolveCaseRequest
|
304
|
+
attr_accessor case_id: ::String
|
305
|
+
SENSITIVE: []
|
306
|
+
end
|
307
|
+
|
308
|
+
class ResolveCaseResponse
|
309
|
+
attr_accessor initial_case_status: ::String
|
310
|
+
attr_accessor final_case_status: ::String
|
311
|
+
SENSITIVE: []
|
312
|
+
end
|
313
|
+
|
314
|
+
class Service
|
315
|
+
attr_accessor code: ::String
|
316
|
+
attr_accessor name: ::String
|
317
|
+
attr_accessor categories: ::Array[Types::Category]
|
318
|
+
SENSITIVE: []
|
319
|
+
end
|
320
|
+
|
321
|
+
class SeverityLevel
|
322
|
+
attr_accessor code: ::String
|
323
|
+
attr_accessor name: ::String
|
324
|
+
SENSITIVE: []
|
325
|
+
end
|
326
|
+
|
327
|
+
class SupportedHour
|
328
|
+
attr_accessor start_time: ::String
|
329
|
+
attr_accessor end_time: ::String
|
330
|
+
SENSITIVE: []
|
331
|
+
end
|
332
|
+
|
333
|
+
class SupportedLanguage
|
334
|
+
attr_accessor code: ::String
|
335
|
+
attr_accessor language: ::String
|
336
|
+
attr_accessor display: ::String
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
340
|
+
class ThrottlingException
|
341
|
+
attr_accessor message: ::String
|
342
|
+
SENSITIVE: []
|
343
|
+
end
|
344
|
+
|
345
|
+
class TrustedAdvisorCategorySpecificSummary
|
346
|
+
attr_accessor cost_optimizing: Types::TrustedAdvisorCostOptimizingSummary
|
347
|
+
SENSITIVE: []
|
348
|
+
end
|
349
|
+
|
350
|
+
class TrustedAdvisorCheckDescription
|
351
|
+
attr_accessor id: ::String
|
352
|
+
attr_accessor name: ::String
|
353
|
+
attr_accessor description: ::String
|
354
|
+
attr_accessor category: ::String
|
355
|
+
attr_accessor metadata: ::Array[::String]
|
356
|
+
SENSITIVE: []
|
357
|
+
end
|
358
|
+
|
359
|
+
class TrustedAdvisorCheckRefreshStatus
|
360
|
+
attr_accessor check_id: ::String
|
361
|
+
attr_accessor status: ::String
|
362
|
+
attr_accessor millis_until_next_refreshable: ::Integer
|
363
|
+
SENSITIVE: []
|
364
|
+
end
|
365
|
+
|
366
|
+
class TrustedAdvisorCheckResult
|
367
|
+
attr_accessor check_id: ::String
|
368
|
+
attr_accessor timestamp: ::String
|
369
|
+
attr_accessor status: ::String
|
370
|
+
attr_accessor resources_summary: Types::TrustedAdvisorResourcesSummary
|
371
|
+
attr_accessor category_specific_summary: Types::TrustedAdvisorCategorySpecificSummary
|
372
|
+
attr_accessor flagged_resources: ::Array[Types::TrustedAdvisorResourceDetail]
|
373
|
+
SENSITIVE: []
|
374
|
+
end
|
375
|
+
|
376
|
+
class TrustedAdvisorCheckSummary
|
377
|
+
attr_accessor check_id: ::String
|
378
|
+
attr_accessor timestamp: ::String
|
379
|
+
attr_accessor status: ::String
|
380
|
+
attr_accessor has_flagged_resources: bool
|
381
|
+
attr_accessor resources_summary: Types::TrustedAdvisorResourcesSummary
|
382
|
+
attr_accessor category_specific_summary: Types::TrustedAdvisorCategorySpecificSummary
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class TrustedAdvisorCostOptimizingSummary
|
387
|
+
attr_accessor estimated_monthly_savings: ::Float
|
388
|
+
attr_accessor estimated_percent_monthly_savings: ::Float
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class TrustedAdvisorResourceDetail
|
393
|
+
attr_accessor status: ::String
|
394
|
+
attr_accessor region: ::String
|
395
|
+
attr_accessor resource_id: ::String
|
396
|
+
attr_accessor is_suppressed: bool
|
397
|
+
attr_accessor metadata: ::Array[::String]
|
398
|
+
SENSITIVE: []
|
399
|
+
end
|
400
|
+
|
401
|
+
class TrustedAdvisorResourcesSummary
|
402
|
+
attr_accessor resources_processed: ::Integer
|
403
|
+
attr_accessor resources_flagged: ::Integer
|
404
|
+
attr_accessor resources_ignored: ::Integer
|
405
|
+
attr_accessor resources_suppressed: ::Integer
|
406
|
+
SENSITIVE: []
|
407
|
+
end
|
408
|
+
end
|
409
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
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 Support
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-support
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.55.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
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-support/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-support/resource.rb
|
68
68
|
- lib/aws-sdk-support/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-support
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-support/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - AWS Support
|
94
99
|
test_files: []
|