aws-sdk-fis 1.26.0 → 1.28.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/sig/client.rbs ADDED
@@ -0,0 +1,434 @@
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 FIS
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _CreateExperimentTemplateResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateExperimentTemplateResponse]
77
+ def experiment_template: () -> Types::ExperimentTemplate
78
+ end
79
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#create_experiment_template-instance_method
80
+ def create_experiment_template: (
81
+ client_token: ::String,
82
+ description: ::String,
83
+ stop_conditions: Array[
84
+ {
85
+ source: ::String,
86
+ value: ::String?
87
+ },
88
+ ],
89
+ ?targets: Hash[::String, {
90
+ resource_type: ::String,
91
+ resource_arns: Array[::String]?,
92
+ resource_tags: Hash[::String, ::String]?,
93
+ filters: Array[
94
+ {
95
+ path: ::String,
96
+ values: Array[::String]
97
+ },
98
+ ]?,
99
+ selection_mode: ::String,
100
+ parameters: Hash[::String, ::String]?
101
+ }],
102
+ actions: Hash[::String, {
103
+ action_id: ::String,
104
+ description: ::String?,
105
+ parameters: Hash[::String, ::String]?,
106
+ targets: Hash[::String, ::String]?,
107
+ start_after: Array[::String]?
108
+ }],
109
+ role_arn: ::String,
110
+ ?tags: Hash[::String, ::String],
111
+ ?log_configuration: {
112
+ cloud_watch_logs_configuration: {
113
+ log_group_arn: ::String
114
+ }?,
115
+ s3_configuration: {
116
+ bucket_name: ::String,
117
+ prefix: ::String?
118
+ }?,
119
+ log_schema_version: ::Integer
120
+ },
121
+ ?experiment_options: {
122
+ account_targeting: ("single-account" | "multi-account")?,
123
+ empty_target_resolution_mode: ("fail" | "skip")?
124
+ }
125
+ ) -> _CreateExperimentTemplateResponseSuccess
126
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateExperimentTemplateResponseSuccess
127
+
128
+ interface _CreateTargetAccountConfigurationResponseSuccess
129
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTargetAccountConfigurationResponse]
130
+ def target_account_configuration: () -> Types::TargetAccountConfiguration
131
+ end
132
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#create_target_account_configuration-instance_method
133
+ def create_target_account_configuration: (
134
+ ?client_token: ::String,
135
+ experiment_template_id: ::String,
136
+ account_id: ::String,
137
+ role_arn: ::String,
138
+ ?description: ::String
139
+ ) -> _CreateTargetAccountConfigurationResponseSuccess
140
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTargetAccountConfigurationResponseSuccess
141
+
142
+ interface _DeleteExperimentTemplateResponseSuccess
143
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteExperimentTemplateResponse]
144
+ def experiment_template: () -> Types::ExperimentTemplate
145
+ end
146
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#delete_experiment_template-instance_method
147
+ def delete_experiment_template: (
148
+ id: ::String
149
+ ) -> _DeleteExperimentTemplateResponseSuccess
150
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteExperimentTemplateResponseSuccess
151
+
152
+ interface _DeleteTargetAccountConfigurationResponseSuccess
153
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTargetAccountConfigurationResponse]
154
+ def target_account_configuration: () -> Types::TargetAccountConfiguration
155
+ end
156
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#delete_target_account_configuration-instance_method
157
+ def delete_target_account_configuration: (
158
+ experiment_template_id: ::String,
159
+ account_id: ::String
160
+ ) -> _DeleteTargetAccountConfigurationResponseSuccess
161
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTargetAccountConfigurationResponseSuccess
162
+
163
+ interface _GetActionResponseSuccess
164
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetActionResponse]
165
+ def action: () -> Types::Action
166
+ end
167
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#get_action-instance_method
168
+ def get_action: (
169
+ id: ::String
170
+ ) -> _GetActionResponseSuccess
171
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetActionResponseSuccess
172
+
173
+ interface _GetExperimentResponseSuccess
174
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetExperimentResponse]
175
+ def experiment: () -> Types::Experiment
176
+ end
177
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#get_experiment-instance_method
178
+ def get_experiment: (
179
+ id: ::String
180
+ ) -> _GetExperimentResponseSuccess
181
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetExperimentResponseSuccess
182
+
183
+ interface _GetExperimentTargetAccountConfigurationResponseSuccess
184
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetExperimentTargetAccountConfigurationResponse]
185
+ def target_account_configuration: () -> Types::ExperimentTargetAccountConfiguration
186
+ end
187
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#get_experiment_target_account_configuration-instance_method
188
+ def get_experiment_target_account_configuration: (
189
+ experiment_id: ::String,
190
+ account_id: ::String
191
+ ) -> _GetExperimentTargetAccountConfigurationResponseSuccess
192
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetExperimentTargetAccountConfigurationResponseSuccess
193
+
194
+ interface _GetExperimentTemplateResponseSuccess
195
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetExperimentTemplateResponse]
196
+ def experiment_template: () -> Types::ExperimentTemplate
197
+ end
198
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#get_experiment_template-instance_method
199
+ def get_experiment_template: (
200
+ id: ::String
201
+ ) -> _GetExperimentTemplateResponseSuccess
202
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetExperimentTemplateResponseSuccess
203
+
204
+ interface _GetTargetAccountConfigurationResponseSuccess
205
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTargetAccountConfigurationResponse]
206
+ def target_account_configuration: () -> Types::TargetAccountConfiguration
207
+ end
208
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#get_target_account_configuration-instance_method
209
+ def get_target_account_configuration: (
210
+ experiment_template_id: ::String,
211
+ account_id: ::String
212
+ ) -> _GetTargetAccountConfigurationResponseSuccess
213
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTargetAccountConfigurationResponseSuccess
214
+
215
+ interface _GetTargetResourceTypeResponseSuccess
216
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTargetResourceTypeResponse]
217
+ def target_resource_type: () -> Types::TargetResourceType
218
+ end
219
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#get_target_resource_type-instance_method
220
+ def get_target_resource_type: (
221
+ resource_type: ::String
222
+ ) -> _GetTargetResourceTypeResponseSuccess
223
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTargetResourceTypeResponseSuccess
224
+
225
+ interface _ListActionsResponseSuccess
226
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListActionsResponse]
227
+ def actions: () -> ::Array[Types::ActionSummary]
228
+ def next_token: () -> ::String
229
+ end
230
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#list_actions-instance_method
231
+ def list_actions: (
232
+ ?max_results: ::Integer,
233
+ ?next_token: ::String
234
+ ) -> _ListActionsResponseSuccess
235
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListActionsResponseSuccess
236
+
237
+ interface _ListExperimentResolvedTargetsResponseSuccess
238
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListExperimentResolvedTargetsResponse]
239
+ def resolved_targets: () -> ::Array[Types::ResolvedTarget]
240
+ def next_token: () -> ::String
241
+ end
242
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#list_experiment_resolved_targets-instance_method
243
+ def list_experiment_resolved_targets: (
244
+ experiment_id: ::String,
245
+ ?max_results: ::Integer,
246
+ ?next_token: ::String,
247
+ ?target_name: ::String
248
+ ) -> _ListExperimentResolvedTargetsResponseSuccess
249
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExperimentResolvedTargetsResponseSuccess
250
+
251
+ interface _ListExperimentTargetAccountConfigurationsResponseSuccess
252
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListExperimentTargetAccountConfigurationsResponse]
253
+ def target_account_configurations: () -> ::Array[Types::ExperimentTargetAccountConfigurationSummary]
254
+ def next_token: () -> ::String
255
+ end
256
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#list_experiment_target_account_configurations-instance_method
257
+ def list_experiment_target_account_configurations: (
258
+ experiment_id: ::String,
259
+ ?next_token: ::String
260
+ ) -> _ListExperimentTargetAccountConfigurationsResponseSuccess
261
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExperimentTargetAccountConfigurationsResponseSuccess
262
+
263
+ interface _ListExperimentTemplatesResponseSuccess
264
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListExperimentTemplatesResponse]
265
+ def experiment_templates: () -> ::Array[Types::ExperimentTemplateSummary]
266
+ def next_token: () -> ::String
267
+ end
268
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#list_experiment_templates-instance_method
269
+ def list_experiment_templates: (
270
+ ?max_results: ::Integer,
271
+ ?next_token: ::String
272
+ ) -> _ListExperimentTemplatesResponseSuccess
273
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExperimentTemplatesResponseSuccess
274
+
275
+ interface _ListExperimentsResponseSuccess
276
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListExperimentsResponse]
277
+ def experiments: () -> ::Array[Types::ExperimentSummary]
278
+ def next_token: () -> ::String
279
+ end
280
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#list_experiments-instance_method
281
+ def list_experiments: (
282
+ ?max_results: ::Integer,
283
+ ?next_token: ::String,
284
+ ?experiment_template_id: ::String
285
+ ) -> _ListExperimentsResponseSuccess
286
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExperimentsResponseSuccess
287
+
288
+ interface _ListTagsForResourceResponseSuccess
289
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
290
+ def tags: () -> ::Hash[::String, ::String]
291
+ end
292
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#list_tags_for_resource-instance_method
293
+ def list_tags_for_resource: (
294
+ resource_arn: ::String
295
+ ) -> _ListTagsForResourceResponseSuccess
296
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
297
+
298
+ interface _ListTargetAccountConfigurationsResponseSuccess
299
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTargetAccountConfigurationsResponse]
300
+ def target_account_configurations: () -> ::Array[Types::TargetAccountConfigurationSummary]
301
+ def next_token: () -> ::String
302
+ end
303
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#list_target_account_configurations-instance_method
304
+ def list_target_account_configurations: (
305
+ experiment_template_id: ::String,
306
+ ?max_results: ::Integer,
307
+ ?next_token: ::String
308
+ ) -> _ListTargetAccountConfigurationsResponseSuccess
309
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTargetAccountConfigurationsResponseSuccess
310
+
311
+ interface _ListTargetResourceTypesResponseSuccess
312
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTargetResourceTypesResponse]
313
+ def target_resource_types: () -> ::Array[Types::TargetResourceTypeSummary]
314
+ def next_token: () -> ::String
315
+ end
316
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#list_target_resource_types-instance_method
317
+ def list_target_resource_types: (
318
+ ?max_results: ::Integer,
319
+ ?next_token: ::String
320
+ ) -> _ListTargetResourceTypesResponseSuccess
321
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTargetResourceTypesResponseSuccess
322
+
323
+ interface _StartExperimentResponseSuccess
324
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartExperimentResponse]
325
+ def experiment: () -> Types::Experiment
326
+ end
327
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#start_experiment-instance_method
328
+ def start_experiment: (
329
+ client_token: ::String,
330
+ experiment_template_id: ::String,
331
+ ?experiment_options: {
332
+ actions_mode: ("skip-all" | "run-all")?
333
+ },
334
+ ?tags: Hash[::String, ::String]
335
+ ) -> _StartExperimentResponseSuccess
336
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartExperimentResponseSuccess
337
+
338
+ interface _StopExperimentResponseSuccess
339
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopExperimentResponse]
340
+ def experiment: () -> Types::Experiment
341
+ end
342
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#stop_experiment-instance_method
343
+ def stop_experiment: (
344
+ id: ::String
345
+ ) -> _StopExperimentResponseSuccess
346
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopExperimentResponseSuccess
347
+
348
+ interface _TagResourceResponseSuccess
349
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
350
+ end
351
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#tag_resource-instance_method
352
+ def tag_resource: (
353
+ resource_arn: ::String,
354
+ tags: Hash[::String, ::String]
355
+ ) -> _TagResourceResponseSuccess
356
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
357
+
358
+ interface _UntagResourceResponseSuccess
359
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
360
+ end
361
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#untag_resource-instance_method
362
+ def untag_resource: (
363
+ resource_arn: ::String,
364
+ ?tag_keys: Array[::String]
365
+ ) -> _UntagResourceResponseSuccess
366
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
367
+
368
+ interface _UpdateExperimentTemplateResponseSuccess
369
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateExperimentTemplateResponse]
370
+ def experiment_template: () -> Types::ExperimentTemplate
371
+ end
372
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#update_experiment_template-instance_method
373
+ def update_experiment_template: (
374
+ id: ::String,
375
+ ?description: ::String,
376
+ ?stop_conditions: Array[
377
+ {
378
+ source: ::String,
379
+ value: ::String?
380
+ },
381
+ ],
382
+ ?targets: Hash[::String, {
383
+ resource_type: ::String,
384
+ resource_arns: Array[::String]?,
385
+ resource_tags: Hash[::String, ::String]?,
386
+ filters: Array[
387
+ {
388
+ path: ::String,
389
+ values: Array[::String]
390
+ },
391
+ ]?,
392
+ selection_mode: ::String,
393
+ parameters: Hash[::String, ::String]?
394
+ }],
395
+ ?actions: Hash[::String, {
396
+ action_id: ::String?,
397
+ description: ::String?,
398
+ parameters: Hash[::String, ::String]?,
399
+ targets: Hash[::String, ::String]?,
400
+ start_after: Array[::String]?
401
+ }],
402
+ ?role_arn: ::String,
403
+ ?log_configuration: {
404
+ cloud_watch_logs_configuration: {
405
+ log_group_arn: ::String
406
+ }?,
407
+ s3_configuration: {
408
+ bucket_name: ::String,
409
+ prefix: ::String?
410
+ }?,
411
+ log_schema_version: ::Integer?
412
+ },
413
+ ?experiment_options: {
414
+ empty_target_resolution_mode: ("fail" | "skip")?
415
+ }
416
+ ) -> _UpdateExperimentTemplateResponseSuccess
417
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateExperimentTemplateResponseSuccess
418
+
419
+ interface _UpdateTargetAccountConfigurationResponseSuccess
420
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTargetAccountConfigurationResponse]
421
+ def target_account_configuration: () -> Types::TargetAccountConfiguration
422
+ end
423
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#update_target_account_configuration-instance_method
424
+ def update_target_account_configuration: (
425
+ experiment_template_id: ::String,
426
+ account_id: ::String,
427
+ ?role_arn: ::String,
428
+ ?description: ::String
429
+ ) -> _UpdateTargetAccountConfigurationResponseSuccess
430
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTargetAccountConfigurationResponseSuccess
431
+ end
432
+ end
433
+ end
434
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,28 @@
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 FIS
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class ConflictException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
17
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ end
20
+ class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
21
+ def message: () -> ::String
22
+ end
23
+ class ValidationException < ::Aws::Errors::ServiceError
24
+ def message: () -> ::String
25
+ end
26
+ end
27
+ end
28
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,79 @@
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 FIS
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/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
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> void
72
+ | (?Hash[Symbol, untyped]) -> void
73
+
74
+ def client: () -> Client
75
+
76
+
77
+ end
78
+ end
79
+ end