aws-sdk-cloudwatchevidently 1.2.0 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b9d3fe3ee24e077e61c87aed732ebbe37a3dffa8cb9e2ac3a5dcbaf6c2e24395
4
- data.tar.gz: c7b484b6ebde8c872d74bfd6c02080adda5696f15947d7cf96c12738756a84da
3
+ metadata.gz: 19f85dfeb3c1c5263519e6fc97c24fd897d5b6dd92652e6e3c93e59ddba58cd2
4
+ data.tar.gz: 2ed1fa3b479ceede3c804e22dacb46fc43a4653ed26670e2d9f7541626a4850f
5
5
  SHA512:
6
- metadata.gz: 9dd6c52cb34f20fb9f53f673f3c9bd7ea3fc4b51042d9222e3254188dac2230b718db5ab2c3b48aeee290059b965ec0556dcf483469d73ca5a244f41746b6d39
7
- data.tar.gz: a48db3ebd057f20e7b737dca2facab00848123265c77f08680e4026e7eae8dd5a71891e59de8458806dc1cd9842155dfcde1fd7c3f27a0ca0021bc06f7e98fdd
6
+ metadata.gz: f8c2d5a36c59745d40f7a635d5720cce2ccd01daa3b9f38354153d1cd43279db2bca45be17a5a536c691c70810632c7c255cb99a6572d31d775cb110b4240b79
7
+ data.tar.gz: fc634217a94e3bb3594528ba90fb90df605fac385e4428d77b77fa3e9ba86a15cfc2c591d461b6e0c8ae7074c33dba912bcd6b8b15a299605924b0e701d17ccf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.5.0 (2022-02-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.4.0 (2022-02-17)
10
+ ------------------
11
+
12
+ * Feature - Add support for filtering list of experiments and launches by status
13
+
14
+ 1.3.0 (2022-02-03)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.2.0 (2021-12-21)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.5.0
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::CloudWatchEvidently
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
80
84
 
@@ -500,11 +504,11 @@ module Aws::CloudWatchEvidently
500
504
  # {
501
505
  # desired_change: "INCREASE", # accepts INCREASE, DECREASE
502
506
  # metric_definition: { # required
503
- # entity_id_key: "JsonPath",
507
+ # entity_id_key: "JsonPath", # required
504
508
  # event_pattern: "MetricDefinitionConfigEventPatternString",
505
- # name: "CwDimensionSafeName",
509
+ # name: "CwDimensionSafeName", # required
506
510
  # unit_label: "MetricUnitLabel",
507
- # value_key: "JsonPath",
511
+ # value_key: "JsonPath", # required
508
512
  # },
509
513
  # },
510
514
  # ],
@@ -777,11 +781,11 @@ module Aws::CloudWatchEvidently
777
781
  # metric_monitors: [
778
782
  # {
779
783
  # metric_definition: { # required
780
- # entity_id_key: "JsonPath",
784
+ # entity_id_key: "JsonPath", # required
781
785
  # event_pattern: "MetricDefinitionConfigEventPatternString",
782
- # name: "CwDimensionSafeName",
786
+ # name: "CwDimensionSafeName", # required
783
787
  # unit_label: "MetricUnitLabel",
784
- # value_key: "JsonPath",
788
+ # value_key: "JsonPath", # required
785
789
  # },
786
790
  # },
787
791
  # ],
@@ -1490,6 +1494,10 @@ module Aws::CloudWatchEvidently
1490
1494
  # @option params [required, String] :project
1491
1495
  # The name or ARN of the project to return the experiment list from.
1492
1496
  #
1497
+ # @option params [String] :status
1498
+ # Use this optional parameter to limit the returned results to only the
1499
+ # experiments with the status that you specify here.
1500
+ #
1493
1501
  # @return [Types::ListExperimentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1494
1502
  #
1495
1503
  # * {Types::ListExperimentsResponse#experiments #experiments} => Array<Types::Experiment>
@@ -1503,6 +1511,7 @@ module Aws::CloudWatchEvidently
1503
1511
  # max_results: 1,
1504
1512
  # next_token: "NextToken",
1505
1513
  # project: "ProjectRef", # required
1514
+ # status: "CREATED", # accepts CREATED, UPDATING, RUNNING, COMPLETED, CANCELLED
1506
1515
  # })
1507
1516
  #
1508
1517
  # @example Response structure
@@ -1618,6 +1627,10 @@ module Aws::CloudWatchEvidently
1618
1627
  # @option params [required, String] :project
1619
1628
  # The name or ARN of the project to return the launch list from.
1620
1629
  #
1630
+ # @option params [String] :status
1631
+ # Use this optional parameter to limit the returned results to only the
1632
+ # launches with the status that you specify here.
1633
+ #
1621
1634
  # @return [Types::ListLaunchesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1622
1635
  #
1623
1636
  # * {Types::ListLaunchesResponse#launches #launches} => Array<Types::Launch>
@@ -1631,6 +1644,7 @@ module Aws::CloudWatchEvidently
1631
1644
  # max_results: 1,
1632
1645
  # next_token: "NextToken",
1633
1646
  # project: "ProjectRef", # required
1647
+ # status: "CREATED", # accepts CREATED, UPDATING, RUNNING, COMPLETED, CANCELLED
1634
1648
  # })
1635
1649
  #
1636
1650
  # @example Response structure
@@ -2137,11 +2151,11 @@ module Aws::CloudWatchEvidently
2137
2151
  # {
2138
2152
  # desired_change: "INCREASE", # accepts INCREASE, DECREASE
2139
2153
  # metric_definition: { # required
2140
- # entity_id_key: "JsonPath",
2154
+ # entity_id_key: "JsonPath", # required
2141
2155
  # event_pattern: "MetricDefinitionConfigEventPatternString",
2142
- # name: "CwDimensionSafeName",
2156
+ # name: "CwDimensionSafeName", # required
2143
2157
  # unit_label: "MetricUnitLabel",
2144
- # value_key: "JsonPath",
2158
+ # value_key: "JsonPath", # required
2145
2159
  # },
2146
2160
  # },
2147
2161
  # ],
@@ -2380,11 +2394,11 @@ module Aws::CloudWatchEvidently
2380
2394
  # metric_monitors: [
2381
2395
  # {
2382
2396
  # metric_definition: { # required
2383
- # entity_id_key: "JsonPath",
2397
+ # entity_id_key: "JsonPath", # required
2384
2398
  # event_pattern: "MetricDefinitionConfigEventPatternString",
2385
- # name: "CwDimensionSafeName",
2399
+ # name: "CwDimensionSafeName", # required
2386
2400
  # unit_label: "MetricUnitLabel",
2387
- # value_key: "JsonPath",
2401
+ # value_key: "JsonPath", # required
2388
2402
  # },
2389
2403
  # },
2390
2404
  # ],
@@ -2583,7 +2597,7 @@ module Aws::CloudWatchEvidently
2583
2597
  params: params,
2584
2598
  config: config)
