aws-sdk-synthetics 1.61.0 → 1.63.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-synthetics/client.rb +282 -5
- data/lib/aws-sdk-synthetics/client_api.rb +53 -0
- data/lib/aws-sdk-synthetics/errors.rb +16 -0
- data/lib/aws-sdk-synthetics/types.rb +334 -13
- data/lib/aws-sdk-synthetics.rb +1 -1
- data/sig/client.rbs +56 -3
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +43 -0
- metadata +3 -6
data/sig/types.rbs
CHANGED
@@ -8,6 +8,11 @@
|
|
8
8
|
module Aws::Synthetics
|
9
9
|
module Types
|
10
10
|
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
11
16
|
class ArtifactConfigInput
|
12
17
|
attr_accessor s3_encryption: Types::S3EncryptionConfig
|
13
18
|
SENSITIVE: []
|
@@ -57,6 +62,7 @@ module Aws::Synthetics
|
|
57
62
|
attr_accessor provisioned_resource_cleanup: ("AUTOMATIC" | "OFF")
|
58
63
|
attr_accessor tags: ::Hash[::String, ::String]
|
59
64
|
attr_accessor artifact_config: Types::ArtifactConfigOutput
|
65
|
+
attr_accessor dry_run_config: Types::DryRunConfigOutput
|
60
66
|
SENSITIVE: []
|
61
67
|
end
|
62
68
|
|
@@ -75,6 +81,11 @@ module Aws::Synthetics
|
|
75
81
|
SENSITIVE: []
|
76
82
|
end
|
77
83
|
|
84
|
+
class CanaryDryRunConfigOutput
|
85
|
+
attr_accessor dry_run_id: ::String
|
86
|
+
SENSITIVE: []
|
87
|
+
end
|
88
|
+
|
78
89
|
class CanaryLastRun
|
79
90
|
attr_accessor canary_name: ::String
|
80
91
|
attr_accessor last_run: Types::CanaryRun
|
@@ -87,6 +98,7 @@ module Aws::Synthetics
|
|
87
98
|
attr_accessor status: Types::CanaryRunStatus
|
88
99
|
attr_accessor timeline: Types::CanaryRunTimeline
|
89
100
|
attr_accessor artifact_s3_location: ::String
|
101
|
+
attr_accessor dry_run_config: Types::CanaryDryRunConfigOutput
|
90
102
|
SENSITIVE: []
|
91
103
|
end
|
92
104
|
|
@@ -248,8 +260,15 @@ module Aws::Synthetics
|
|
248
260
|
class DisassociateResourceResponse < Aws::EmptyStructure
|
249
261
|
end
|
250
262
|
|
263
|
+
class DryRunConfigOutput
|
264
|
+
attr_accessor dry_run_id: ::String
|
265
|
+
attr_accessor last_dry_run_execution_status: ::String
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
251
269
|
class GetCanaryRequest
|
252
270
|
attr_accessor name: ::String
|
271
|
+
attr_accessor dry_run_id: ::String
|
253
272
|
SENSITIVE: []
|
254
273
|
end
|
255
274
|
|
@@ -262,6 +281,8 @@ module Aws::Synthetics
|
|
262
281
|
attr_accessor name: ::String
|
263
282
|
attr_accessor next_token: ::String
|
264
283
|
attr_accessor max_results: ::Integer
|
284
|
+
attr_accessor dry_run_id: ::String
|
285
|
+
attr_accessor run_type: ("CANARY_RUN" | "DRY_RUN")
|
265
286
|
SENSITIVE: []
|
266
287
|
end
|
267
288
|
|
@@ -390,6 +411,27 @@ module Aws::Synthetics
|
|
390
411
|
SENSITIVE: []
|
391
412
|
end
|
392
413
|
|
414
|
+
class StartCanaryDryRunRequest
|
415
|
+
attr_accessor name: ::String
|
416
|
+
attr_accessor code: Types::CanaryCodeInput
|
417
|
+
attr_accessor runtime_version: ::String
|
418
|
+
attr_accessor run_config: Types::CanaryRunConfigInput
|
419
|
+
attr_accessor vpc_config: Types::VpcConfigInput
|
420
|
+
attr_accessor execution_role_arn: ::String
|
421
|
+
attr_accessor success_retention_period_in_days: ::Integer
|
422
|
+
attr_accessor failure_retention_period_in_days: ::Integer
|
423
|
+
attr_accessor visual_reference: Types::VisualReferenceInput
|
424
|
+
attr_accessor artifact_s3_location: ::String
|
425
|
+
attr_accessor artifact_config: Types::ArtifactConfigInput
|
426
|
+
attr_accessor provisioned_resource_cleanup: ("AUTOMATIC" | "OFF")
|
427
|
+
SENSITIVE: []
|
428
|
+
end
|
429
|
+
|
430
|
+
class StartCanaryDryRunResponse
|
431
|
+
attr_accessor dry_run_config: Types::DryRunConfigOutput
|
432
|
+
SENSITIVE: []
|
433
|
+
end
|
434
|
+
|
393
435
|
class StartCanaryRequest
|
394
436
|
attr_accessor name: ::String
|
395
437
|
SENSITIVE: []
|
@@ -443,6 +485,7 @@ module Aws::Synthetics
|
|
443
485
|
attr_accessor artifact_s3_location: ::String
|
444
486
|
attr_accessor artifact_config: Types::ArtifactConfigInput
|
445
487
|
attr_accessor provisioned_resource_cleanup: ("AUTOMATIC" | "OFF")
|
488
|
+
attr_accessor dry_run_id: ::String
|
446
489
|
SENSITIVE: []
|
447
490
|
end
|
448
491
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.63.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: aws-sdk-core
|
@@ -77,7 +76,6 @@ licenses:
|
|
77
76
|
metadata:
|
78
77
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-synthetics
|
79
78
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-synthetics/CHANGELOG.md
|
80
|
-
post_install_message:
|
81
79
|
rdoc_options: []
|
82
80
|
require_paths:
|
83
81
|
- lib
|
@@ -92,8 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
92
90
|
- !ruby/object:Gem::Version
|
93
91
|
version: '0'
|
94
92
|
requirements: []
|
95
|
-
rubygems_version: 3.
|
96
|
-
signing_key:
|
93
|
+
rubygems_version: 3.6.7
|
97
94
|
specification_version: 4
|
98
95
|
summary: AWS SDK for Ruby - Synthetics
|
99
96
|
test_files: []
|