aws-sdk-fis 1.26.0 → 1.27.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fis/client.rb +1 -1
- data/lib/aws-sdk-fis/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-fis.rb +1 -1
- data/sig/client.rbs +430 -0
- data/sig/errors.rbs +28 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +664 -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: 572f0b22d9387c389798a8edcb6a981181a99dd3b43c4b498b93f40182421bc0
|
4
|
+
data.tar.gz: 57ca39d917f7be0fcf6d3de63030cd1baf5decfcc5b4bb07d75f7354691b9415
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 424c6781fceaa15fc065aaa8cbbe0794cb72d94a94afd67be99cf298557832940a883a96e1e042be3ef0124c59028ea8b4ed8b09a0c1eec1105960b17fe136ef
|
7
|
+
data.tar.gz: 766bbda232b581c7f69beda0ba517d3c44cb0d7c8a6392c77aca0ab173e7a786505304f0ee6bfcd0743d9726c0ca85b45c9592dab8437554cff6ec0da0f26659
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.27.0
|
data/lib/aws-sdk-fis/client.rb
CHANGED
@@ -14,6 +14,7 @@ module Aws::FIS
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::FIS::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/lib/aws-sdk-fis.rb
CHANGED
data/sig/client.rbs
ADDED
@@ -0,0 +1,430 @@
|
|
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
|
+
) -> _ListExperimentsResponseSuccess
|
285
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExperimentsResponseSuccess
|
286
|
+
|
287
|
+
interface _ListTagsForResourceResponseSuccess
|
288
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
289
|
+
def tags: () -> ::Hash[::String, ::String]
|
290
|
+
end
|
291
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#list_tags_for_resource-instance_method
|
292
|
+
def list_tags_for_resource: (
|
293
|
+
resource_arn: ::String
|
294
|
+
) -> _ListTagsForResourceResponseSuccess
|
295
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
296
|
+
|
297
|
+
interface _ListTargetAccountConfigurationsResponseSuccess
|
298
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTargetAccountConfigurationsResponse]
|
299
|
+
def target_account_configurations: () -> ::Array[Types::TargetAccountConfigurationSummary]
|
300
|
+
def next_token: () -> ::String
|
301
|
+
end
|
302
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#list_target_account_configurations-instance_method
|
303
|
+
def list_target_account_configurations: (
|
304
|
+
experiment_template_id: ::String,
|
305
|
+
?max_results: ::Integer,
|
306
|
+
?next_token: ::String
|
307
|
+
) -> _ListTargetAccountConfigurationsResponseSuccess
|
308
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTargetAccountConfigurationsResponseSuccess
|
309
|
+
|
310
|
+
interface _ListTargetResourceTypesResponseSuccess
|
311
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTargetResourceTypesResponse]
|
312
|
+
def target_resource_types: () -> ::Array[Types::TargetResourceTypeSummary]
|
313
|
+
def next_token: () -> ::String
|
314
|
+
end
|
315
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#list_target_resource_types-instance_method
|
316
|
+
def list_target_resource_types: (
|
317
|
+
?max_results: ::Integer,
|
318
|
+
?next_token: ::String
|
319
|
+
) -> _ListTargetResourceTypesResponseSuccess
|
320
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTargetResourceTypesResponseSuccess
|
321
|
+
|
322
|
+
interface _StartExperimentResponseSuccess
|
323
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartExperimentResponse]
|
324
|
+
def experiment: () -> Types::Experiment
|
325
|
+
end
|
326
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#start_experiment-instance_method
|
327
|
+
def start_experiment: (
|
328
|
+
client_token: ::String,
|
329
|
+
experiment_template_id: ::String,
|
330
|
+
?tags: Hash[::String, ::String]
|
331
|
+
) -> _StartExperimentResponseSuccess
|
332
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartExperimentResponseSuccess
|
333
|
+
|
334
|
+
interface _StopExperimentResponseSuccess
|
335
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopExperimentResponse]
|
336
|
+
def experiment: () -> Types::Experiment
|
337
|
+
end
|
338
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#stop_experiment-instance_method
|
339
|
+
def stop_experiment: (
|
340
|
+
id: ::String
|
341
|
+
) -> _StopExperimentResponseSuccess
|
342
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopExperimentResponseSuccess
|
343
|
+
|
344
|
+
interface _TagResourceResponseSuccess
|
345
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
346
|
+
end
|
347
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#tag_resource-instance_method
|
348
|
+
def tag_resource: (
|
349
|
+
resource_arn: ::String,
|
350
|
+
tags: Hash[::String, ::String]
|
351
|
+
) -> _TagResourceResponseSuccess
|
352
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
353
|
+
|
354
|
+
interface _UntagResourceResponseSuccess
|
355
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
356
|
+
end
|
357
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#untag_resource-instance_method
|
358
|
+
def untag_resource: (
|
359
|
+
resource_arn: ::String,
|
360
|
+
?tag_keys: Array[::String]
|
361
|
+
) -> _UntagResourceResponseSuccess
|
362
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
363
|
+
|
364
|
+
interface _UpdateExperimentTemplateResponseSuccess
|
365
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateExperimentTemplateResponse]
|
366
|
+
def experiment_template: () -> Types::ExperimentTemplate
|
367
|
+
end
|
368
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#update_experiment_template-instance_method
|
369
|
+
def update_experiment_template: (
|
370
|
+
id: ::String,
|
371
|
+
?description: ::String,
|
372
|
+
?stop_conditions: Array[
|
373
|
+
{
|
374
|
+
source: ::String,
|
375
|
+
value: ::String?
|
376
|
+
},
|
377
|
+
],
|
378
|
+
?targets: Hash[::String, {
|
379
|
+
resource_type: ::String,
|
380
|
+
resource_arns: Array[::String]?,
|
381
|
+
resource_tags: Hash[::String, ::String]?,
|
382
|
+
filters: Array[
|
383
|
+
{
|
384
|
+
path: ::String,
|
385
|
+
values: Array[::String]
|
386
|
+
},
|
387
|
+
]?,
|
388
|
+
selection_mode: ::String,
|
389
|
+
parameters: Hash[::String, ::String]?
|
390
|
+
}],
|
391
|
+
?actions: Hash[::String, {
|
392
|
+
action_id: ::String?,
|
393
|
+
description: ::String?,
|
394
|
+
parameters: Hash[::String, ::String]?,
|
395
|
+
targets: Hash[::String, ::String]?,
|
396
|
+
start_after: Array[::String]?
|
397
|
+
}],
|
398
|
+
?role_arn: ::String,
|
399
|
+
?log_configuration: {
|
400
|
+
cloud_watch_logs_configuration: {
|
401
|
+
log_group_arn: ::String
|
402
|
+
}?,
|
403
|
+
s3_configuration: {
|
404
|
+
bucket_name: ::String,
|
405
|
+
prefix: ::String?
|
406
|
+
}?,
|
407
|
+
log_schema_version: ::Integer?
|
408
|
+
},
|
409
|
+
?experiment_options: {
|
410
|
+
empty_target_resolution_mode: ("fail" | "skip")?
|
411
|
+
}
|
412
|
+
) -> _UpdateExperimentTemplateResponseSuccess
|
413
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateExperimentTemplateResponseSuccess
|
414
|
+
|
415
|
+
interface _UpdateTargetAccountConfigurationResponseSuccess
|
416
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTargetAccountConfigurationResponse]
|
417
|
+
def target_account_configuration: () -> Types::TargetAccountConfiguration
|
418
|
+
end
|
419
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FIS/Client.html#update_target_account_configuration-instance_method
|
420
|
+
def update_target_account_configuration: (
|
421
|
+
experiment_template_id: ::String,
|
422
|
+
account_id: ::String,
|
423
|
+
?role_arn: ::String,
|
424
|
+
?description: ::String
|
425
|
+
) -> _UpdateTargetAccountConfigurationResponseSuccess
|
426
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTargetAccountConfigurationResponseSuccess
|
427
|
+
end
|
428
|
+
end
|
429
|
+
end
|
430
|
+
|
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
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,664 @@
|
|
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::FIS
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class Action
|
12
|
+
attr_accessor id: ::String
|
13
|
+
attr_accessor description: ::String
|
14
|
+
attr_accessor parameters: ::Hash[::String, Types::ActionParameter]
|
15
|
+
attr_accessor targets: ::Hash[::String, Types::ActionTarget]
|
16
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
17
|
+
SENSITIVE: []
|
18
|
+
end
|
19
|
+
|
20
|
+
class ActionParameter
|
21
|
+
attr_accessor description: ::String
|
22
|
+
attr_accessor required: bool
|
23
|
+
SENSITIVE: []
|
24
|
+
end
|
25
|
+
|
26
|
+
class ActionSummary
|
27
|
+
attr_accessor id: ::String
|
28
|
+
attr_accessor description: ::String
|
29
|
+
attr_accessor targets: ::Hash[::String, Types::ActionTarget]
|
30
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
31
|
+
SENSITIVE: []
|
32
|
+
end
|
33
|
+
|
34
|
+
class ActionTarget
|
35
|
+
attr_accessor resource_type: ::String
|
36
|
+
SENSITIVE: []
|
37
|
+
end
|
38
|
+
|
39
|
+
class ConflictException
|
40
|
+
attr_accessor message: ::String
|
41
|
+
SENSITIVE: []
|
42
|
+
end
|
43
|
+
|
44
|
+
class CreateExperimentTemplateActionInput
|
45
|
+
attr_accessor action_id: ::String
|
46
|
+
attr_accessor description: ::String
|
47
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
48
|
+
attr_accessor targets: ::Hash[::String, ::String]
|
49
|
+
attr_accessor start_after: ::Array[::String]
|
50
|
+
SENSITIVE: []
|
51
|
+
end
|
52
|
+
|
53
|
+
class CreateExperimentTemplateExperimentOptionsInput
|
54
|
+
attr_accessor account_targeting: ("single-account" | "multi-account")
|
55
|
+
attr_accessor empty_target_resolution_mode: ("fail" | "skip")
|
56
|
+
SENSITIVE: []
|
57
|
+
end
|
58
|
+
|
59
|
+
class CreateExperimentTemplateLogConfigurationInput
|
60
|
+
attr_accessor cloud_watch_logs_configuration: Types::ExperimentTemplateCloudWatchLogsLogConfigurationInput
|
61
|
+
attr_accessor s3_configuration: Types::ExperimentTemplateS3LogConfigurationInput
|
62
|
+
attr_accessor log_schema_version: ::Integer
|
63
|
+
SENSITIVE: []
|
64
|
+
end
|
65
|
+
|
66
|
+
class CreateExperimentTemplateRequest
|
67
|
+
attr_accessor client_token: ::String
|
68
|
+
attr_accessor description: ::String
|
69
|
+
attr_accessor stop_conditions: ::Array[Types::CreateExperimentTemplateStopConditionInput]
|
70
|
+
attr_accessor targets: ::Hash[::String, Types::CreateExperimentTemplateTargetInput]
|
71
|
+
attr_accessor actions: ::Hash[::String, Types::CreateExperimentTemplateActionInput]
|
72
|
+
attr_accessor role_arn: ::String
|
73
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
74
|
+
attr_accessor log_configuration: Types::CreateExperimentTemplateLogConfigurationInput
|
75
|
+
attr_accessor experiment_options: Types::CreateExperimentTemplateExperimentOptionsInput
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class CreateExperimentTemplateResponse
|
80
|
+
attr_accessor experiment_template: Types::ExperimentTemplate
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class CreateExperimentTemplateStopConditionInput
|
85
|
+
attr_accessor source: ::String
|
86
|
+
attr_accessor value: ::String
|
87
|
+
SENSITIVE: []
|
88
|
+
end
|
89
|
+
|
90
|
+
class CreateExperimentTemplateTargetInput
|
91
|
+
attr_accessor resource_type: ::String
|
92
|
+
attr_accessor resource_arns: ::Array[::String]
|
93
|
+
attr_accessor resource_tags: ::Hash[::String, ::String]
|
94
|
+
attr_accessor filters: ::Array[Types::ExperimentTemplateTargetInputFilter]
|
95
|
+
attr_accessor selection_mode: ::String
|
96
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class CreateTargetAccountConfigurationRequest
|
101
|
+
attr_accessor client_token: ::String
|
102
|
+
attr_accessor experiment_template_id: ::String
|
103
|
+
attr_accessor account_id: ::String
|
104
|
+
attr_accessor role_arn: ::String
|
105
|
+
attr_accessor description: ::String
|
106
|
+
SENSITIVE: []
|
107
|
+
end
|
108
|
+
|
109
|
+
class CreateTargetAccountConfigurationResponse
|
110
|
+
attr_accessor target_account_configuration: Types::TargetAccountConfiguration
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class DeleteExperimentTemplateRequest
|
115
|
+
attr_accessor id: ::String
|
116
|
+
SENSITIVE: []
|
117
|
+
end
|
118
|
+
|
119
|
+
class DeleteExperimentTemplateResponse
|
120
|
+
attr_accessor experiment_template: Types::ExperimentTemplate
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class DeleteTargetAccountConfigurationRequest
|
125
|
+
attr_accessor experiment_template_id: ::String
|
126
|
+
attr_accessor account_id: ::String
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
|
130
|
+
class DeleteTargetAccountConfigurationResponse
|
131
|
+
attr_accessor target_account_configuration: Types::TargetAccountConfiguration
|
132
|
+
SENSITIVE: []
|
133
|
+
end
|
134
|
+
|
135
|
+
class Experiment
|
136
|
+
attr_accessor id: ::String
|
137
|
+
attr_accessor experiment_template_id: ::String
|
138
|
+
attr_accessor role_arn: ::String
|
139
|
+
attr_accessor state: Types::ExperimentState
|
140
|
+
attr_accessor targets: ::Hash[::String, Types::ExperimentTarget]
|
141
|
+
attr_accessor actions: ::Hash[::String, Types::ExperimentAction]
|
142
|
+
attr_accessor stop_conditions: ::Array[Types::ExperimentStopCondition]
|
143
|
+
attr_accessor creation_time: ::Time
|
144
|
+
attr_accessor start_time: ::Time
|
145
|
+
attr_accessor end_time: ::Time
|
146
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
147
|
+
attr_accessor log_configuration: Types::ExperimentLogConfiguration
|
148
|
+
attr_accessor experiment_options: Types::ExperimentOptions
|
149
|
+
attr_accessor target_account_configurations_count: ::Integer
|
150
|
+
SENSITIVE: []
|
151
|
+
end
|
152
|
+
|
153
|
+
class ExperimentAction
|
154
|
+
attr_accessor action_id: ::String
|
155
|
+
attr_accessor description: ::String
|
156
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
157
|
+
attr_accessor targets: ::Hash[::String, ::String]
|
158
|
+
attr_accessor start_after: ::Array[::String]
|
159
|
+
attr_accessor state: Types::ExperimentActionState
|
160
|
+
attr_accessor start_time: ::Time
|
161
|
+
attr_accessor end_time: ::Time
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
165
|
+
class ExperimentActionState
|
166
|
+
attr_accessor status: ("pending" | "initiating" | "running" | "completed" | "cancelled" | "stopping" | "stopped" | "failed" | "skipped")
|
167
|
+
attr_accessor reason: ::String
|
168
|
+
SENSITIVE: []
|
169
|
+
end
|
170
|
+
|
171
|
+
class ExperimentCloudWatchLogsLogConfiguration
|
172
|
+
attr_accessor log_group_arn: ::String
|
173
|
+
SENSITIVE: []
|
174
|
+
end
|
175
|
+
|
176
|
+
class ExperimentLogConfiguration
|
177
|
+
attr_accessor cloud_watch_logs_configuration: Types::ExperimentCloudWatchLogsLogConfiguration
|
178
|
+
attr_accessor s3_configuration: Types::ExperimentS3LogConfiguration
|
179
|
+
attr_accessor log_schema_version: ::Integer
|
180
|
+
SENSITIVE: []
|
181
|
+
end
|
182
|
+
|
183
|
+
class ExperimentOptions
|
184
|
+
attr_accessor account_targeting: ("single-account" | "multi-account")
|
185
|
+
attr_accessor empty_target_resolution_mode: ("fail" | "skip")
|
186
|
+
SENSITIVE: []
|
187
|
+
end
|
188
|
+
|
189
|
+
class ExperimentS3LogConfiguration
|
190
|
+
attr_accessor bucket_name: ::String
|
191
|
+
attr_accessor prefix: ::String
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
195
|
+
class ExperimentState
|
196
|
+
attr_accessor status: ("pending" | "initiating" | "running" | "completed" | "stopping" | "stopped" | "failed")
|
197
|
+
attr_accessor reason: ::String
|
198
|
+
SENSITIVE: []
|
199
|
+
end
|
200
|
+
|
201
|
+
class ExperimentStopCondition
|
202
|
+
attr_accessor source: ::String
|
203
|
+
attr_accessor value: ::String
|
204
|
+
SENSITIVE: []
|
205
|
+
end
|
206
|
+
|
207
|
+
class ExperimentSummary
|
208
|
+
attr_accessor id: ::String
|
209
|
+
attr_accessor experiment_template_id: ::String
|
210
|
+
attr_accessor state: Types::ExperimentState
|
211
|
+
attr_accessor creation_time: ::Time
|
212
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class ExperimentTarget
|
217
|
+
attr_accessor resource_type: ::String
|
218
|
+
attr_accessor resource_arns: ::Array[::String]
|
219
|
+
attr_accessor resource_tags: ::Hash[::String, ::String]
|
220
|
+
attr_accessor filters: ::Array[Types::ExperimentTargetFilter]
|
221
|
+
attr_accessor selection_mode: ::String
|
222
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class ExperimentTargetAccountConfiguration
|
227
|
+
attr_accessor role_arn: ::String
|
228
|
+
attr_accessor account_id: ::String
|
229
|
+
attr_accessor description: ::String
|
230
|
+
SENSITIVE: []
|
231
|
+
end
|
232
|
+
|
233
|
+
class ExperimentTargetAccountConfigurationSummary
|
234
|
+
attr_accessor role_arn: ::String
|
235
|
+
attr_accessor account_id: ::String
|
236
|
+
attr_accessor description: ::String
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class ExperimentTargetFilter
|
241
|
+
attr_accessor path: ::String
|
242
|
+
attr_accessor values: ::Array[::String]
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class ExperimentTemplate
|
247
|
+
attr_accessor id: ::String
|
248
|
+
attr_accessor description: ::String
|
249
|
+
attr_accessor targets: ::Hash[::String, Types::ExperimentTemplateTarget]
|
250
|
+
attr_accessor actions: ::Hash[::String, Types::ExperimentTemplateAction]
|
251
|
+
attr_accessor stop_conditions: ::Array[Types::ExperimentTemplateStopCondition]
|
252
|
+
attr_accessor creation_time: ::Time
|
253
|
+
attr_accessor last_update_time: ::Time
|
254
|
+
attr_accessor role_arn: ::String
|
255
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
256
|
+
attr_accessor log_configuration: Types::ExperimentTemplateLogConfiguration
|
257
|
+
attr_accessor experiment_options: Types::ExperimentTemplateExperimentOptions
|
258
|
+
attr_accessor target_account_configurations_count: ::Integer
|
259
|
+
SENSITIVE: []
|
260
|
+
end
|
261
|
+
|
262
|
+
class ExperimentTemplateAction
|
263
|
+
attr_accessor action_id: ::String
|
264
|
+
attr_accessor description: ::String
|
265
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
266
|
+
attr_accessor targets: ::Hash[::String, ::String]
|
267
|
+
attr_accessor start_after: ::Array[::String]
|
268
|
+
SENSITIVE: []
|
269
|
+
end
|
270
|
+
|
271
|
+
class ExperimentTemplateCloudWatchLogsLogConfiguration
|
272
|
+
attr_accessor log_group_arn: ::String
|
273
|
+
SENSITIVE: []
|
274
|
+
end
|
275
|
+
|
276
|
+
class ExperimentTemplateCloudWatchLogsLogConfigurationInput
|
277
|
+
attr_accessor log_group_arn: ::String
|
278
|
+
SENSITIVE: []
|
279
|
+
end
|
280
|
+
|
281
|
+
class ExperimentTemplateExperimentOptions
|
282
|
+
attr_accessor account_targeting: ("single-account" | "multi-account")
|
283
|
+
attr_accessor empty_target_resolution_mode: ("fail" | "skip")
|
284
|
+
SENSITIVE: []
|
285
|
+
end
|
286
|
+
|
287
|
+
class ExperimentTemplateLogConfiguration
|
288
|
+
attr_accessor cloud_watch_logs_configuration: Types::ExperimentTemplateCloudWatchLogsLogConfiguration
|
289
|
+
attr_accessor s3_configuration: Types::ExperimentTemplateS3LogConfiguration
|
290
|
+
attr_accessor log_schema_version: ::Integer
|
291
|
+
SENSITIVE: []
|
292
|
+
end
|
293
|
+
|
294
|
+
class ExperimentTemplateS3LogConfiguration
|
295
|
+
attr_accessor bucket_name: ::String
|
296
|
+
attr_accessor prefix: ::String
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class ExperimentTemplateS3LogConfigurationInput
|
301
|
+
attr_accessor bucket_name: ::String
|
302
|
+
attr_accessor prefix: ::String
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class ExperimentTemplateStopCondition
|
307
|
+
attr_accessor source: ::String
|
308
|
+
attr_accessor value: ::String
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class ExperimentTemplateSummary
|
313
|
+
attr_accessor id: ::String
|
314
|
+
attr_accessor description: ::String
|
315
|
+
attr_accessor creation_time: ::Time
|
316
|
+
attr_accessor last_update_time: ::Time
|
317
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
318
|
+
SENSITIVE: []
|
319
|
+
end
|
320
|
+
|
321
|
+
class ExperimentTemplateTarget
|
322
|
+
attr_accessor resource_type: ::String
|
323
|
+
attr_accessor resource_arns: ::Array[::String]
|
324
|
+
attr_accessor resource_tags: ::Hash[::String, ::String]
|
325
|
+
attr_accessor filters: ::Array[Types::ExperimentTemplateTargetFilter]
|
326
|
+
attr_accessor selection_mode: ::String
|
327
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
328
|
+
SENSITIVE: []
|
329
|
+
end
|
330
|
+
|
331
|
+
class ExperimentTemplateTargetFilter
|
332
|
+
attr_accessor path: ::String
|
333
|
+
attr_accessor values: ::Array[::String]
|
334
|
+
SENSITIVE: []
|
335
|
+
end
|
336
|
+
|
337
|
+
class ExperimentTemplateTargetInputFilter
|
338
|
+
attr_accessor path: ::String
|
339
|
+
attr_accessor values: ::Array[::String]
|
340
|
+
SENSITIVE: []
|
341
|
+
end
|
342
|
+
|
343
|
+
class GetActionRequest
|
344
|
+
attr_accessor id: ::String
|
345
|
+
SENSITIVE: []
|
346
|
+
end
|
347
|
+
|
348
|
+
class GetActionResponse
|
349
|
+
attr_accessor action: Types::Action
|
350
|
+
SENSITIVE: []
|
351
|
+
end
|
352
|
+
|
353
|
+
class GetExperimentRequest
|
354
|
+
attr_accessor id: ::String
|
355
|
+
SENSITIVE: []
|
356
|
+
end
|
357
|
+
|
358
|
+
class GetExperimentResponse
|
359
|
+
attr_accessor experiment: Types::Experiment
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
|
363
|
+
class GetExperimentTargetAccountConfigurationRequest
|
364
|
+
attr_accessor experiment_id: ::String
|
365
|
+
attr_accessor account_id: ::String
|
366
|
+
SENSITIVE: []
|
367
|
+
end
|
368
|
+
|
369
|
+
class GetExperimentTargetAccountConfigurationResponse
|
370
|
+
attr_accessor target_account_configuration: Types::ExperimentTargetAccountConfiguration
|
371
|
+
SENSITIVE: []
|
372
|
+
end
|
373
|
+
|
374
|
+
class GetExperimentTemplateRequest
|
375
|
+
attr_accessor id: ::String
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class GetExperimentTemplateResponse
|
380
|
+
attr_accessor experiment_template: Types::ExperimentTemplate
|
381
|
+
SENSITIVE: []
|
382
|
+
end
|
383
|
+
|
384
|
+
class GetTargetAccountConfigurationRequest
|
385
|
+
attr_accessor experiment_template_id: ::String
|
386
|
+
attr_accessor account_id: ::String
|
387
|
+
SENSITIVE: []
|
388
|
+
end
|
389
|
+
|
390
|
+
class GetTargetAccountConfigurationResponse
|
391
|
+
attr_accessor target_account_configuration: Types::TargetAccountConfiguration
|
392
|
+
SENSITIVE: []
|
393
|
+
end
|
394
|
+
|
395
|
+
class GetTargetResourceTypeRequest
|
396
|
+
attr_accessor resource_type: ::String
|
397
|
+
SENSITIVE: []
|
398
|
+
end
|
399
|
+
|
400
|
+
class GetTargetResourceTypeResponse
|
401
|
+
attr_accessor target_resource_type: Types::TargetResourceType
|
402
|
+
SENSITIVE: []
|
403
|
+
end
|
404
|
+
|
405
|
+
class ListActionsRequest
|
406
|
+
attr_accessor max_results: ::Integer
|
407
|
+
attr_accessor next_token: ::String
|
408
|
+
SENSITIVE: []
|
409
|
+
end
|
410
|
+
|
411
|
+
class ListActionsResponse
|
412
|
+
attr_accessor actions: ::Array[Types::ActionSummary]
|
413
|
+
attr_accessor next_token: ::String
|
414
|
+
SENSITIVE: []
|
415
|
+
end
|
416
|
+
|
417
|
+
class ListExperimentResolvedTargetsRequest
|
418
|
+
attr_accessor experiment_id: ::String
|
419
|
+
attr_accessor max_results: ::Integer
|
420
|
+
attr_accessor next_token: ::String
|
421
|
+
attr_accessor target_name: ::String
|
422
|
+
SENSITIVE: []
|
423
|
+
end
|
424
|
+
|
425
|
+
class ListExperimentResolvedTargetsResponse
|
426
|
+
attr_accessor resolved_targets: ::Array[Types::ResolvedTarget]
|
427
|
+
attr_accessor next_token: ::String
|
428
|
+
SENSITIVE: []
|
429
|
+
end
|
430
|
+
|
431
|
+
class ListExperimentTargetAccountConfigurationsRequest
|
432
|
+
attr_accessor experiment_id: ::String
|
433
|
+
attr_accessor next_token: ::String
|
434
|
+
SENSITIVE: []
|
435
|
+
end
|
436
|
+
|
437
|
+
class ListExperimentTargetAccountConfigurationsResponse
|
438
|
+
attr_accessor target_account_configurations: ::Array[Types::ExperimentTargetAccountConfigurationSummary]
|
439
|
+
attr_accessor next_token: ::String
|
440
|
+
SENSITIVE: []
|
441
|
+
end
|
442
|
+
|
443
|
+
class ListExperimentTemplatesRequest
|
444
|
+
attr_accessor max_results: ::Integer
|
445
|
+
attr_accessor next_token: ::String
|
446
|
+
SENSITIVE: []
|
447
|
+
end
|
448
|
+
|
449
|
+
class ListExperimentTemplatesResponse
|
450
|
+
attr_accessor experiment_templates: ::Array[Types::ExperimentTemplateSummary]
|
451
|
+
attr_accessor next_token: ::String
|
452
|
+
SENSITIVE: []
|
453
|
+
end
|
454
|
+
|
455
|
+
class ListExperimentsRequest
|
456
|
+
attr_accessor max_results: ::Integer
|
457
|
+
attr_accessor next_token: ::String
|
458
|
+
SENSITIVE: []
|
459
|
+
end
|
460
|
+
|
461
|
+
class ListExperimentsResponse
|
462
|
+
attr_accessor experiments: ::Array[Types::ExperimentSummary]
|
463
|
+
attr_accessor next_token: ::String
|
464
|
+
SENSITIVE: []
|
465
|
+
end
|
466
|
+
|
467
|
+
class ListTagsForResourceRequest
|
468
|
+
attr_accessor resource_arn: ::String
|
469
|
+
SENSITIVE: []
|
470
|
+
end
|
471
|
+
|
472
|
+
class ListTagsForResourceResponse
|
473
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
474
|
+
SENSITIVE: []
|
475
|
+
end
|
476
|
+
|
477
|
+
class ListTargetAccountConfigurationsRequest
|
478
|
+
attr_accessor experiment_template_id: ::String
|
479
|
+
attr_accessor max_results: ::Integer
|
480
|
+
attr_accessor next_token: ::String
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
484
|
+
class ListTargetAccountConfigurationsResponse
|
485
|
+
attr_accessor target_account_configurations: ::Array[Types::TargetAccountConfigurationSummary]
|
486
|
+
attr_accessor next_token: ::String
|
487
|
+
SENSITIVE: []
|
488
|
+
end
|
489
|
+
|
490
|
+
class ListTargetResourceTypesRequest
|
491
|
+
attr_accessor max_results: ::Integer
|
492
|
+
attr_accessor next_token: ::String
|
493
|
+
SENSITIVE: []
|
494
|
+
end
|
495
|
+
|
496
|
+
class ListTargetResourceTypesResponse
|
497
|
+
attr_accessor target_resource_types: ::Array[Types::TargetResourceTypeSummary]
|
498
|
+
attr_accessor next_token: ::String
|
499
|
+
SENSITIVE: []
|
500
|
+
end
|
501
|
+
|
502
|
+
class ResolvedTarget
|
503
|
+
attr_accessor resource_type: ::String
|
504
|
+
attr_accessor target_name: ::String
|
505
|
+
attr_accessor target_information: ::Hash[::String, ::String]
|
506
|
+
SENSITIVE: []
|
507
|
+
end
|
508
|
+
|
509
|
+
class ResourceNotFoundException
|
510
|
+
attr_accessor message: ::String
|
511
|
+
SENSITIVE: []
|
512
|
+
end
|
513
|
+
|
514
|
+
class ServiceQuotaExceededException
|
515
|
+
attr_accessor message: ::String
|
516
|
+
SENSITIVE: []
|
517
|
+
end
|
518
|
+
|
519
|
+
class StartExperimentRequest
|
520
|
+
attr_accessor client_token: ::String
|
521
|
+
attr_accessor experiment_template_id: ::String
|
522
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
523
|
+
SENSITIVE: []
|
524
|
+
end
|
525
|
+
|
526
|
+
class StartExperimentResponse
|
527
|
+
attr_accessor experiment: Types::Experiment
|
528
|
+
SENSITIVE: []
|
529
|
+
end
|
530
|
+
|
531
|
+
class StopExperimentRequest
|
532
|
+
attr_accessor id: ::String
|
533
|
+
SENSITIVE: []
|
534
|
+
end
|
535
|
+
|
536
|
+
class StopExperimentResponse
|
537
|
+
attr_accessor experiment: Types::Experiment
|
538
|
+
SENSITIVE: []
|
539
|
+
end
|
540
|
+
|
541
|
+
class TagResourceRequest
|
542
|
+
attr_accessor resource_arn: ::String
|
543
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
547
|
+
class TagResourceResponse < Aws::EmptyStructure
|
548
|
+
end
|
549
|
+
|
550
|
+
class TargetAccountConfiguration
|
551
|
+
attr_accessor role_arn: ::String
|
552
|
+
attr_accessor account_id: ::String
|
553
|
+
attr_accessor description: ::String
|
554
|
+
SENSITIVE: []
|
555
|
+
end
|
556
|
+
|
557
|
+
class TargetAccountConfigurationSummary
|
558
|
+
attr_accessor role_arn: ::String
|
559
|
+
attr_accessor account_id: ::String
|
560
|
+
attr_accessor description: ::String
|
561
|
+
SENSITIVE: []
|
562
|
+
end
|
563
|
+
|
564
|
+
class TargetResourceType
|
565
|
+
attr_accessor resource_type: ::String
|
566
|
+
attr_accessor description: ::String
|
567
|
+
attr_accessor parameters: ::Hash[::String, Types::TargetResourceTypeParameter]
|
568
|
+
SENSITIVE: []
|
569
|
+
end
|
570
|
+
|
571
|
+
class TargetResourceTypeParameter
|
572
|
+
attr_accessor description: ::String
|
573
|
+
attr_accessor required: bool
|
574
|
+
SENSITIVE: []
|
575
|
+
end
|
576
|
+
|
577
|
+
class TargetResourceTypeSummary
|
578
|
+
attr_accessor resource_type: ::String
|
579
|
+
attr_accessor description: ::String
|
580
|
+
SENSITIVE: []
|
581
|
+
end
|
582
|
+
|
583
|
+
class UntagResourceRequest
|
584
|
+
attr_accessor resource_arn: ::String
|
585
|
+
attr_accessor tag_keys: ::Array[::String]
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
589
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
590
|
+
end
|
591
|
+
|
592
|
+
class UpdateExperimentTemplateActionInputItem
|
593
|
+
attr_accessor action_id: ::String
|
594
|
+
attr_accessor description: ::String
|
595
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
596
|
+
attr_accessor targets: ::Hash[::String, ::String]
|
597
|
+
attr_accessor start_after: ::Array[::String]
|
598
|
+
SENSITIVE: []
|
599
|
+
end
|
600
|
+
|
601
|
+
class UpdateExperimentTemplateExperimentOptionsInput
|
602
|
+
attr_accessor empty_target_resolution_mode: ("fail" | "skip")
|
603
|
+
SENSITIVE: []
|
604
|
+
end
|
605
|
+
|
606
|
+
class UpdateExperimentTemplateLogConfigurationInput
|
607
|
+
attr_accessor cloud_watch_logs_configuration: Types::ExperimentTemplateCloudWatchLogsLogConfigurationInput
|
608
|
+
attr_accessor s3_configuration: Types::ExperimentTemplateS3LogConfigurationInput
|
609
|
+
attr_accessor log_schema_version: ::Integer
|
610
|
+
SENSITIVE: []
|
611
|
+
end
|
612
|
+
|
613
|
+
class UpdateExperimentTemplateRequest
|
614
|
+
attr_accessor id: ::String
|
615
|
+
attr_accessor description: ::String
|
616
|
+
attr_accessor stop_conditions: ::Array[Types::UpdateExperimentTemplateStopConditionInput]
|
617
|
+
attr_accessor targets: ::Hash[::String, Types::UpdateExperimentTemplateTargetInput]
|
618
|
+
attr_accessor actions: ::Hash[::String, Types::UpdateExperimentTemplateActionInputItem]
|
619
|
+
attr_accessor role_arn: ::String
|
620
|
+
attr_accessor log_configuration: Types::UpdateExperimentTemplateLogConfigurationInput
|
621
|
+
attr_accessor experiment_options: Types::UpdateExperimentTemplateExperimentOptionsInput
|
622
|
+
SENSITIVE: []
|
623
|
+
end
|
624
|
+
|
625
|
+
class UpdateExperimentTemplateResponse
|
626
|
+
attr_accessor experiment_template: Types::ExperimentTemplate
|
627
|
+
SENSITIVE: []
|
628
|
+
end
|
629
|
+
|
630
|
+
class UpdateExperimentTemplateStopConditionInput
|
631
|
+
attr_accessor source: ::String
|
632
|
+
attr_accessor value: ::String
|
633
|
+
SENSITIVE: []
|
634
|
+
end
|
635
|
+
|
636
|
+
class UpdateExperimentTemplateTargetInput
|
637
|
+
attr_accessor resource_type: ::String
|
638
|
+
attr_accessor resource_arns: ::Array[::String]
|
639
|
+
attr_accessor resource_tags: ::Hash[::String, ::String]
|
640
|
+
attr_accessor filters: ::Array[Types::ExperimentTemplateTargetInputFilter]
|
641
|
+
attr_accessor selection_mode: ::String
|
642
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
643
|
+
SENSITIVE: []
|
644
|
+
end
|
645
|
+
|
646
|
+
class UpdateTargetAccountConfigurationRequest
|
647
|
+
attr_accessor experiment_template_id: ::String
|
648
|
+
attr_accessor account_id: ::String
|
649
|
+
attr_accessor role_arn: ::String
|
650
|
+
attr_accessor description: ::String
|
651
|
+
SENSITIVE: []
|
652
|
+
end
|
653
|
+
|
654
|
+
class UpdateTargetAccountConfigurationResponse
|
655
|
+
attr_accessor target_account_configuration: Types::TargetAccountConfiguration
|
656
|
+
SENSITIVE: []
|
657
|
+
end
|
658
|
+
|
659
|
+
class ValidationException
|
660
|
+
attr_accessor message: ::String
|
661
|
+
SENSITIVE: []
|
662
|
+
end
|
663
|
+
end
|
664
|
+
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 FIS
|
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-fis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.27.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-fis/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-fis/resource.rb
|
68
68
|
- lib/aws-sdk-fis/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-fis
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-fis/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 - FIS
|
94
99
|
test_files: []
|