aws-sdk-synthetics 1.13.0 → 1.17.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-synthetics/client.rb +14 -1
- data/lib/aws-sdk-synthetics/types.rb +68 -1
- data/lib/aws-sdk-synthetics.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 841d69ff47a41905aeaf6264f227bcf55fc06f7cde8a5efecd5aa8b56cb0c2ca
|
4
|
+
data.tar.gz: d1d303cacbc3d727dbf50a002ba4109d7254482532dfff3c8abd3de921d0c3f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e59f452bfbce23183f1545d59817c06e1916a08bcac6e6a3d2eeb4cfb901f591b0288c263fcf31f207f314b6c90bb67b0105ef4fd13aa3d0fc35b519c82610e7
|
7
|
+
data.tar.gz: 646148537ca01d37221f2a149d0078800871f4b39ea0a63ef408e841892e3ddcd0c8941155034616aeebafa865d0097938b264581ad73fd96cf645de9d80386e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.17.0 (2021-09-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.16.0 (2021-08-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Documentation updates for Visual Monitoring feature and other doc ticket fixes.
|
13
|
+
|
14
|
+
1.15.0 (2021-07-30)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.14.0 (2021-07-28)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.13.0 (2021-07-26)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.17.0
|
@@ -1132,6 +1132,19 @@ module Aws::Synthetics
|
|
1132
1132
|
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_VPC.html
|
1133
1133
|
#
|
1134
1134
|
# @option params [Types::VisualReferenceInput] :visual_reference
|
1135
|
+
# Defines the screenshots to use as the baseline for comparisons during
|
1136
|
+
# visual monitoring comparisons during future runs of this canary. If
|
1137
|
+
# you omit this parameter, no changes are made to any baseline
|
1138
|
+
# screenshots that the canary might be using already.
|
1139
|
+
#
|
1140
|
+
# Visual monitoring is supported only on canaries running the
|
1141
|
+
# **syn-puppeteer-node-3.2** runtime or later. For more information, see
|
1142
|
+
# [ Visual monitoring][1] and [ Visual monitoring blueprint][2]
|
1143
|
+
#
|
1144
|
+
#
|
1145
|
+
#
|
1146
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_SyntheticsLogger_VisualTesting.html
|
1147
|
+
# [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Blueprints_VisualTesting.html
|
1135
1148
|
#
|
1136
1149
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1137
1150
|
#
|
@@ -1199,7 +1212,7 @@ module Aws::Synthetics
|
|
1199
1212
|
params: params,
|
1200
1213
|
config: config)
|
1201
1214
|
context[:gem_name] = 'aws-sdk-synthetics'
|
1202
|
-
context[:gem_version] = '1.
|
1215
|
+
context[:gem_version] = '1.17.0'
|
1203
1216
|
Seahorse::Client::Request.new(handlers, context)
|
1204
1217
|
end
|
1205
1218
|
|
@@ -10,6 +10,9 @@
|
|
10
10
|
module Aws::Synthetics
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# A structure representing a screenshot that is used as a baseline
|
14
|
+
# during visual monitoring comparisons made by the canary.
|
15
|
+
#
|
13
16
|
# @note When making an API call, you may pass BaseScreenshot
|
14
17
|
# data as a hash:
|
15
18
|
#
|
@@ -19,9 +22,16 @@ module Aws::Synthetics
|
|
19
22
|
# }
|
20
23
|
#
|
21
24
|
# @!attribute [rw] screenshot_name
|
25
|
+
# The name of the screenshot. This is generated the first time the
|
26
|
+
# canary is run after the `UpdateCanary` operation that specified for
|
27
|
+
# this canary to perform visual monitoring.
|
22
28
|
# @return [String]
|
23
29
|
#
|
24
30
|
# @!attribute [rw] ignore_coordinates
|
31
|
+
# Coordinates that define the part of a screen to ignore during
|
32
|
+
# screenshot comparisons. To obtain the coordinates to use here, use
|
33
|
+
# the CloudWatch Logs console to draw the boundaries on the screen.
|
34
|
+
# For more information, see \\\{LINK\\}
|
25
35
|
# @return [Array<String>]
|
26
36
|
#
|
27
37
|
# @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/BaseScreenshot AWS API Documentation
|
@@ -119,6 +129,10 @@ module Aws::Synthetics
|
|
119
129
|
# @return [Types::VpcConfigOutput]
|
120
130
|
#
|
121
131
|
# @!attribute [rw] visual_reference
|
132
|
+
# If this canary performs visual monitoring by comparing screenshots,
|
133
|
+
# this structure contains the ID of the canary run to use as the
|
134
|
+
# baseline for screenshots, and the coordinates of any parts of the
|
135
|
+
# screen to ignore during the visual monitoring comparison.
|
122
136
|
# @return [Types::VisualReferenceOutput]
|
123
137
|
#
|
124
138
|
# @!attribute [rw] tags
|
@@ -188,7 +202,7 @@ module Aws::Synthetics
|
|
188
202
|
# If you input your canary script directly into the canary instead of
|
189
203
|
# referring to an S3 location, the value of this parameter is the
|
190
204
|
# base64-encoded contents of the .zip file that contains the script.
|
191
|
-
# It
|
205
|
+
# It must be smaller than 256 Kb.
|
192
206
|
# @return [String]
|
193
207
|
#
|
194
208
|
# @!attribute [rw] handler
|
@@ -1368,6 +1382,19 @@ module Aws::Synthetics
|
|
1368
1382
|
# @return [Types::VpcConfigInput]
|
1369
1383
|
#
|
1370
1384
|
# @!attribute [rw] visual_reference
|
1385
|
+
# Defines the screenshots to use as the baseline for comparisons
|
1386
|
+
# during visual monitoring comparisons during future runs of this
|
1387
|
+
# canary. If you omit this parameter, no changes are made to any
|
1388
|
+
# baseline screenshots that the canary might be using already.
|
1389
|
+
#
|
1390
|
+
# Visual monitoring is supported only on canaries running the
|
1391
|
+
# **syn-puppeteer-node-3.2** runtime or later. For more information,
|
1392
|
+
# see [ Visual monitoring][1] and [ Visual monitoring blueprint][2]
|
1393
|
+
#
|
1394
|
+
#
|
1395
|
+
#
|
1396
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_SyntheticsLogger_VisualTesting.html
|
1397
|
+
# [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Blueprints_VisualTesting.html
|
1371
1398
|
# @return [Types::VisualReferenceInput]
|
1372
1399
|
#
|
1373
1400
|
# @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/UpdateCanaryRequest AWS API Documentation
|
@@ -1404,6 +1431,19 @@ module Aws::Synthetics
|
|
1404
1431
|
include Aws::Structure
|
1405
1432
|
end
|
1406
1433
|
|
1434
|
+
# An object that specifies what screenshots to use as a baseline for
|
1435
|
+
# visual monitoring by this canary, and optionally the parts of the
|
1436
|
+
# screenshots to ignore during the visual monitoring comparison.
|
1437
|
+
#
|
1438
|
+
# Visual monitoring is supported only on canaries running the
|
1439
|
+
# **syn-puppeteer-node-3.2** runtime or later. For more information, see
|
1440
|
+
# [ Visual monitoring][1] and [ Visual monitoring blueprint][2]
|
1441
|
+
#
|
1442
|
+
#
|
1443
|
+
#
|
1444
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_SyntheticsLogger_VisualTesting.html
|
1445
|
+
# [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Blueprints_VisualTesting.html
|
1446
|
+
#
|
1407
1447
|
# @note When making an API call, you may pass VisualReferenceInput
|
1408
1448
|
# data as a hash:
|
1409
1449
|
#
|
@@ -1418,9 +1458,23 @@ module Aws::Synthetics
|
|
1418
1458
|
# }
|
1419
1459
|
#
|
1420
1460
|
# @!attribute [rw] base_screenshots
|
1461
|
+
# An array of screenshots that will be used as the baseline for visual
|
1462
|
+
# monitoring in future runs of this canary. If there is a screenshot
|
1463
|
+
# that you don't want to be used for visual monitoring, remove it
|
1464
|
+
# from this array.
|
1421
1465
|
# @return [Array<Types::BaseScreenshot>]
|
1422
1466
|
#
|
1423
1467
|
# @!attribute [rw] base_canary_run_id
|
1468
|
+
# Specifies which canary run to use the screenshots from as the
|
1469
|
+
# baseline for future visual monitoring with this canary. Valid values
|
1470
|
+
# are `nextrun` to use the screenshots from the next run after this
|
1471
|
+
# update is made, `lastrun` to use the screenshots from the most
|
1472
|
+
# recent run before this update was made, or the value of `Id` in the
|
1473
|
+
# [ CanaryRun][1] from any past run of this canary.
|
1474
|
+
#
|
1475
|
+
#
|
1476
|
+
#
|
1477
|
+
# [1]: https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_CanaryRun.html
|
1424
1478
|
# @return [String]
|
1425
1479
|
#
|
1426
1480
|
# @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/VisualReferenceInput AWS API Documentation
|
@@ -1432,10 +1486,23 @@ module Aws::Synthetics
|
|
1432
1486
|
include Aws::Structure
|
1433
1487
|
end
|
1434
1488
|
|
1489
|
+
# If this canary performs visual monitoring by comparing screenshots,
|
1490
|
+
# this structure contains the ID of the canary run that is used as the
|
1491
|
+
# baseline for screenshots, and the coordinates of any parts of those
|
1492
|
+
# screenshots that are ignored during visual monitoring comparison.
|
1493
|
+
#
|
1494
|
+
# Visual monitoring is supported only on canaries running the
|
1495
|
+
# **syn-puppeteer-node-3.2** runtime or later.
|
1496
|
+
#
|
1435
1497
|
# @!attribute [rw] base_screenshots
|
1498
|
+
# An array of screenshots that are used as the baseline for
|
1499
|
+
# comparisons during visual monitoring.
|
1436
1500
|
# @return [Array<Types::BaseScreenshot>]
|
1437
1501
|
#
|
1438
1502
|
# @!attribute [rw] base_canary_run_id
|
1503
|
+
# The ID of the canary run that produced the screenshots that are used
|
1504
|
+
# as the baseline for visual monitoring comparisons during future runs
|
1505
|
+
# of this canary.
|
1439
1506
|
# @return [String]
|
1440
1507
|
#
|
1441
1508
|
# @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/VisualReferenceOutput AWS API Documentation
|
data/lib/aws-sdk-synthetics.rb
CHANGED
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.17.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: 2021-
|
11
|
+
date: 2021-09-01 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.120.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.120.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '2.3'
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - ">="
|