aws-sdk-cloudformation 1.39.0 → 1.44.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d6a310d3db5b608ccf0c9ad49ffe046404e7d0bee522098185d4be197bcca103
|
4
|
+
data.tar.gz: 50efc177b58f10b532300f9bcba63e0eda2013c511d8bec798103663ecf88a91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cef1d6171b4b16c22900d80f3f86e1b9d045861233482eac934e8ed67c5c5354aa79163a78375b15c504c9f859850bf63c93f3f67b40f6937c8dd5cf0582310a
|
7
|
+
data.tar.gz: ea164923229d4dc2cc4122eb4f9e321344ff9ae60ee0ac7e338c7689062390ac29b5a8eb7d1d86e07b4907409a57e127e4806b3e0c30727a96ccdb273b5cc934
|
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -49,9 +50,9 @@ require_relative 'aws-sdk-cloudformation/customizations'
|
|
49
50
|
#
|
50
51
|
# See {Errors} for more information.
|
51
52
|
#
|
52
|
-
#
|
53
|
+
# @!group service
|
53
54
|
module Aws::CloudFormation
|
54
55
|
|
55
|
-
GEM_VERSION = '1.
|
56
|
+
GEM_VERSION = '1.44.0'
|
56
57
|
|
57
58
|
end
|
@@ -85,13 +85,28 @@ module Aws::CloudFormation
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
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
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::CloudFormation
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# 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.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -2047,6 +2062,7 @@ module Aws::CloudFormation
|
|
2047
2062
|
# resp.stack_instance.parameter_overrides[0].use_previous_value #=> Boolean
|
2048
2063
|
# resp.stack_instance.parameter_overrides[0].resolved_value #=> String
|
2049
2064
|
# resp.stack_instance.status #=> String, one of "CURRENT", "OUTDATED", "INOPERABLE"
|
2065
|
+
# resp.stack_instance.stack_instance_status.detailed_status #=> String, one of "PENDING", "RUNNING", "SUCCEEDED", "FAILED", "CANCELLED", "INOPERABLE"
|
2050
2066
|
# resp.stack_instance.status_reason #=> String
|
2051
2067
|
# resp.stack_instance.organizational_unit_id #=> String
|
2052
2068
|
# resp.stack_instance.drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
|
@@ -3358,7 +3374,8 @@ module Aws::CloudFormation
|
|
3358
3374
|
|
3359
3375
|
# Returns summary information about stack instances that are associated
|
3360
3376
|
# with the specified stack set. You can filter for stack instances that
|
3361
|
-
# are associated with a specific AWS account name or Region
|
3377
|
+
# are associated with a specific AWS account name or Region, or that
|
3378
|
+
# have a specific status.
|
3362
3379
|
#
|
3363
3380
|
# @option params [required, String] :stack_set_name
|
3364
3381
|
# The name or unique ID of the stack set that you want to list stack
|
@@ -3378,6 +3395,9 @@ module Aws::CloudFormation
|
|
3378
3395
|
# includes a `NextToken` value that you can assign to the `NextToken`
|
3379
3396
|
# request parameter to get the next set of results.
|
3380
3397
|
#
|
3398
|
+
# @option params [Array<Types::StackInstanceFilter>] :filters
|
3399
|
+
# The status that stack instances are filtered by.
|
3400
|
+
#
|
3381
3401
|
# @option params [String] :stack_instance_account
|
3382
3402
|
# The name of the AWS account that you want to list stack instances for.
|
3383
3403
|
#
|
@@ -3397,6 +3417,12 @@ module Aws::CloudFormation
|
|
3397
3417
|
# stack_set_name: "StackSetName", # required
|
3398
3418
|
# next_token: "NextToken",
|
3399
3419
|
# max_results: 1,
|
3420
|
+
# filters: [
|
3421
|
+
# {
|
3422
|
+
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS
|
3423
|
+
# values: "StackInstanceFilterValues",
|
3424
|
+
# },
|
3425
|
+
# ],
|
3400
3426
|
# stack_instance_account: "Account",
|
3401
3427
|
# stack_instance_region: "Region",
|
3402
3428
|
# })
|
@@ -3410,6 +3436,7 @@ module Aws::CloudFormation
|
|
3410
3436
|
# resp.summaries[0].stack_id #=> String
|
3411
3437
|
# resp.summaries[0].status #=> String, one of "CURRENT", "OUTDATED", "INOPERABLE"
|
3412
3438
|
# resp.summaries[0].status_reason #=> String
|
3439
|
+
# resp.summaries[0].stack_instance_status.detailed_status #=> String, one of "PENDING", "RUNNING", "SUCCEEDED", "FAILED", "CANCELLED", "INOPERABLE"
|
3413
3440
|
# resp.summaries[0].organizational_unit_id #=> String
|
3414
3441
|
# resp.summaries[0].drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
|
3415
3442
|
# resp.summaries[0].last_drift_check_timestamp #=> Time
|
@@ -5305,7 +5332,7 @@ module Aws::CloudFormation
|
|
5305
5332
|
params: params,
|
5306
5333
|
config: config)
|
5307
5334
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
5308
|
-
context[:gem_version] = '1.
|
5335
|
+
context[:gem_version] = '1.44.0'
|
5309
5336
|
Seahorse::Client::Request.new(handlers, context)
|
5310
5337
|
end
|
5311
5338
|
|
@@ -281,6 +281,12 @@ module Aws::CloudFormation
|
|
281
281
|
StackEvents = Shapes::ListShape.new(name: 'StackEvents')
|
282
282
|
StackId = Shapes::StringShape.new(name: 'StackId')
|
283
283
|
StackInstance = Shapes::StructureShape.new(name: 'StackInstance')
|
284
|
+
StackInstanceComprehensiveStatus = Shapes::StructureShape.new(name: 'StackInstanceComprehensiveStatus')
|
285
|
+
StackInstanceDetailedStatus = Shapes::StringShape.new(name: 'StackInstanceDetailedStatus')
|
286
|
+
StackInstanceFilter = Shapes::StructureShape.new(name: 'StackInstanceFilter')
|
287
|
+
StackInstanceFilterName = Shapes::StringShape.new(name: 'StackInstanceFilterName')
|
288
|
+
StackInstanceFilterValues = Shapes::StringShape.new(name: 'StackInstanceFilterValues')
|
289
|
+
StackInstanceFilters = Shapes::ListShape.new(name: 'StackInstanceFilters')
|
284
290
|
StackInstanceNotFoundException = Shapes::StructureShape.new(name: 'StackInstanceNotFoundException')
|
285
291
|
StackInstanceStatus = Shapes::StringShape.new(name: 'StackInstanceStatus')
|
286
292
|
StackInstanceSummaries = Shapes::ListShape.new(name: 'StackInstanceSummaries')
|
@@ -803,6 +809,7 @@ module Aws::CloudFormation
|
|
803
809
|
ListStackInstancesInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetName, required: true, location_name: "StackSetName"))
|
804
810
|
ListStackInstancesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
805
811
|
ListStackInstancesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
812
|
+
ListStackInstancesInput.add_member(:filters, Shapes::ShapeRef.new(shape: StackInstanceFilters, location_name: "Filters"))
|
806
813
|
ListStackInstancesInput.add_member(:stack_instance_account, Shapes::ShapeRef.new(shape: Account, location_name: "StackInstanceAccount"))
|
807
814
|
ListStackInstancesInput.add_member(:stack_instance_region, Shapes::ShapeRef.new(shape: Region, location_name: "StackInstanceRegion"))
|
808
815
|
ListStackInstancesInput.struct_class = Types::ListStackInstancesInput
|
@@ -1110,12 +1117,22 @@ module Aws::CloudFormation
|
|
1110
1117
|
StackInstance.add_member(:stack_id, Shapes::ShapeRef.new(shape: StackId, location_name: "StackId"))
|
1111
1118
|
StackInstance.add_member(:parameter_overrides, Shapes::ShapeRef.new(shape: Parameters, location_name: "ParameterOverrides"))
|
1112
1119
|
StackInstance.add_member(:status, Shapes::ShapeRef.new(shape: StackInstanceStatus, location_name: "Status"))
|
1120
|
+
StackInstance.add_member(:stack_instance_status, Shapes::ShapeRef.new(shape: StackInstanceComprehensiveStatus, location_name: "StackInstanceStatus"))
|
1113
1121
|
StackInstance.add_member(:status_reason, Shapes::ShapeRef.new(shape: Reason, location_name: "StatusReason"))
|
1114
1122
|
StackInstance.add_member(:organizational_unit_id, Shapes::ShapeRef.new(shape: OrganizationalUnitId, location_name: "OrganizationalUnitId"))
|
1115
1123
|
StackInstance.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackDriftStatus, location_name: "DriftStatus"))
|
1116
1124
|
StackInstance.add_member(:last_drift_check_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastDriftCheckTimestamp"))
|
1117
1125
|
StackInstance.struct_class = Types::StackInstance
|
1118
1126
|
|
1127
|
+
StackInstanceComprehensiveStatus.add_member(:detailed_status, Shapes::ShapeRef.new(shape: StackInstanceDetailedStatus, location_name: "DetailedStatus"))
|
1128
|
+
StackInstanceComprehensiveStatus.struct_class = Types::StackInstanceComprehensiveStatus
|
1129
|
+
|
1130
|
+
StackInstanceFilter.add_member(:name, Shapes::ShapeRef.new(shape: StackInstanceFilterName, location_name: "Name"))
|
1131
|
+
StackInstanceFilter.add_member(:values, Shapes::ShapeRef.new(shape: StackInstanceFilterValues, location_name: "Values"))
|
1132
|
+
StackInstanceFilter.struct_class = Types::StackInstanceFilter
|
1133
|
+
|
1134
|
+
StackInstanceFilters.member = Shapes::ShapeRef.new(shape: StackInstanceFilter)
|
1135
|
+
|
1119
1136
|
StackInstanceNotFoundException.struct_class = Types::StackInstanceNotFoundException
|
1120
1137
|
|
1121
1138
|
StackInstanceSummaries.member = Shapes::ShapeRef.new(shape: StackInstanceSummary)
|
@@ -1126,6 +1143,7 @@ module Aws::CloudFormation
|
|
1126
1143
|
StackInstanceSummary.add_member(:stack_id, Shapes::ShapeRef.new(shape: StackId, location_name: "StackId"))
|
1127
1144
|
StackInstanceSummary.add_member(:status, Shapes::ShapeRef.new(shape: StackInstanceStatus, location_name: "Status"))
|
1128
1145
|
StackInstanceSummary.add_member(:status_reason, Shapes::ShapeRef.new(shape: Reason, location_name: "StatusReason"))
|
1146
|
+
StackInstanceSummary.add_member(:stack_instance_status, Shapes::ShapeRef.new(shape: StackInstanceComprehensiveStatus, location_name: "StackInstanceStatus"))
|
1129
1147
|
StackInstanceSummary.add_member(:organizational_unit_id, Shapes::ShapeRef.new(shape: OrganizationalUnitId, location_name: "OrganizationalUnitId"))
|
1130
1148
|
StackInstanceSummary.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackDriftStatus, location_name: "DriftStatus"))
|
1131
1149
|
StackInstanceSummary.add_member(:last_drift_check_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastDriftCheckTimestamp"))
|
@@ -3565,6 +3565,12 @@ module Aws::CloudFormation
|
|
3565
3565
|
# stack_set_name: "StackSetName", # required
|
3566
3566
|
# next_token: "NextToken",
|
3567
3567
|
# max_results: 1,
|
3568
|
+
# filters: [
|
3569
|
+
# {
|
3570
|
+
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS
|
3571
|
+
# values: "StackInstanceFilterValues",
|
3572
|
+
# },
|
3573
|
+
# ],
|
3568
3574
|
# stack_instance_account: "Account",
|
3569
3575
|
# stack_instance_region: "Region",
|
3570
3576
|
# }
|
@@ -3590,6 +3596,10 @@ module Aws::CloudFormation
|
|
3590
3596
|
# request parameter to get the next set of results.
|
3591
3597
|
# @return [Integer]
|
3592
3598
|
#
|
3599
|
+
# @!attribute [rw] filters
|
3600
|
+
# The status that stack instances are filtered by.
|
3601
|
+
# @return [Array<Types::StackInstanceFilter>]
|
3602
|
+
#
|
3593
3603
|
# @!attribute [rw] stack_instance_account
|
3594
3604
|
# The name of the AWS account that you want to list stack instances
|
3595
3605
|
# for.
|
@@ -3605,6 +3615,7 @@ module Aws::CloudFormation
|
|
3605
3615
|
:stack_set_name,
|
3606
3616
|
:next_token,
|
3607
3617
|
:max_results,
|
3618
|
+
:filters,
|
3608
3619
|
:stack_instance_account,
|
3609
3620
|
:stack_instance_region)
|
3610
3621
|
SENSITIVE = []
|
@@ -4955,7 +4966,13 @@ module Aws::CloudFormation
|
|
4955
4966
|
#
|
4956
4967
|
# @!attribute [rw] resource_type
|
4957
4968
|
# The type of resource to import into your stack, such as
|
4958
|
-
# `AWS::S3::Bucket`.
|
4969
|
+
# `AWS::S3::Bucket`. For a list of supported resource types, see
|
4970
|
+
# [Resources that support import operations][1] in the AWS
|
4971
|
+
# CloudFormation User Guide.
|
4972
|
+
#
|
4973
|
+
#
|
4974
|
+
#
|
4975
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import-supported-resources.html
|
4959
4976
|
# @return [String]
|
4960
4977
|
#
|
4961
4978
|
# @!attribute [rw] logical_resource_id
|
@@ -5631,6 +5648,10 @@ module Aws::CloudFormation
|
|
5631
5648
|
# * `CURRENT`\: The stack is currently up to date with the stack set.
|
5632
5649
|
# @return [String]
|
5633
5650
|
#
|
5651
|
+
# @!attribute [rw] stack_instance_status
|
5652
|
+
# The detailed status of the stack instance.
|
5653
|
+
# @return [Types::StackInstanceComprehensiveStatus]
|
5654
|
+
#
|
5634
5655
|
# @!attribute [rw] status_reason
|
5635
5656
|
# The explanation for the specific status code that is assigned to
|
5636
5657
|
# this stack instance.
|
@@ -5680,6 +5701,7 @@ module Aws::CloudFormation
|
|
5680
5701
|
:stack_id,
|
5681
5702
|
:parameter_overrides,
|
5682
5703
|
:status,
|
5704
|
+
:stack_instance_status,
|
5683
5705
|
:status_reason,
|
5684
5706
|
:organizational_unit_id,
|
5685
5707
|
:drift_status,
|
@@ -5688,6 +5710,71 @@ module Aws::CloudFormation
|
|
5688
5710
|
include Aws::Structure
|
5689
5711
|
end
|
5690
5712
|
|
5713
|
+
# The detailed status of the stack instance.
|
5714
|
+
#
|
5715
|
+
# @!attribute [rw] detailed_status
|
5716
|
+
# * `CANCELLED`\: The operation in the specified account and Region
|
5717
|
+
# has been cancelled. This is either because a user has stopped the
|
5718
|
+
# stack set operation, or because the failure tolerance of the stack
|
5719
|
+
# set operation has been exceeded.
|
5720
|
+
#
|
5721
|
+
# * `FAILED`\: The operation in the specified account and Region
|
5722
|
+
# failed. If the stack set operation fails in enough accounts within
|
5723
|
+
# a Region, the failure tolerance for the stack set operation as a
|
5724
|
+
# whole might be exceeded.
|
5725
|
+
#
|
5726
|
+
# * `INOPERABLE`\: A `DeleteStackInstances` operation has failed and
|
5727
|
+
# left the stack in an unstable state. Stacks in this state are
|
5728
|
+
# excluded from further `UpdateStackSet` operations. You might need
|
5729
|
+
# to perform a `DeleteStackInstances` operation, with `RetainStacks`
|
5730
|
+
# set to `true`, to delete the stack instance, and then delete the
|
5731
|
+
# stack manually.
|
5732
|
+
#
|
5733
|
+
# * `PENDING`\: The operation in the specified account and Region has
|
5734
|
+
# yet to start.
|
5735
|
+
#
|
5736
|
+
# * `RUNNING`\: The operation in the specified account and Region is
|
5737
|
+
# currently in progress.
|
5738
|
+
#
|
5739
|
+
# * `SUCCEEDED`\: The operation in the specified account and Region
|
5740
|
+
# completed successfully.
|
5741
|
+
# @return [String]
|
5742
|
+
#
|
5743
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackInstanceComprehensiveStatus AWS API Documentation
|
5744
|
+
#
|
5745
|
+
class StackInstanceComprehensiveStatus < Struct.new(
|
5746
|
+
:detailed_status)
|
5747
|
+
SENSITIVE = []
|
5748
|
+
include Aws::Structure
|
5749
|
+
end
|
5750
|
+
|
5751
|
+
# The status that stack instances are filtered by.
|
5752
|
+
#
|
5753
|
+
# @note When making an API call, you may pass StackInstanceFilter
|
5754
|
+
# data as a hash:
|
5755
|
+
#
|
5756
|
+
# {
|
5757
|
+
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS
|
5758
|
+
# values: "StackInstanceFilterValues",
|
5759
|
+
# }
|
5760
|
+
#
|
5761
|
+
# @!attribute [rw] name
|
5762
|
+
# The type of filter to apply.
|
5763
|
+
# @return [String]
|
5764
|
+
#
|
5765
|
+
# @!attribute [rw] values
|
5766
|
+
# The status to filter by.
|
5767
|
+
# @return [String]
|
5768
|
+
#
|
5769
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackInstanceFilter AWS API Documentation
|
5770
|
+
#
|
5771
|
+
class StackInstanceFilter < Struct.new(
|
5772
|
+
:name,
|
5773
|
+
:values)
|
5774
|
+
SENSITIVE = []
|
5775
|
+
include Aws::Structure
|
5776
|
+
end
|
5777
|
+
|
5691
5778
|
# The specified stack instance doesn't exist.
|
5692
5779
|
#
|
5693
5780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackInstanceNotFoundException AWS API Documentation
|
@@ -5745,6 +5832,10 @@ module Aws::CloudFormation
|
|
5745
5832
|
# instance.
|
5746
5833
|
# @return [String]
|
5747
5834
|
#
|
5835
|
+
# @!attribute [rw] stack_instance_status
|
5836
|
+
# The detailed status of the stack instance.
|
5837
|
+
# @return [Types::StackInstanceComprehensiveStatus]
|
5838
|
+
#
|
5748
5839
|
# @!attribute [rw] organizational_unit_id
|
5749
5840
|
# \[`Service-managed` permissions\] The organization root ID or
|
5750
5841
|
# organizational unit (OU) IDs that you specified for
|
@@ -5789,6 +5880,7 @@ module Aws::CloudFormation
|
|
5789
5880
|
:stack_id,
|
5790
5881
|
:status,
|
5791
5882
|
:status_reason,
|
5883
|
+
:stack_instance_status,
|
5792
5884
|
:organizational_unit_id,
|
5793
5885
|
:drift_status,
|
5794
5886
|
:last_drift_check_timestamp)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudformation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.44.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-
|
11
|
+
date: 2020-09-30 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.109.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.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|