2585
2599
  context[:gem_name] = 'aws-sdk-cloudwatchevidently'
2586
- context[:gem_version] = '1.2.0'
2600
+ context[:gem_version] = '1.5.0'
2587
2601
  Seahorse::Client::Request.new(handlers, context)
2588
2602
  end
2589
2603
 
@@ -541,6 +541,7 @@ module Aws::CloudWatchEvidently
541
541
  ListExperimentsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxExperiments, location: "querystring", location_name: "maxResults"))
542
542
  ListExperimentsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
543
543
  ListExperimentsRequest.add_member(:project, Shapes::ShapeRef.new(shape: ProjectRef, required: true, location: "uri", location_name: "project"))
544
+ ListExperimentsRequest.add_member(:status, Shapes::ShapeRef.new(shape: ExperimentStatus, location: "querystring", location_name: "status"))
544
545
  ListExperimentsRequest.struct_class = Types::ListExperimentsRequest
545
546
 
546
547
  ListExperimentsResponse.add_member(:experiments, Shapes::ShapeRef.new(shape: ExperimentList, location_name: "experiments"))
@@ -559,6 +560,7 @@ module Aws::CloudWatchEvidently
559
560
  ListLaunchesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxLaunches, location: "querystring", location_name: "maxResults"))
560
561
  ListLaunchesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
