aws-sdk-synthetics 1.39.0 → 1.41.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-synthetics/client.rb +70 -46
- data/lib/aws-sdk-synthetics/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-synthetics.rb +1 -1
- data/sig/client.rbs +377 -0
- data/sig/errors.rbs +46 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +478 -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: cccfeb1e024825580245c39fa338fc1f629bf3d023ab4e645f2f1fbf367f10ef
|
4
|
+
data.tar.gz: a41ad5a9a5d8a37638d8cb1123c7a4df308da64a215fbc1c865d4aaaec99bcb1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b04fbad0a4d5b6138cc75dd05c916d8cd8dd47fd710c642e0dd8995d8157d088722233ebc81b86d9dfb6e4ed8208e35bd532b2f3373e8dd518aeefa124ac3e6
|
7
|
+
data.tar.gz: 3fef62929b2644a17a8e727380a233f843ffad361c7537370de44a9bee5c5010b2ed243a2ead2c5673d279e5404db3e5de41ebdcb4487baf0885a5d5496eb770
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.41.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.40.0 (2024-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.39.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.41.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::Synthetics
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::Synthetics
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -337,50 +346,65 @@ module Aws::Synthetics
|
|
337
346
|
# @option options [Aws::Synthetics::EndpointProvider] :endpoint_provider
|
338
347
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Synthetics::EndpointParameters`
|
339
348
|
#
|
340
|
-
# @option options [
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
# @option options [Float] :
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
349
|
+
# @option options [Float] :http_continue_timeout (1)
|
350
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
351
|
+
# request body. This option has no effect unless the request has "Expect"
|
352
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
353
|
+
# behaviour. This value can safely be set per request on the session.
|
354
|
+
#
|
355
|
+
# @option options [Float] :http_idle_timeout (5)
|
356
|
+
# The number of seconds a connection is allowed to sit idle before it
|
357
|
+
# is considered stale. Stale connections are closed and removed from the
|
358
|
+
# pool before making a request.
|
359
|
+
#
|
360
|
+
# @option options [Float] :http_open_timeout (15)
|
361
|
+
# The default number of seconds to wait for response data.
|
362
|
+
# This value can safely be set per-request on the session.
|
363
|
+
#
|
364
|
+
# @option options [URI::HTTP,String] :http_proxy
|
365
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
366
|
+
#
|
367
|
+
# @option options [Float] :http_read_timeout (60)
|
368
|
+
# The default number of seconds to wait for response data.
|
369
|
+
# This value can safely be set per-request on the session.
|
370
|
+
#
|
371
|
+
# @option options [Boolean] :http_wire_trace (false)
|
372
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
373
|
+
#
|
374
|
+
# @option options [Proc] :on_chunk_received
|
375
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
376
|
+
# of the response body is received. It provides three arguments: the chunk,
|
377
|
+
# the number of bytes received, and the total number of
|
378
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
379
|
+
#
|
380
|
+
# @option options [Proc] :on_chunk_sent
|
381
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
382
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
383
|
+
# the number of bytes read from the body, and the total number of
|
384
|
+
# bytes in the body.
|
385
|
+
#
|
386
|
+
# @option options [Boolean] :raise_response_errors (true)
|
387
|
+
# When `true`, response errors are raised.
|
388
|
+
#
|
389
|
+
# @option options [String] :ssl_ca_bundle
|
390
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
391
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
392
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
393
|
+
#
|
394
|
+
# @option options [String] :ssl_ca_directory
|
395
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
396
|
+
# authority files for verifying peer certificates. If you do
|
397
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
398
|
+
# default will be used if available.
|
365
399
|
#
|
366
|
-
# @option options [
|
367
|
-
#
|
400
|
+
# @option options [String] :ssl_ca_store
|
401
|
+
# Sets the X509::Store to verify peer certificate.
|
368
402
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# connection.
|
403
|
+
# @option options [Float] :ssl_timeout
|
404
|
+
# Sets the SSL timeout in seconds
|
372
405
|
#
|
373
|
-
# @option options [
|
374
|
-
#
|
375
|
-
# verifying peer certificates. If you do not pass
|
376
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
377
|
-
# will be used if available.
|
378
|
-
#
|
379
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
380
|
-
# directory that contains the unbundled SSL certificate
|
381
|
-
# authority files for verifying peer certificates. If you do
|
382
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
383
|
-
# system default will be used if available.
|
406
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
407
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
384
408
|
#
|
385
409
|
def initialize(*args)
|
386
410
|
super
|
@@ -1730,7 +1754,7 @@ module Aws::Synthetics
|
|
1730
1754
|
params: params,
|
1731
1755
|
config: config)
|
1732
1756
|
context[:gem_name] = 'aws-sdk-synthetics'
|
1733
|
-
context[:gem_version] = '1.
|
1757
|
+
context[:gem_version] = '1.41.0'
|
1734
1758
|
Seahorse::Client::Request.new(handlers, context)
|
1735
1759
|
end
|
1736
1760
|
|
@@ -14,6 +14,7 @@ module Aws::Synthetics
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::Synthetics::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-synthetics.rb
CHANGED
data/sig/client.rbs
ADDED
@@ -0,0 +1,377 @@
|
|
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 Synthetics
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/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 _AssociateResourceResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateResourceResponse]
|
77
|
+
end
|
78
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#associate_resource-instance_method
|
79
|
+
def associate_resource: (
|
80
|
+
group_identifier: ::String,
|
81
|
+
resource_arn: ::String
|
82
|
+
) -> _AssociateResourceResponseSuccess
|
83
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateResourceResponseSuccess
|
84
|
+
|
85
|
+
interface _CreateCanaryResponseSuccess
|
86
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCanaryResponse]
|
87
|
+
def canary: () -> Types::Canary
|
88
|
+
end
|
89
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#create_canary-instance_method
|
90
|
+
def create_canary: (
|
91
|
+
name: ::String,
|
92
|
+
code: {
|
93
|
+
s3_bucket: ::String?,
|
94
|
+
s3_key: ::String?,
|
95
|
+
s3_version: ::String?,
|
96
|
+
zip_file: ::String?,
|
97
|
+
handler: ::String
|
98
|
+
},
|
99
|
+
artifact_s3_location: ::String,
|
100
|
+
execution_role_arn: ::String,
|
101
|
+
schedule: {
|
102
|
+
expression: ::String,
|
103
|
+
duration_in_seconds: ::Integer?
|
104
|
+
},
|
105
|
+
?run_config: {
|
106
|
+
timeout_in_seconds: ::Integer?,
|
107
|
+
memory_in_mb: ::Integer?,
|
108
|
+
active_tracing: bool?,
|
109
|
+
environment_variables: Hash[::String, ::String]?
|
110
|
+
},
|
111
|
+
?success_retention_period_in_days: ::Integer,
|
112
|
+
?failure_retention_period_in_days: ::Integer,
|
113
|
+
runtime_version: ::String,
|
114
|
+
?vpc_config: {
|
115
|
+
subnet_ids: Array[::String]?,
|
116
|
+
security_group_ids: Array[::String]?
|
117
|
+
},
|
118
|
+
?tags: Hash[::String, ::String],
|
119
|
+
?artifact_config: {
|
120
|
+
s3_encryption: {
|
121
|
+
encryption_mode: ("SSE_S3" | "SSE_KMS")?,
|
122
|
+
kms_key_arn: ::String?
|
123
|
+
}?
|
124
|
+
}
|
125
|
+
) -> _CreateCanaryResponseSuccess
|
126
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCanaryResponseSuccess
|
127
|
+
|
128
|
+
interface _CreateGroupResponseSuccess
|
129
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateGroupResponse]
|
130
|
+
def group: () -> Types::Group
|
131
|
+
end
|
132
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#create_group-instance_method
|
133
|
+
def create_group: (
|
134
|
+
name: ::String,
|
135
|
+
?tags: Hash[::String, ::String]
|
136
|
+
) -> _CreateGroupResponseSuccess
|
137
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGroupResponseSuccess
|
138
|
+
|
139
|
+
interface _DeleteCanaryResponseSuccess
|
140
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCanaryResponse]
|
141
|
+
end
|
142
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#delete_canary-instance_method
|
143
|
+
def delete_canary: (
|
144
|
+
name: ::String,
|
145
|
+
?delete_lambda: bool
|
146
|
+
) -> _DeleteCanaryResponseSuccess
|
147
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCanaryResponseSuccess
|
148
|
+
|
149
|
+
interface _DeleteGroupResponseSuccess
|
150
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGroupResponse]
|
151
|
+
end
|
152
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#delete_group-instance_method
|
153
|
+
def delete_group: (
|
154
|
+
group_identifier: ::String
|
155
|
+
) -> _DeleteGroupResponseSuccess
|
156
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGroupResponseSuccess
|
157
|
+
|
158
|
+
interface _DescribeCanariesResponseSuccess
|
159
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCanariesResponse]
|
160
|
+
def canaries: () -> ::Array[Types::Canary]
|
161
|
+
def next_token: () -> ::String
|
162
|
+
end
|
163
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#describe_canaries-instance_method
|
164
|
+
def describe_canaries: (
|
165
|
+
?next_token: ::String,
|
166
|
+
?max_results: ::Integer,
|
167
|
+
?names: Array[::String]
|
168
|
+
) -> _DescribeCanariesResponseSuccess
|
169
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCanariesResponseSuccess
|
170
|
+
|
171
|
+
interface _DescribeCanariesLastRunResponseSuccess
|
172
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCanariesLastRunResponse]
|
173
|
+
def canaries_last_run: () -> ::Array[Types::CanaryLastRun]
|
174
|
+
def next_token: () -> ::String
|
175
|
+
end
|
176
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#describe_canaries_last_run-instance_method
|
177
|
+
def describe_canaries_last_run: (
|
178
|
+
?next_token: ::String,
|
179
|
+
?max_results: ::Integer,
|
180
|
+
?names: Array[::String]
|
181
|
+
) -> _DescribeCanariesLastRunResponseSuccess
|
182
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCanariesLastRunResponseSuccess
|
183
|
+
|
184
|
+
interface _DescribeRuntimeVersionsResponseSuccess
|
185
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRuntimeVersionsResponse]
|
186
|
+
def runtime_versions: () -> ::Array[Types::RuntimeVersion]
|
187
|
+
def next_token: () -> ::String
|
188
|
+
end
|
189
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#describe_runtime_versions-instance_method
|
190
|
+
def describe_runtime_versions: (
|
191
|
+
?next_token: ::String,
|
192
|
+
?max_results: ::Integer
|
193
|
+
) -> _DescribeRuntimeVersionsResponseSuccess
|
194
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRuntimeVersionsResponseSuccess
|
195
|
+
|
196
|
+
interface _DisassociateResourceResponseSuccess
|
197
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateResourceResponse]
|
198
|
+
end
|
199
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#disassociate_resource-instance_method
|
200
|
+
def disassociate_resource: (
|
201
|
+
group_identifier: ::String,
|
202
|
+
resource_arn: ::String
|
203
|
+
) -> _DisassociateResourceResponseSuccess
|
204
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateResourceResponseSuccess
|
205
|
+
|
206
|
+
interface _GetCanaryResponseSuccess
|
207
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetCanaryResponse]
|
208
|
+
def canary: () -> Types::Canary
|
209
|
+
end
|
210
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#get_canary-instance_method
|
211
|
+
def get_canary: (
|
212
|
+
name: ::String
|
213
|
+
) -> _GetCanaryResponseSuccess
|
214
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCanaryResponseSuccess
|
215
|
+
|
216
|
+
interface _GetCanaryRunsResponseSuccess
|
217
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetCanaryRunsResponse]
|
218
|
+
def canary_runs: () -> ::Array[Types::CanaryRun]
|
219
|
+
def next_token: () -> ::String
|
220
|
+
end
|
221
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#get_canary_runs-instance_method
|
222
|
+
def get_canary_runs: (
|
223
|
+
name: ::String,
|
224
|
+
?next_token: ::String,
|
225
|
+
?max_results: ::Integer
|
226
|
+
) -> _GetCanaryRunsResponseSuccess
|
227
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCanaryRunsResponseSuccess
|
228
|
+
|
229
|
+
interface _GetGroupResponseSuccess
|
230
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetGroupResponse]
|
231
|
+
def group: () -> Types::Group
|
232
|
+
end
|
233
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#get_group-instance_method
|
234
|
+
def get_group: (
|
235
|
+
group_identifier: ::String
|
236
|
+
) -> _GetGroupResponseSuccess
|
237
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGroupResponseSuccess
|
238
|
+
|
239
|
+
interface _ListAssociatedGroupsResponseSuccess
|
240
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAssociatedGroupsResponse]
|
241
|
+
def groups: () -> ::Array[Types::GroupSummary]
|
242
|
+
def next_token: () -> ::String
|
243
|
+
end
|
244
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#list_associated_groups-instance_method
|
245
|
+
def list_associated_groups: (
|
246
|
+
?next_token: ::String,
|
247
|
+
?max_results: ::Integer,
|
248
|
+
resource_arn: ::String
|
249
|
+
) -> _ListAssociatedGroupsResponseSuccess
|
250
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssociatedGroupsResponseSuccess
|
251
|
+
|
252
|
+
interface _ListGroupResourcesResponseSuccess
|
253
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListGroupResourcesResponse]
|
254
|
+
def resources: () -> ::Array[::String]
|
255
|
+
def next_token: () -> ::String
|
256
|
+
end
|
257
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#list_group_resources-instance_method
|
258
|
+
def list_group_resources: (
|
259
|
+
?next_token: ::String,
|
260
|
+
?max_results: ::Integer,
|
261
|
+
group_identifier: ::String
|
262
|
+
) -> _ListGroupResourcesResponseSuccess
|
263
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGroupResourcesResponseSuccess
|
264
|
+
|
265
|
+
interface _ListGroupsResponseSuccess
|
266
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListGroupsResponse]
|
267
|
+
def groups: () -> ::Array[Types::GroupSummary]
|
268
|
+
def next_token: () -> ::String
|
269
|
+
end
|
270
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#list_groups-instance_method
|
271
|
+
def list_groups: (
|
272
|
+
?next_token: ::String,
|
273
|
+
?max_results: ::Integer
|
274
|
+
) -> _ListGroupsResponseSuccess
|
275
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGroupsResponseSuccess
|
276
|
+
|
277
|
+
interface _ListTagsForResourceResponseSuccess
|
278
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
279
|
+
def tags: () -> ::Hash[::String, ::String]
|
280
|
+
end
|
281
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#list_tags_for_resource-instance_method
|
282
|
+
def list_tags_for_resource: (
|
283
|
+
resource_arn: ::String
|
284
|
+
) -> _ListTagsForResourceResponseSuccess
|
285
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
286
|
+
|
287
|
+
interface _StartCanaryResponseSuccess
|
288
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartCanaryResponse]
|
289
|
+
end
|
290
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#start_canary-instance_method
|
291
|
+
def start_canary: (
|
292
|
+
name: ::String
|
293
|
+
) -> _StartCanaryResponseSuccess
|
294
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartCanaryResponseSuccess
|
295
|
+
|
296
|
+
interface _StopCanaryResponseSuccess
|
297
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopCanaryResponse]
|
298
|
+
end
|
299
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#stop_canary-instance_method
|
300
|
+
def stop_canary: (
|
301
|
+
name: ::String
|
302
|
+
) -> _StopCanaryResponseSuccess
|
303
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopCanaryResponseSuccess
|
304
|
+
|
305
|
+
interface _TagResourceResponseSuccess
|
306
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
307
|
+
end
|
308
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#tag_resource-instance_method
|
309
|
+
def tag_resource: (
|
310
|
+
resource_arn: ::String,
|
311
|
+
tags: Hash[::String, ::String]
|
312
|
+
) -> _TagResourceResponseSuccess
|
313
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
314
|
+
|
315
|
+
interface _UntagResourceResponseSuccess
|
316
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
317
|
+
end
|
318
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#untag_resource-instance_method
|
319
|
+
def untag_resource: (
|
320
|
+
resource_arn: ::String,
|
321
|
+
tag_keys: Array[::String]
|
322
|
+
) -> _UntagResourceResponseSuccess
|
323
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
324
|
+
|
325
|
+
interface _UpdateCanaryResponseSuccess
|
326
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCanaryResponse]
|
327
|
+
end
|
328
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#update_canary-instance_method
|
329
|
+
def update_canary: (
|
330
|
+
name: ::String,
|
331
|
+
?code: {
|
332
|
+
s3_bucket: ::String?,
|
333
|
+
s3_key: ::String?,
|
334
|
+
s3_version: ::String?,
|
335
|
+
zip_file: ::String?,
|
336
|
+
handler: ::String
|
337
|
+
},
|
338
|
+
?execution_role_arn: ::String,
|
339
|
+
?runtime_version: ::String,
|
340
|
+
?schedule: {
|
341
|
+
expression: ::String,
|
342
|
+
duration_in_seconds: ::Integer?
|
343
|
+
},
|
344
|
+
?run_config: {
|
345
|
+
timeout_in_seconds: ::Integer?,
|
346
|
+
memory_in_mb: ::Integer?,
|
347
|
+
active_tracing: bool?,
|
348
|
+
environment_variables: Hash[::String, ::String]?
|
349
|
+
},
|
350
|
+
?success_retention_period_in_days: ::Integer,
|
351
|
+
?failure_retention_period_in_days: ::Integer,
|
352
|
+
?vpc_config: {
|
353
|
+
subnet_ids: Array[::String]?,
|
354
|
+
security_group_ids: Array[::String]?
|
355
|
+
},
|
356
|
+
?visual_reference: {
|
357
|
+
base_screenshots: Array[
|
358
|
+
{
|
359
|
+
screenshot_name: ::String,
|
360
|
+
ignore_coordinates: Array[::String]?
|
361
|
+
},
|
362
|
+
]?,
|
363
|
+
base_canary_run_id: ::String
|
364
|
+
},
|
365
|
+
?artifact_s3_location: ::String,
|
366
|
+
?artifact_config: {
|
367
|
+
s3_encryption: {
|
368
|
+
encryption_mode: ("SSE_S3" | "SSE_KMS")?,
|
369
|
+
kms_key_arn: ::String?
|
370
|
+
}?
|
371
|
+
}
|
372
|
+
) -> _UpdateCanaryResponseSuccess
|
373
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCanaryResponseSuccess
|
374
|
+
end
|
375
|
+
end
|
376
|
+
end
|
377
|
+
|
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 Synthetics
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class BadRequestException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class InternalFailureException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class NotFoundException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class RequestEntityTooLargeException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
33
|
+
def message: () -> ::String
|
34
|
+
end
|
35
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
36
|
+
def message: () -> ::String
|
37
|
+
end
|
38
|
+
class TooManyRequestsException < ::Aws::Errors::ServiceError
|
39
|
+
def message: () -> ::String
|
40
|
+
end
|
41
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
42
|
+
def message: () -> ::String
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
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 Synthetics
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/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,478 @@
|
|
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::Synthetics
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class ArtifactConfigInput
|
12
|
+
attr_accessor s3_encryption: Types::S3EncryptionConfig
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class ArtifactConfigOutput
|
17
|
+
attr_accessor s3_encryption: Types::S3EncryptionConfig
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class AssociateResourceRequest
|
22
|
+
attr_accessor group_identifier: ::String
|
23
|
+
attr_accessor resource_arn: ::String
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class AssociateResourceResponse < Aws::EmptyStructure
|
28
|
+
end
|
29
|
+
|
30
|
+
class BadRequestException
|
31
|
+
attr_accessor message: ::String
|
32
|
+
SENSITIVE: []
|
33
|
+
end
|
34
|
+
|
35
|
+
class BaseScreenshot
|
36
|
+
attr_accessor screenshot_name: ::String
|
37
|
+
attr_accessor ignore_coordinates: ::Array[::String]
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
41
|
+
class Canary
|
42
|
+
attr_accessor id: ::String
|
43
|
+
attr_accessor name: ::String
|
44
|
+
attr_accessor code: Types::CanaryCodeOutput
|
45
|
+
attr_accessor execution_role_arn: ::String
|
46
|
+
attr_accessor schedule: Types::CanaryScheduleOutput
|
47
|
+
attr_accessor run_config: Types::CanaryRunConfigOutput
|
48
|
+
attr_accessor success_retention_period_in_days: ::Integer
|
49
|
+
attr_accessor failure_retention_period_in_days: ::Integer
|
50
|
+
attr_accessor status: Types::CanaryStatus
|
51
|
+
attr_accessor timeline: Types::CanaryTimeline
|
52
|
+
attr_accessor artifact_s3_location: ::String
|
53
|
+
attr_accessor engine_arn: ::String
|
54
|
+
attr_accessor runtime_version: ::String
|
55
|
+
attr_accessor vpc_config: Types::VpcConfigOutput
|
56
|
+
attr_accessor visual_reference: Types::VisualReferenceOutput
|
57
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
58
|
+
attr_accessor artifact_config: Types::ArtifactConfigOutput
|
59
|
+
SENSITIVE: []
|
60
|
+
end
|
61
|
+
|
62
|
+
class CanaryCodeInput
|
63
|
+
attr_accessor s3_bucket: ::String
|
64
|
+
attr_accessor s3_key: ::String
|
65
|
+
attr_accessor s3_version: ::String
|
66
|
+
attr_accessor zip_file: ::String
|
67
|
+
attr_accessor handler: ::String
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class CanaryCodeOutput
|
72
|
+
attr_accessor source_location_arn: ::String
|
73
|
+
attr_accessor handler: ::String
|
74
|
+
SENSITIVE: []
|
75
|
+
end
|
76
|
+
|
77
|
+
class CanaryLastRun
|
78
|
+
attr_accessor canary_name: ::String
|
79
|
+
attr_accessor last_run: Types::CanaryRun
|
80
|
+
SENSITIVE: []
|
81
|
+
end
|
82
|
+
|
83
|
+
class CanaryRun
|
84
|
+
attr_accessor id: ::String
|
85
|
+
attr_accessor name: ::String
|
86
|
+
attr_accessor status: Types::CanaryRunStatus
|
87
|
+
attr_accessor timeline: Types::CanaryRunTimeline
|
88
|
+
attr_accessor artifact_s3_location: ::String
|
89
|
+
SENSITIVE: []
|
90
|
+
end
|
91
|
+
|
92
|
+
class CanaryRunConfigInput
|
93
|
+
attr_accessor timeout_in_seconds: ::Integer
|
94
|
+
attr_accessor memory_in_mb: ::Integer
|
95
|
+
attr_accessor active_tracing: bool
|
96
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class CanaryRunConfigOutput
|
101
|
+
attr_accessor timeout_in_seconds: ::Integer
|
102
|
+
attr_accessor memory_in_mb: ::Integer
|
103
|
+
attr_accessor active_tracing: bool
|
104
|
+
SENSITIVE: []
|
105
|
+
end
|
106
|
+
|
107
|
+
class CanaryRunStatus
|
108
|
+
attr_accessor state: ("RUNNING" | "PASSED" | "FAILED")
|
109
|
+
attr_accessor state_reason: ::String
|
110
|
+
attr_accessor state_reason_code: ("CANARY_FAILURE" | "EXECUTION_FAILURE")
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class CanaryRunTimeline
|
115
|
+
attr_accessor started: ::Time
|
116
|
+
attr_accessor completed: ::Time
|
117
|
+
SENSITIVE: []
|
118
|
+
end
|
119
|
+
|
120
|
+
class CanaryScheduleInput
|
121
|
+
attr_accessor expression: ::String
|
122
|
+
attr_accessor duration_in_seconds: ::Integer
|
123
|
+
SENSITIVE: []
|
124
|
+
end
|
125
|
+
|
126
|
+
class CanaryScheduleOutput
|
127
|
+
attr_accessor expression: ::String
|
128
|
+
attr_accessor duration_in_seconds: ::Integer
|
129
|
+
SENSITIVE: []
|
130
|
+
end
|
131
|
+
|
132
|
+
class CanaryStatus
|
133
|
+
attr_accessor state: ("CREATING" | "READY" | "STARTING" | "RUNNING" | "UPDATING" | "STOPPING" | "STOPPED" | "ERROR" | "DELETING")
|
134
|
+
attr_accessor state_reason: ::String
|
135
|
+
attr_accessor state_reason_code: ("INVALID_PERMISSIONS" | "CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_PENDING" | "UPDATE_IN_PROGRESS" | "UPDATE_COMPLETE" | "ROLLBACK_COMPLETE" | "ROLLBACK_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "SYNC_DELETE_IN_PROGRESS")
|
136
|
+
SENSITIVE: []
|
137
|
+
end
|
138
|
+
|
139
|
+
class CanaryTimeline
|
140
|
+
attr_accessor created: ::Time
|
141
|
+
attr_accessor last_modified: ::Time
|
142
|
+
attr_accessor last_started: ::Time
|
143
|
+
attr_accessor last_stopped: ::Time
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class ConflictException
|
148
|
+
attr_accessor message: ::String
|
149
|
+
SENSITIVE: []
|
150
|
+
end
|
151
|
+
|
152
|
+
class CreateCanaryRequest
|
153
|
+
attr_accessor name: ::String
|
154
|
+
attr_accessor code: Types::CanaryCodeInput
|
155
|
+
attr_accessor artifact_s3_location: ::String
|
156
|
+
attr_accessor execution_role_arn: ::String
|
157
|
+
attr_accessor schedule: Types::CanaryScheduleInput
|
158
|
+
attr_accessor run_config: Types::CanaryRunConfigInput
|
159
|
+
attr_accessor success_retention_period_in_days: ::Integer
|
160
|
+
attr_accessor failure_retention_period_in_days: ::Integer
|
161
|
+
attr_accessor runtime_version: ::String
|
162
|
+
attr_accessor vpc_config: Types::VpcConfigInput
|
163
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
164
|
+
attr_accessor artifact_config: Types::ArtifactConfigInput
|
165
|
+
SENSITIVE: []
|
166
|
+
end
|
167
|
+
|
168
|
+
class CreateCanaryResponse
|
169
|
+
attr_accessor canary: Types::Canary
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class CreateGroupRequest
|
174
|
+
attr_accessor name: ::String
|
175
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class CreateGroupResponse
|
180
|
+
attr_accessor group: Types::Group
|
181
|
+
SENSITIVE: []
|
182
|
+
end
|
183
|
+
|
184
|
+
class DeleteCanaryRequest
|
185
|
+
attr_accessor name: ::String
|
186
|
+
attr_accessor delete_lambda: bool
|
187
|
+
SENSITIVE: []
|
188
|
+
end
|
189
|
+
|
190
|
+
class DeleteCanaryResponse < Aws::EmptyStructure
|
191
|
+
end
|
192
|
+
|
193
|
+
class DeleteGroupRequest
|
194
|
+
attr_accessor group_identifier: ::String
|
195
|
+
SENSITIVE: []
|
196
|
+
end
|
197
|
+
|
198
|
+
class DeleteGroupResponse < Aws::EmptyStructure
|
199
|
+
end
|
200
|
+
|
201
|
+
class DescribeCanariesLastRunRequest
|
202
|
+
attr_accessor next_token: ::String
|
203
|
+
attr_accessor max_results: ::Integer
|
204
|
+
attr_accessor names: ::Array[::String]
|
205
|
+
SENSITIVE: []
|
206
|
+
end
|
207
|
+
|
208
|
+
class DescribeCanariesLastRunResponse
|
209
|
+
attr_accessor canaries_last_run: ::Array[Types::CanaryLastRun]
|
210
|
+
attr_accessor next_token: ::String
|
211
|
+
SENSITIVE: []
|
212
|
+
end
|
213
|
+
|
214
|
+
class DescribeCanariesRequest
|
215
|
+
attr_accessor next_token: ::String
|
216
|
+
attr_accessor max_results: ::Integer
|
217
|
+
attr_accessor names: ::Array[::String]
|
218
|
+
SENSITIVE: []
|
219
|
+
end
|
220
|
+
|
221
|
+
class DescribeCanariesResponse
|
222
|
+
attr_accessor canaries: ::Array[Types::Canary]
|
223
|
+
attr_accessor next_token: ::String
|
224
|
+
SENSITIVE: []
|
225
|
+
end
|
226
|
+
|
227
|
+
class DescribeRuntimeVersionsRequest
|
228
|
+
attr_accessor next_token: ::String
|
229
|
+
attr_accessor max_results: ::Integer
|
230
|
+
SENSITIVE: []
|
231
|
+
end
|
232
|
+
|
233
|
+
class DescribeRuntimeVersionsResponse
|
234
|
+
attr_accessor runtime_versions: ::Array[Types::RuntimeVersion]
|
235
|
+
attr_accessor next_token: ::String
|
236
|
+
SENSITIVE: []
|
237
|
+
end
|
238
|
+
|
239
|
+
class DisassociateResourceRequest
|
240
|
+
attr_accessor group_identifier: ::String
|
241
|
+
attr_accessor resource_arn: ::String
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
245
|
+
class DisassociateResourceResponse < Aws::EmptyStructure
|
246
|
+
end
|
247
|
+
|
248
|
+
class GetCanaryRequest
|
249
|
+
attr_accessor name: ::String
|
250
|
+
SENSITIVE: []
|
251
|
+
end
|
252
|
+
|
253
|
+
class GetCanaryResponse
|
254
|
+
attr_accessor canary: Types::Canary
|
255
|
+
SENSITIVE: []
|
256
|
+
end
|
257
|
+
|
258
|
+
class GetCanaryRunsRequest
|
259
|
+
attr_accessor name: ::String
|
260
|
+
attr_accessor next_token: ::String
|
261
|
+
attr_accessor max_results: ::Integer
|
262
|
+
SENSITIVE: []
|
263
|
+
end
|
264
|
+
|
265
|
+
class GetCanaryRunsResponse
|
266
|
+
attr_accessor canary_runs: ::Array[Types::CanaryRun]
|
267
|
+
attr_accessor next_token: ::String
|
268
|
+
SENSITIVE: []
|
269
|
+
end
|
270
|
+
|
271
|
+
class GetGroupRequest
|
272
|
+
attr_accessor group_identifier: ::String
|
273
|
+
SENSITIVE: []
|
274
|
+
end
|
275
|
+
|
276
|
+
class GetGroupResponse
|
277
|
+
attr_accessor group: Types::Group
|
278
|
+
SENSITIVE: []
|
279
|
+
end
|
280
|
+
|
281
|
+
class Group
|
282
|
+
attr_accessor id: ::String
|
283
|
+
attr_accessor name: ::String
|
284
|
+
attr_accessor arn: ::String
|
285
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
286
|
+
attr_accessor created_time: ::Time
|
287
|
+
attr_accessor last_modified_time: ::Time
|
288
|
+
SENSITIVE: []
|
289
|
+
end
|
290
|
+
|
291
|
+
class GroupSummary
|
292
|
+
attr_accessor id: ::String
|
293
|
+
attr_accessor name: ::String
|
294
|
+
attr_accessor arn: ::String
|
295
|
+
SENSITIVE: []
|
296
|
+
end
|
297
|
+
|
298
|
+
class InternalFailureException
|
299
|
+
attr_accessor message: ::String
|
300
|
+
SENSITIVE: []
|
301
|
+
end
|
302
|
+
|
303
|
+
class InternalServerException
|
304
|
+
attr_accessor message: ::String
|
305
|
+
SENSITIVE: []
|
306
|
+
end
|
307
|
+
|
308
|
+
class ListAssociatedGroupsRequest
|
309
|
+
attr_accessor next_token: ::String
|
310
|
+
attr_accessor max_results: ::Integer
|
311
|
+
attr_accessor resource_arn: ::String
|
312
|
+
SENSITIVE: []
|
313
|
+
end
|
314
|
+
|
315
|
+
class ListAssociatedGroupsResponse
|
316
|
+
attr_accessor groups: ::Array[Types::GroupSummary]
|
317
|
+
attr_accessor next_token: ::String
|
318
|
+
SENSITIVE: []
|
319
|
+
end
|
320
|
+
|
321
|
+
class ListGroupResourcesRequest
|
322
|
+
attr_accessor next_token: ::String
|
323
|
+
attr_accessor max_results: ::Integer
|
324
|
+
attr_accessor group_identifier: ::String
|
325
|
+
SENSITIVE: []
|
326
|
+
end
|
327
|
+
|
328
|
+
class ListGroupResourcesResponse
|
329
|
+
attr_accessor resources: ::Array[::String]
|
330
|
+
attr_accessor next_token: ::String
|
331
|
+
SENSITIVE: []
|
332
|
+
end
|
333
|
+
|
334
|
+
class ListGroupsRequest
|
335
|
+
attr_accessor next_token: ::String
|
336
|
+
attr_accessor max_results: ::Integer
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
340
|
+
class ListGroupsResponse
|
341
|
+
attr_accessor groups: ::Array[Types::GroupSummary]
|
342
|
+
attr_accessor next_token: ::String
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class ListTagsForResourceRequest
|
347
|
+
attr_accessor resource_arn: ::String
|
348
|
+
SENSITIVE: []
|
349
|
+
end
|
350
|
+
|
351
|
+
class ListTagsForResourceResponse
|
352
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
353
|
+
SENSITIVE: []
|
354
|
+
end
|
355
|
+
|
356
|
+
class NotFoundException
|
357
|
+
attr_accessor message: ::String
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class RequestEntityTooLargeException
|
362
|
+
attr_accessor message: ::String
|
363
|
+
SENSITIVE: []
|
364
|
+
end
|
365
|
+
|
366
|
+
class ResourceNotFoundException
|
367
|
+
attr_accessor message: ::String
|
368
|
+
SENSITIVE: []
|
369
|
+
end
|
370
|
+
|
371
|
+
class RuntimeVersion
|
372
|
+
attr_accessor version_name: ::String
|
373
|
+
attr_accessor description: ::String
|
374
|
+
attr_accessor release_date: ::Time
|
375
|
+
attr_accessor deprecation_date: ::Time
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class S3EncryptionConfig
|
380
|
+
attr_accessor encryption_mode: ("SSE_S3" | "SSE_KMS")
|
381
|
+
attr_accessor kms_key_arn: ::String
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class ServiceQuotaExceededException
|
386
|
+
attr_accessor message: ::String
|
387
|
+
SENSITIVE: []
|
388
|
+
end
|
389
|
+
|
390
|
+
class StartCanaryRequest
|
391
|
+
attr_accessor name: ::String
|
392
|
+
SENSITIVE: []
|
393
|
+
end
|
394
|
+
|
395
|
+
class StartCanaryResponse < Aws::EmptyStructure
|
396
|
+
end
|
397
|
+
|
398
|
+
class StopCanaryRequest
|
399
|
+
attr_accessor name: ::String
|
400
|
+
SENSITIVE: []
|
401
|
+
end
|
402
|
+
|
403
|
+
class StopCanaryResponse < Aws::EmptyStructure
|
404
|
+
end
|
405
|
+
|
406
|
+
class TagResourceRequest
|
407
|
+
attr_accessor resource_arn: ::String
|
408
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
409
|
+
SENSITIVE: []
|
410
|
+
end
|
411
|
+
|
412
|
+
class TagResourceResponse < Aws::EmptyStructure
|
413
|
+
end
|
414
|
+
|
415
|
+
class TooManyRequestsException
|
416
|
+
attr_accessor message: ::String
|
417
|
+
SENSITIVE: []
|
418
|
+
end
|
419
|
+
|
420
|
+
class UntagResourceRequest
|
421
|
+
attr_accessor resource_arn: ::String
|
422
|
+
attr_accessor tag_keys: ::Array[::String]
|
423
|
+
SENSITIVE: []
|
424
|
+
end
|
425
|
+
|
426
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
427
|
+
end
|
428
|
+
|
429
|
+
class UpdateCanaryRequest
|
430
|
+
attr_accessor name: ::String
|
431
|
+
attr_accessor code: Types::CanaryCodeInput
|
432
|
+
attr_accessor execution_role_arn: ::String
|
433
|
+
attr_accessor runtime_version: ::String
|
434
|
+
attr_accessor schedule: Types::CanaryScheduleInput
|
435
|
+
attr_accessor run_config: Types::CanaryRunConfigInput
|
436
|
+
attr_accessor success_retention_period_in_days: ::Integer
|
437
|
+
attr_accessor failure_retention_period_in_days: ::Integer
|
438
|
+
attr_accessor vpc_config: Types::VpcConfigInput
|
439
|
+
attr_accessor visual_reference: Types::VisualReferenceInput
|
440
|
+
attr_accessor artifact_s3_location: ::String
|
441
|
+
attr_accessor artifact_config: Types::ArtifactConfigInput
|
442
|
+
SENSITIVE: []
|
443
|
+
end
|
444
|
+
|
445
|
+
class UpdateCanaryResponse < Aws::EmptyStructure
|
446
|
+
end
|
447
|
+
|
448
|
+
class ValidationException
|
449
|
+
attr_accessor message: ::String
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class VisualReferenceInput
|
454
|
+
attr_accessor base_screenshots: ::Array[Types::BaseScreenshot]
|
455
|
+
attr_accessor base_canary_run_id: ::String
|
456
|
+
SENSITIVE: []
|
457
|
+
end
|
458
|
+
|
459
|
+
class VisualReferenceOutput
|
460
|
+
attr_accessor base_screenshots: ::Array[Types::BaseScreenshot]
|
461
|
+
attr_accessor base_canary_run_id: ::String
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class VpcConfigInput
|
466
|
+
attr_accessor subnet_ids: ::Array[::String]
|
467
|
+
attr_accessor security_group_ids: ::Array[::String]
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class VpcConfigOutput
|
472
|
+
attr_accessor vpc_id: ::String
|
473
|
+
attr_accessor subnet_ids: ::Array[::String]
|
474
|
+
attr_accessor security_group_ids: ::Array[::String]
|
475
|
+
SENSITIVE: []
|
476
|
+
end
|
477
|
+
end
|
478
|
+
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 Synthetics
|
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-synthetics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.41.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.193.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-synthetics/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-synthetics/resource.rb
|
68
68
|
- lib/aws-sdk-synthetics/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-synthetics
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-synthetics/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 - Synthetics
|
94
99
|
test_files: []
|