aws-sdk-servicecatalog 1.79.0 → 1.81.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: 54f5d17ad7319a313a0368674c9babcc18c52d0bceb42573b18e1aea70e71a31
4
- data.tar.gz: 6204e33542c232cbf5089148c0f9be26dcf19ceeb2c819fd15f806d7825be1ed
3
+ metadata.gz: '080343c3d853222f58ac7a6ff8da7f6a8026502ac746ca1caf18e789cd298db4'
4
+ data.tar.gz: 54cb85ae36e5870e62ebaf933a73bfee468ceda80d5e5d42a55a34a65909e093
5
5
  SHA512:
6
- metadata.gz: be125ed02086942c9cafd68a167b289a364509db6ef6c29c82ed28aa76d24ee158dc1506e97197259fc2be80606c24f40058ed5417dfef1b260e4ab0e680e585
7
- data.tar.gz: bf71f518bdbfa974f495e0929160bf80c7654c709dc550ac09bf5894518dc3d23ba62a10afd1703d7514e6ee0e6b21ee8078ecb500206a95d2284f63b984d724
6
+ metadata.gz: 4fe8f5640e9de61edf6ab15e98f54707a7f693fca9e40597943f222f2dc93e8a95a6fa2026d3dda833348e5f7e1162b70bbfb25bc19669722c6b6976dab2866d
7
+ data.tar.gz: 5c9ee7216d362156acde68c3b71cc0d09bd07fda7f45a910aa677bbe96c50e3e11eae153ca079bd57c1577ed8b51d236cb1b5da63b0d1e428caaa6d4154ef6d7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.81.0 (2023-06-08)
5
+ ------------------
6
+
7
+ * Feature - New parameter added in ServiceCatalog DescribeProvisioningArtifact api - IncludeProvisioningArtifactParameters. This parameter can be used to return information about the parameters used to provision the product
8
+
9
+ 1.80.0 (2023-05-31)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for ServiceCatalog.
13
+
4
14
  1.79.0 (2023-04-07)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.79.0
1
+ 1.81.0
@@ -275,6 +275,11 @@ module Aws::ServiceCatalog
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -486,17 +491,70 @@ module Aws::ServiceCatalog
486
491
  # The portfolio identifier.
487
492
  #
488
493
  # @option params [required, String] :principal_arn
489
- # The ARN of the principal (user, role, or group). This field allows an
490
- # ARN with no `accountID` if `PrincipalType` is `IAM_PATTERN`.
494
+ # The ARN of the principal (user, role, or group). If the
495
+ # `PrincipalType` is `IAM`, the supported value is a fully defined [IAM
496
+ # Amazon Resource Name (ARN)][1]. If the `PrincipalType` is
497
+ # `IAM_PATTERN`, the supported value is an `IAM` ARN *without an
498
+ # AccountID* in the following format:
499
+ #
500
+ # *arn:partition:iam:::resource-type/resource-id*
501
+ #
502
+ # The ARN resource-id can be either:
503
+ #
504
+ # * A fully formed resource-id. For example,
505
+ # *arn:aws:iam:::role/resource-name* or
506
+ # *arn:aws:iam:::role/resource-path/resource-name*
507
+ #
508
+ # * A wildcard ARN. The wildcard ARN accepts `IAM_PATTERN` values with a
509
+ # "*" or "?" in the resource-id segment of the ARN. For example
510
+ # *arn:partition:service:::resource-type/resource-path/resource-name*.
511
+ # The new symbols are exclusive to the **resource-path** and
512
+ # **resource-name** and cannot replace the **resource-type** or other
513
+ # ARN values.
514
+ #
515
+ # The ARN path and principal name allow unlimited wildcard characters.
516
+ #
517
+ # Examples of an **acceptable** wildcard ARN:
518
+ #
519
+ # * arn:aws:iam:::role/ResourceName\_*
520
+ #
521
+ # * arn:aws:iam:::role/*/ResourceName\_?
522
+ #
523
+ # Examples of an **unacceptable** wildcard ARN:
491
524
  #
