aws-sdk-synthetics 1.1.0 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-synthetics.rb +4 -2
- data/lib/aws-sdk-synthetics/client.rb +60 -19
- data/lib/aws-sdk-synthetics/client_api.rb +5 -0
- data/lib/aws-sdk-synthetics/errors.rb +2 -0
- data/lib/aws-sdk-synthetics/resource.rb +2 -0
- data/lib/aws-sdk-synthetics/types.rb +79 -6
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb7b992bc07f2b29430021d525f10b8355f39071cfe059cbb7507121eb0fa355
|
4
|
+
data.tar.gz: 4ee974f870e2fe2f39551cc66db0d024398844350901c1bcce38c8735d5bc6c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48eb0c143599ae1e5e3afeb28775381c8bb667190b186fc959e60dc60f89847938f1a6352f67ce7ca1f949d911e5d204061b5b5dd937f04a56095e1b3bb15d2a
|
7
|
+
data.tar.gz: b3514add023275e99aeaf5ecde1527b544b132b602e89a0157c2f267db10b5b675106a5a9f4783060c233e9fdf006f6c252e7cec0a695835ef5b6205b39671ee
|
data/lib/aws-sdk-synthetics.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-synthetics/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::Synthetics
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.6.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::Synthetics
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::Synthetics
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::Synthetics
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::Synthetics
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +195,7 @@ module Aws::Synthetics
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -315,24 +334,25 @@ module Aws::Synthetics
|
|
315
334
|
# metrics. You can set up a canary to run continuously or just once.
|
316
335
|
#
|
317
336
|
# Do not use `CreateCanary` to modify an existing canary. Use
|
318
|
-
# UpdateCanary instead.
|
337
|
+
# [UpdateCanary][1] instead.
|
319
338
|
#
|
320
339
|
# To create canaries, you must have the `CloudWatchSyntheticsFullAccess`
|
321
340
|
# policy. If you are creating a new IAM role for the canary, you also
|
322
341
|
# need the the `iam:CreateRole`, `iam:CreatePolicy` and
|
323
342
|
# `iam:AttachRolePolicy` permissions. For more information, see
|
324
|
-
# [Necessary Roles and Permissions][
|
343
|
+
# [Necessary Roles and Permissions][2].
|
325
344
|
#
|
326
345
|
# Do not include secrets or proprietary information in your canary
|
327
346
|
# names. The canary name makes up part of the Amazon Resource Name (ARN)
|
328
347
|
# for the canary, and the ARN is included in outbound calls over the
|
329
348
|
# internet. For more information, see [Security Considerations for
|
330
|
-
# Synthetics Canaries][
|
349
|
+
# Synthetics Canaries][3].
|
331
350
|
#
|
332
351
|
#
|
333
352
|
#
|
334
|
-
# [1]: https://docs.aws.amazon.com/
|
335
|
-
# [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/
|
353
|
+
# [1]: https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_UpdateCanary.html
|
354
|
+
# [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Roles
|
355
|
+
# [3]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/servicelens_canaries_security.html
|
336
356
|
#
|
337
357
|
# @option params [required, String] :name
|
338
358
|
# The name for this canary. Be sure to give it a descriptive name that
|
@@ -444,6 +464,7 @@ module Aws::Synthetics
|
|
444
464
|
# },
|
445
465
|
# run_config: {
|
446
466
|
# timeout_in_seconds: 1, # required
|
467
|
+
# memory_in_mb: 1,
|
447
468
|
# },
|
448
469
|
# success_retention_period_in_days: 1,
|
449
470
|
# failure_retention_period_in_days: 1,
|
@@ -467,6 +488,7 @@ module Aws::Synthetics
|
|
467
488
|
# resp.canary.schedule.expression #=> String
|
468
489
|
# resp.canary.schedule.duration_in_seconds #=> Integer
|
469
490
|
# resp.canary.run_config.timeout_in_seconds #=> Integer
|
491
|
+
# resp.canary.run_config.memory_in_mb #=> Integer
|
470
492
|
# resp.canary.success_retention_period_in_days #=> Integer
|
471
493
|
# resp.canary.failure_retention_period_in_days #=> Integer
|
472
494
|
# resp.canary.status.state #=> String, one of "CREATING", "READY", "STARTING", "RUNNING", "UPDATING", "STOPPING", "STOPPED", "ERROR", "DELETING"
|
@@ -525,7 +547,11 @@ module Aws::Synthetics
|
|
525
547
|
#
|
526
548
|
# @option params [required, String] :name
|
527
549
|
# The name of the canary that you want to delete. To find the names of
|
528
|
-
# your canaries, use DescribeCanaries.
|
550
|
+
# your canaries, use [DescribeCanaries][1].
|
551
|
+
#
|
552
|
+
#
|
553
|
+
#
|
554
|
+
# [1]: https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DescribeCanaries.html
|
529
555
|
#
|
530
556
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
531
557
|
#
|
@@ -587,6 +613,7 @@ module Aws::Synthetics
|
|
587
613
|
# resp.canaries[0].schedule.expression #=> String
|
588
614
|
# resp.canaries[0].schedule.duration_in_seconds #=> Integer
|
589
615
|
# resp.canaries[0].run_config.timeout_in_seconds #=> Integer
|
616
|
+
# resp.canaries[0].run_config.memory_in_mb #=> Integer
|
590
617
|
# resp.canaries[0].success_retention_period_in_days #=> Integer
|
591
618
|
# resp.canaries[0].failure_retention_period_in_days #=> Integer
|
592
619
|
# resp.canaries[0].status.state #=> String, one of "CREATING", "READY", "STARTING", "RUNNING", "UPDATING", "STOPPING", "STOPPED", "ERROR", "DELETING"
|
@@ -746,6 +773,7 @@ module Aws::Synthetics
|
|
746
773
|
# resp.canary.schedule.expression #=> String
|
747
774
|
# resp.canary.schedule.duration_in_seconds #=> Integer
|
748
775
|
# resp.canary.run_config.timeout_in_seconds #=> Integer
|
776
|
+
# resp.canary.run_config.memory_in_mb #=> Integer
|
749
777
|
# resp.canary.success_retention_period_in_days #=> Integer
|
750
778
|
# resp.canary.failure_retention_period_in_days #=> Integer
|
751
779
|
# resp.canary.status.state #=> String, one of "CREATING", "READY", "STARTING", "RUNNING", "UPDATING", "STOPPING", "STOPPED", "ERROR", "DELETING"
|
@@ -868,7 +896,11 @@ module Aws::Synthetics
|
|
868
896
|
#
|
869
897
|
# @option params [required, String] :name
|
870
898
|
# The name of the canary that you want to run. To find canary names, use
|
871
|
-
# DescribeCanaries.
|
899
|
+
# [DescribeCanaries][1].
|
900
|
+
#
|
901
|
+
#
|
902
|
+
#
|
903
|
+
# [1]: https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DescribeCanaries.html
|
872
904
|
#
|
873
905
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
874
906
|
#
|
@@ -898,7 +930,11 @@ module Aws::Synthetics
|
|
898
930
|
#
|
899
931
|
# @option params [required, String] :name
|
900
932
|
# The name of the canary that you want to stop. To find the names of
|
901
|
-
# your canaries, use DescribeCanaries.
|
933
|
+
# your canaries, use [DescribeCanaries][1].
|
934
|
+
#
|
935
|
+
#
|
936
|
+
#
|
937
|
+
# [1]: https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DescribeCanaries.html
|
902
938
|
#
|
903
939
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
904
940
|
#
|
@@ -1005,10 +1041,14 @@ module Aws::Synthetics
|
|
1005
1041
|
#
|
1006
1042
|
# @option params [required, String] :name
|
1007
1043
|
# The name of the canary that you want to update. To find the names of
|
1008
|
-
# your canaries, use DescribeCanaries.
|
1044
|
+
# your canaries, use [DescribeCanaries][1].
|
1009
1045
|
#
|
1010
1046
|
# You cannot change the name of a canary that has already been created.
|
1011
1047
|
#
|
1048
|
+
#
|
1049
|
+
#
|
1050
|
+
# [1]: https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DescribeCanaries.html
|
1051
|
+
#
|
1012
1052
|
# @option params [Types::CanaryCodeInput] :code
|
1013
1053
|
# A structure that includes the entry point from which the canary should
|
1014
1054
|
# start running your script. If the script is stored in an S3 bucket,
|
@@ -1088,6 +1128,7 @@ module Aws::Synthetics
|
|
1088
1128
|
# },
|
1089
1129
|
# run_config: {
|
1090
1130
|
# timeout_in_seconds: 1, # required
|
1131
|
+
# memory_in_mb: 1,
|
1091
1132
|
# },
|
1092
1133
|
# success_retention_period_in_days: 1,
|
1093
1134
|
# failure_retention_period_in_days: 1,
|
@@ -1119,7 +1160,7 @@ module Aws::Synthetics
|
|
1119
1160
|
params: params,
|
1120
1161
|
config: config)
|
1121
1162
|
context[:gem_name] = 'aws-sdk-synthetics'
|
1122
|
-
context[:gem_version] = '1.
|
1163
|
+
context[:gem_version] = '1.6.0'
|
1123
1164
|
Seahorse::Client::Request.new(handlers, context)
|
1124
1165
|
end
|
1125
1166
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -58,6 +60,7 @@ module Aws::Synthetics
|
|
58
60
|
MaxOneYearInSeconds = Shapes::IntegerShape.new(name: 'MaxOneYearInSeconds')
|
59
61
|
MaxSize100 = Shapes::IntegerShape.new(name: 'MaxSize100')
|
60
62
|
MaxSize1024 = Shapes::IntegerShape.new(name: 'MaxSize1024')
|
63
|
+
MaxSize3008 = Shapes::IntegerShape.new(name: 'MaxSize3008')
|
61
64
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
62
65
|
RuntimeVersion = Shapes::StructureShape.new(name: 'RuntimeVersion')
|
63
66
|
RuntimeVersionList = Shapes::ListShape.new(name: 'RuntimeVersionList')
|
@@ -131,9 +134,11 @@ module Aws::Synthetics
|
|
131
134
|
CanaryRun.struct_class = Types::CanaryRun
|
132
135
|
|
133
136
|
CanaryRunConfigInput.add_member(:timeout_in_seconds, Shapes::ShapeRef.new(shape: MaxFifteenMinutesInSeconds, required: true, location_name: "TimeoutInSeconds"))
|
137
|
+
CanaryRunConfigInput.add_member(:memory_in_mb, Shapes::ShapeRef.new(shape: MaxSize3008, location_name: "MemoryInMB"))
|
134
138
|
CanaryRunConfigInput.struct_class = Types::CanaryRunConfigInput
|
135
139
|
|
136
140
|
CanaryRunConfigOutput.add_member(:timeout_in_seconds, Shapes::ShapeRef.new(shape: MaxFifteenMinutesInSeconds, location_name: "TimeoutInSeconds"))
|
141
|
+
CanaryRunConfigOutput.add_member(:memory_in_mb, Shapes::ShapeRef.new(shape: MaxSize3008, location_name: "MemoryInMB"))
|
137
142
|
CanaryRunConfigOutput.struct_class = Types::CanaryRunConfigOutput
|
138
143
|
|
139
144
|
CanaryRunStatus.add_member(:state, Shapes::ShapeRef.new(shape: CanaryRunState, location_name: "State"))
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -115,6 +117,7 @@ module Aws::Synthetics
|
|
115
117
|
:runtime_version,
|
116
118
|
:vpc_config,
|
117
119
|
:tags)
|
120
|
+
SENSITIVE = []
|
118
121
|
include Aws::Structure
|
119
122
|
end
|
120
123
|
|
@@ -174,6 +177,7 @@ module Aws::Synthetics
|
|
174
177
|
:s3_version,
|
175
178
|
:zip_file,
|
176
179
|
:handler)
|
180
|
+
SENSITIVE = []
|
177
181
|
include Aws::Structure
|
178
182
|
end
|
179
183
|
|
@@ -194,6 +198,7 @@ module Aws::Synthetics
|
|
194
198
|
class CanaryCodeOutput < Struct.new(
|
195
199
|
:source_location_arn,
|
196
200
|
:handler)
|
201
|
+
SENSITIVE = []
|
197
202
|
include Aws::Structure
|
198
203
|
end
|
199
204
|
|
@@ -213,6 +218,7 @@ module Aws::Synthetics
|
|
213
218
|
class CanaryLastRun < Struct.new(
|
214
219
|
:canary_name,
|
215
220
|
:last_run)
|
221
|
+
SENSITIVE = []
|
216
222
|
include Aws::Structure
|
217
223
|
end
|
218
224
|
|
@@ -242,6 +248,7 @@ module Aws::Synthetics
|
|
242
248
|
:status,
|
243
249
|
:timeline,
|
244
250
|
:artifact_s3_location)
|
251
|
+
SENSITIVE = []
|
245
252
|
include Aws::Structure
|
246
253
|
end
|
247
254
|
|
@@ -252,6 +259,7 @@ module Aws::Synthetics
|
|
252
259
|
#
|
253
260
|
# {
|
254
261
|
# timeout_in_seconds: 1, # required
|
262
|
+
# memory_in_mb: 1,
|
255
263
|
# }
|
256
264
|
#
|
257
265
|
# @!attribute [rw] timeout_in_seconds
|
@@ -260,10 +268,17 @@ module Aws::Synthetics
|
|
260
268
|
# up to a maximum of 14 minutes.
|
261
269
|
# @return [Integer]
|
262
270
|
#
|
271
|
+
# @!attribute [rw] memory_in_mb
|
272
|
+
# The maximum amount of memory available to the canary while it is
|
273
|
+
# running, in MB. The value you specify must be a multiple of 64.
|
274
|
+
# @return [Integer]
|
275
|
+
#
|
263
276
|
# @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/CanaryRunConfigInput AWS API Documentation
|
264
277
|
#
|
265
278
|
class CanaryRunConfigInput < Struct.new(
|
266
|
-
:timeout_in_seconds
|
279
|
+
:timeout_in_seconds,
|
280
|
+
:memory_in_mb)
|
281
|
+
SENSITIVE = []
|
267
282
|
include Aws::Structure
|
268
283
|
end
|
269
284
|
|
@@ -273,10 +288,17 @@ module Aws::Synthetics
|
|
273
288
|
# How long the canary is allowed to run before it must stop.
|
274
289
|
# @return [Integer]
|
275
290
|
#
|
291
|
+
# @!attribute [rw] memory_in_mb
|
292
|
+
# The maximum amount of memory available to the canary while it is
|
293
|
+
# running, in MB. The value you must be a multiple of 64.
|
294
|
+
# @return [Integer]
|
295
|
+
#
|
276
296
|
# @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/CanaryRunConfigOutput AWS API Documentation
|
277
297
|
#
|
278
298
|
class CanaryRunConfigOutput < Struct.new(
|
279
|
-
:timeout_in_seconds
|
299
|
+
:timeout_in_seconds,
|
300
|
+
:memory_in_mb)
|
301
|
+
SENSITIVE = []
|
280
302
|
include Aws::Structure
|
281
303
|
end
|
282
304
|
|
@@ -303,6 +325,7 @@ module Aws::Synthetics
|
|
303
325
|
:state,
|
304
326
|
:state_reason,
|
305
327
|
:state_reason_code)
|
328
|
+
SENSITIVE = []
|
306
329
|
include Aws::Structure
|
307
330
|
end
|
308
331
|
|
@@ -322,6 +345,7 @@ module Aws::Synthetics
|
|
322
345
|
class CanaryRunTimeline < Struct.new(
|
323
346
|
:started,
|
324
347
|
:completed)
|
348
|
+
SENSITIVE = []
|
325
349
|
include Aws::Structure
|
326
350
|
end
|
327
351
|
|
@@ -362,6 +386,7 @@ module Aws::Synthetics
|
|
362
386
|
class CanaryScheduleInput < Struct.new(
|
363
387
|
:expression,
|
364
388
|
:duration_in_seconds)
|
389
|
+
SENSITIVE = []
|
365
390
|
include Aws::Structure
|
366
391
|
end
|
367
392
|
|
@@ -392,6 +417,7 @@ module Aws::Synthetics
|
|
392
417
|
class CanaryScheduleOutput < Struct.new(
|
393
418
|
:expression,
|
394
419
|
:duration_in_seconds)
|
420
|
+
SENSITIVE = []
|
395
421
|
include Aws::Structure
|
396
422
|
end
|
397
423
|
|
@@ -417,6 +443,7 @@ module Aws::Synthetics
|
|
417
443
|
:state,
|
418
444
|
:state_reason,
|
419
445
|
:state_reason_code)
|
446
|
+
SENSITIVE = []
|
420
447
|
include Aws::Structure
|
421
448
|
end
|
422
449
|
|
@@ -446,6 +473,7 @@ module Aws::Synthetics
|
|
446
473
|
:last_modified,
|
447
474
|
:last_started,
|
448
475
|
:last_stopped)
|
476
|
+
SENSITIVE = []
|
449
477
|
include Aws::Structure
|
450
478
|
end
|
451
479
|
|
@@ -458,6 +486,7 @@ module Aws::Synthetics
|
|
458
486
|
#
|
459
487
|
class ConflictException < Struct.new(
|
460
488
|
:message)
|
489
|
+
SENSITIVE = []
|
461
490
|
include Aws::Structure
|
462
491
|
end
|
463
492
|
|
@@ -481,6 +510,7 @@ module Aws::Synthetics
|
|
481
510
|
# },
|
482
511
|
# run_config: {
|
483
512
|
# timeout_in_seconds: 1, # required
|
513
|
+
# memory_in_mb: 1,
|
484
514
|
# },
|
485
515
|
# success_retention_period_in_days: 1,
|
486
516
|
# failure_retention_period_in_days: 1,
|
@@ -608,6 +638,7 @@ module Aws::Synthetics
|
|
608
638
|
:runtime_version,
|
609
639
|
:vpc_config,
|
610
640
|
:tags)
|
641
|
+
SENSITIVE = []
|
611
642
|
include Aws::Structure
|
612
643
|
end
|
613
644
|
|
@@ -619,6 +650,7 @@ module Aws::Synthetics
|
|
619
650
|
#
|
620
651
|
class CreateCanaryResponse < Struct.new(
|
621
652
|
:canary)
|
653
|
+
SENSITIVE = []
|
622
654
|
include Aws::Structure
|
623
655
|
end
|
624
656
|
|
@@ -631,13 +663,18 @@ module Aws::Synthetics
|
|
631
663
|
#
|
632
664
|
# @!attribute [rw] name
|
633
665
|
# The name of the canary that you want to delete. To find the names of
|
634
|
-
# your canaries, use DescribeCanaries.
|
666
|
+
# your canaries, use [DescribeCanaries][1].
|
667
|
+
#
|
668
|
+
#
|
669
|
+
#
|
670
|
+
# [1]: https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DescribeCanaries.html
|
635
671
|
# @return [String]
|
636
672
|
#
|
637
673
|
# @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/DeleteCanaryRequest AWS API Documentation
|
638
674
|
#
|
639
675
|
class DeleteCanaryRequest < Struct.new(
|
640
676
|
:name)
|
677
|
+
SENSITIVE = []
|
641
678
|
include Aws::Structure
|
642
679
|
end
|
643
680
|
|
@@ -670,6 +707,7 @@ module Aws::Synthetics
|
|
670
707
|
class DescribeCanariesLastRunRequest < Struct.new(
|
671
708
|
:next_token,
|
672
709
|
:max_results)
|
710
|
+
SENSITIVE = []
|
673
711
|
include Aws::Structure
|
674
712
|
end
|
675
713
|
|
@@ -689,6 +727,7 @@ module Aws::Synthetics
|
|
689
727
|
class DescribeCanariesLastRunResponse < Struct.new(
|
690
728
|
:canaries_last_run,
|
691
729
|
:next_token)
|
730
|
+
SENSITIVE = []
|
692
731
|
include Aws::Structure
|
693
732
|
end
|
694
733
|
|
@@ -717,6 +756,7 @@ module Aws::Synthetics
|
|
717
756
|
class DescribeCanariesRequest < Struct.new(
|
718
757
|
:next_token,
|
719
758
|
:max_results)
|
759
|
+
SENSITIVE = []
|
720
760
|
include Aws::Structure
|
721
761
|
end
|
722
762
|
|
@@ -736,6 +776,7 @@ module Aws::Synthetics
|
|
736
776
|
class DescribeCanariesResponse < Struct.new(
|
737
777
|
:canaries,
|
738
778
|
:next_token)
|
779
|
+
SENSITIVE = []
|
739
780
|
include Aws::Structure
|
740
781
|
end
|
741
782
|
|
@@ -764,6 +805,7 @@ module Aws::Synthetics
|
|
764
805
|
class DescribeRuntimeVersionsRequest < Struct.new(
|
765
806
|
:next_token,
|
766
807
|
:max_results)
|
808
|
+
SENSITIVE = []
|
767
809
|
include Aws::Structure
|
768
810
|
end
|
769
811
|
|
@@ -783,6 +825,7 @@ module Aws::Synthetics
|
|
783
825
|
class DescribeRuntimeVersionsResponse < Struct.new(
|
784
826
|
:runtime_versions,
|
785
827
|
:next_token)
|
828
|
+
SENSITIVE = []
|
786
829
|
include Aws::Structure
|
787
830
|
end
|
788
831
|
|
@@ -801,6 +844,7 @@ module Aws::Synthetics
|
|
801
844
|
#
|
802
845
|
class GetCanaryRequest < Struct.new(
|
803
846
|
:name)
|
847
|
+
SENSITIVE = []
|
804
848
|
include Aws::Structure
|
805
849
|
end
|
806
850
|
|
@@ -812,6 +856,7 @@ module Aws::Synthetics
|
|
812
856
|
#
|
813
857
|
class GetCanaryResponse < Struct.new(
|
814
858
|
:canary)
|
859
|
+
SENSITIVE = []
|
815
860
|
include Aws::Structure
|
816
861
|
end
|
817
862
|
|
@@ -846,6 +891,7 @@ module Aws::Synthetics
|
|
846
891
|
:name,
|
847
892
|
:next_token,
|
848
893
|
:max_results)
|
894
|
+
SENSITIVE = []
|
849
895
|
include Aws::Structure
|
850
896
|
end
|
851
897
|
|
@@ -865,6 +911,7 @@ module Aws::Synthetics
|
|
865
911
|
class GetCanaryRunsResponse < Struct.new(
|
866
912
|
:canary_runs,
|
867
913
|
:next_token)
|
914
|
+
SENSITIVE = []
|
868
915
|
include Aws::Structure
|
869
916
|
end
|
870
917
|
|
@@ -877,6 +924,7 @@ module Aws::Synthetics
|
|
877
924
|
#
|
878
925
|
class InternalServerException < Struct.new(
|
879
926
|
:message)
|
927
|
+
SENSITIVE = []
|
880
928
|
include Aws::Structure
|
881
929
|
end
|
882
930
|
|
@@ -898,6 +946,7 @@ module Aws::Synthetics
|
|
898
946
|
#
|
899
947
|
class ListTagsForResourceRequest < Struct.new(
|
900
948
|
:resource_arn)
|
949
|
+
SENSITIVE = []
|
901
950
|
include Aws::Structure
|
902
951
|
end
|
903
952
|
|
@@ -910,6 +959,7 @@ module Aws::Synthetics
|
|
910
959
|
#
|
911
960
|
class ListTagsForResourceResponse < Struct.new(
|
912
961
|
:tags)
|
962
|
+
SENSITIVE = []
|
913
963
|
include Aws::Structure
|
914
964
|
end
|
915
965
|
|
@@ -922,6 +972,7 @@ module Aws::Synthetics
|
|
922
972
|
#
|
923
973
|
class ResourceNotFoundException < Struct.new(
|
924
974
|
:message)
|
975
|
+
SENSITIVE = []
|
925
976
|
include Aws::Structure
|
926
977
|
end
|
927
978
|
|
@@ -961,6 +1012,7 @@ module Aws::Synthetics
|
|
961
1012
|
:description,
|
962
1013
|
:release_date,
|
963
1014
|
:deprecation_date)
|
1015
|
+
SENSITIVE = []
|
964
1016
|
include Aws::Structure
|
965
1017
|
end
|
966
1018
|
|
@@ -973,13 +1025,18 @@ module Aws::Synthetics
|
|
973
1025
|
#
|
974
1026
|
# @!attribute [rw] name
|
975
1027
|
# The name of the canary that you want to run. To find canary names,
|
976
|
-
# use DescribeCanaries.
|
1028
|
+
# use [DescribeCanaries][1].
|
1029
|
+
#
|
1030
|
+
#
|
1031
|
+
#
|
1032
|
+
# [1]: https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DescribeCanaries.html
|
977
1033
|
# @return [String]
|
978
1034
|
#
|
979
1035
|
# @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/StartCanaryRequest AWS API Documentation
|
980
1036
|
#
|
981
1037
|
class StartCanaryRequest < Struct.new(
|
982
1038
|
:name)
|
1039
|
+
SENSITIVE = []
|
983
1040
|
include Aws::Structure
|
984
1041
|
end
|
985
1042
|
|
@@ -996,13 +1053,18 @@ module Aws::Synthetics
|
|
996
1053
|
#
|
997
1054
|
# @!attribute [rw] name
|
998
1055
|
# The name of the canary that you want to stop. To find the names of
|
999
|
-
# your canaries, use DescribeCanaries.
|
1056
|
+
# your canaries, use [DescribeCanaries][1].
|
1057
|
+
#
|
1058
|
+
#
|
1059
|
+
#
|
1060
|
+
# [1]: https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DescribeCanaries.html
|
1000
1061
|
# @return [String]
|
1001
1062
|
#
|
1002
1063
|
# @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/StopCanaryRequest AWS API Documentation
|
1003
1064
|
#
|
1004
1065
|
class StopCanaryRequest < Struct.new(
|
1005
1066
|
:name)
|
1067
|
+
SENSITIVE = []
|
1006
1068
|
include Aws::Structure
|
1007
1069
|
end
|
1008
1070
|
|
@@ -1036,6 +1098,7 @@ module Aws::Synthetics
|
|
1036
1098
|
class TagResourceRequest < Struct.new(
|
1037
1099
|
:resource_arn,
|
1038
1100
|
:tags)
|
1101
|
+
SENSITIVE = []
|
1039
1102
|
include Aws::Structure
|
1040
1103
|
end
|
1041
1104
|
|
@@ -1067,6 +1130,7 @@ module Aws::Synthetics
|
|
1067
1130
|
class UntagResourceRequest < Struct.new(
|
1068
1131
|
:resource_arn,
|
1069
1132
|
:tag_keys)
|
1133
|
+
SENSITIVE = []
|
1070
1134
|
include Aws::Structure
|
1071
1135
|
end
|
1072
1136
|
|
@@ -1094,6 +1158,7 @@ module Aws::Synthetics
|
|
1094
1158
|
# },
|
1095
1159
|
# run_config: {
|
1096
1160
|
# timeout_in_seconds: 1, # required
|
1161
|
+
# memory_in_mb: 1,
|
1097
1162
|
# },
|
1098
1163
|
# success_retention_period_in_days: 1,
|
1099
1164
|
# failure_retention_period_in_days: 1,
|
@@ -1105,10 +1170,14 @@ module Aws::Synthetics
|
|
1105
1170
|
#
|
1106
1171
|
# @!attribute [rw] name
|
1107
1172
|
# The name of the canary that you want to update. To find the names of
|
1108
|
-
# your canaries, use DescribeCanaries.
|
1173
|
+
# your canaries, use [DescribeCanaries][1].
|
1109
1174
|
#
|
1110
1175
|
# You cannot change the name of a canary that has already been
|
1111
1176
|
# created.
|
1177
|
+
#
|
1178
|
+
#
|
1179
|
+
#
|
1180
|
+
# [1]: https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DescribeCanaries.html
|
1112
1181
|
# @return [String]
|
1113
1182
|
#
|
1114
1183
|
# @!attribute [rw] code
|
@@ -1189,6 +1258,7 @@ module Aws::Synthetics
|
|
1189
1258
|
:success_retention_period_in_days,
|
1190
1259
|
:failure_retention_period_in_days,
|
1191
1260
|
:vpc_config)
|
1261
|
+
SENSITIVE = []
|
1192
1262
|
include Aws::Structure
|
1193
1263
|
end
|
1194
1264
|
|
@@ -1205,6 +1275,7 @@ module Aws::Synthetics
|
|
1205
1275
|
#
|
1206
1276
|
class ValidationException < Struct.new(
|
1207
1277
|
:message)
|
1278
|
+
SENSITIVE = []
|
1208
1279
|
include Aws::Structure
|
1209
1280
|
end
|
1210
1281
|
|
@@ -1237,6 +1308,7 @@ module Aws::Synthetics
|
|
1237
1308
|
class VpcConfigInput < Struct.new(
|
1238
1309
|
:subnet_ids,
|
1239
1310
|
:security_group_ids)
|
1311
|
+
SENSITIVE = []
|
1240
1312
|
include Aws::Structure
|
1241
1313
|
end
|
1242
1314
|
|
@@ -1266,6 +1338,7 @@ module Aws::Synthetics
|
|
1266
1338
|
:vpc_id,
|
1267
1339
|
:subnet_ids,
|
1268
1340
|
:security_group_ids)
|
1341
|
+
SENSITIVE = []
|
1269
1342
|
include Aws::Structure
|
1270
1343
|
end
|
1271
1344
|
|
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.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|