aws-sdk-appconfig 1.43.0 → 1.45.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appconfig/client.rb +95 -60
- 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 +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e9e8ee771db1b1991394b54f7f7cc177a81ce7b98cbfbb0db307f843b35e748
|
4
|
+
data.tar.gz: 064bb9018df793934031b2be4528295bd9121af82208ada552b7e6253591a2b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f41bb5a81941ec3d2ea9bb583da75585fc485d61c9aa03ddca4d742a5f689157871e445792eaa66e39f0d0a8938589e078b494eae2665491ff0f4e1e8609cf37
|
7
|
+
data.tar.gz: 6306d8557db6ab3170396a312f9f2d3c09551fe08a4c06bb7fe5fe0224ae8532004bd16cc404a496c1d28b2d3e97ee7ec1cc4a018eeb682b7e3baa30c36285bb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.45.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.44.0 (2024-03-07)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* 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.
|
13
|
+
|
4
14
|
1.43.0 (2024-01-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.45.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::AppConfig
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::AppConfig
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -337,50 +346,65 @@ module Aws::AppConfig
|
|
337
346
|
# @option options [Aws::AppConfig::EndpointProvider] :endpoint_provider
|
338
347
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::AppConfig::EndpointParameters`
|
339
348
|
#
|
340
|
-
# @option options [
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
# @option options [Float] :
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
349
|
+
# @option options [Float] :http_continue_timeout (1)
|
350
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
351
|
+
# request body. This option has no effect unless the request has "Expect"
|
352
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
353
|
+
# behaviour. This value can safely be set per request on the session.
|
354
|
+
#
|
355
|
+
# @option options [Float] :http_idle_timeout (5)
|
356
|
+
# The number of seconds a connection is allowed to sit idle before it
|
357
|
+
# is considered stale. Stale connections are closed and removed from the
|
358
|
+
# pool before making a request.
|
359
|
+
#
|
360
|
+
# @option options [Float] :http_open_timeout (15)
|
361
|
+
# The default number of seconds to wait for response data.
|
362
|
+
# This value can safely be set per-request on the session.
|
363
|
+
#
|
364
|
+
# @option options [URI::HTTP,String] :http_proxy
|
365
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
366
|
+
#
|
367
|
+
# @option options [Float] :http_read_timeout (60)
|
368
|
+
# The default number of seconds to wait for response data.
|
369
|
+
# This value can safely be set per-request on the session.
|
370
|
+
#
|
371
|
+
# @option options [Boolean] :http_wire_trace (false)
|
372
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
373
|
+
#
|
374
|
+
# @option options [Proc] :on_chunk_received
|
375
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
376
|
+
# of the response body is received. It provides three arguments: the chunk,
|
377
|
+
# the number of bytes received, and the total number of
|
378
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
379
|
+
#
|
380
|
+
# @option options [Proc] :on_chunk_sent
|
381
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
382
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
383
|
+
# the number of bytes read from the body, and the total number of
|
384
|
+
# bytes in the body.
|
385
|
+
#
|
386
|
+
# @option options [Boolean] :raise_response_errors (true)
|
387
|
+
# When `true`, response errors are raised.
|
388
|
+
#
|
389
|
+
# @option options [String] :ssl_ca_bundle
|
390
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
391
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
392
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
393
|
+
#
|
394
|
+
# @option options [String] :ssl_ca_directory
|
395
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
396
|
+
# authority files for verifying peer certificates. If you do
|
397
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
398
|
+
# default will be used if available.
|
368
399
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# connection.
|
400
|
+
# @option options [String] :ssl_ca_store
|
401
|
+
# Sets the X509::Store to verify peer certificate.
|
372
402
|
#
|
373
|
-
# @option options [
|
374
|
-
#
|
375
|
-
# verifying peer certificates. If you do not pass
|
376
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
377
|
-
# will be used if available.
|
403
|
+
# @option options [Float] :ssl_timeout
|
404
|
+
# Sets the SSL timeout in seconds
|
378
405
|
#
|
379
|
-
# @option options [
|
380
|
-
#
|
381
|
-
# authority files for verifying peer certificates. If you do
|
382
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
383
|
-
# system default will be used if available.
|
406
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
407
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
384
408
|
#
|
385
409
|
def initialize(*args)
|
386
410
|
super
|
@@ -892,8 +916,8 @@ module Aws::AppConfig
|
|
892
916
|
# * For a custom Amazon SQS notification extension, enter the ARN of an
|
893
917
|
# Amazon SQS message queue in the `Uri` field.
|
894
918
|
#
|
895
|
-
# For more information about extensions, see [
|
896
|
-
#
|
919
|
+
# For more information about extensions, see [Extending workflows][1] in
|
920
|
+
# the *AppConfig User Guide*.
|
897
921
|
#
|
898
922
|
#
|
899
923
|
#
|
@@ -955,6 +979,7 @@ module Aws::AppConfig
|
|
955
979
|
# "ExtensionOrParameterName" => {
|
956
980
|
# description: "Description",
|
957
981
|
# required: false,
|
982
|
+
# dynamic: false,
|
958
983
|
# },
|
959
984
|
# },
|
960
985
|
# tags: {
|
@@ -979,6 +1004,7 @@ module Aws::AppConfig
|
|
979
1004
|
# resp.parameters #=> Hash
|
980
1005
|
# resp.parameters["ExtensionOrParameterName"].description #=> String
|
981
1006
|
# resp.parameters["ExtensionOrParameterName"].required #=> Boolean
|
1007
|
+
# resp.parameters["ExtensionOrParameterName"].dynamic #=> Boolean
|
982
1008
|
#
|
983
1009
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/CreateExtension AWS API Documentation
|
984
1010
|
#
|
@@ -999,8 +1025,8 @@ module Aws::AppConfig
|
|
999
1025
|
# AppConfig resource is called an *extension association*. An extension
|
1000
1026
|
# association is a specified relationship between an extension and an
|
1001
1027
|
# AppConfig resource, such as an application or a configuration profile.
|
1002
|
-
# For more information about extensions and associations, see [
|
1003
|
-
#
|
1028
|
+
# For more information about extensions and associations, see [Extending
|
1029
|
+
# workflows][1] in the *AppConfig User Guide*.
|
1004
1030
|
#
|
1005
1031
|
#
|
1006
1032
|
#
|
@@ -1988,6 +2014,7 @@ module Aws::AppConfig
|
|
1988
2014
|
# resp.parameters #=> Hash
|
1989
2015
|
# resp.parameters["ExtensionOrParameterName"].description #=> String
|
1990
2016
|
# resp.parameters["ExtensionOrParameterName"].required #=> Boolean
|
2017
|
+
# resp.parameters["ExtensionOrParameterName"].dynamic #=> Boolean
|
1991
2018
|
#
|
1992
2019
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/GetExtension AWS API Documentation
|
1993
2020
|
#
|
@@ -1999,8 +2026,8 @@ module Aws::AppConfig
|
|
1999
2026
|
end
|
2000
2027
|
|
2001
2028
|
# Returns information about an AppConfig extension association. For more
|
2002
|
-
# information about extensions and associations, see [
|
2003
|
-
#
|
2029
|
+
# information about extensions and associations, see [Extending
|
2030
|
+
# workflows][1] in the *AppConfig User Guide*.
|
2004
2031
|
#
|
2005
2032
|
#
|
2006
2033
|
#
|
@@ -2496,8 +2523,8 @@ module Aws::AppConfig
|
|
2496
2523
|
end
|
2497
2524
|
|
2498
2525
|
# Lists all AppConfig extension associations in the account. For more
|
2499
|
-
# information about extensions and associations, see [
|
2500
|
-
#
|
2526
|
+
# information about extensions and associations, see [Extending
|
2527
|
+
# workflows][1] in the *AppConfig User Guide*.
|
2501
2528
|
#
|
2502
2529
|
#
|
2503
2530
|
#
|
@@ -2556,8 +2583,8 @@ module Aws::AppConfig
|
|
2556
2583
|
end
|
2557
2584
|
|
2558
2585
|
# Lists all custom and Amazon Web Services authored AppConfig extensions
|
2559
|
-
# in the account. For more information about extensions, see [
|
2560
|
-
#
|
2586
|
+
# in the account. For more information about extensions, see [Extending
|
2587
|
+
# workflows][1] in the *AppConfig User Guide*.
|
2561
2588
|
#
|
2562
2589
|
#
|
2563
2590
|
#
|
@@ -2773,6 +2800,10 @@ module Aws::AppConfig
|
|
2773
2800
|
# this ID to encrypt the configuration data using a customer managed
|
2774
2801
|
# key.
|
2775
2802
|
#
|
2803
|
+
# @option params [Hash<String,String>] :dynamic_extension_parameters
|
2804
|
+
# A map of dynamic extension parameter names to values to pass to
|
2805
|
+
# associated extensions with `PRE_START_DEPLOYMENT` actions.
|
2806
|
+
#
|
2776
2807
|
# @return [Types::Deployment] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2777
2808
|
#
|
2778
2809
|
# * {Types::Deployment#application_id #application_id} => String
|
@@ -2855,6 +2886,9 @@ module Aws::AppConfig
|
|
2855
2886
|
# "TagKey" => "TagValue",
|
2856
2887
|
# },
|
2857
2888
|
# kms_key_identifier: "KmsKeyIdentifier",
|
2889
|
+
# dynamic_extension_parameters: {
|
2890
|
+
# "DynamicParameterKey" => "StringWithLengthBetween1And2048",
|
2891
|
+
# },
|
2858
2892
|
# })
|
2859
2893
|
#
|
2860
2894
|
# @example Response structure
|
@@ -3466,8 +3500,7 @@ module Aws::AppConfig
|
|
3466
3500
|
end
|
3467
3501
|
|
3468
3502
|
# Updates an AppConfig extension. For more information about extensions,
|
3469
|
-
# see [
|
3470
|
-
# Guide*.
|
3503
|
+
# see [Extending workflows][1] in the *AppConfig User Guide*.
|
3471
3504
|
#
|
3472
3505
|
#
|
3473
3506
|
#
|
@@ -3517,6 +3550,7 @@ module Aws::AppConfig
|
|
3517
3550
|
# "ExtensionOrParameterName" => {
|
3518
3551
|
# description: "Description",
|
3519
3552
|
# required: false,
|
3553
|
+
# dynamic: false,
|
3520
3554
|
# },
|
3521
3555
|
# },
|
3522
3556
|
# version_number: 1,
|
@@ -3538,6 +3572,7 @@ module Aws::AppConfig
|
|
3538
3572
|
# resp.parameters #=> Hash
|
3539
3573
|
# resp.parameters["ExtensionOrParameterName"].description #=> String
|
3540
3574
|
# resp.parameters["ExtensionOrParameterName"].required #=> Boolean
|
3575
|
+
# resp.parameters["ExtensionOrParameterName"].dynamic #=> Boolean
|
3541
3576
|
#
|
3542
3577
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/UpdateExtension AWS API Documentation
|
3543
3578
|
#
|
@@ -3549,8 +3584,8 @@ module Aws::AppConfig
|
|
3549
3584
|
end
|
3550
3585
|
|
3551
3586
|
# Updates an association. For more information about extensions and
|
3552
|
-
# associations, see [
|
3553
|
-
#
|
3587
|
+
# associations, see [Extending workflows][1] in the *AppConfig User
|
3588
|
+
# Guide*.
|
3554
3589
|
#
|
3555
3590
|
#
|
3556
3591
|
#
|
@@ -3654,7 +3689,7 @@ module Aws::AppConfig
|
|
3654
3689
|
params: params,
|
3655
3690
|
config: config)
|
3656
3691
|
context[:gem_name] = 'aws-sdk-appconfig'
|
3657
|
-
context[:gem_version] = '1.
|
3692
|
+
context[:gem_version] = '1.45.0'
|
3658
3693
|
Seahorse::Client::Request.new(handlers, context)
|
3659
3694
|
end
|
3660
3695
|
|
@@ -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.45.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-04-25 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.193.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.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|