492
- # You can associate multiple `IAM` patterns even if the account has no
493
- # principal with that name. This is useful in Principal Name Sharing if
494
- # you want to share a principal without creating it in the account that
495
- # owns the portfolio.
525
+ # * arn:aws:iam:::*/ResourceName
526
+ #
527
+ # ^
528
+ #
529
+ # You can associate multiple `IAM_PATTERN`s even if the account has no
530
+ # principal with that name.
531
+ #
532
+ # The "?" wildcard character matches zero or one of any character.
533
+ # This is similar to ".?" in regular regex context. The "*"
534
+ # wildcard character matches any number of any characters. This is
535
+ # similar to ".*" in regular regex context.
536
+ #
537
+ # In the IAM Principal ARN format
538
+ # (*arn:partition:iam:::resource-type/resource-path/resource-name*),
539
+ # valid resource-type values include **user/**, **group/**, or
540
+ # **role/**. The "?" and "*" characters are allowed only after the
541
+ # resource-type in the resource-id segment. You can use special
542
+ # characters anywhere within the resource-id.
543
+ #
544
+ # The "*" character also matches the "/" character, allowing paths
545
+ # to be formed *within* the resource-id. For example,
546
+ # *arn:aws:iam:::role/*****/ResourceName\_?* matches both
547
+ # *arn:aws:iam:::role/pathA/pathB/ResourceName\_1* and
548
+ # *arn:aws:iam:::role/pathA/ResourceName\_1*.
549
+ #
550
+ #
551
+ #
552
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-arns
496
553
  #
497
554
  # @option params [required, String] :principal_type
498
555
  # The principal type. The supported value is `IAM` if you use a fully
499
- # defined ARN, or `IAM_PATTERN` if you use an ARN with no `accountID`.
556
+ # defined Amazon Resource Name (ARN), or `IAM_PATTERN` if you use an ARN
557
+ # with no `accountID`, with or without wildcard characters.
500
558
  #
501
559
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
502
560
  #
@@ -2549,11 +2607,16 @@ module Aws::ServiceCatalog
2549
2607
  # @option params [Boolean] :verbose
2550
2608
  # Indicates whether a verbose level of detail is enabled.
2551
2609
  #
2610
+ # @option params [Boolean] :include_provisioning_artifact_parameters
2611
+ # Indicates if the API call response does or does not include additional
2612
+ # details about the provisioning parameters.
2613
+ #
2552
2614
  # @return [Types::DescribeProvisioningArtifactOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2553
2615
  #
2554
2616
  # * {Types::DescribeProvisioningArtifactOutput#provisioning_artifact_detail #provisioning_artifact_detail} => Types::ProvisioningArtifactDetail
2555
2617
  # * {Types::DescribeProvisioningArtifactOutput#info #info} => Hash&lt;String,String&gt;
2556
2618
  # * {Types::DescribeProvisioningArtifactOutput#status #status} => String
2619
+ # * {Types::DescribeProvisioningArtifactOutput#provisioning_artifact_parameters #provisioning_artifact_parameters} => Array&lt;Types::ProvisioningArtifactParameter&gt;
2557
2620
  #
2558
2621
  # @example Request syntax with placeholder values
2559
2622
  #
@@ -2564,6 +2627,7 @@ module Aws::ServiceCatalog
2564
2627
  # provisioning_artifact_name: "ProvisioningArtifactName",
2565
2628
  # product_name: "ProductViewName",
2566
2629
  # verbose: false,
2630
+ # include_provisioning_artifact_parameters: false,
2567
2631
  # })
2568
2632
  #
2569
2633
  # @example Response structure
@@ -2579,6 +2643,20 @@ module Aws::ServiceCatalog
2579
2643
  # resp.info #=> Hash
2580
2644
  # resp.info["ProvisioningArtifactInfoKey"] #=> String
2581
2645
  # resp.status #=> String, one of "AVAILABLE", "CREATING", "FAILED"
2646
+ # resp.provisioning_artifact_parameters #=> Array
2647
+ # resp.provisioning_artifact_parameters[0].parameter_key #=> String
2648
+ # resp.provisioning_artifact_parameters[0].default_value #=> String
2649
+ # resp.provisioning_artifact_parameters[0].parameter_type #=> String
2650
+ # resp.provisioning_artifact_parameters[0].is_no_echo #=> Boolean
2651
+ # resp.provisioning_artifact_parameters[0].description #=> String
2652
+ # resp.provisioning_artifact_parameters[0].parameter_constraints.allowed_values #=> Array
2653
+ # resp.provisioning_artifact_parameters[0].parameter_constraints.allowed_values[0] #=> String
2654
+ # resp.provisioning_artifact_parameters[0].parameter_constraints.allowed_pattern #=> String
2655
+ # resp.provisioning_artifact_parameters[0].parameter_constraints.constraint_description #=> String
2656
+ # resp.provisioning_artifact_parameters[0].parameter_constraints.max_length #=> String
2657
+ # resp.provisioning_artifact_parameters[0].parameter_constraints.min_length #=> String
2658
+ # resp.provisioning_artifact_parameters[0].parameter_constraints.max_value #=> String
2659
+ # resp.provisioning_artifact_parameters[0].parameter_constraints.min_value #=> String
2582
2660
  #