561
562
  ListLaunchesRequest.add_member(:project, Shapes::ShapeRef.new(shape: ProjectRef, required: true, location: "uri", location_name: "project"))
563
+ ListLaunchesRequest.add_member(:status, Shapes::ShapeRef.new(shape: LaunchStatus, location: "querystring", location_name: "status"))
562
564
  ListLaunchesRequest.struct_class = Types::ListLaunchesRequest
563
565
 
564
566
  ListLaunchesResponse.add_member(:launches, Shapes::ShapeRef.new(shape: LaunchesList, location_name: "launches"))
@@ -586,11 +588,11 @@ module Aws::CloudWatchEvidently
586
588
  MetricDefinition.add_member(:value_key, Shapes::ShapeRef.new(shape: JsonPath, location_name: "valueKey"))
587
589
  MetricDefinition.struct_class = Types::MetricDefinition
588
590
 
589
- MetricDefinitionConfig.add_member(:entity_id_key, Shapes::ShapeRef.new(shape: JsonPath, location_name: "entityIdKey"))
591
+ MetricDefinitionConfig.add_member(:entity_id_key, Shapes::ShapeRef.new(shape: JsonPath, required: true, location_name: "entityIdKey"))
590
592
  MetricDefinitionConfig.add_member(:event_pattern, Shapes::ShapeRef.new(shape: MetricDefinitionConfigEventPatternString, location_name: "eventPattern", metadata: {"jsonvalue"=>true}))
591
- MetricDefinitionConfig.add_member(:name, Shapes::ShapeRef.new(shape: CwDimensionSafeName, location_name: "name"))
593
+ MetricDefinitionConfig.add_member(:name, Shapes::ShapeRef.new(shape: CwDimensionSafeName, required: true, location_name: "name"))
592
594
  MetricDefinitionConfig.add_member(:unit_label, Shapes::ShapeRef.new(shape: MetricUnitLabel, location_name: "unitLabel"))
593
- MetricDefinitionConfig.add_member(:value_key, Shapes::ShapeRef.new(shape: JsonPath, location_name: "valueKey"))
595
+ MetricDefinitionConfig.add_member(:value_key, Shapes::ShapeRef.new(shape: JsonPath, required: true, location_name: "valueKey"))
594
596
  MetricDefinitionConfig.struct_class = Types::MetricDefinitionConfig
595
597
 
596
598
  MetricGoal.add_member(:desired_change, Shapes::ShapeRef.new(shape: ChangeDirectionEnum, location_name: "desiredChange"))
@@ -977,6 +979,7 @@ module Aws::CloudWatchEvidently
977
979
  o.http_request_uri = "/projects/{project}/experiments/{experiment}"
978
980
  o.input = Shapes::ShapeRef.new(shape: DeleteExperimentRequest)
979
981
  o.output = Shapes::ShapeRef.new(shape: DeleteExperimentResponse)
982
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
980
983
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
981
984
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
982
985
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
@@ -1045,6 +1048,7 @@ module Aws::CloudWatchEvidently
1045
1048
  o.input = Shapes::ShapeRef.new(shape: GetExperimentRequest)
1046
1049
  o.output = Shapes::ShapeRef.new(shape: GetExperimentResponse)
1047
1050
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1051
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1048
1052
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1049
1053
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1050
1054
  end)
@@ -1081,6 +1085,7 @@ module Aws::CloudWatchEvidently
1081
1085
  o.input = Shapes::ShapeRef.new(shape: GetLaunchRequest)
1082
1086
  o.output = Shapes::ShapeRef.new(shape: GetLaunchResponse)
1083
1087
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1088
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1084
1089
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1085
1090
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1086
1091
  end)
@@ -1105,6 +1110,7 @@ module Aws::CloudWatchEvidently
1105
1110
  o.output = Shapes::ShapeRef.new(shape: ListExperimentsResponse)
