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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appconfig/client.rb +6 -5
- data/lib/aws-sdk-appconfig/types.rb +14 -11
- data/lib/aws-sdk-appconfig.rb +1 -1
- data/sig/client.rbs +5 -5
- data/sig/types.rbs +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 987c8d1cd6bc59c2555a0924b81f6ca018ff1188e113349bdd8549faf53fe1ed
|
4
|
+
data.tar.gz: ed4ffca388112a799845a3ee9ba265d08b9d924bb1003ef5e69aacf1c63be80c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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://
|
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.
|
2783
|
-
#
|
2784
|
-
#
|
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.
|
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
|
37
|
-
#
|
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://
|
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.
|
2197
|
-
#
|
2198
|
-
#
|
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
|
data/lib/aws-sdk-appconfig.rb
CHANGED
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.
|
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-
|
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
|