2583
2661
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningArtifact AWS API Documentation
2584
2662
  #
@@ -2974,6 +3052,23 @@ module Aws::ServiceCatalog
2974
3052
  # will no longer be able to provision products in this portfolio using a
2975
3053
  # role matching the name of the associated principal.
2976
3054
  #
3055
+ # For more information, review [associate-principal-with-portfolio][1]
3056
+ # in the Amazon Web Services CLI Command Reference.
3057
+ #
3058
+ # <note markdown="1"> If you disassociate a principal from a portfolio, with PrincipalType
3059
+ # as `IAM`, the same principal will still have access to the portfolio
3060
+ # if it matches one of the associated principals of type `IAM_PATTERN`.
3061
+ # To fully remove access for a principal, verify all the associated
3062
+ # Principals of type `IAM_PATTERN`, and then ensure you disassociate any
3063
+ # `IAM_PATTERN` principals that match the principal whose access you are
3064
+ # removing.
3065
+ #
3066
+ # </note>
3067
+ #
3068
+ #
3069
+ #
3070
+ # [1]: https://docs.aws.amazon.com/cli/latest/reference/servicecatalog/associate-principal-with-portfolio.html#options
3071
+ #
2977
3072
  # @option params [String] :accept_language
2978
3073
  # The language code.
2979
3074
  #
@@ -2986,11 +3081,13 @@ module Aws::ServiceCatalog
2986
3081
  #
2987
3082
  # @option params [required, String] :principal_arn
2988
3083
  # The ARN of the principal (user, role, or group). This field allows an
2989
- # ARN with no `accountID` if `PrincipalType` is `IAM_PATTERN`.
3084
+ # ARN with no `accountID` with or without wildcard characters if
3085
+ # `PrincipalType` is `IAM_PATTERN`.
2990
3086
  #
2991
3087
  # @option params [String] :principal_type
2992
3088
  # The supported value is `IAM` if you use a fully defined ARN, or
2993
- # `IAM_PATTERN` if you use no `accountID`.
3089
+ # `IAM_PATTERN` if you specify an `IAM` ARN with no AccountId, with or
3090
+ # without wildcard characters.
2994
3091
  #
2995
3092
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2996
3093
  #
@@ -6138,7 +6235,7 @@ module Aws::ServiceCatalog
6138
6235
  params: params,
6139
6236
  config: config)
6140
6237
  context[:gem_name] = 'aws-sdk-servicecatalog'
6141
- context[:gem_version] = '1.79.0'
6238
+ context[:gem_version] = '1.81.0'
6142
6239
  Seahorse::Client::Request.new(handlers, context)
6143
6240
  end
6144
6241
 
@@ -876,11 +876,13 @@ module Aws::ServiceCatalog
876
876
  DescribeProvisioningArtifactInput.add_member(:provisioning_artifact_name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "ProvisioningArtifactName"))
877
877
  DescribeProvisioningArtifactInput.add_member(:product_name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "ProductName"))
878
878
  DescribeProvisioningArtifactInput.add_member(:verbose, Shapes::ShapeRef.new(shape: Verbose, location_name: "Verbose"))
879
+ DescribeProvisioningArtifactInput.add_member(:include_provisioning_artifact_parameters, Shapes::ShapeRef.new(shape: Boolean, location_name: "IncludeProvisioningArtifactParameters"))
879
880
  DescribeProvisioningArtifactInput.struct_class = Types::DescribeProvisioningArtifactInput
880
881
 
881
882
  DescribeProvisioningArtifactOutput.add_member(:provisioning_artifact_detail, Shapes::ShapeRef.new(shape: ProvisioningArtifactDetail, location_name: "ProvisioningArtifactDetail"))
882
883
  DescribeProvisioningArtifactOutput.add_member(:info, Shapes::ShapeRef.new(shape: ProvisioningArtifactInfo, location_name: "Info"))
883
884
  DescribeProvisioningArtifactOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "Status"))
