aws-sdk-resourcegroups 1.58.0 → 1.60.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-resourcegroups/client.rb +89 -55
- data/lib/aws-sdk-resourcegroups/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-resourcegroups/types.rb +29 -25
- data/lib/aws-sdk-resourcegroups.rb +1 -1
- data/sig/types.rbs +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cbf1b1771e79389a745cfe8c19e0b760a8251bc986ce1b1623bb46b102e3d1a6
|
4
|
+
data.tar.gz: 73ab475b84e1eadd9865fd8b13c0db7761733eec0d0438b0aa3993b6400b40ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1ab06f326acf74e4753b27953f069cf386704039c3aea0c67f4a73ce78a3b09f151d32ebdc0a843bee4050e58d6b9491891ce728eb1a85cd9d07ef05e4f59c1
|
7
|
+
data.tar.gz: '008eb173af48e3d9bf1715df2665c6328d8bded86505beeb91ce1def37cb52ab2690470b3910b95b12e27618dff1478bd1b5edea2c4bd7d8f91161968d086ae3'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.60.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.59.0 (2024-04-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added a new QueryErrorCode RESOURCE_TYPE_NOT_SUPPORTED that is returned by the ListGroupResources operation if the group query contains unsupported resource types.
|
13
|
+
|
4
14
|
1.58.0 (2024-01-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.60.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::ResourceGroups
|
|
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::ResourceGroups
|
|
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
|
-
#
|
201
|
-
#
|
202
|
-
#
|
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::ResourceGroups
|
|
337
346
|
# @option options [Aws::ResourceGroups::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::ResourceGroups::EndpointParameters`
|
339
348
|
#
|
340
|
-
# @option options [
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
# @option options [Float] :
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
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 [
|
370
|
-
#
|
371
|
-
# connection.
|
400
|
+
# @option options [String] :ssl_ca_store
|
401
|
+
# Sets the X509::Store to verify peer certificate.
|
372
402
|
#
|
373
|
-
# @option options [
|
374
|
-
#
|
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 [
|
380
|
-
#
|
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
|
@@ -413,9 +437,10 @@ module Aws::ResourceGroups
|
|
413
437
|
# The name of the group, which is the identifier of the group in other
|
414
438
|
# operations. You can't change the name of a resource group after you
|
415
439
|
# create it. A resource group name can consist of letters, numbers,
|
416
|
-
# hyphens, periods, and underscores. The name cannot start with `AWS
|
417
|
-
# `aws
|
418
|
-
#
|
440
|
+
# hyphens, periods, and underscores. The name cannot start with `AWS`,
|
441
|
+
# `aws`, or any other possible capitalization; these are reserved. A
|
442
|
+
# resource group name must be unique within each Amazon Web Services
|
443
|
+
# Region in your Amazon Web Services account.
|
419
444
|
#
|
420
445
|
# @option params [String] :description
|
421
446
|
# The description of the resource group. Descriptions can consist of
|
@@ -936,7 +961,7 @@ module Aws::ResourceGroups
|
|
936
961
|
# resp.resource_identifiers[0].resource_type #=> String
|
937
962
|
# resp.next_token #=> String
|
938
963
|
# resp.query_errors #=> Array
|
939
|
-
# resp.query_errors[0].error_code #=> String, one of "CLOUDFORMATION_STACK_INACTIVE", "CLOUDFORMATION_STACK_NOT_EXISTING", "CLOUDFORMATION_STACK_UNASSUMABLE_ROLE"
|
964
|
+
# resp.query_errors[0].error_code #=> String, one of "CLOUDFORMATION_STACK_INACTIVE", "CLOUDFORMATION_STACK_NOT_EXISTING", "CLOUDFORMATION_STACK_UNASSUMABLE_ROLE", "RESOURCE_TYPE_NOT_SUPPORTED"
|
940
965
|
# resp.query_errors[0].message #=> String
|
941
966
|
#
|
942
967
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resource-groups-2017-11-27/ListGroupResources AWS API Documentation
|
@@ -962,19 +987,28 @@ module Aws::ResourceGroups
|
|
962
987
|
# Filters, formatted as GroupFilter objects, that you want to apply to a
|
963
988
|
# `ListGroups` operation.
|
964
989
|
#
|
965
|
-
# * `resource-type` - Filter the results to include only those
|
966
|
-
#
|
967
|
-
#
|
968
|
-
# `
|
990
|
+
# * `resource-type` - Filter the results to include only those resource
|
991
|
+
# groups that have the specified resource type in their
|
992
|
+
# `ResourceTypeFilter`. For example, `AWS::EC2::Instance` would return
|
993
|
+
# any resource group with a `ResourceTypeFilter` that includes
|
994
|
+
# `AWS::EC2::Instance`.
|
969
995
|
#
|
970
996
|
# * `configuration-type` - Filter the results to include only those
|
971
997
|
# groups that have the specified configuration types attached. The
|
972
998
|
# current supported values are:
|
973
999
|
#
|
1000
|
+
# * `AWS::AppRegistry::Application`
|
1001
|
+
#
|
1002
|
+
# * `AWS::AppRegistry::ApplicationResourceGroups`
|
1003
|
+
#
|
1004
|
+
# * `AWS::CloudFormation::Stack`
|
1005
|
+
#
|
974
1006
|
# * `AWS::EC2::CapacityReservationPool`
|
975
1007
|
#
|
976
1008
|
# * `AWS::EC2::HostManagement`
|
977
1009
|
#
|
1010
|
+
# * `AWS::NetworkFirewall::RuleGroup`
|
1011
|
+
#
|
978
1012
|
# @option params [Integer] :max_results
|
979
1013
|
# The total number of results that you want included on each page of the
|
980
1014
|
# response. If you do not include this parameter, it defaults to a value
|
@@ -1163,7 +1197,7 @@ module Aws::ResourceGroups
|
|
1163
1197
|
# resp.resource_identifiers[0].resource_type #=> String
|
1164
1198
|
# resp.next_token #=> String
|
1165
1199
|
# resp.query_errors #=> Array
|
1166
|
-
# resp.query_errors[0].error_code #=> String, one of "CLOUDFORMATION_STACK_INACTIVE", "CLOUDFORMATION_STACK_NOT_EXISTING", "CLOUDFORMATION_STACK_UNASSUMABLE_ROLE"
|
1200
|
+
# resp.query_errors[0].error_code #=> String, one of "CLOUDFORMATION_STACK_INACTIVE", "CLOUDFORMATION_STACK_NOT_EXISTING", "CLOUDFORMATION_STACK_UNASSUMABLE_ROLE", "RESOURCE_TYPE_NOT_SUPPORTED"
|
1167
1201
|
# resp.query_errors[0].message #=> String
|
1168
1202
|
#
|
1169
1203
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resource-groups-2017-11-27/SearchResources AWS API Documentation
|
@@ -1490,7 +1524,7 @@ module Aws::ResourceGroups
|
|
1490
1524
|
params: params,
|
1491
1525
|
config: config)
|
1492
1526
|
context[:gem_name] = 'aws-sdk-resourcegroups'
|
1493
|
-
context[:gem_version] = '1.
|
1527
|
+
context[:gem_version] = '1.60.0'
|
1494
1528
|
Seahorse::Client::Request.new(handlers, context)
|
1495
1529
|
end
|
1496
1530
|
|
@@ -32,8 +32,8 @@ module Aws::ResourceGroups
|
|
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?(
|
36
|
-
if Aws::Endpoints::Matchers.string_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
|
37
37
|
return Aws::Endpoints::Endpoint.new(url: "https://resource-groups.#{region}.amazonaws.com", headers: {}, properties: {})
|
38
38
|
end
|
39
39
|
return Aws::Endpoints::Endpoint.new(url: "https://resource-groups-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
@@ -53,10 +53,10 @@ module Aws::ResourceGroups
|
|
53
53
|
# The name of the group, which is the identifier of the group in other
|
54
54
|
# operations. You can't change the name of a resource group after you
|
55
55
|
# create it. A resource group name can consist of letters, numbers,
|
56
|
-
# hyphens, periods, and underscores. The name cannot start with `AWS
|
57
|
-
#
|
58
|
-
#
|
59
|
-
# account.
|
56
|
+
# hyphens, periods, and underscores. The name cannot start with `AWS`,
|
57
|
+
# `aws`, or any other possible capitalization; these are reserved. A
|
58
|
+
# resource group name must be unique within each Amazon Web Services
|
59
|
+
# Region in your Amazon Web Services account.
|
60
60
|
# @return [String]
|
61
61
|
#
|
62
62
|
# @!attribute [rw] description
|
@@ -754,10 +754,12 @@ module Aws::ResourceGroups
|
|
754
754
|
# @return [String]
|
755
755
|
#
|
756
756
|
# @!attribute [rw] query_errors
|
757
|
-
# A list of `QueryError` objects. Each error
|
758
|
-
#
|
759
|
-
# `
|
760
|
-
# `CLOUDFORMATION_STACK_NOT_EXISTING
|
757
|
+
# A list of `QueryError` objects. Each error contains an `ErrorCode`
|
758
|
+
# and `Message`. Possible values for ErrorCode are
|
759
|
+
# `CLOUDFORMATION_STACK_INACTIVE`,
|
760
|
+
# `CLOUDFORMATION_STACK_NOT_EXISTING`,
|
761
|
+
# `CLOUDFORMATION_STACK_UNASSUMABLE_ROLE` and
|
762
|
+
# `RESOURCE_TYPE_NOT_SUPPORTED`.
|
761
763
|
# @return [Array<Types::QueryError>]
|
762
764
|
#
|
763
765
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resource-groups-2017-11-27/ListGroupResourcesOutput AWS API Documentation
|
@@ -775,18 +777,27 @@ module Aws::ResourceGroups
|
|
775
777
|
# Filters, formatted as GroupFilter objects, that you want to apply to
|
776
778
|
# a `ListGroups` operation.
|
777
779
|
#
|
778
|
-
# * `resource-type` - Filter the results to include only those
|
779
|
-
#
|
780
|
-
#
|
781
|
-
#
|
780
|
+
# * `resource-type` - Filter the results to include only those
|
781
|
+
# resource groups that have the specified resource type in their
|
782
|
+
# `ResourceTypeFilter`. For example, `AWS::EC2::Instance` would
|
783
|
+
# return any resource group with a `ResourceTypeFilter` that
|
784
|
+
# includes `AWS::EC2::Instance`.
|
782
785
|
#
|
783
786
|
# * `configuration-type` - Filter the results to include only those
|
784
787
|
# groups that have the specified configuration types attached. The
|
785
788
|
# current supported values are:
|
786
789
|
#
|
790
|
+
# * `AWS::AppRegistry::Application`
|
791
|
+
#
|
792
|
+
# * `AWS::AppRegistry::ApplicationResourceGroups`
|
793
|
+
#
|
794
|
+
# * `AWS::CloudFormation::Stack`
|
795
|
+
#
|
787
796
|
# * `AWS::EC2::CapacityReservationPool`
|
788
797
|
#
|
789
798
|
# * `AWS::EC2::HostManagement`
|
799
|
+
#
|
800
|
+
# * `AWS::NetworkFirewall::RuleGroup`
|
790
801
|
# @return [Array<Types::GroupFilter>]
|
791
802
|
#
|
792
803
|
# @!attribute [rw] max_results
|
@@ -932,23 +943,14 @@ module Aws::ResourceGroups
|
|
932
943
|
class PutGroupConfigurationOutput < Aws::EmptyStructure; end
|
933
944
|
|
934
945
|
# A two-part error structure that can occur in `ListGroupResources` or
|
935
|
-
# `SearchResources
|
936
|
-
# error occurs if the CloudFront stack on which the query is based
|
937
|
-
# either does not exist, or has a status that renders the stack
|
938
|
-
# inactive. A `QueryError` occurrence does not necessarily mean that
|
939
|
-
# Resource Groups could not complete the operation, but the resulting
|
940
|
-
# group might have no member resources.
|
946
|
+
# `SearchResources`.
|
941
947
|
#
|
942
948
|
# @!attribute [rw] error_code
|
943
949
|
# Specifies the error code that was raised.
|
944
950
|
# @return [String]
|
945
951
|
#
|
946
952
|
# @!attribute [rw] message
|
947
|
-
# A message that explains the `ErrorCode
|
948
|
-
# that the specified CloudFront stack does not exist (or no longer
|
949
|
-
# exists). For `CLOUDFORMATION_STACK_INACTIVE`, the message typically
|
950
|
-
# states that the CloudFront stack has a status that is not (or no
|
951
|
-
# longer) active, such as `CREATE_FAILED`.
|
953
|
+
# A message that explains the `ErrorCode`.
|
952
954
|
# @return [String]
|
953
955
|
#
|
954
956
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resource-groups-2017-11-27/QueryError AWS API Documentation
|
@@ -1196,14 +1198,16 @@ module Aws::ResourceGroups
|
|
1196
1198
|
# @return [String]
|
1197
1199
|
#
|
1198
1200
|
# @!attribute [rw] query_errors
|
1199
|
-
# A list of `QueryError` objects. Each error
|
1200
|
-
#
|
1201
|
+
# A list of `QueryError` objects. Each error contains an `ErrorCode`
|
1202
|
+
# and `Message`.
|
1201
1203
|
#
|
1202
1204
|
# Possible values for `ErrorCode`:
|
1203
1205
|
#
|
1204
1206
|
# * `CLOUDFORMATION_STACK_INACTIVE`
|
1205
1207
|
#
|
1206
1208
|
# * `CLOUDFORMATION_STACK_NOT_EXISTING`
|
1209
|
+
#
|
1210
|
+
# * `CLOUDFORMATION_STACK_UNASSUMABLE_ROLE `
|
1207
1211
|
# @return [Array<Types::QueryError>]
|
1208
1212
|
#
|
1209
1213
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resource-groups-2017-11-27/SearchResourcesOutput AWS API Documentation
|
data/sig/types.rbs
CHANGED
@@ -233,7 +233,7 @@ module Aws::ResourceGroups
|
|
233
233
|
end
|
234
234
|
|
235
235
|
class QueryError
|
236
|
-
attr_accessor error_code: ("CLOUDFORMATION_STACK_INACTIVE" | "CLOUDFORMATION_STACK_NOT_EXISTING" | "CLOUDFORMATION_STACK_UNASSUMABLE_ROLE")
|
236
|
+
attr_accessor error_code: ("CLOUDFORMATION_STACK_INACTIVE" | "CLOUDFORMATION_STACK_NOT_EXISTING" | "CLOUDFORMATION_STACK_UNASSUMABLE_ROLE" | "RESOURCE_TYPE_NOT_SUPPORTED")
|
237
237
|
attr_accessor message: ::String
|
238
238
|
SENSITIVE: []
|
239
239
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-resourcegroups
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.60.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-
|
11
|
+
date: 2024-04-25 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.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.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|