aws-sdk-synthetics 1.2.0 → 1.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5dc73f211c0fc675c264cce626319d912d559c6f0c7939e5788513e8c868a37d
4
- data.tar.gz: c8c1270653158acd03f6ec6b75d0b9025f8df4f15c3249cc991cd5e80d56fe3a
3
+ metadata.gz: e4c0cef6802af743b5bbba4db8fdeaef74d1cb521dd2215e73d3ec66f444d656
4
+ data.tar.gz: 4f917d087a517a4c1444f558cfcfe01505768b3ffe9b96932d45725650dea1a4
5
5
  SHA512:
6
- metadata.gz: 0152a69d76af15f8a1d7e18765d1ff36916250cdcd5fb681d236cba944d7fdbf2d806ffe523ba2bbdb58ce36763e9ba1302e169df6b53ae54d384f3a83689b79
7
- data.tar.gz: 0b56f3b55cb05dbcbba3b12703dd08013910873f904497d6c26e40edc1875c9f6179537b8b22d3941f2bd1944d1aae4e47679815a6b55e78380abed87dc2bfbe
6
+ metadata.gz: 29eab3c397313c421c8ffeca41dfa78c24fc0bb6331ce87a11aafc6afa4d4e9bd78c34ff43f31b1ebe95d6907d33d8efd783a34c4df78591993249ddf14fa6c2
7
+ data.tar.gz: 38c72e1ef1b012d0408edc76113a3086884fd3d3ca248be59c0418fd02ca29dc0a1c09ca27e55ca0266b1f19585811737d347e7182bb41a7148b671ce8cfdf0a
@@ -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:
@@ -5,6 +7,7 @@
5
7
  #
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
10
+
8
11
  require 'aws-sdk-core'
9
12
  require 'aws-sigv4'
10
13
 
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-synthetics/customizations'
42
45
  #
43
46
  # See {Errors} for more information.
44
47
  #
45
- # @service
48
+ # @!group service
46
49
  module Aws::Synthetics
47
50
 
48
- GEM_VERSION = '1.2.0'
51
+ GEM_VERSION = '1.7.0'
49
52
 
50
53
  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::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
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 are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
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. Defaults to `false`.
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.
@@ -1141,7 +1160,7 @@ module Aws::Synthetics
1141
1160
  params: params,
1142
1161
  config: config)
1143
1162
  context[:gem_name] = 'aws-sdk-synthetics'
1144
- context[:gem_version] = '1.2.0'
1163
+ context[:gem_version] = '1.7.0'
1145
1164
  Seahorse::Client::Request.new(handlers, context)
1146
1165
  end
1147
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:
@@ -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:
@@ -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:
@@ -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
 
@@ -271,6 +278,7 @@ module Aws::Synthetics
271
278
  class CanaryRunConfigInput < Struct.new(
272
279
  :timeout_in_seconds,
273
280
  :memory_in_mb)
281
+ SENSITIVE = []
274
282
  include Aws::Structure
275
283
  end
276
284
 
@@ -290,6 +298,7 @@ module Aws::Synthetics
290
298
  class CanaryRunConfigOutput < Struct.new(
291
299
  :timeout_in_seconds,
292
300
  :memory_in_mb)
301
+ SENSITIVE = []
293
302
  include Aws::Structure
294
303
  end
295
304
 
@@ -316,6 +325,7 @@ module Aws::Synthetics
316
325
  :state,
317
326
  :state_reason,
318
327
  :state_reason_code)
328
+ SENSITIVE = []
319
329
  include Aws::Structure
320
330
  end
321
331
 
@@ -335,6 +345,7 @@ module Aws::Synthetics
335
345
  class CanaryRunTimeline < Struct.new(
336
346
  :started,
337
347
  :completed)
348
+ SENSITIVE = []
338
349
  include Aws::Structure
339
350
  end
340
351
 
@@ -375,6 +386,7 @@ module Aws::Synthetics
375
386
  class CanaryScheduleInput < Struct.new(
376
387
  :expression,
377
388
  :duration_in_seconds)
389
+ SENSITIVE = []
378
390
  include Aws::Structure
379
391
  end
380
392
 
@@ -405,6 +417,7 @@ module Aws::Synthetics
405
417
  class CanaryScheduleOutput < Struct.new(
406
418
  :expression,
407
419
  :duration_in_seconds)