885
+ DescribeProvisioningArtifactOutput.add_member(:provisioning_artifact_parameters, Shapes::ShapeRef.new(shape: ProvisioningArtifactParameters, location_name: "ProvisioningArtifactParameters"))
884
886
  DescribeProvisioningArtifactOutput.struct_class = Types::DescribeProvisioningArtifactOutput
885
887
 
886
888
  DescribeProvisioningParametersInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
@@ -114,18 +114,73 @@ module Aws::ServiceCatalog
114
114
  # @return [String]
115
115
  #
116
116
  # @!attribute [rw] principal_arn
117
- # The ARN of the principal (user, role, or group). This field allows
118
- # an ARN with no `accountID` if `PrincipalType` is `IAM_PATTERN`.
117
+ # The ARN of the principal (user, role, or group). If the
118
+ # `PrincipalType` is `IAM`, the supported value is a fully defined
119
+ # [IAM Amazon Resource Name (ARN)][1]. If the `PrincipalType` is
120
+ # `IAM_PATTERN`, the supported value is an `IAM` ARN *without an
121
+ # AccountID* in the following format:
122
+ #
123
+ # *arn:partition:iam:::resource-type/resource-id*
124
+ #
125
+ # The ARN resource-id can be either:
126
+ #
127
+ # * A fully formed resource-id. For example,
128
+ # *arn:aws:iam:::role/resource-name* or
129
+ # *arn:aws:iam:::role/resource-path/resource-name*
130
+ #
131
+ # * A wildcard ARN. The wildcard ARN accepts `IAM_PATTERN` values with
132
+ # a "*" or "?" in the resource-id segment of the ARN. For
133
+ # example
134
+ # *arn:partition:service:::resource-type/resource-path/resource-name*.
135
+ # The new symbols are exclusive to the **resource-path** and
136
+ # **resource-name** and cannot replace the **resource-type** or
137
+ # other ARN values.
138
+ #
139
+ # The ARN path and principal name allow unlimited wildcard
140
+ # characters.
141
+ #
142
+ # Examples of an **acceptable** wildcard ARN:
143
+ #
144
+ # * arn:aws:iam:::role/ResourceName\_*
145
+ #
146
+ # * arn:aws:iam:::role/*/ResourceName\_?
147
+ #
148
+ # Examples of an **unacceptable** wildcard ARN:
149
+ #
150
+ # * arn:aws:iam:::*/ResourceName
151
+ #
152
+ # ^
153
+ #
154
+ # You can associate multiple `IAM_PATTERN`s even if the account has no
155
+ # principal with that name.
156
+ #
157
+ # The "?" wildcard character matches zero or one of any character.
158
+ # This is similar to ".?" in regular regex context. The "*"
159
+ # wildcard character matches any number of any characters. This is
160
+ # similar to ".*" in regular regex context.
161
+ #
162
+ # In the IAM Principal ARN format
163
+ # (*arn:partition:iam:::resource-type/resource-path/resource-name*),
164
+ # valid resource-type values include **user/**, **group/**, or
165
+ # **role/**. The "?" and "*" characters are allowed only after
166
+ # the resource-type in the resource-id segment. You can use special
167
+ # characters anywhere within the resource-id.
119
168
  #
120
- # You can associate multiple `IAM` patterns even if the account has no
121
- # principal with that name. This is useful in Principal Name Sharing
122
- # if you want to share a principal without creating it in the account
123
- # that owns the portfolio.
169
+ # The "*" character also matches the "/" character, allowing
170
+ # paths to be formed *within* the resource-id. For example,
171
+ # *arn:aws:iam:::role/*****/ResourceName\_?* matches both
172
+ # *arn:aws:iam:::role/pathA/pathB/ResourceName\_1* and
173
+ # *arn:aws:iam:::role/pathA/ResourceName\_1*.
174
+ #
175
+ #
176
+ #
177
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-arns
124
178
  # @return [String]
125
179
  #
126
180
  # @!attribute [rw] principal_type
127
181
  # The principal type. The supported value is `IAM` if you use a fully
128
- # defined ARN, or `IAM_PATTERN` if you use an ARN with no `accountID`.
182
+ # defined Amazon Resource Name (ARN), or `IAM_PATTERN` if you use an
183
+ # ARN with no `accountID`, with or without wildcard characters.
129
184
  # @return [String]
130
185
  #
131
186
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/AssociatePrincipalWithPortfolioInput AWS API Documentation
@@ -1985,6 +2040,11 @@ module Aws::ServiceCatalog
1985
2040
  # Indicates whether a verbose level of detail is enabled.
1986
2041
  # @return [Boolean]
