aws-sdk-appconfig 1.30.0 → 1.31.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 +12 -7
- data/lib/aws-sdk-appconfig/types.rb +8 -8
- data/lib/aws-sdk-appconfig.rb +1 -1
- 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: 8850f68322dc0a26dce3ba290c6b681f32aede6cc830dd4219108808ba7f71a7
|
|
4
|
+
data.tar.gz: cc2c72a4f1593c25b60bfd5dca35a27eed78323bb53e6816d3856ec484185fc2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 324d664582b8f460a66b97e29196b85aca55c07d9b00ab5de75ff7fd7b54845d68293d811ea2beb4b482a5f7ad871827871414b59e1b5a421af742989096fea8
|
|
7
|
+
data.tar.gz: 0160ad9fd46a91f47ef46dd061e50aa11f08eb45c25033601dc55f3c436bf01c34c01dabdb9cb8e5a42cf30b065e43290aaef4c845cbcc871599aa125b8849ce
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.31.0
|
|
@@ -275,6 +275,11 @@ module Aws::AppConfig
|
|
|
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
|
|
@@ -490,7 +495,7 @@ module Aws::AppConfig
|
|
|
490
495
|
# `ssm-parameter://<parameter name>` or the ARN.
|
|
491
496
|
#
|
|
492
497
|
# * For an Secrets Manager secret, specify the URI in the following
|
|
493
|
-
# format: `secrets-manager
|
|
498
|
+
# format: `secrets-manager`://<secret name>.
|
|
494
499
|
#
|
|
495
500
|
# * For an Amazon S3 object, specify the URI in the following format:
|
|
496
501
|
# `s3://<bucket>/<objectKey> `. Here is an example:
|
|
@@ -521,7 +526,7 @@ module Aws::AppConfig
|
|
|
521
526
|
# you create feature flag configurations to enable or disable new
|
|
522
527
|
# features and freeform configurations to distribute configurations to
|
|
523
528
|
# an application. When calling this API, enter one of the following
|
|
524
|
-
# values for `Type
|
|
529
|
+
# values for `Type`:
|
|
525
530
|
#
|
|
526
531
|
# `AWS.AppConfig.FeatureFlags`
|
|
527
532
|
#
|
|
@@ -639,7 +644,7 @@ module Aws::AppConfig
|
|
|
639
644
|
# The algorithm used to define how percentage grows over time. AppConfig
|
|
640
645
|
# supports the following growth types:
|
|
641
646
|
#
|
|
642
|
-
# **Linear
|
|
647
|
+
# **Linear**: For this type, AppConfig processes the deployment by
|
|
643
648
|
# dividing the total number of targets by the value specified for `Step
|
|
644
649
|
# percentage`. For example, a linear deployment that uses a `Step
|
|
645
650
|
# percentage` of 10 deploys the configuration to 10 percent of the
|
|
@@ -647,7 +652,7 @@ module Aws::AppConfig
|
|
|
647
652
|
# configuration to the next 10 percent. This continues until 100% of the
|
|
648
653
|
# targets have successfully received the configuration.
|
|
649
654
|
#
|
|
650
|
-
# **Exponential
|
|
655
|
+
# **Exponential**: For this type, AppConfig processes the deployment
|
|
651
656
|
# exponentially using the following formula: `G*(2^N)`. In this formula,
|
|
652
657
|
# `G` is the growth factor specified by the user and `N` is the number
|
|
653
658
|
# of steps until the configuration is deployed to all targets. For
|
|
@@ -3214,7 +3219,7 @@ module Aws::AppConfig
|
|
|
3214
3219
|
# The algorithm used to define how percentage grows over time. AppConfig
|
|
3215
3220
|
# supports the following growth types:
|
|
3216
3221
|
#
|
|
3217
|
-
# **Linear
|
|
3222
|
+
# **Linear**: For this type, AppConfig processes the deployment by
|
|
3218
3223
|
# increments of the growth factor evenly distributed over the deployment
|
|
3219
3224
|
# time. For example, a linear deployment that uses a growth factor of 20
|
|
3220
3225
|
# initially makes the configuration available to 20 percent of the
|
|
@@ -3222,7 +3227,7 @@ module Aws::AppConfig
|
|
|
3222
3227
|
# updates the percentage to 40 percent. This continues until 100% of the
|
|
3223
3228
|
# targets are set to receive the deployed configuration.
|
|
3224
3229
|
#
|
|
3225
|
-
# **Exponential
|
|
3230
|
+
# **Exponential**: For this type, AppConfig processes the deployment
|
|
3226
3231
|
# exponentially using the following formula: `G*(2^N)`. In this formula,
|
|
3227
3232
|
# `G` is the growth factor specified by the user and `N` is the number
|
|
3228
3233
|
# of steps until the configuration is deployed to all targets. For
|
|
@@ -3573,7 +3578,7 @@ module Aws::AppConfig
|
|
|
3573
3578
|
params: params,
|
|
3574
3579
|
config: config)
|
|
3575
3580
|
context[:gem_name] = 'aws-sdk-appconfig'
|
|
3576
|
-
context[:gem_version] = '1.
|
|
3581
|
+
context[:gem_version] = '1.31.0'
|
|
3577
3582
|
Seahorse::Client::Request.new(handlers, context)
|
|
3578
3583
|
end
|
|
3579
3584
|
|
|
@@ -297,7 +297,7 @@ module Aws::AppConfig
|
|
|
297
297
|
# you create feature flag configurations to enable or disable new
|
|
298
298
|
# features and freeform configurations to distribute configurations to
|
|
299
299
|
# an application. When calling this API, enter one of the following
|
|
300
|
-
# values for `Type
|
|
300
|
+
# values for `Type`:
|
|
301
301
|
#
|
|
302
302
|
# `AWS.AppConfig.FeatureFlags`
|
|
303
303
|
#
|
|
@@ -347,7 +347,7 @@ module Aws::AppConfig
|
|
|
347
347
|
# you create feature flag configurations to enable or disable new
|
|
348
348
|
# features and freeform configurations to distribute configurations to
|
|
349
349
|
# an application. When calling this API, enter one of the following
|
|
350
|
-
# values for `Type
|
|
350
|
+
# values for `Type`:
|
|
351
351
|
#
|
|
352
352
|
# `AWS.AppConfig.FeatureFlags`
|
|
353
353
|
#
|
|
@@ -446,7 +446,7 @@ module Aws::AppConfig
|
|
|
446
446
|
# `ssm-parameter://<parameter name>` or the ARN.
|
|
447
447
|
#
|
|
448
448
|
# * For an Secrets Manager secret, specify the URI in the following
|
|
449
|
-
# format: `secrets-manager
|
|
449
|
+
# format: `secrets-manager`://<secret name>.
|
|
450
450
|
#
|
|
451
451
|
# * For an Amazon S3 object, specify the URI in the following format:
|
|
452
452
|
# `s3://<bucket>/<objectKey> `. Here is an example:
|
|
@@ -482,7 +482,7 @@ module Aws::AppConfig
|
|
|
482
482
|
# you create feature flag configurations to enable or disable new
|
|
483
483
|
# features and freeform configurations to distribute configurations to
|
|
484
484
|
# an application. When calling this API, enter one of the following
|
|
485
|
-
# values for `Type
|
|
485
|
+
# values for `Type`:
|
|
486
486
|
#
|
|
487
487
|
# `AWS.AppConfig.FeatureFlags`
|
|
488
488
|
#
|
|
@@ -540,7 +540,7 @@ module Aws::AppConfig
|
|
|
540
540
|
# The algorithm used to define how percentage grows over time.
|
|
541
541
|
# AppConfig supports the following growth types:
|
|
542
542
|
#
|
|
543
|
-
# **Linear
|
|
543
|
+
# **Linear**: For this type, AppConfig processes the deployment by
|
|
544
544
|
# dividing the total number of targets by the value specified for
|
|
545
545
|
# `Step percentage`. For example, a linear deployment that uses a
|
|
546
546
|
# `Step percentage` of 10 deploys the configuration to 10 percent of
|
|
@@ -548,7 +548,7 @@ module Aws::AppConfig
|
|
|
548
548
|
# the configuration to the next 10 percent. This continues until 100%
|
|
549
549
|
# of the targets have successfully received the configuration.
|
|
550
550
|
#
|
|
551
|
-
# **Exponential
|
|
551
|
+
# **Exponential**: For this type, AppConfig processes the deployment
|
|
552
552
|
# exponentially using the following formula: `G*(2^N)`. In this
|
|
553
553
|
# formula, `G` is the growth factor specified by the user and `N` is
|
|
554
554
|
# the number of steps until the configuration is deployed to all
|
|
@@ -2365,7 +2365,7 @@ module Aws::AppConfig
|
|
|
2365
2365
|
# The algorithm used to define how percentage grows over time.
|
|
2366
2366
|
# AppConfig supports the following growth types:
|
|
2367
2367
|
#
|
|
2368
|
-
# **Linear
|
|
2368
|
+
# **Linear**: For this type, AppConfig processes the deployment by
|
|
2369
2369
|
# increments of the growth factor evenly distributed over the
|
|
2370
2370
|
# deployment time. For example, a linear deployment that uses a growth
|
|
2371
2371
|
# factor of 20 initially makes the configuration available to 20
|
|
@@ -2374,7 +2374,7 @@ module Aws::AppConfig
|
|
|
2374
2374
|
# continues until 100% of the targets are set to receive the deployed
|
|
2375
2375
|
# configuration.
|
|
2376
2376
|
#
|
|
2377
|
-
# **Exponential
|
|
2377
|
+
# **Exponential**: For this type, AppConfig processes the deployment
|
|
2378
2378
|
# exponentially using the following formula: `G*(2^N)`. In this
|
|
2379
2379
|
# formula, `G` is the growth factor specified by the user and `N` is
|
|
2380
2380
|
# the number of steps until the configuration is deployed to all
|
data/lib/aws-sdk-appconfig.rb
CHANGED
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.31.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-
|
|
11
|
+
date: 2023-05-31 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.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.
|
|
32
|
+
version: 3.174.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|