1106
1111
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1107
1112
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1113
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1108
1114
  o[:pager] = Aws::Pager.new(
1109
1115
  limit_key: "max_results",
1110
1116
  tokens: {
@@ -1213,6 +1219,7 @@ module Aws::CloudWatchEvidently
1213
1219
  o.output = Shapes::ShapeRef.new(shape: StartLaunchResponse)
1214
1220
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1215
1221
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1222
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1216
1223
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
1217
1224
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1218
1225
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -141,11 +141,11 @@ module Aws::CloudWatchEvidently
141
141
  # {
142
142
  # desired_change: "INCREASE", # accepts INCREASE, DECREASE
143
143
  # metric_definition: { # required
144
- # entity_id_key: "JsonPath",
144
+ # entity_id_key: "JsonPath", # required
145
145
  # event_pattern: "MetricDefinitionConfigEventPatternString",
146
- # name: "CwDimensionSafeName",
146
+ # name: "CwDimensionSafeName", # required
147
147
  # unit_label: "MetricUnitLabel",
148
- # value_key: "JsonPath",
148
+ # value_key: "JsonPath", # required
149
149
  # },
150
150
  # },
151
151
  # ],
@@ -391,11 +391,11 @@ module Aws::CloudWatchEvidently
391
391
  # metric_monitors: [
392
392
  # {
393
393
  # metric_definition: { # required
394
- # entity_id_key: "JsonPath",
394
+ # entity_id_key: "JsonPath", # required
395
395
  # event_pattern: "MetricDefinitionConfigEventPatternString",
396
- # name: "CwDimensionSafeName",
396
+ # name: "CwDimensionSafeName", # required
397
397
  # unit_label: "MetricUnitLabel",
398
- # value_key: "JsonPath",
398
+ # value_key: "JsonPath", # required
399
399
  # },
400
400
  # },
401
401
  # ],
@@ -1757,6 +1757,7 @@ module Aws::CloudWatchEvidently
1757
1757
  # max_results: 1,
1758
1758
  # next_token: "NextToken",
1759
1759
  # project: "ProjectRef", # required
1760
+ # status: "CREATED", # accepts CREATED, UPDATING, RUNNING, COMPLETED, CANCELLED
1760
1761
  # }
1761
1762
  #
1762
1763
  # @!attribute [rw] max_results
@@ -1772,12 +1773,18 @@ module Aws::CloudWatchEvidently
1772
1773
  # The name or ARN of the project to return the experiment list from.
1773
1774
  # @return [String]
1774
1775
  #
1776
+ # @!attribute [rw] status
1777
+ # Use this optional parameter to limit the returned results to only
1778
+ # the experiments with the status that you specify here.
1779
+ # @return [String]
1780
+ #
1775
1781
  # @see http://docs.aws.amazon.com/goto/WebAPI/evidently-2021-02-01/ListExperimentsRequest AWS API Documentation
1776
1782
  #
1777
1783
  class ListExperimentsRequest < Struct.new(
1778
1784
  :max_results,
1779
1785
  :next_token,
1780
- :project)
1786
+ :project,
1787
+ :status)
1781
1788
  SENSITIVE = []
1782
1789
  include Aws::Structure
1783
1790
  end
@@ -1859,6 +1866,7 @@ module Aws::CloudWatchEvidently
1859
1866
  # max_results: 1,
1860
1867
  # next_token: "NextToken",
1861
1868
  # project: "ProjectRef", # required
1869
+ # status: "CREATED", # accepts CREATED, UPDATING, RUNNING, COMPLETED, CANCELLED
1862
1870
  # }
1863
1871
  #
1864
1872
  # @!attribute [rw] max_results
@@ -1874,12 +1882,18 @@ module Aws::CloudWatchEvidently
1874
1882
  # The name or ARN of the project to return the launch list from.
1875
1883
  # @return [String]
1876
1884
  #
1885
+ # @!attribute [rw] status
1886
+ # Use this optional parameter to limit the returned results to only
1887
+ # the launches with the status that you specify here.
1888
+ # @return [String]
1889
+ #
1877
1890
  # @see http://docs.aws.amazon.com/goto/WebAPI/evidently-2021-02-01/ListLaunchesRequest AWS API Documentation
1878
1891
  #
1879
1892
  class ListLaunchesRequest < Struct.new(
1880
1893
  :max_results,
1881
1894
  :next_token,
1882
- :project)
1895
+ :project,
1896
+ :status)
1883
1897
  SENSITIVE = []
1884
1898
  include Aws::Structure