1987
2042
  #
2043
+ # @!attribute [rw] include_provisioning_artifact_parameters
2044
+ # Indicates if the API call response does or does not include
2045
+ # additional details about the provisioning parameters.
2046
+ # @return [Boolean]
2047
+ #
1988
2048
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningArtifactInput AWS API Documentation
1989
2049
  #
1990
2050
  class DescribeProvisioningArtifactInput < Struct.new(
@@ -1993,7 +2053,8 @@ module Aws::ServiceCatalog
1993
2053
  :product_id,
1994
2054
  :provisioning_artifact_name,
1995
2055
  :product_name,
1996
- :verbose)
2056
+ :verbose,
2057
+ :include_provisioning_artifact_parameters)
1997
2058
  SENSITIVE = []
1998
2059
  include Aws::Structure
1999
2060
  end
@@ -2011,12 +2072,17 @@ module Aws::ServiceCatalog
2011
2072
  # The status of the current request.
2012
2073
  # @return [String]
2013
2074
  #
2075
+ # @!attribute [rw] provisioning_artifact_parameters
2076
+ # Information about the parameters used to provision the product.
2077
+ # @return [Array<Types::ProvisioningArtifactParameter>]
2078
+ #
2014
2079
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningArtifactOutput AWS API Documentation
2015
2080
  #
2016
2081
  class DescribeProvisioningArtifactOutput < Struct.new(
2017
2082
  :provisioning_artifact_detail,
2018
2083
  :info,
2019
- :status)
2084
+ :status,
2085
+ :provisioning_artifact_parameters)
2020
2086
  SENSITIVE = []
2021
2087
  include Aws::Structure
2022
2088
  end
@@ -2320,12 +2386,14 @@ module Aws::ServiceCatalog
2320
2386
  #
2321
2387
  # @!attribute [rw] principal_arn
2322
2388
  # The ARN of the principal (user, role, or group). This field allows
2323
- # an ARN with no `accountID` if `PrincipalType` is `IAM_PATTERN`.
2389
+ # an ARN with no `accountID` with or without wildcard characters if
2390
+ # `PrincipalType` is `IAM_PATTERN`.
2324
2391
  # @return [String]
2325
2392
  #
2326
2393
  # @!attribute [rw] principal_type
2327
2394
  # The supported value is `IAM` if you use a fully defined ARN, or
2328
- # `IAM_PATTERN` if you use no `accountID`.
2395
+ # `IAM_PATTERN` if you specify an `IAM` ARN with no AccountId, with or
2396
+ # without wildcard characters.
2329
2397
  # @return [String]
2330
2398
  #
2331
2399
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisassociatePrincipalFromPortfolioInput AWS API Documentation
@@ -4187,13 +4255,21 @@ module Aws::ServiceCatalog
4187
4255
  #
4188
4256
  # @!attribute [rw] principal_arn
4189
4257
  # The ARN of the principal (user, role, or group). This field allows
4190
- # for an ARN with no `accountID` if the `PrincipalType` is an
4191
- # `IAM_PATTERN`.
4258
+ # for an ARN with no `accountID`, with or without wildcard characters
4259
+ # if the `PrincipalType` is an `IAM_PATTERN`.
4260
+ #
4261
+ # For more information, review [associate-principal-with-portfolio][1]
4262
+ # in the Amazon Web Services CLI Command Reference.
4263
+ #
4264
+ #
4265
+ #
4266
+ # [1]: https://docs.aws.amazon.com/cli/latest/reference/servicecatalog/associate-principal-with-portfolio.html#options
4192
4267
  # @return [String]
4193
4268
  #
4194
4269
  # @!attribute [rw] principal_type
4195
4270
  # The principal type. The supported value is `IAM` if you use a fully
4196
- # defined ARN, or `IAM_PATTERN` if you use an ARN with no `accountID`.
4271
+ # defined ARN, or `IAM_PATTERN` if you use an ARN with no `accountID`,
4272
+ # with or without wildcard characters.
4197
4273
  # @return [String]
4198
4274
  #
4199
4275
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/Principal AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-servicecatalog/customizations'
52
52
  # @!group service
53
53
  module Aws::ServiceCatalog
54
54
 
55
- GEM_VERSION = '1.79.0'
55
+ GEM_VERSION = '1.81.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-servicecatalog
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.79.0
4
+ version: 1.81.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: 2023-04-07 00:00:00.000000000 Z
11
+ date: 2023-06-08 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.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement