aws-sdk-greengrassv2 1.35.0 → 1.37.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: 9b53e6e669ba9391e1d0f25ba46edb5d548cde89bc130f33595a0049fa4c3615
4
- data.tar.gz: 64b485876306e04bb35dc4bcae31ba2ede4e590026a19cb3a2f54d93b7e7ccdb
3
+ metadata.gz: dc7e3c2118dc549bfbf9908424da4710e15db7d4a03d4c31c49d5b16ac56ebe0
4
+ data.tar.gz: e5f39f319e2f85ad2610a1bd160cf337821075d0c30c06c151902c23fc5b6dda
5
5
  SHA512:
6
- metadata.gz: 5c7aef4dd92ece95035e48c023801087287098a2f707156d4be5da9841e185f8d076deab30d34ac808b26e59b890e9b0658aff530ee281c73be8116194eacdf6
7
- data.tar.gz: 2729c204effa2f3155760ad6e1d6974c65a130a4c167a06840aa7113fe450fee6bcbb73344a23e66f0d4dc47d84892b8367636baf0b6f0f13aef331fd3e0a2e2
6
+ metadata.gz: 107d34f0534eba584bd510964fbbb03ed45dd24c9f6521d7559e59be59a9b6440d8bdfd2734d3a47fa2af02a6ec38de0a133738793878db97131f76d9a7d0633
7
+ data.tar.gz: 2ac5f843d6e273d034e6ef086c3075b822222aa6916823b44a271ff3555270588ed0b09c47629802443c011c26bd7b62c91af046f0c6306b9ef8649ae0848c96
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2024-05-10)
5
+ ------------------
6
+
7
+ * Feature - Mark ComponentVersion in ComponentDeploymentSpecification as required.
8
+
9
+ 1.36.0 (2024-04-25)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.35.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.35.0
1
+ 1.37.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::GreengrassV2
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::GreengrassV2
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::GreengrassV2
337
346
  # @option options [Aws::GreengrassV2::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::GreengrassV2::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
368
399
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -587,26 +611,9 @@ module Aws::GreengrassV2
587
611
  # migrate Lambda functions from IoT Greengrass V1 to IoT Greengrass
588
612
  # V2.
589
613
  #
590
- # This function only accepts Lambda functions that use the following
591
- # runtimes:
592
- #
593
- # * Python 2.7 – `python2.7`
594
- #
595
- # * Python 3.7 – `python3.7`
596
- #
597
- # * Python 3.8 – `python3.8`
598
- #
599
- # * Python 3.9 – `python3.9`
600
- #
601
- # * Java 8 – `java8`
602
- #
603
- # * Java 11 – `java11`
604
- #
605
- # * Node.js 10 – `nodejs10.x`
606
- #
607
- # * Node.js 12 – `nodejs12.x`
608
- #
609
- # * Node.js 14 – `nodejs14.x`
614
+ # This function accepts Lambda functions in all supported versions of
615
+ # Python, Node.js, and Java runtimes. IoT Greengrass doesn't apply
616
+ # any additional restrictions on deprecated Lambda runtime versions.
610
617
  #
611
618
  # To create a component from a Lambda function, specify
612
619
  # `lambdaFunction` when you call this operation.
@@ -842,7 +849,7 @@ module Aws::GreengrassV2
842
849
  # deployment_name: "DeploymentNameString",
843
850
  # components: {
844
851
  # "NonEmptyString" => {
845
- # component_version: "ComponentVersionString",
852
+ # component_version: "ComponentVersionString", # required
846
853
  # configuration_update: {
847
854
  # merge: "ComponentConfigurationString",
848
855
  # reset: ["ComponentConfigurationPath"],
@@ -1162,6 +1169,20 @@ module Aws::GreengrassV2
1162
1169
  #
1163
1170
  # [1]: https://docs.aws.amazon.com/greengrass/v2/APIReference/API_GetComponent.html
1164
1171
  #
1172
+ # @option params [String] :s3_endpoint_type
1173
+ # Specifies the endpoint to use when getting Amazon S3 pre-signed URLs.
1174
+ #
1175
+ # All Amazon Web Services Regions except US East (N. Virginia) use
1176
+ # `REGIONAL` in all cases. In the US East (N. Virginia) Region the
1177
+ # default is `GLOBAL`, but you can change it to `REGIONAL` with this
1178
+ # parameter.
1179
+ #
1180
+ # @option params [String] :iot_endpoint_type
1181
+ # Determines if the Amazon S3 URL returned is a FIPS pre-signed URL
1182
+ # endpoint. Specify `fips` if you want the returned Amazon S3 pre-signed
1183
+ # URL to point to an Amazon S3 FIPS endpoint. If you don't specify a
1184
+ # value, the default is `standard`.
1185
+ #
1165
1186
  # @return [Types::GetComponentVersionArtifactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1166
1187
  #
1167
1188
  # * {Types::GetComponentVersionArtifactResponse#pre_signed_url #pre_signed_url} => String
@@ -1171,6 +1192,8 @@ module Aws::GreengrassV2
1171
1192
  # resp = client.get_component_version_artifact({