420
+ SENSITIVE = []
408
421
  include Aws::Structure
409
422
  end
410
423
 
@@ -430,6 +443,7 @@ module Aws::Synthetics
430
443
  :state,
431
444
  :state_reason,
432
445
  :state_reason_code)
446
+ SENSITIVE = []
433
447
  include Aws::Structure
434
448
  end
435
449
 
@@ -459,6 +473,7 @@ module Aws::Synthetics
459
473
  :last_modified,
460
474
  :last_started,
461
475
  :last_stopped)
476
+ SENSITIVE = []
462
477
  include Aws::Structure
463
478
  end
464
479
 
@@ -471,6 +486,7 @@ module Aws::Synthetics
471
486
  #
472
487
  class ConflictException < Struct.new(
473
488
  :message)
489
+ SENSITIVE = []
474
490
  include Aws::Structure
475
491
  end
476
492
 
@@ -622,6 +638,7 @@ module Aws::Synthetics
622
638
  :runtime_version,
623
639
  :vpc_config,
624
640
  :tags)
641
+ SENSITIVE = []
625
642
  include Aws::Structure
626
643
  end
627
644
 
@@ -633,6 +650,7 @@ module Aws::Synthetics
633
650
  #
634
651
  class CreateCanaryResponse < Struct.new(
635
652
  :canary)
653
+ SENSITIVE = []
636
654
  include Aws::Structure
637
655
  end
638
656
 
@@ -656,6 +674,7 @@ module Aws::Synthetics
656
674
  #
657
675
  class DeleteCanaryRequest < Struct.new(
658
676
  :name)
677
+ SENSITIVE = []
659
678
  include Aws::Structure
660
679
  end
661
680
 
@@ -688,6 +707,7 @@ module Aws::Synthetics
688
707
  class DescribeCanariesLastRunRequest < Struct.new(
689
708
  :next_token,
690
709
  :max_results)
710
+ SENSITIVE = []
691
711
  include Aws::Structure
692
712
  end
693
713
 
@@ -707,6 +727,7 @@ module Aws::Synthetics
707
727
  class DescribeCanariesLastRunResponse < Struct.new(
708
728
  :canaries_last_run,
709
729
  :next_token)
730
+ SENSITIVE = []
710
731
  include Aws::Structure
711
732
  end
712
733
 
@@ -735,6 +756,7 @@ module Aws::Synthetics
735
756
  class DescribeCanariesRequest < Struct.new(
736
757
  :next_token,
737
758
  :max_results)
759
+ SENSITIVE = []
738
760
  include Aws::Structure
739
761
  end
740
762
 
@@ -754,6 +776,7 @@ module Aws::Synthetics
754
776
  class DescribeCanariesResponse < Struct.new(
755
777
  :canaries,
756
778
  :next_token)
779
+ SENSITIVE = []
757
780
  include Aws::Structure
758
781
  end
759
782
 
@@ -782,6 +805,7 @@ module Aws::Synthetics
782
805
  class DescribeRuntimeVersionsRequest < Struct.new(
783
806
  :next_token,
784
807
  :max_results)
808
+ SENSITIVE = []
785
809
  include Aws::Structure
786
810
  end
787
811
 
@@ -801,6 +825,7 @@ module Aws::Synthetics
801
825
  class DescribeRuntimeVersionsResponse < Struct.new(
802
826
  :runtime_versions,
803
827
  :next_token)
828
+ SENSITIVE = []
804
829
  include Aws::Structure
805
830
  end
806
831
 
@@ -819,6 +844,7 @@ module Aws::Synthetics
819
844
  #
820
845
  class GetCanaryRequest < Struct.new(
821
846
  :name)
847
+ SENSITIVE = []
822
848
  include Aws::Structure
823
849
  end
824
850
 
@@ -830,6 +856,7 @@ module Aws::Synthetics
830
856
  #
831
857
  class GetCanaryResponse < Struct.new(
832
858
  :canary)
859
+ SENSITIVE = []
833
860
  include Aws::Structure
834
861
  end
835
862
 
@@ -864,6 +891,7 @@ module Aws::Synthetics
864
891
  :name,
865
892
  :next_token,
866
893
  :max_results)
894
+ SENSITIVE = []
867
895
  include Aws::Structure
868
896
  end
869
897
 