1885
1899
  end
@@ -2031,11 +2045,11 @@ module Aws::CloudWatchEvidently
2031
2045
  # data as a hash:
2032
2046
  #
2033
2047
  # {
2034
- # entity_id_key: "JsonPath",
2048
+ # entity_id_key: "JsonPath", # required
2035
2049
  # event_pattern: "MetricDefinitionConfigEventPatternString",
2036
- # name: "CwDimensionSafeName",
2050
+ # name: "CwDimensionSafeName", # required
2037
2051
  # unit_label: "MetricUnitLabel",
2038
- # value_key: "JsonPath",
2052
+ # value_key: "JsonPath", # required
2039
2053
  # }
2040
2054
  #
2041
2055
  # @!attribute [rw] entity_id_key
@@ -2113,11 +2127,11 @@ module Aws::CloudWatchEvidently
2113
2127
  # {
2114
2128
  # desired_change: "INCREASE", # accepts INCREASE, DECREASE
2115
2129
  # metric_definition: { # required
2116
- # entity_id_key: "JsonPath",
2130
+ # entity_id_key: "JsonPath", # required
2117
2131
  # event_pattern: "MetricDefinitionConfigEventPatternString",
2118
- # name: "CwDimensionSafeName",
2132
+ # name: "CwDimensionSafeName", # required
2119
2133
  # unit_label: "MetricUnitLabel",
2120
- # value_key: "JsonPath",
2134
+ # value_key: "JsonPath", # required
2121
2135
  # },
2122
2136
  # }
2123
2137
  #
@@ -2165,11 +2179,11 @@ module Aws::CloudWatchEvidently
2165
2179
  #
2166
2180
  # {
2167
2181
  # metric_definition: { # required
2168
- # entity_id_key: "JsonPath",
2182
+ # entity_id_key: "JsonPath", # required
2169
2183
  # event_pattern: "MetricDefinitionConfigEventPatternString",
2170
- # name: "CwDimensionSafeName",
2184
+ # name: "CwDimensionSafeName", # required
2171
2185
  # unit_label: "MetricUnitLabel",
2172
- # value_key: "JsonPath",
2186
+ # value_key: "JsonPath", # required
2173
2187
  # },
2174
2188
  # }
2175
2189
  #
@@ -3110,11 +3124,11 @@ module Aws::CloudWatchEvidently
3110
3124
  # {
3111
3125
  # desired_change: "INCREASE", # accepts INCREASE, DECREASE
3112
3126
  # metric_definition: { # required
3113
- # entity_id_key: "JsonPath",
3127
+ # entity_id_key: "JsonPath", # required
3114
3128
  # event_pattern: "MetricDefinitionConfigEventPatternString",
3115
- # name: "CwDimensionSafeName",
3129
+ # name: "CwDimensionSafeName", # required
3116
3130
  # unit_label: "MetricUnitLabel",
3117
- # value_key: "JsonPath",
3131
+ # value_key: "JsonPath", # required
3118
3132
  # },
3119
3133
  # },
3120
3134
  # ],
@@ -3334,11 +3348,11 @@ module Aws::CloudWatchEvidently
3334
3348
  # metric_monitors: [
3335
3349
  # {
3336
3350
  # metric_definition: { # required
3337
- # entity_id_key: "JsonPath",
3351
+ # entity_id_key: "JsonPath", # required
3338
3352
  # event_pattern: "MetricDefinitionConfigEventPatternString",
3339
- # name: "CwDimensionSafeName",
3353
+ # name: "CwDimensionSafeName", # required
3340
3354
  # unit_label: "MetricUnitLabel",
3341
- # value_key: "JsonPath",
3355
+ # value_key: "JsonPath", # required
3342
3356
  # },
3343
3357
  # },
3344
3358
  # ],
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-cloudwatchevidently/customizations'
48
48
  # @!group service
49
49
  module Aws::CloudWatchEvidently
50
50
 
51
- GEM_VERSION = '1.2.0'
51
+ GEM_VERSION = '1.5.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudwatchevidently
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.5.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-12-21 00:00:00.000000000 Z
11
+ date: 2022-02-24 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.125.0
22
+ version: 3.127.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.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement