aws-sdk-appconfig 1.43.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appconfig/client.rb +26 -15
- data/lib/aws-sdk-appconfig/client_api.rb +7 -0
- data/lib/aws-sdk-appconfig/types.rb +17 -4
- data/lib/aws-sdk-appconfig.rb +1 -1
- data/sig/client.rbs +6 -3
- data/sig/types.rbs +2 -0
- 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: 95158eb9f31f7e74116fa054b178d2d1e8a5708d296db4970f1972524b89b680
|
|
4
|
+
data.tar.gz: 80307a45edc4af1c5c0de2629079058471c3e872eab0f2b96f1ed7bd2c421162
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 89c22546d95f14937b9b3d58d7f3747ab2c2c3bb0a6c7b00513570810f3a331483043df906ce5283b1eef6280b6c4679add153af48c205b95fd1f036e5b99422
|
|
7
|
+
data.tar.gz: d5aaa77ada1274aa9a7fd03ce3ce4efab75936b816a3a7116f79552c71f3450a98c1f25bda73a953f27cc01b17a34d7b8f3a9a543dfd920a906fd3509f2a4b3c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.44.0 (2024-03-07)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS AppConfig now supports dynamic parameters, which enhance the functionality of AppConfig Extensions by allowing you to provide parameter values to your Extensions at the time you deploy your configuration.
|
|
8
|
+
|
|
4
9
|
1.43.0 (2024-01-26)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.44.0
|
|
@@ -892,8 +892,8 @@ module Aws::AppConfig
|
|
|
892
892
|
# * For a custom Amazon SQS notification extension, enter the ARN of an
|
|
893
893
|
# Amazon SQS message queue in the `Uri` field.
|
|
894
894
|
#
|
|
895
|
-
# For more information about extensions, see [
|
|
896
|
-
#
|
|
895
|
+
# For more information about extensions, see [Extending workflows][1] in
|
|
896
|
+
# the *AppConfig User Guide*.
|
|
897
897
|
#
|
|
898
898
|
#
|
|
899
899
|
#
|
|
@@ -955,6 +955,7 @@ module Aws::AppConfig
|
|
|
955
955
|
# "ExtensionOrParameterName" => {
|
|
956
956
|
# description: "Description",
|
|
957
957
|
# required: false,
|
|
958
|
+
# dynamic: false,
|
|
958
959
|
# },
|
|
959
960
|
# },
|
|
960
961
|
# tags: {
|
|
@@ -979,6 +980,7 @@ module Aws::AppConfig
|
|
|
979
980
|
# resp.parameters #=> Hash
|
|
980
981
|
# resp.parameters["ExtensionOrParameterName"].description #=> String
|
|
981
982
|
# resp.parameters["ExtensionOrParameterName"].required #=> Boolean
|
|
983
|
+
# resp.parameters["ExtensionOrParameterName"].dynamic #=> Boolean
|
|
982
984
|
#
|
|
983
985
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/CreateExtension AWS API Documentation
|
|
984
986
|
#
|
|
@@ -999,8 +1001,8 @@ module Aws::AppConfig
|
|
|
999
1001
|
# AppConfig resource is called an *extension association*. An extension
|
|
1000
1002
|
# association is a specified relationship between an extension and an
|
|
1001
1003
|
# AppConfig resource, such as an application or a configuration profile.
|
|
1002
|
-
# For more information about extensions and associations, see [
|
|
1003
|
-
#
|
|
1004
|
+
# For more information about extensions and associations, see [Extending
|
|
1005
|
+
# workflows][1] in the *AppConfig User Guide*.
|
|
1004
1006
|
#
|
|
1005
1007
|
#
|
|
1006
1008
|
#
|
|
@@ -1988,6 +1990,7 @@ module Aws::AppConfig
|
|
|
1988
1990
|
# resp.parameters #=> Hash
|
|
1989
1991
|
# resp.parameters["ExtensionOrParameterName"].description #=> String
|
|
1990
1992
|
# resp.parameters["ExtensionOrParameterName"].required #=> Boolean
|
|
1993
|
+
# resp.parameters["ExtensionOrParameterName"].dynamic #=> Boolean
|
|
1991
1994
|
#
|
|
1992
1995
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/GetExtension AWS API Documentation
|
|
1993
1996
|
#
|
|
@@ -1999,8 +2002,8 @@ module Aws::AppConfig
|
|
|
1999
2002
|
end
|
|
2000
2003
|
|
|
2001
2004
|
# Returns information about an AppConfig extension association. For more
|
|
2002
|
-
# information about extensions and associations, see [
|
|
2003
|
-
#
|
|
2005
|
+
# information about extensions and associations, see [Extending
|
|
2006
|
+
# workflows][1] in the *AppConfig User Guide*.
|
|
2004
2007
|
#
|
|
2005
2008
|
#
|
|
2006
2009
|
#
|
|
@@ -2496,8 +2499,8 @@ module Aws::AppConfig
|
|
|
2496
2499
|
end
|
|
2497
2500
|
|
|
2498
2501
|
# Lists all AppConfig extension associations in the account. For more
|
|
2499
|
-
# information about extensions and associations, see [
|
|
2500
|
-
#
|
|
2502
|
+
# information about extensions and associations, see [Extending
|
|
2503
|
+
# workflows][1] in the *AppConfig User Guide*.
|
|
2501
2504
|
#
|
|
2502
2505
|
#
|
|
2503
2506
|
#
|
|
@@ -2556,8 +2559,8 @@ module Aws::AppConfig
|
|
|
2556
2559
|
end
|
|
2557
2560
|
|
|
2558
2561
|
# Lists all custom and Amazon Web Services authored AppConfig extensions
|
|
2559
|
-
# in the account. For more information about extensions, see [
|
|
2560
|
-
#
|
|
2562
|
+
# in the account. For more information about extensions, see [Extending
|
|
2563
|
+
# workflows][1] in the *AppConfig User Guide*.
|
|
2561
2564
|
#
|
|
2562
2565
|
#
|
|
2563
2566
|
#
|
|
@@ -2773,6 +2776,10 @@ module Aws::AppConfig
|
|
|
2773
2776
|
# this ID to encrypt the configuration data using a customer managed
|
|
2774
2777
|
# key.
|
|
2775
2778
|
#
|
|
2779
|
+
# @option params [Hash<String,String>] :dynamic_extension_parameters
|
|
2780
|
+
# A map of dynamic extension parameter names to values to pass to
|
|
2781
|
+
# associated extensions with `PRE_START_DEPLOYMENT` actions.
|
|
2782
|
+
#
|
|
2776
2783
|
# @return [Types::Deployment] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2777
2784
|
#
|
|
2778
2785
|
# * {Types::Deployment#application_id #application_id} => String
|
|
@@ -2855,6 +2862,9 @@ module Aws::AppConfig
|
|
|
2855
2862
|
# "TagKey" => "TagValue",
|
|
2856
2863
|
# },
|
|
2857
2864
|
# kms_key_identifier: "KmsKeyIdentifier",
|
|
2865
|
+
# dynamic_extension_parameters: {
|
|
2866
|
+
# "DynamicParameterKey" => "StringWithLengthBetween1And2048",
|
|
2867
|
+
# },
|
|
2858
2868
|
# })
|
|
2859
2869
|
#
|
|
2860
2870
|
# @example Response structure
|
|
@@ -3466,8 +3476,7 @@ module Aws::AppConfig
|
|
|
3466
3476
|
end
|
|
3467
3477
|
|
|
3468
3478
|
# Updates an AppConfig extension. For more information about extensions,
|
|
3469
|
-
# see [
|
|
3470
|
-
# Guide*.
|
|
3479
|
+
# see [Extending workflows][1] in the *AppConfig User Guide*.
|
|
3471
3480
|
#
|
|
3472
3481
|
#
|
|
3473
3482
|
#
|
|
@@ -3517,6 +3526,7 @@ module Aws::AppConfig
|
|
|
3517
3526
|
# "ExtensionOrParameterName" => {
|
|
3518
3527
|
# description: "Description",
|
|
3519
3528
|
# required: false,
|
|
3529
|
+
# dynamic: false,
|
|
3520
3530
|
# },
|
|
3521
3531
|
# },
|
|
3522
3532
|
# version_number: 1,
|
|
@@ -3538,6 +3548,7 @@ module Aws::AppConfig
|
|
|
3538
3548
|
# resp.parameters #=> Hash
|
|
3539
3549
|
# resp.parameters["ExtensionOrParameterName"].description #=> String
|
|
3540
3550
|
# resp.parameters["ExtensionOrParameterName"].required #=> Boolean
|
|
3551
|
+
# resp.parameters["ExtensionOrParameterName"].dynamic #=> Boolean
|
|
3541
3552
|
#
|
|
3542
3553
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/UpdateExtension AWS API Documentation
|
|
3543
3554
|
#
|
|
@@ -3549,8 +3560,8 @@ module Aws::AppConfig
|
|
|
3549
3560
|
end
|
|
3550
3561
|
|
|
3551
3562
|
# Updates an association. For more information about extensions and
|
|
3552
|
-
# associations, see [
|
|
3553
|
-
#
|
|
3563
|
+
# associations, see [Extending workflows][1] in the *AppConfig User
|
|
3564
|
+
# Guide*.
|
|
3554
3565
|
#
|
|
3555
3566
|
#
|
|
3556
3567
|
#
|
|
@@ -3654,7 +3665,7 @@ module Aws::AppConfig
|
|
|
3654
3665
|
params: params,
|
|
3655
3666
|
config: config)
|
|
3656
3667
|
context[:gem_name] = 'aws-sdk-appconfig'
|
|
3657
|
-
context[:gem_version] = '1.
|
|
3668
|
+
context[:gem_version] = '1.44.0'
|
|
3658
3669
|
Seahorse::Client::Request.new(handlers, context)
|
|
3659
3670
|
end
|
|
3660
3671
|
|
|
@@ -65,6 +65,8 @@ module Aws::AppConfig
|
|
|
65
65
|
DeploymentSummary = Shapes::StructureShape.new(name: 'DeploymentSummary')
|
|
66
66
|
Deployments = Shapes::StructureShape.new(name: 'Deployments')
|
|
67
67
|
Description = Shapes::StringShape.new(name: 'Description')
|
|
68
|
+
DynamicParameterKey = Shapes::StringShape.new(name: 'DynamicParameterKey')
|
|
69
|
+
DynamicParameterMap = Shapes::MapShape.new(name: 'DynamicParameterMap')
|
|
68
70
|
Environment = Shapes::StructureShape.new(name: 'Environment')
|
|
69
71
|
EnvironmentList = Shapes::ListShape.new(name: 'EnvironmentList')
|
|
70
72
|
EnvironmentState = Shapes::StringShape.new(name: 'EnvironmentState')
|
|
@@ -401,6 +403,9 @@ module Aws::AppConfig
|
|
|
401
403
|
Deployments.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
402
404
|
Deployments.struct_class = Types::Deployments
|
|
403
405
|
|
|
406
|
+
DynamicParameterMap.key = Shapes::ShapeRef.new(shape: DynamicParameterKey)
|
|
407
|
+
DynamicParameterMap.value = Shapes::ShapeRef.new(shape: StringWithLengthBetween1And2048)
|
|
408
|
+
|
|
404
409
|
Environment.add_member(:application_id, Shapes::ShapeRef.new(shape: Id, location_name: "ApplicationId"))
|
|
405
410
|
Environment.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
|
|
406
411
|
Environment.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
|
|
@@ -588,6 +593,7 @@ module Aws::AppConfig
|
|
|
588
593
|
|
|
589
594
|
Parameter.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
|
590
595
|
Parameter.add_member(:required, Shapes::ShapeRef.new(shape: Boolean, location_name: "Required"))
|
|
596
|
+
Parameter.add_member(:dynamic, Shapes::ShapeRef.new(shape: Boolean, location_name: "Dynamic"))
|
|
591
597
|
Parameter.struct_class = Types::Parameter
|
|
592
598
|
|
|
593
599
|
ParameterMap.key = Shapes::ShapeRef.new(shape: ExtensionOrParameterName)
|
|
@@ -620,6 +626,7 @@ module Aws::AppConfig
|
|
|
620
626
|
StartDeploymentRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
|
621
627
|
StartDeploymentRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
622
628
|
StartDeploymentRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
|
|
629
|
+
StartDeploymentRequest.add_member(:dynamic_extension_parameters, Shapes::ShapeRef.new(shape: DynamicParameterMap, location_name: "DynamicExtensionParameters"))
|
|
623
630
|
StartDeploymentRequest.struct_class = Types::StartDeploymentRequest
|
|
624
631
|
|
|
625
632
|
StopDeploymentRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "ApplicationId"))
|
|
@@ -2130,8 +2130,8 @@ module Aws::AppConfig
|
|
|
2130
2130
|
# A value such as an Amazon Resource Name (ARN) or an Amazon Simple
|
|
2131
2131
|
# Notification Service topic entered in an extension when invoked.
|
|
2132
2132
|
# Parameter values are specified in an extension association. For more
|
|
2133
|
-
# information about extensions, see [
|
|
2134
|
-
#
|
|
2133
|
+
# information about extensions, see [Extending workflows][1] in the
|
|
2134
|
+
# *AppConfig User Guide*.
|
|
2135
2135
|
#
|
|
2136
2136
|
#
|
|
2137
2137
|
#
|
|
@@ -2145,11 +2145,18 @@ module Aws::AppConfig
|
|
|
2145
2145
|
# A parameter value must be specified in the extension association.
|
|
2146
2146
|
# @return [Boolean]
|
|
2147
2147
|
#
|
|
2148
|
+
# @!attribute [rw] dynamic
|
|
2149
|
+
# Indicates whether this parameter's value can be supplied at the
|
|
2150
|
+
# extension's action point instead of during extension association.
|
|
2151
|
+
# Dynamic parameters can't be marked `Required`.
|
|
2152
|
+
# @return [Boolean]
|
|
2153
|
+
#
|
|
2148
2154
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/Parameter AWS API Documentation
|
|
2149
2155
|
#
|
|
2150
2156
|
class Parameter < Struct.new(
|
|
2151
2157
|
:description,
|
|
2152
|
-
:required
|
|
2158
|
+
:required,
|
|
2159
|
+
:dynamic)
|
|
2153
2160
|
SENSITIVE = []
|
|
2154
2161
|
include Aws::Structure
|
|
2155
2162
|
end
|
|
@@ -2281,6 +2288,11 @@ module Aws::AppConfig
|
|
|
2281
2288
|
# managed key.
|
|
2282
2289
|
# @return [String]
|
|
2283
2290
|
#
|
|
2291
|
+
# @!attribute [rw] dynamic_extension_parameters
|
|
2292
|
+
# A map of dynamic extension parameter names to values to pass to
|
|
2293
|
+
# associated extensions with `PRE_START_DEPLOYMENT` actions.
|
|
2294
|
+
# @return [Hash<String,String>]
|
|
2295
|
+
#
|
|
2284
2296
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/StartDeploymentRequest AWS API Documentation
|
|
2285
2297
|
#
|
|
2286
2298
|
class StartDeploymentRequest < Struct.new(
|
|
@@ -2291,7 +2303,8 @@ module Aws::AppConfig
|
|
|
2291
2303
|
:configuration_version,
|
|
2292
2304
|
:description,
|
|
2293
2305
|
:tags,
|
|
2294
|
-
:kms_key_identifier
|
|
2306
|
+
:kms_key_identifier,
|
|
2307
|
+
:dynamic_extension_parameters)
|
|
2295
2308
|
SENSITIVE = []
|
|
2296
2309
|
include Aws::Structure
|
|
2297
2310
|
end
|
data/lib/aws-sdk-appconfig.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -190,7 +190,8 @@ module Aws
|
|
|
190
190
|
]],
|
|
191
191
|
?parameters: Hash[::String, {
|
|
192
192
|
description: ::String?,
|
|
193
|
-
required: bool
|
|
193
|
+
required: bool?,
|
|
194
|
+
dynamic: bool?
|
|
194
195
|
}],
|
|
195
196
|
?tags: Hash[::String, ::String],
|
|
196
197
|
?latest_version_number: ::Integer
|
|
@@ -603,7 +604,8 @@ module Aws
|
|
|
603
604
|
configuration_version: ::String,
|
|
604
605
|
?description: ::String,
|
|
605
606
|
?tags: Hash[::String, ::String],
|
|
606
|
-
?kms_key_identifier: ::String
|
|
607
|
+
?kms_key_identifier: ::String,
|
|
608
|
+
?dynamic_extension_parameters: Hash[::String, ::String]
|
|
607
609
|
) -> _StartDeploymentResponseSuccess
|
|
608
610
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDeploymentResponseSuccess
|
|
609
611
|
|
|
@@ -768,7 +770,8 @@ module Aws
|
|
|
768
770
|
]],
|
|
769
771
|
?parameters: Hash[::String, {
|
|
770
772
|
description: ::String?,
|
|
771
|
-
required: bool
|
|
773
|
+
required: bool?,
|
|
774
|
+
dynamic: bool?
|
|
772
775
|
}],
|
|
773
776
|
?version_number: ::Integer
|
|
774
777
|
) -> _UpdateExtensionResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -532,6 +532,7 @@ module Aws::AppConfig
|
|
|
532
532
|
class Parameter
|
|
533
533
|
attr_accessor description: ::String
|
|
534
534
|
attr_accessor required: bool
|
|
535
|
+
attr_accessor dynamic: bool
|
|
535
536
|
SENSITIVE: []
|
|
536
537
|
end
|
|
537
538
|
|
|
@@ -568,6 +569,7 @@ module Aws::AppConfig
|
|
|
568
569
|
attr_accessor description: ::String
|
|
569
570
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
570
571
|
attr_accessor kms_key_identifier: ::String
|
|
572
|
+
attr_accessor dynamic_extension_parameters: ::Hash[::String, ::String]
|
|
571
573
|
SENSITIVE: []
|
|
572
574
|
end
|
|
573
575
|
|
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.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: 2024-
|
|
11
|
+
date: 2024-03-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|