@@ -883,6 +911,7 @@ module Aws::Synthetics
883
911
  class GetCanaryRunsResponse < Struct.new(
884
912
  :canary_runs,
885
913
  :next_token)
914
+ SENSITIVE = []
886
915
  include Aws::Structure
887
916
  end
888
917
 
@@ -895,6 +924,7 @@ module Aws::Synthetics
895
924
  #
896
925
  class InternalServerException < Struct.new(
897
926
  :message)
927
+ SENSITIVE = []
898
928
  include Aws::Structure
899
929
  end
900
930
 
@@ -916,6 +946,7 @@ module Aws::Synthetics
916
946
  #
917
947
  class ListTagsForResourceRequest < Struct.new(
918
948
  :resource_arn)
949
+ SENSITIVE = []
919
950
  include Aws::Structure
920
951
  end
921
952
 
@@ -928,6 +959,7 @@ module Aws::Synthetics
928
959
  #
929
960
  class ListTagsForResourceResponse < Struct.new(
930
961
  :tags)
962
+ SENSITIVE = []
931
963
  include Aws::Structure
932
964
  end
933
965
 
@@ -940,6 +972,7 @@ module Aws::Synthetics
940
972
  #
941
973
  class ResourceNotFoundException < Struct.new(
942
974
  :message)
975
+ SENSITIVE = []
943
976
  include Aws::Structure
944
977
  end
945
978
 
@@ -979,6 +1012,7 @@ module Aws::Synthetics
979
1012
  :description,
980
1013
  :release_date,
981
1014
  :deprecation_date)
1015
+ SENSITIVE = []
982
1016
  include Aws::Structure
983
1017
  end
984
1018
 
@@ -1002,6 +1036,7 @@ module Aws::Synthetics
1002
1036
  #
1003
1037
  class StartCanaryRequest < Struct.new(
1004
1038
  :name)
1039
+ SENSITIVE = []
1005
1040
  include Aws::Structure
1006
1041
  end
1007
1042
 
@@ -1029,6 +1064,7 @@ module Aws::Synthetics
1029
1064
  #
1030
1065
  class StopCanaryRequest < Struct.new(
1031
1066
  :name)
1067
+ SENSITIVE = []
1032
1068
  include Aws::Structure
1033
1069
  end
1034
1070
 
@@ -1062,6 +1098,7 @@ module Aws::Synthetics
1062
1098
  class TagResourceRequest < Struct.new(
1063
1099
  :resource_arn,
1064
1100
  :tags)
1101
+ SENSITIVE = []
1065
1102
  include Aws::Structure
1066
1103
  end
1067
1104
 
@@ -1093,6 +1130,7 @@ module Aws::Synthetics
1093
1130
  class UntagResourceRequest < Struct.new(
1094
1131
  :resource_arn,
1095
1132
  :tag_keys)
1133
+ SENSITIVE = []
1096
1134
  include Aws::Structure
1097
1135
  end
1098
1136
 
@@ -1220,6 +1258,7 @@ module Aws::Synthetics
1220
1258
  :success_retention_period_in_days,
1221
1259
  :failure_retention_period_in_days,
1222
1260
  :vpc_config)
1261
+ SENSITIVE = []
1223
1262
  include Aws::Structure
1224
1263
  end
1225
1264
 
@@ -1236,6 +1275,7 @@ module Aws::Synthetics
1236
1275
  #
1237
1276
  class ValidationException < Struct.new(
1238
1277
  :message)
1278
+ SENSITIVE = []
1239
1279
  include Aws::Structure
1240
1280
  end
1241
1281
 
@@ -1268,6 +1308,7 @@ module Aws::Synthetics
1268
1308
  class VpcConfigInput < Struct.new(
1269
1309
  :subnet_ids,
1270
1310
  :security_group_ids)
1311
+ SENSITIVE = []
1271
1312
  include Aws::Structure
1272
1313
  end
1273
1314
 
@@ -1297,6 +1338,7 @@ module Aws::Synthetics
1297
1338
  :vpc_id,
1298
1339
  :subnet_ids,
1299
1340
  :security_group_ids)
1341
+ SENSITIVE = []
1300
1342
  include Aws::Structure
1301
1343
  end
1302
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.2.0
4
+ version: 1.7.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-05-21 00:00:00.000000000 Z
11
+ date: 2020-09-15 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.71.0
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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement