aws-sdk-appconfig 1.36.0 → 1.37.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 +31 -7
- data/lib/aws-sdk-appconfig/client_api.rb +6 -0
- data/lib/aws-sdk-appconfig/types.rb +47 -11
- data/lib/aws-sdk-appconfig.rb +1 -1
- 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: abfbf78cef7c6f9acbd6ab82e7688f2501477d4a7cb2ccdadc4bc18c38d5711e
|
4
|
+
data.tar.gz: f9351d738a09a44f6981eee0bd143bc994f8ce9ae0316d2468a97a9e287c60b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 887f784713ccdb59802a060a3984e10d3a28b26111afb502ff3e4c52d7c5047090ddaea8f556098afd37b3a85e0621941e00d9183fb529ac996e88c6b769a9b6
|
7
|
+
data.tar.gz: dcc733b7625d53cc8c8d3a1ebd68056411475ca84adec58aa16afebd706c2011c7fbbc42838f0f585eb777070508bb899d96d0dd021c10507d4077eed8766c6c
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.37.0
|
@@ -509,8 +509,11 @@ module Aws::AppConfig
|
|
509
509
|
# parameter, specify either the parameter name in the format
|
510
510
|
# `ssm-parameter://<parameter name>` or the ARN.
|
511
511
|
#
|
512
|
+
# * For an Amazon Web Services CodePipeline pipeline, specify the URI in
|
513
|
+
# the following format: `codepipeline`://<pipeline name>.
|
514
|
+
#
|
512
515
|
# * For an Secrets Manager secret, specify the URI in the following
|
513
|
-
# format: `
|
516
|
+
# format: `secretsmanager`://<secret name>.
|
514
517
|
#
|
515
518
|
# * For an Amazon S3 object, specify the URI in the following format:
|
516
519
|
# `s3://<bucket>/<objectKey> `. Here is an example:
|
@@ -859,10 +862,23 @@ module Aws::AppConfig
|
|
859
862
|
# workflow of creating or deploying a configuration.
|
860
863
|
#
|
861
864
|
# You can create your own extensions or use the Amazon Web Services
|
862
|
-
# authored extensions provided by AppConfig. For
|
863
|
-
#
|
864
|
-
#
|
865
|
-
#
|
865
|
+
# authored extensions provided by AppConfig. For an AppConfig extension
|
866
|
+
# that uses Lambda, you must create a Lambda function to perform any
|
867
|
+
# computation and processing defined in the extension. If you plan to
|
868
|
+
# create custom versions of the Amazon Web Services authored
|
869
|
+
# notification extensions, you only need to specify an Amazon Resource
|
870
|
+
# Name (ARN) in the `Uri` field for the new extension version.
|
871
|
+
#
|
872
|
+
# * For a custom EventBridge notification extension, enter the ARN of
|
873
|
+
# the EventBridge default events in the `Uri` field.
|
874
|
+
#
|
875
|
+
# * For a custom Amazon SNS notification extension, enter the ARN of an
|
876
|
+
# Amazon SNS topic in the `Uri` field.
|
877
|
+
#
|
878
|
+
# * For a custom Amazon SQS notification extension, enter the ARN of an
|
879
|
+
# Amazon SQS message queue in the `Uri` field.
|
880
|
+
#
|
881
|
+
# For more information about extensions, see [Working with AppConfig
|
866
882
|
# extensions][1] in the *AppConfig User Guide*.
|
867
883
|
#
|
868
884
|
#
|
@@ -1638,6 +1654,7 @@ module Aws::AppConfig
|
|
1638
1654
|
# * {Types::Deployment#applied_extensions #applied_extensions} => Array<Types::AppliedExtension>
|
1639
1655
|
# * {Types::Deployment#kms_key_arn #kms_key_arn} => String
|
1640
1656
|
# * {Types::Deployment#kms_key_identifier #kms_key_identifier} => String
|
1657
|
+
# * {Types::Deployment#version_label #version_label} => String
|
1641
1658
|
#
|
1642
1659
|
#
|
1643
1660
|
# @example Example: To retrieve deployment details
|
@@ -1763,6 +1780,7 @@ module Aws::AppConfig
|
|
1763
1780
|
# resp.applied_extensions[0].parameters["Name"] #=> String
|
1764
1781
|
# resp.kms_key_arn #=> String
|
1765
1782
|
# resp.kms_key_identifier #=> String
|
1783
|
+
# resp.version_label #=> String
|
1766
1784
|
#
|
1767
1785
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/GetDeployment AWS API Documentation
|
1768
1786
|
#
|
@@ -2370,6 +2388,7 @@ module Aws::AppConfig
|
|
2370
2388
|
# resp.items[0].percentage_complete #=> Float
|
2371
2389
|
# resp.items[0].started_at #=> Time
|
2372
2390
|
# resp.items[0].completed_at #=> Time
|
2391
|
+
# resp.items[0].version_label #=> String
|
2373
2392
|
# resp.next_token #=> String
|
2374
2393
|
#
|
2375
2394
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/ListDeployments AWS API Documentation
|
@@ -2715,7 +2734,8 @@ module Aws::AppConfig
|
|
2715
2734
|
# @option params [required, String] :configuration_version
|
2716
2735
|
# The configuration version to deploy. If deploying an AppConfig hosted
|
2717
2736
|
# configuration version, you can specify either the version number or
|
2718
|
-
# version label.
|
2737
|
+
# version label. For all other configurations, you must specify the
|
2738
|
+
# version number.
|
2719
2739
|
#
|
2720
2740
|
# @option params [String] :description
|
2721
2741
|
# A description of the deployment.
|
@@ -2753,6 +2773,7 @@ module Aws::AppConfig
|
|
2753
2773
|
# * {Types::Deployment#applied_extensions #applied_extensions} => Array<Types::AppliedExtension>
|
2754
2774
|
# * {Types::Deployment#kms_key_arn #kms_key_arn} => String
|
2755
2775
|
# * {Types::Deployment#kms_key_identifier #kms_key_identifier} => String
|
2776
|
+
# * {Types::Deployment#version_label #version_label} => String
|
2756
2777
|
#
|
2757
2778
|
#
|
2758
2779
|
# @example Example: To start a configuration deployment
|
@@ -2853,6 +2874,7 @@ module Aws::AppConfig
|
|
2853
2874
|
# resp.applied_extensions[0].parameters["Name"] #=> String
|
2854
2875
|
# resp.kms_key_arn #=> String
|
2855
2876
|
# resp.kms_key_identifier #=> String
|
2877
|
+
# resp.version_label #=> String
|
2856
2878
|
#
|
2857
2879
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/StartDeployment AWS API Documentation
|
2858
2880
|
#
|
@@ -2899,6 +2921,7 @@ module Aws::AppConfig
|
|
2899
2921
|
# * {Types::Deployment#applied_extensions #applied_extensions} => Array<Types::AppliedExtension>
|
2900
2922
|
# * {Types::Deployment#kms_key_arn #kms_key_arn} => String
|
2901
2923
|
# * {Types::Deployment#kms_key_identifier #kms_key_identifier} => String
|
2924
|
+
# * {Types::Deployment#version_label #version_label} => String
|
2902
2925
|
#
|
2903
2926
|
#
|
2904
2927
|
# @example Example: To stop configuration deployment
|
@@ -2968,6 +2991,7 @@ module Aws::AppConfig
|
|
2968
2991
|
# resp.applied_extensions[0].parameters["Name"] #=> String
|
2969
2992
|
# resp.kms_key_arn #=> String
|
2970
2993
|
# resp.kms_key_identifier #=> String
|
2994
|
+
# resp.version_label #=> String
|
2971
2995
|
#
|
2972
2996
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/StopDeployment AWS API Documentation
|
2973
2997
|
#
|
@@ -3593,7 +3617,7 @@ module Aws::AppConfig
|
|
3593
3617
|
params: params,
|
3594
3618
|
config: config)
|
3595
3619
|
context[:gem_name] = 'aws-sdk-appconfig'
|
3596
|
-
context[:gem_version] = '1.
|
3620
|
+
context[:gem_version] = '1.37.0'
|
3597
3621
|
Seahorse::Client::Request.new(handlers, context)
|
3598
3622
|
end
|
3599
3623
|
|
@@ -347,6 +347,7 @@ module Aws::AppConfig
|
|
347
347
|
Deployment.add_member(:applied_extensions, Shapes::ShapeRef.new(shape: AppliedExtensions, location_name: "AppliedExtensions"))
|
348
348
|
Deployment.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "KmsKeyArn"))
|
349
349
|
Deployment.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: Identifier, location_name: "KmsKeyIdentifier"))
|
350
|
+
Deployment.add_member(:version_label, Shapes::ShapeRef.new(shape: VersionLabel, location_name: "VersionLabel"))
|
350
351
|
Deployment.struct_class = Types::Deployment
|
351
352
|
|
352
353
|
DeploymentEvent.add_member(:event_type, Shapes::ShapeRef.new(shape: DeploymentEventType, location_name: "EventType"))
|
@@ -387,6 +388,7 @@ module Aws::AppConfig
|
|
387
388
|
DeploymentSummary.add_member(:percentage_complete, Shapes::ShapeRef.new(shape: Percentage, location_name: "PercentageComplete"))
|
388
389
|
DeploymentSummary.add_member(:started_at, Shapes::ShapeRef.new(shape: Iso8601DateTime, location_name: "StartedAt"))
|
389
390
|
DeploymentSummary.add_member(:completed_at, Shapes::ShapeRef.new(shape: Iso8601DateTime, location_name: "CompletedAt"))
|
391
|
+
DeploymentSummary.add_member(:version_label, Shapes::ShapeRef.new(shape: VersionLabel, location_name: "VersionLabel"))
|
390
392
|
DeploymentSummary.struct_class = Types::DeploymentSummary
|
391
393
|
|
392
394
|
Deployments.add_member(:items, Shapes::ShapeRef.new(shape: DeploymentList, location_name: "Items"))
|
@@ -708,6 +710,7 @@ module Aws::AppConfig
|
|
708
710
|
o.input = Shapes::ShapeRef.new(shape: CreateApplicationRequest)
|
709
711
|
o.output = Shapes::ShapeRef.new(shape: Application)
|
710
712
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
713
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
711
714
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
712
715
|
end)
|
713
716
|
|
@@ -720,6 +723,7 @@ module Aws::AppConfig
|
|
720
723
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
721
724
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
722
725
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
726
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
723
727
|
end)
|
724
728
|
|
725
729
|
api.add_operation(:create_deployment_strategy, Seahorse::Model::Operation.new.tap do |o|
|
@@ -729,6 +733,7 @@ module Aws::AppConfig
|
|
729
733
|
o.input = Shapes::ShapeRef.new(shape: CreateDeploymentStrategyRequest)
|
730
734
|
o.output = Shapes::ShapeRef.new(shape: DeploymentStrategy)
|
731
735
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
736
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
732
737
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
733
738
|
end)
|
734
739
|
|
@@ -741,6 +746,7 @@ module Aws::AppConfig
|
|
741
746
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
742
747
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
743
748
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
749
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
744
750
|
end)
|
745
751
|
|
746
752
|
api.add_operation(:create_extension, Seahorse::Model::Operation.new.tap do |o|
|
@@ -445,8 +445,11 @@ module Aws::AppConfig
|
|
445
445
|
# parameter, specify either the parameter name in the format
|
446
446
|
# `ssm-parameter://<parameter name>` or the ARN.
|
447
447
|
#
|
448
|
+
# * For an Amazon Web Services CodePipeline pipeline, specify the URI
|
449
|
+
# in the following format: `codepipeline`://<pipeline name>.
|
450
|
+
#
|
448
451
|
# * For an Secrets Manager secret, specify the URI in the following
|
449
|
-
# format: `
|
452
|
+
# format: `secretsmanager`://<secret name>.
|
450
453
|
#
|
451
454
|
# * For an Amazon S3 object, specify the URI in the following format:
|
452
455
|
# `s3://<bucket>/<objectKey> `. Here is an example:
|
@@ -973,6 +976,10 @@ module Aws::AppConfig
|
|
973
976
|
# managed key.
|
974
977
|
# @return [String]
|
975
978
|
#
|
979
|
+
# @!attribute [rw] version_label
|
980
|
+
# A user-defined label for an AppConfig hosted configuration version.
|
981
|
+
# @return [String]
|
982
|
+
#
|
976
983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/Deployment AWS API Documentation
|
977
984
|
#
|
978
985
|
class Deployment < Struct.new(
|
@@ -996,7 +1003,8 @@ module Aws::AppConfig
|
|
996
1003
|
:completed_at,
|
997
1004
|
:applied_extensions,
|
998
1005
|
:kms_key_arn,
|
999
|
-
:kms_key_identifier
|
1006
|
+
:kms_key_identifier,
|
1007
|
+
:version_label)
|
1000
1008
|
SENSITIVE = []
|
1001
1009
|
include Aws::Structure
|
1002
1010
|
end
|
@@ -1018,10 +1026,15 @@ module Aws::AppConfig
|
|
1018
1026
|
#
|
1019
1027
|
# @!attribute [rw] description
|
1020
1028
|
# A description of the deployment event. Descriptions include, but are
|
1021
|
-
# not limited to, the
|
1022
|
-
#
|
1023
|
-
#
|
1024
|
-
#
|
1029
|
+
# not limited to, the following:
|
1030
|
+
#
|
1031
|
+
# * The Amazon Web Services account or the Amazon CloudWatch alarm ARN
|
1032
|
+
# that initiated a rollback.
|
1033
|
+
#
|
1034
|
+
# * The percentage of hosts that received the deployment.
|
1035
|
+
#
|
1036
|
+
# * A recommendation to attempt a new deployment (in the case of an
|
1037
|
+
# internal error).
|
1025
1038
|
# @return [String]
|
1026
1039
|
#
|
1027
1040
|
# @!attribute [rw] action_invocations
|
@@ -1161,6 +1174,10 @@ module Aws::AppConfig
|
|
1161
1174
|
# Time the deployment completed.
|
1162
1175
|
# @return [Time]
|
1163
1176
|
#
|
1177
|
+
# @!attribute [rw] version_label
|
1178
|
+
# A user-defined label for an AppConfig hosted configuration version.
|
1179
|
+
# @return [String]
|
1180
|
+
#
|
1164
1181
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/DeploymentSummary AWS API Documentation
|
1165
1182
|
#
|
1166
1183
|
class DeploymentSummary < Struct.new(
|
@@ -1174,7 +1191,8 @@ module Aws::AppConfig
|
|
1174
1191
|
:state,
|
1175
1192
|
:percentage_complete,
|
1176
1193
|
:started_at,
|
1177
|
-
:completed_at
|
1194
|
+
:completed_at,
|
1195
|
+
:version_label)
|
1178
1196
|
SENSITIVE = []
|
1179
1197
|
include Aws::Structure
|
1180
1198
|
end
|
@@ -2152,9 +2170,26 @@ module Aws::AppConfig
|
|
2152
2170
|
include Aws::Structure
|
2153
2171
|
end
|
2154
2172
|
|
2155
|
-
# The number of
|
2156
|
-
#
|
2157
|
-
#
|
2173
|
+
# The number of one more AppConfig resources exceeds the maximum
|
2174
|
+
# allowed. Verify that your environment doesn't exceed the following
|
2175
|
+
# service quotas:
|
2176
|
+
#
|
2177
|
+
# Applications: 100 max
|
2178
|
+
#
|
2179
|
+
# Deployment strategies: 20 max
|
2180
|
+
#
|
2181
|
+
# Configuration profiles: 100 max per application
|
2182
|
+
#
|
2183
|
+
# Environments: 20 max per application
|
2184
|
+
#
|
2185
|
+
# To resolve this issue, you can delete one or more resources and try
|
2186
|
+
# again. Or, you can request a quota increase. For more information
|
2187
|
+
# about quotas and to request an increase, see [Service quotas for
|
2188
|
+
# AppConfig][1] in the Amazon Web Services General Reference.
|
2189
|
+
#
|
2190
|
+
#
|
2191
|
+
#
|
2192
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/appconfig.html#limits_appconfig
|
2158
2193
|
#
|
2159
2194
|
# @!attribute [rw] message
|
2160
2195
|
# @return [String]
|
@@ -2186,7 +2221,8 @@ module Aws::AppConfig
|
|
2186
2221
|
# @!attribute [rw] configuration_version
|
2187
2222
|
# The configuration version to deploy. If deploying an AppConfig
|
2188
2223
|
# hosted configuration version, you can specify either the version
|
2189
|
-
# number or version label.
|
2224
|
+
# number or version label. For all other configurations, you must
|
2225
|
+
# specify the version number.
|
2190
2226
|
# @return [String]
|
2191
2227
|
#
|
2192
2228
|
# @!attribute [rw] description
|
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.37.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-09-
|
11
|
+
date: 2023-09-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|