aws-sdk-appconfig 1.60.0 → 1.61.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: 279cd99a32e6b54d63f281bb0df4254271dc3ddd6f0d8434db3c643d297d66ba
4
- data.tar.gz: 2cf0c423bfad1ceec3a5c97527b8e9e2fcf5d9eca1271214f150ee6d4ae2b61f
3
+ metadata.gz: 987c8d1cd6bc59c2555a0924b81f6ca018ff1188e113349bdd8549faf53fe1ed
4
+ data.tar.gz: ed4ffca388112a799845a3ee9ba265d08b9d924bb1003ef5e69aacf1c63be80c
5
5
  SHA512:
6
- metadata.gz: a83ca61267490bb8f609b761239e4bf857aa1b5e519b2a7cf1553f767e2a62056d368c1bb8bd4173a179b549aaf8e03e0c713663f3284fb8e940a236b7f74e56
7
- data.tar.gz: 3fd8612bccc8d6186156f9e9d9bac11eff897b181db378e4bed36fab045df891149c7694efb1bdb78af59c396aa736396a8c80c3cfb6bd65986aa87e637b6573
6
+ metadata.gz: be123f6b9ef6d3752c80a465af1fa6ed573ec6aecb42ba16f7de31cf238098a04c4fe46402d74f4a0d30c602deccea514a81c24f8ac0b461ad37c6ccb8d75cf3
7
+ data.tar.gz: f621749147be3a41c31c85c5c9bafad2384a315dc29ab5af6d0c315e0a10b7aa38a1574ca07409d6c05d93dd8f511f617d88742d11cb767f092fe9153f0f43ba
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.61.0 (2024-11-18)
5
+ ------------------
6
+
7
+ * Feature - AWS AppConfig has added a new extension action point, AT_DEPLOYMENT_TICK, to support third-party monitors to trigger an automatic rollback during a deployment.
8
+
4
9
  1.60.0 (2024-10-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.60.0
1
+ 1.61.0
@@ -576,7 +576,7 @@ module Aws::AppConfig
576
576
  #
577
577
  # * For an Amazon S3 object, specify the URI in the following format:
578
578
  # `s3://<bucket>/<objectKey> `. Here is an example:
579
- # `s3://my-bucket/my-app/us-east-1/my-config.json`
579
+ # `s3://amzn-s3-demo-bucket/my-app/us-east-1/my-config.json`
580
580
  #
581
581
  # * For an SSM document, specify either the document name in the format
582
582
  # `ssm-document://<document name>` or the Amazon Resource Name (ARN).
@@ -2779,9 +2779,10 @@ module Aws::AppConfig
2779
2779
  # The configuration profile ID.
2780
2780
  #
2781
2781
  # @option params [Integer] :max_results
2782
- # The maximum number of items to return for this call. The call also
2783
- # returns a token that you can specify in a subsequent call to get the
2784
- # next set of results.
2782
+ # The maximum number of items to return for this call. If `MaxResults`
2783
+ # is not provided in the call, AppConfig returns the maximum of 50. The
2784
+ # call also returns a token that you can specify in a subsequent call to
2785
+ # get the next set of results.
2785
2786
  #
2786
2787
  # @option params [String] :next_token
2787
2788
  # A token to start the list. Use this token to get the next set of
@@ -3877,7 +3878,7 @@ module Aws::AppConfig
3877
3878
  tracer: tracer
3878
3879
  )
3879
3880
  context[:gem_name] = 'aws-sdk-appconfig'
3880
- context[:gem_version] = '1.60.0'
3881
+ context[:gem_version] = '1.61.0'
3881
3882
  Seahorse::Client::Request.new(handlers, context)
3882
3883
  end
3883
3884
 
@@ -33,18 +33,15 @@ module Aws::AppConfig
33
33
  end
34
34
 
35
35
  # An action defines the tasks that the extension performs during the
36
- # AppConfig workflow. Each action includes an action point such as
37
- # `ON_CREATE_HOSTED_CONFIGURATION`, `PRE_DEPLOYMENT`, or
38
- # `ON_DEPLOYMENT`. Each action also includes a name, a URI to an Lambda
39
- # function, and an Amazon Resource Name (ARN) for an Identity and Access
40
- # Management assume role. You specify the name, URI, and ARN for each
41
- # *action point* defined in the extension. You can specify the following
42
- # actions for an extension:
36
+ # AppConfig workflow. Each action includes an action point, as shown in
37
+ # the following list:
43
38
  #
44
39
  # * `PRE_CREATE_HOSTED_CONFIGURATION_VERSION`
45
40
  #
46
41
  # * `PRE_START_DEPLOYMENT`
47
42
  #
43
+ # * `AT_DEPLOYMENT_TICK`
44
+ #
48
45
  # * `ON_DEPLOYMENT_START`
49
46
  #
50
47
  # * `ON_DEPLOYMENT_STEP`
@@ -55,6 +52,11 @@ module Aws::AppConfig
55
52
  #
56
53
  # * `ON_DEPLOYMENT_ROLLED_BACK`
57
54
  #