1172
1193
  # arn: "ComponentVersionARN", # required
1173
1194
  # artifact_name: "NonEmptyString", # required
1195
+ # s3_endpoint_type: "REGIONAL", # accepts REGIONAL, GLOBAL
1196
+ # iot_endpoint_type: "fips", # accepts fips, standard
1174
1197
  # })
1175
1198
  #
1176
1199
  # @example Response structure
@@ -1675,6 +1698,8 @@ module Aws::GreengrassV2
1675
1698
  # @option params [Integer] :max_results
1676
1699
  # The maximum number of results to be returned per paginated request.
1677
1700
  #
1701
+ # Default: `50`
1702
+ #
1678
1703
  # @option params [String] :next_token
1679
1704
  # The token to be used for the next set of paginated results.
1680
1705
  #
@@ -2112,7 +2137,7 @@ module Aws::GreengrassV2
2112
2137
  params: params,
2113
2138
  config: config)
2114
2139
  context[:gem_name] = 'aws-sdk-greengrassv2'
2115
- context[:gem_version] = '1.35.0'
2140
+ context[:gem_version] = '1.37.0'
2116
2141
  Seahorse::Client::Request.new(handlers, context)
2117
2142
  end
2118
2143
 
@@ -145,6 +145,7 @@ module Aws::GreengrassV2
145
145
  IoTJobRolloutIncrementFactor = Shapes::FloatShape.new(name: 'IoTJobRolloutIncrementFactor')
146
146
  IoTJobTimeoutConfig = Shapes::StructureShape.new(name: 'IoTJobTimeoutConfig')
147
147
  IoTThingName = Shapes::StringShape.new(name: 'IoTThingName')
148
+ IotEndpointType = Shapes::StringShape.new(name: 'IotEndpointType')
148
149
  IsLatestForTarget = Shapes::BooleanShape.new(name: 'IsLatestForTarget')
149
150
  IsRoot = Shapes::BooleanShape.new(name: 'IsRoot')
150
151
  LambdaContainerParams = Shapes::StructureShape.new(name: 'LambdaContainerParams')
@@ -200,6 +201,7 @@ module Aws::GreengrassV2
200
201
  ResolvedComponentVersionsList = Shapes::ListShape.new(name: 'ResolvedComponentVersionsList')
201
202
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
202
203
  RetryAfterSeconds = Shapes::IntegerShape.new(name: 'RetryAfterSeconds')
204
+ S3EndpointType = Shapes::StringShape.new(name: 'S3EndpointType')
203
205
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
204
206
  String = Shapes::StringShape.new(name: 'String')
205
207
  StringMap = Shapes::MapShape.new(name: 'StringMap')
@@ -305,7 +307,7 @@ module Aws::GreengrassV2
305
307
  ComponentDependencyRequirement.add_member(:dependency_type, Shapes::ShapeRef.new(shape: ComponentDependencyType, location_name: "dependencyType"))
306
308
  ComponentDependencyRequirement.struct_class = Types::ComponentDependencyRequirement
307
309
 
308
- ComponentDeploymentSpecification.add_member(:component_version, Shapes::ShapeRef.new(shape: ComponentVersionString, location_name: "componentVersion"))
310
+ ComponentDeploymentSpecification.add_member(:component_version, Shapes::ShapeRef.new(shape: ComponentVersionString, required: true, location_name: "componentVersion"))
309
311
  ComponentDeploymentSpecification.add_member(:configuration_update, Shapes::ShapeRef.new(shape: ComponentConfigurationUpdate, location_name: "configurationUpdate"))
310
312
  ComponentDeploymentSpecification.add_member(:run_with, Shapes::ShapeRef.new(shape: ComponentRunWith, location_name: "runWith"))
311
313
  ComponentDeploymentSpecification.struct_class = Types::ComponentDeploymentSpecification
@@ -493,6 +495,8 @@ module Aws::GreengrassV2
493
495
 
494
496
  GetComponentVersionArtifactRequest.add_member(:arn, Shapes::ShapeRef.new(shape: ComponentVersionARN, required: true, location: "uri", location_name: "arn"))
495
497
  GetComponentVersionArtifactRequest.add_member(:artifact_name, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "artifactName"))
498
+ GetComponentVersionArtifactRequest.add_member(:s3_endpoint_type, Shapes::ShapeRef.new(shape: S3EndpointType, location: "querystring", location_name: "s3EndpointType"))
499
+ GetComponentVersionArtifactRequest.add_member(:iot_endpoint_type, Shapes::ShapeRef.new(shape: IotEndpointType, location: "header", location_name: "x-amz-iot-endpoint-type"))
496
500
  GetComponentVersionArtifactRequest.struct_class = Types::GetComponentVersionArtifactRequest
497
501
 
498
502
  GetComponentVersionArtifactResponse.add_member(:pre_signed_url, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "preSignedUrl"))
@@ -814,6 +818,7 @@ module Aws::GreengrassV2
814
818
  "apiVersion" => "2020-11-30",
815
819
  "endpointPrefix" => "greengrass",