55
+ # Each action also includes a name, a URI to an Lambda function, and an
56
+ # Amazon Resource Name (ARN) for an Identity and Access Management
57
+ # assume role. You specify the name, URI, and ARN for each *action
58
+ # point* defined in the extension.
59
+ #
58
60
  # @!attribute [rw] name
59
61
  # The action name.
60
62
  # @return [String]
@@ -491,7 +493,7 @@ module Aws::AppConfig
491
493
  #
492
494
  # * For an Amazon S3 object, specify the URI in the following format:
493
495
  # `s3://<bucket>/<objectKey> `. Here is an example:
494
- # `s3://my-bucket/my-app/us-east-1/my-config.json`
496
+ # `s3://amzn-s3-demo-bucket/my-app/us-east-1/my-config.json`
495
497
  #
496
498
  # * For an SSM document, specify either the document name in the
497
499
  # format `ssm-document://<document name>` or the Amazon Resource
@@ -2193,9 +2195,10 @@ module Aws::AppConfig
2193
2195
  # @return [String]
2194
2196
  #
2195
2197
  # @!attribute [rw] max_results
2196
- # The maximum number of items to return for this call. The call also
2197
- # returns a token that you can specify in a subsequent call to get the
2198
- # next set of results.
2198
+ # The maximum number of items to return for this call. If `MaxResults`
2199
+ # is not provided in the call, AppConfig returns the maximum of 50.
2200
+ # The call also returns a token that you can specify in a subsequent
2201
+ # call to get the next set of results.
2199
2202
  # @return [Integer]
2200
2203
  #
2201
2204
  # @!attribute [rw] next_token
@@ -54,7 +54,7 @@ module Aws::AppConfig
54
54
  autoload :EndpointProvider, 'aws-sdk-appconfig/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-appconfig/endpoints'
56
56
 
57
- GEM_VERSION = '1.60.0'
57
+ GEM_VERSION = '1.61.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -176,14 +176,14 @@ module Aws
176
176
  def version_number: () -> ::Integer
177
177
  def arn: () -> ::String
178
178
  def description: () -> ::String
179
- def actions: () -> ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
179
+ def actions: () -> ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
180
180
  def parameters: () -> ::Hash[::String, Types::Parameter]
181
181
  end
182
182
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#create_extension-instance_method
183
183
  def create_extension: (
184
184
  name: ::String,
185
185
  ?description: ::String,
186
- actions: Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), Array[
186
+ actions: Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), Array[
187
187
  {
188
188
  name: ::String?,
189
189
  description: ::String?,
@@ -421,7 +421,7 @@ module Aws
421
421
  def version_number: () -> ::Integer
422
422
  def arn: () -> ::String
423
423
  def description: () -> ::String
424
- def actions: () -> ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
424
+ def actions: () -> ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
425
425
  def parameters: () -> ::Hash[::String, Types::Parameter]
426
426
  end
427
427
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_extension-instance_method
@@ -780,14 +780,14 @@ module Aws
780
780
  def version_number: () -> ::Integer
781
781
  def arn: () -> ::String
782
782
  def description: () -> ::String
783
- def actions: () -> ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
783
+ def actions: () -> ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
784
784
  def parameters: () -> ::Hash[::String, Types::Parameter]
785
785
  end
786
786
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_extension-instance_method
787
787
  def update_extension: (
788
788
  extension_identifier: ::String,
789
789
  ?description: ::String,
790
- ?actions: Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), Array[
790
+ ?actions: Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), Array[
791
791
  {
792
792
  name: ::String?,
793
793
  description: ::String?,
data/sig/types.rbs CHANGED
@@ -166,7 +166,7 @@ module Aws::AppConfig
166
166
  class CreateExtensionRequest
167
167
  attr_accessor name: ::String
168
168
  attr_accessor description: ::String
169
- attr_accessor actions: ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
169
+ attr_accessor actions: ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
170
170
  attr_accessor parameters: ::Hash[::String, Types::Parameter]
171
171
  attr_accessor tags: ::Hash[::String, ::String]
172
172
  attr_accessor latest_version_number: ::Integer
@@ -329,7 +329,7 @@ module Aws::AppConfig
329
329
  attr_accessor version_number: ::Integer
330
330
  attr_accessor arn: ::String
331
331
  attr_accessor description: ::String
332
- attr_accessor actions: ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
332
+ attr_accessor actions: ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
333
333
  attr_accessor parameters: ::Hash[::String, Types::Parameter]
334
334
  SENSITIVE: []
335
335
  end
@@ -657,7 +657,7 @@ module Aws::AppConfig
657
657
  class UpdateExtensionRequest
658
658
  attr_accessor extension_identifier: ::String
659
659
  attr_accessor description: ::String
660
- attr_accessor actions: ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
660
+ attr_accessor actions: ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
661
661
  attr_accessor parameters: ::Hash[::String, Types::Parameter]
662
662
  attr_accessor version_number: ::Integer
663
663
  SENSITIVE: []
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appconfig
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.60.0
4
+ version: 1.61.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-10-24 00:00:00.000000000 Z
11
+ date: 2024-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core