816
820
  "protocol" => "rest-json",
821
+ "protocols" => ["rest-json"],
817
822
  "serviceAbbreviation" => "AWS GreengrassV2",
818
823
  "serviceFullName" => "AWS IoT Greengrass V2",
819
824
  "serviceId" => "GreengrassV2",
@@ -32,7 +32,7 @@ module Aws::GreengrassV2
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-east-1")
37
37
  return Aws::Endpoints::Endpoint.new(url: "https://greengrass.us-gov-east-1.amazonaws.com", headers: {}, properties: {})
38
38
  end
@@ -1507,11 +1507,30 @@ module Aws::GreengrassV2
1507
1507
  # [1]: https://docs.aws.amazon.com/greengrass/v2/APIReference/API_GetComponent.html
1508
1508
  # @return [String]
1509
1509
  #
1510
+ # @!attribute [rw] s3_endpoint_type
1511
+ # Specifies the endpoint to use when getting Amazon S3 pre-signed
1512
+ # URLs.
1513
+ #
1514
+ # All Amazon Web Services Regions except US East (N. Virginia) use
1515
+ # `REGIONAL` in all cases. In the US East (N. Virginia) Region the
1516
+ # default is `GLOBAL`, but you can change it to `REGIONAL` with this
1517
+ # parameter.
1518
+ # @return [String]
1519
+ #
1520
+ # @!attribute [rw] iot_endpoint_type
1521
+ # Determines if the Amazon S3 URL returned is a FIPS pre-signed URL
1522
+ # endpoint. Specify `fips` if you want the returned Amazon S3
1523
+ # pre-signed URL to point to an Amazon S3 FIPS endpoint. If you don't
1524
+ # specify a value, the default is `standard`.
1525
+ # @return [String]
1526
+ #
1510
1527
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrassv2-2020-11-30/GetComponentVersionArtifactRequest AWS API Documentation
1511
1528
  #
1512
1529
  class GetComponentVersionArtifactRequest < Struct.new(
1513
1530
  :arn,
1514
- :artifact_name)
1531
+ :artifact_name,
1532
+ :s3_endpoint_type,
1533
+ :iot_endpoint_type)
1515
1534
  SENSITIVE = []
1516
1535
  include Aws::Structure
1517
1536
  end
@@ -1816,8 +1835,8 @@ module Aws::GreengrassV2
1816
1835
  # @!attribute [rw] last_installation_source
1817
1836
  # The most recent deployment source that brought the component to the
1818
1837
  # Greengrass core device. For a thing group deployment or thing
1819
- # deployment, the source will be the The ID of the deployment. and for
1820
- # local deployments it will be `LOCAL`.
1838
+ # deployment, the source will be the ID of the last deployment that
1839
+ # contained the component. For local deployments it will be `LOCAL`.
1821
1840
  #
1822
1841
  # <note markdown="1"> Any deployment will attempt to reinstall currently broken components
1823
1842
  # on the device, which will update the last installation source.
@@ -2544,6 +2563,8 @@ module Aws::GreengrassV2
2544
2563
  #
2545
2564
  # @!attribute [rw] max_results
2546
2565
  # The maximum number of results to be returned per paginated request.
2566
+ #
2567
+ # Default: `50`
2547
2568
  # @return [Integer]
2548
2569
  #
2549
2570
  # @!attribute [rw] next_token
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-greengrassv2/customizations'
52
52
  # @!group service
53
53
  module Aws::GreengrassV2
54
54
 
55
- GEM_VERSION = '1.35.0'
55
+ GEM_VERSION = '1.37.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -203,7 +203,7 @@ module Aws
203
203
  target_arn: ::String,
204
204
  ?deployment_name: ::String,
205
205
  ?components: Hash[::String, {
206
- component_version: ::String?,
206
+ component_version: ::String,
207
207
  configuration_update: {
208
208
  merge: ::String?,
209
209
  reset: Array[::String]?
@@ -324,7 +324,9 @@ module Aws
324
324
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GreengrassV2/Client.html#get_component_version_artifact-instance_method
325
325
  def get_component_version_artifact: (
326
326
  arn: ::String,
327
- artifact_name: ::String
327
+ artifact_name: ::String,
328
+ ?s3_endpoint_type: ("REGIONAL" | "GLOBAL"),
329
+ ?iot_endpoint_type: ("fips" | "standard")
328
330
  ) -> _GetComponentVersionArtifactResponseSuccess
329
331
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetComponentVersionArtifactResponseSuccess
330
332
 
data/sig/types.rbs CHANGED
@@ -330,6 +330,8 @@ module Aws::GreengrassV2
330
330
  class GetComponentVersionArtifactRequest
331
331
  attr_accessor arn: ::String
332
332
  attr_accessor artifact_name: ::String
333
+ attr_accessor s3_endpoint_type: ("REGIONAL" | "GLOBAL")
334
+ attr_accessor iot_endpoint_type: ("fips" | "standard")
333
335
  SENSITIVE: []
334
336
  end
335
337
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-greengrassv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.35.0
4
+ version: 1.37.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-05-10 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement