aws-sdk-appconfig 1.27.0 → 1.29.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 +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-appconfig/client.rb +93 -69
- data/lib/aws-sdk-appconfig/client_api.rb +3 -0
- data/lib/aws-sdk-appconfig/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-appconfig/endpoint_provider.rb +41 -104
- data/lib/aws-sdk-appconfig/types.rb +60 -527
- data/lib/aws-sdk-appconfig.rb +1 -1
- metadata +2 -2
@@ -10,7 +10,7 @@
|
|
10
10
|
module Aws::AppConfig
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# An action defines the tasks the extension performs during the
|
13
|
+
# An action defines the tasks that the extension performs during the
|
14
14
|
# AppConfig workflow. Each action includes an action point such as
|
15
15
|
# `ON_CREATE_HOSTED_CONFIGURATION`, `PRE_DEPLOYMENT`, or
|
16
16
|
# `ON_DEPLOYMENT`. Each action also includes a name, a URI to an Lambda
|
@@ -33,16 +33,6 @@ module Aws::AppConfig
|
|
33
33
|
#
|
34
34
|
# * `ON_DEPLOYMENT_ROLLED_BACK`
|
35
35
|
#
|
36
|
-
# @note When making an API call, you may pass Action
|
37
|
-
# data as a hash:
|
38
|
-
#
|
39
|
-
# {
|
40
|
-
# name: "Name",
|
41
|
-
# description: "Description",
|
42
|
-
# uri: "Uri",
|
43
|
-
# role_arn: "Arn",
|
44
|
-
# }
|
45
|
-
#
|
46
36
|
# @!attribute [rw] name
|
47
37
|
# The action name.
|
48
38
|
# @return [String]
|
@@ -409,17 +399,6 @@ module Aws::AppConfig
|
|
409
399
|
include Aws::Structure
|
410
400
|
end
|
411
401
|
|
412
|
-
# @note When making an API call, you may pass CreateApplicationRequest
|
413
|
-
# data as a hash:
|
414
|
-
#
|
415
|
-
# {
|
416
|
-
# name: "Name", # required
|
417
|
-
# description: "Description",
|
418
|
-
# tags: {
|
419
|
-
# "TagKey" => "TagValue",
|
420
|
-
# },
|
421
|
-
# }
|
422
|
-
#
|
423
402
|
# @!attribute [rw] name
|
424
403
|
# A name for the application.
|
425
404
|
# @return [String]
|
@@ -444,27 +423,6 @@ module Aws::AppConfig
|
|
444
423
|
include Aws::Structure
|
445
424
|
end
|
446
425
|
|
447
|
-
# @note When making an API call, you may pass CreateConfigurationProfileRequest
|
448
|
-
# data as a hash:
|
449
|
-
#
|
450
|
-
# {
|
451
|
-
# application_id: "Id", # required
|
452
|
-
# name: "LongName", # required
|
453
|
-
# description: "Description",
|
454
|
-
# location_uri: "Uri", # required
|
455
|
-
# retrieval_role_arn: "RoleArn",
|
456
|
-
# validators: [
|
457
|
-
# {
|
458
|
-
# type: "JSON_SCHEMA", # required, accepts JSON_SCHEMA, LAMBDA
|
459
|
-
# content: "StringWithLengthBetween0And32768", # required
|
460
|
-
# },
|
461
|
-
# ],
|
462
|
-
# tags: {
|
463
|
-
# "TagKey" => "TagValue",
|
464
|
-
# },
|
465
|
-
# type: "ConfigurationProfileType",
|
466
|
-
# }
|
467
|
-
#
|
468
426
|
# @!attribute [rw] application_id
|
469
427
|
# The application ID.
|
470
428
|
# @return [String]
|
@@ -478,17 +436,25 @@ module Aws::AppConfig
|
|
478
436
|
# @return [String]
|
479
437
|
#
|
480
438
|
# @!attribute [rw] location_uri
|
481
|
-
# A URI to locate the configuration. You can specify the
|
482
|
-
#
|
483
|
-
#
|
484
|
-
#
|
485
|
-
#
|
486
|
-
#
|
487
|
-
#
|
488
|
-
#
|
489
|
-
#
|
490
|
-
#
|
491
|
-
#
|
439
|
+
# A URI to locate the configuration. You can specify the following:
|
440
|
+
#
|
441
|
+
# * For the AppConfig hosted configuration store and for feature
|
442
|
+
# flags, specify `hosted`.
|
443
|
+
#
|
444
|
+
# * For an Amazon Web Services Systems Manager Parameter Store
|
445
|
+
# parameter, specify either the parameter name in the format
|
446
|
+
# `ssm-parameter://<parameter name>` or the ARN.
|
447
|
+
#
|
448
|
+
# * For an Secrets Manager secret, specify the URI in the following
|
449
|
+
# format: `secrets-manager`\://<secret name>.
|
450
|
+
#
|
451
|
+
# * For an Amazon S3 object, specify the URI in the following format:
|
452
|
+
# `s3://<bucket>/<objectKey> `. Here is an example:
|
453
|
+
# `s3://my-bucket/my-app/us-east-1/my-config.json`
|
454
|
+
#
|
455
|
+
# * For an SSM document, specify either the document name in the
|
456
|
+
# format `ssm-document://<document name>` or the Amazon Resource
|
457
|
+
# Name (ARN).
|
492
458
|
# @return [String]
|
493
459
|
#
|
494
460
|
# @!attribute [rw] retrieval_role_arn
|
@@ -538,22 +504,6 @@ module Aws::AppConfig
|
|
538
504
|
include Aws::Structure
|
539
505
|
end
|
540
506
|
|
541
|
-
# @note When making an API call, you may pass CreateDeploymentStrategyRequest
|
542
|
-
# data as a hash:
|
543
|
-
#
|
544
|
-
# {
|
545
|
-
# name: "Name", # required
|
546
|
-
# description: "Description",
|
547
|
-
# deployment_duration_in_minutes: 1, # required
|
548
|
-
# final_bake_time_in_minutes: 1,
|
549
|
-
# growth_factor: 1.0, # required
|
550
|
-
# growth_type: "LINEAR", # accepts LINEAR, EXPONENTIAL
|
551
|
-
# replicate_to: "NONE", # accepts NONE, SSM_DOCUMENT
|
552
|
-
# tags: {
|
553
|
-
# "TagKey" => "TagValue",
|
554
|
-
# },
|
555
|
-
# }
|
556
|
-
#
|
557
507
|
# @!attribute [rw] name
|
558
508
|
# A name for the deployment strategy.
|
559
509
|
# @return [String]
|
@@ -641,24 +591,6 @@ module Aws::AppConfig
|
|
641
591
|
include Aws::Structure
|
642
592
|
end
|
643
593
|
|
644
|
-
# @note When making an API call, you may pass CreateEnvironmentRequest
|
645
|
-
# data as a hash:
|
646
|
-
#
|
647
|
-
# {
|
648
|
-
# application_id: "Id", # required
|
649
|
-
# name: "Name", # required
|
650
|
-
# description: "Description",
|
651
|
-
# monitors: [
|
652
|
-
# {
|
653
|
-
# alarm_arn: "StringWithLengthBetween1And2048", # required
|
654
|
-
# alarm_role_arn: "RoleArn",
|
655
|
-
# },
|
656
|
-
# ],
|
657
|
-
# tags: {
|
658
|
-
# "TagKey" => "TagValue",
|
659
|
-
# },
|
660
|
-
# }
|
661
|
-
#
|
662
594
|
# @!attribute [rw] application_id
|
663
595
|
# The application ID.
|
664
596
|
# @return [String]
|
@@ -693,21 +625,6 @@ module Aws::AppConfig
|
|
693
625
|
include Aws::Structure
|
694
626
|
end
|
695
627
|
|
696
|
-
# @note When making an API call, you may pass CreateExtensionAssociationRequest
|
697
|
-
# data as a hash:
|
698
|
-
#
|
699
|
-
# {
|
700
|
-
# extension_identifier: "Identifier", # required
|
701
|
-
# extension_version_number: 1,
|
702
|
-
# resource_identifier: "Identifier", # required
|
703
|
-
# parameters: {
|
704
|
-
# "Name" => "StringWithLengthBetween1And2048",
|
705
|
-
# },
|
706
|
-
# tags: {
|
707
|
-
# "TagKey" => "TagValue",
|
708
|
-
# },
|
709
|
-
# }
|
710
|
-
#
|
711
628
|
# @!attribute [rw] extension_identifier
|
712
629
|
# The name, the ID, or the Amazon Resource Name (ARN) of the
|
713
630
|
# extension.
|
@@ -746,34 +663,6 @@ module Aws::AppConfig
|
|
746
663
|
include Aws::Structure
|
747
664
|
end
|
748
665
|
|
749
|
-
# @note When making an API call, you may pass CreateExtensionRequest
|
750
|
-
# data as a hash:
|
751
|
-
#
|
752
|
-
# {
|
753
|
-
# name: "Name", # required
|
754
|
-
# description: "Description",
|
755
|
-
# actions: { # required
|
756
|
-
# "PRE_CREATE_HOSTED_CONFIGURATION_VERSION" => [
|
757
|
-
# {
|
758
|
-
# name: "Name",
|
759
|
-
# description: "Description",
|
760
|
-
# uri: "Uri",
|
761
|
-
# role_arn: "Arn",
|
762
|
-
# },
|
763
|
-
# ],
|
764
|
-
# },
|
765
|
-
# parameters: {
|
766
|
-
# "Name" => {
|
767
|
-
# description: "Description",
|
768
|
-
# required: false,
|
769
|
-
# },
|
770
|
-
# },
|
771
|
-
# tags: {
|
772
|
-
# "TagKey" => "TagValue",
|
773
|
-
# },
|
774
|
-
# latest_version_number: 1,
|
775
|
-
# }
|
776
|
-
#
|
777
666
|
# @!attribute [rw] name
|
778
667
|
# A name for the extension. Each extension name in your account must
|
779
668
|
# be unique. Extension versions use the same name.
|
@@ -821,18 +710,6 @@ module Aws::AppConfig
|
|
821
710
|
include Aws::Structure
|
822
711
|
end
|
823
712
|
|
824
|
-
# @note When making an API call, you may pass CreateHostedConfigurationVersionRequest
|
825
|
-
# data as a hash:
|
826
|
-
#
|
827
|
-
# {
|
828
|
-
# application_id: "Id", # required
|
829
|
-
# configuration_profile_id: "Id", # required
|
830
|
-
# description: "Description",
|
831
|
-
# content: "data", # required
|
832
|
-
# content_type: "StringWithLengthBetween1And255", # required
|
833
|
-
# latest_version_number: 1,
|
834
|
-
# }
|
835
|
-
#
|
836
713
|
# @!attribute [rw] application_id
|
837
714
|
# The application ID.
|
838
715
|
# @return [String]
|
@@ -879,13 +756,6 @@ module Aws::AppConfig
|
|
879
756
|
include Aws::Structure
|
880
757
|
end
|
881
758
|
|
882
|
-
# @note When making an API call, you may pass DeleteApplicationRequest
|
883
|
-
# data as a hash:
|
884
|
-
#
|
885
|
-
# {
|
886
|
-
# application_id: "Id", # required
|
887
|
-
# }
|
888
|
-
#
|
889
759
|
# @!attribute [rw] application_id
|
890
760
|
# The ID of the application to delete.
|
891
761
|
# @return [String]
|
@@ -898,14 +768,6 @@ module Aws::AppConfig
|
|
898
768
|
include Aws::Structure
|
899
769
|
end
|
900
770
|
|
901
|
-
# @note When making an API call, you may pass DeleteConfigurationProfileRequest
|
902
|
-
# data as a hash:
|
903
|
-
#
|
904
|
-
# {
|
905
|
-
# application_id: "Id", # required
|
906
|
-
# configuration_profile_id: "Id", # required
|
907
|
-
# }
|
908
|
-
#
|
909
771
|
# @!attribute [rw] application_id
|
910
772
|
# The application ID that includes the configuration profile you want
|
911
773
|
# to delete.
|
@@ -924,13 +786,6 @@ module Aws::AppConfig
|
|
924
786
|
include Aws::Structure
|
925
787
|
end
|
926
788
|
|
927
|
-
# @note When making an API call, you may pass DeleteDeploymentStrategyRequest
|
928
|
-
# data as a hash:
|
929
|
-
#
|
930
|
-
# {
|
931
|
-
# deployment_strategy_id: "DeploymentStrategyId", # required
|
932
|
-
# }
|
933
|
-
#
|
934
789
|
# @!attribute [rw] deployment_strategy_id
|
935
790
|
# The ID of the deployment strategy you want to delete.
|
936
791
|
# @return [String]
|
@@ -943,14 +798,6 @@ module Aws::AppConfig
|
|
943
798
|
include Aws::Structure
|
944
799
|
end
|
945
800
|
|
946
|
-
# @note When making an API call, you may pass DeleteEnvironmentRequest
|
947
|
-
# data as a hash:
|
948
|
-
#
|
949
|
-
# {
|
950
|
-
# application_id: "Id", # required
|
951
|
-
# environment_id: "Id", # required
|
952
|
-
# }
|
953
|
-
#
|
954
801
|
# @!attribute [rw] application_id
|
955
802
|
# The application ID that includes the environment that you want to
|
956
803
|
# delete.
|
@@ -969,13 +816,6 @@ module Aws::AppConfig
|
|
969
816
|
include Aws::Structure
|
970
817
|
end
|
971
818
|
|
972
|
-
# @note When making an API call, you may pass DeleteExtensionAssociationRequest
|
973
|
-
# data as a hash:
|
974
|
-
#
|
975
|
-
# {
|
976
|
-
# extension_association_id: "Id", # required
|
977
|
-
# }
|
978
|
-
#
|
979
819
|
# @!attribute [rw] extension_association_id
|
980
820
|
# The ID of the extension association to delete.
|
981
821
|
# @return [String]
|
@@ -988,14 +828,6 @@ module Aws::AppConfig
|
|
988
828
|
include Aws::Structure
|
989
829
|
end
|
990
830
|
|
991
|
-
# @note When making an API call, you may pass DeleteExtensionRequest
|
992
|
-
# data as a hash:
|
993
|
-
#
|
994
|
-
# {
|
995
|
-
# extension_identifier: "Identifier", # required
|
996
|
-
# version_number: 1,
|
997
|
-
# }
|
998
|
-
#
|
999
831
|
# @!attribute [rw] extension_identifier
|
1000
832
|
# The name, ID, or Amazon Resource Name (ARN) of the extension you
|
1001
833
|
# want to delete.
|
@@ -1015,15 +847,6 @@ module Aws::AppConfig
|
|
1015
847
|
include Aws::Structure
|
1016
848
|
end
|
1017
849
|
|
1018
|
-
# @note When making an API call, you may pass DeleteHostedConfigurationVersionRequest
|
1019
|
-
# data as a hash:
|
1020
|
-
#
|
1021
|
-
# {
|
1022
|
-
# application_id: "Id", # required
|
1023
|
-
# configuration_profile_id: "Id", # required
|
1024
|
-
# version_number: 1, # required
|
1025
|
-
# }
|
1026
|
-
#
|
1027
850
|
# @!attribute [rw] application_id
|
1028
851
|
# The application ID.
|
1029
852
|
# @return [String]
|
@@ -1129,6 +952,20 @@ module Aws::AppConfig
|
|
1129
952
|
# called.
|
1130
953
|
# @return [Array<Types::AppliedExtension>]
|
1131
954
|
#
|
955
|
+
# @!attribute [rw] kms_key_arn
|
956
|
+
# The Amazon Resource Name of the Key Management Service key used to
|
957
|
+
# encrypt configuration data. You can encrypt secrets stored in
|
958
|
+
# Secrets Manager, Amazon Simple Storage Service (Amazon S3) objects
|
959
|
+
# encrypted with SSE-KMS, or secure string parameters stored in Amazon
|
960
|
+
# Web Services Systems Manager Parameter Store.
|
961
|
+
# @return [String]
|
962
|
+
#
|
963
|
+
# @!attribute [rw] kms_key_identifier
|
964
|
+
# The KMS key identifier (key ID, key alias, or key ARN). AppConfig
|
965
|
+
# uses this ID to encrypt the configuration data using a customer
|
966
|
+
# managed key.
|
967
|
+
# @return [String]
|
968
|
+
#
|
1132
969
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/Deployment AWS API Documentation
|
1133
970
|
#
|
1134
971
|
class Deployment < Struct.new(
|
@@ -1150,7 +987,9 @@ module Aws::AppConfig
|
|
1150
987
|
:percentage_complete,
|
1151
988
|
:started_at,
|
1152
989
|
:completed_at,
|
1153
|
-
:applied_extensions
|
990
|
+
:applied_extensions,
|
991
|
+
:kms_key_arn,
|
992
|
+
:kms_key_identifier)
|
1154
993
|
SENSITIVE = []
|
1155
994
|
include Aws::Structure
|
1156
995
|
end
|
@@ -1579,7 +1418,7 @@ module Aws::AppConfig
|
|
1579
1418
|
|
1580
1419
|
# @!attribute [rw] items
|
1581
1420
|
# The list of available extensions. The list includes Amazon Web
|
1582
|
-
# Services
|
1421
|
+
# Services authored and user-created extensions.
|
1583
1422
|
# @return [Array<Types::ExtensionSummary>]
|
1584
1423
|
#
|
1585
1424
|
# @!attribute [rw] next_token
|
@@ -1596,13 +1435,6 @@ module Aws::AppConfig
|
|
1596
1435
|
include Aws::Structure
|
1597
1436
|
end
|
1598
1437
|
|
1599
|
-
# @note When making an API call, you may pass GetApplicationRequest
|
1600
|
-
# data as a hash:
|
1601
|
-
#
|
1602
|
-
# {
|
1603
|
-
# application_id: "Id", # required
|
1604
|
-
# }
|
1605
|
-
#
|
1606
1438
|
# @!attribute [rw] application_id
|
1607
1439
|
# The ID of the application you want to get.
|
1608
1440
|
# @return [String]
|
@@ -1615,14 +1447,6 @@ module Aws::AppConfig
|
|
1615
1447
|
include Aws::Structure
|
1616
1448
|
end
|
1617
1449
|
|
1618
|
-
# @note When making an API call, you may pass GetConfigurationProfileRequest
|
1619
|
-
# data as a hash:
|
1620
|
-
#
|
1621
|
-
# {
|
1622
|
-
# application_id: "Id", # required
|
1623
|
-
# configuration_profile_id: "Id", # required
|
1624
|
-
# }
|
1625
|
-
#
|
1626
1450
|
# @!attribute [rw] application_id
|
1627
1451
|
# The ID of the application that includes the configuration profile
|
1628
1452
|
# you want to get.
|
@@ -1641,17 +1465,6 @@ module Aws::AppConfig
|
|
1641
1465
|
include Aws::Structure
|
1642
1466
|
end
|
1643
1467
|
|
1644
|
-
# @note When making an API call, you may pass GetConfigurationRequest
|
1645
|
-
# data as a hash:
|
1646
|
-
#
|
1647
|
-
# {
|
1648
|
-
# application: "StringWithLengthBetween1And64", # required
|
1649
|
-
# environment: "StringWithLengthBetween1And64", # required
|
1650
|
-
# configuration: "StringWithLengthBetween1And64", # required
|
1651
|
-
# client_id: "StringWithLengthBetween1And64", # required
|
1652
|
-
# client_configuration_version: "Version",
|
1653
|
-
# }
|
1654
|
-
#
|
1655
1468
|
# @!attribute [rw] application
|
1656
1469
|
# The application to get. Specify either the application name or the
|
1657
1470
|
# application ID.
|
@@ -1684,18 +1497,25 @@ module Aws::AppConfig
|
|
1684
1497
|
# `GetConfiguration`, your clients receive the current configuration.
|
1685
1498
|
# You are charged each time your clients receive a configuration.
|
1686
1499
|
#
|
1687
|
-
# To avoid excess charges, we recommend
|
1688
|
-
#
|
1689
|
-
#
|
1690
|
-
#
|
1691
|
-
# the `ClientConfigurationVersion`
|
1500
|
+
# To avoid excess charges, we recommend you use the
|
1501
|
+
# [StartConfigurationSession][1] and [GetLatestConfiguration][2] APIs,
|
1502
|
+
# which track the client configuration version on your behalf. If you
|
1503
|
+
# choose to continue using `GetConfiguration`, we recommend that you
|
1504
|
+
# include the `ClientConfigurationVersion` value with every call to
|
1505
|
+
# `GetConfiguration`. The value to use for
|
1506
|
+
# `ClientConfigurationVersion` comes from the `ConfigurationVersion`
|
1507
|
+
# attribute returned by `GetConfiguration` when there is new or
|
1508
|
+
# updated data, and should be saved for subsequent calls to
|
1509
|
+
# `GetConfiguration`.
|
1692
1510
|
#
|
1693
1511
|
# For more information about working with configurations, see
|
1694
|
-
# [Retrieving the Configuration][
|
1512
|
+
# [Retrieving the Configuration][3] in the *AppConfig User Guide*.
|
1695
1513
|
#
|
1696
1514
|
#
|
1697
1515
|
#
|
1698
|
-
# [1]:
|
1516
|
+
# [1]: https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/StartConfigurationSession.html
|
1517
|
+
# [2]: https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/GetLatestConfiguration.html
|
1518
|
+
# [3]: http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-retrieving-the-configuration.html
|
1699
1519
|
# @return [String]
|
1700
1520
|
#
|
1701
1521
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/GetConfigurationRequest AWS API Documentation
|
@@ -1710,15 +1530,6 @@ module Aws::AppConfig
|
|
1710
1530
|
include Aws::Structure
|
1711
1531
|
end
|
1712
1532
|
|
1713
|
-
# @note When making an API call, you may pass GetDeploymentRequest
|
1714
|
-
# data as a hash:
|
1715
|
-
#
|
1716
|
-
# {
|
1717
|
-
# application_id: "Id", # required
|
1718
|
-
# environment_id: "Id", # required
|
1719
|
-
# deployment_number: 1, # required
|
1720
|
-
# }
|
1721
|
-
#
|
1722
1533
|
# @!attribute [rw] application_id
|
1723
1534
|
# The ID of the application that includes the deployment you want to
|
1724
1535
|
# get.
|
@@ -1743,13 +1554,6 @@ module Aws::AppConfig
|
|
1743
1554
|
include Aws::Structure
|
1744
1555
|
end
|
1745
1556
|
|
1746
|
-
# @note When making an API call, you may pass GetDeploymentStrategyRequest
|
1747
|
-
# data as a hash:
|
1748
|
-
#
|
1749
|
-
# {
|
1750
|
-
# deployment_strategy_id: "DeploymentStrategyId", # required
|
1751
|
-
# }
|
1752
|
-
#
|
1753
1557
|
# @!attribute [rw] deployment_strategy_id
|
1754
1558
|
# The ID of the deployment strategy to get.
|
1755
1559
|
# @return [String]
|
@@ -1762,14 +1566,6 @@ module Aws::AppConfig
|
|
1762
1566
|
include Aws::Structure
|
1763
1567
|
end
|
1764
1568
|
|
1765
|
-
# @note When making an API call, you may pass GetEnvironmentRequest
|
1766
|
-
# data as a hash:
|
1767
|
-
#
|
1768
|
-
# {
|
1769
|
-
# application_id: "Id", # required
|
1770
|
-
# environment_id: "Id", # required
|
1771
|
-
# }
|
1772
|
-
#
|
1773
1569
|
# @!attribute [rw] application_id
|
1774
1570
|
# The ID of the application that includes the environment you want to
|
1775
1571
|
# get.
|
@@ -1788,13 +1584,6 @@ module Aws::AppConfig
|
|
1788
1584
|
include Aws::Structure
|
1789
1585
|
end
|
1790
1586
|
|
1791
|
-
# @note When making an API call, you may pass GetExtensionAssociationRequest
|
1792
|
-
# data as a hash:
|
1793
|
-
#
|
1794
|
-
# {
|
1795
|
-
# extension_association_id: "Id", # required
|
1796
|
-
# }
|
1797
|
-
#
|
1798
1587
|
# @!attribute [rw] extension_association_id
|
1799
1588
|
# The extension association ID to get.
|
1800
1589
|
# @return [String]
|
@@ -1807,14 +1596,6 @@ module Aws::AppConfig
|
|
1807
1596
|
include Aws::Structure
|
1808
1597
|
end
|
1809
1598
|
|
1810
|
-
# @note When making an API call, you may pass GetExtensionRequest
|
1811
|
-
# data as a hash:
|
1812
|
-
#
|
1813
|
-
# {
|
1814
|
-
# extension_identifier: "Identifier", # required
|
1815
|
-
# version_number: 1,
|
1816
|
-
# }
|
1817
|
-
#
|
1818
1599
|
# @!attribute [rw] extension_identifier
|
1819
1600
|
# The name, the ID, or the Amazon Resource Name (ARN) of the
|
1820
1601
|
# extension.
|
@@ -1834,15 +1615,6 @@ module Aws::AppConfig
|
|
1834
1615
|
include Aws::Structure
|
1835
1616
|
end
|
1836
1617
|
|
1837
|
-
# @note When making an API call, you may pass GetHostedConfigurationVersionRequest
|
1838
|
-
# data as a hash:
|
1839
|
-
#
|
1840
|
-
# {
|
1841
|
-
# application_id: "Id", # required
|
1842
|
-
# configuration_profile_id: "Id", # required
|
1843
|
-
# version_number: 1, # required
|
1844
|
-
# }
|
1845
|
-
#
|
1846
1618
|
# @!attribute [rw] application_id
|
1847
1619
|
# The application ID.
|
1848
1620
|
# @return [String]
|
@@ -2015,14 +1787,6 @@ module Aws::AppConfig
|
|
2015
1787
|
include Aws::Structure
|
2016
1788
|
end
|
2017
1789
|
|
2018
|
-
# @note When making an API call, you may pass ListApplicationsRequest
|
2019
|
-
# data as a hash:
|
2020
|
-
#
|
2021
|
-
# {
|
2022
|
-
# max_results: 1,
|
2023
|
-
# next_token: "NextToken",
|
2024
|
-
# }
|
2025
|
-
#
|
2026
1790
|
# @!attribute [rw] max_results
|
2027
1791
|
# The maximum number of items to return for this call. The call also
|
2028
1792
|
# returns a token that you can specify in a subsequent call to get the
|
@@ -2047,16 +1811,6 @@ module Aws::AppConfig
|
|
2047
1811
|
include Aws::Structure
|
2048
1812
|
end
|
2049
1813
|
|
2050
|
-
# @note When making an API call, you may pass ListConfigurationProfilesRequest
|
2051
|
-
# data as a hash:
|
2052
|
-
#
|
2053
|
-
# {
|
2054
|
-
# application_id: "Id", # required
|
2055
|
-
# max_results: 1,
|
2056
|
-
# next_token: "NextToken",
|
2057
|
-
# type: "ConfigurationProfileType",
|
2058
|
-
# }
|
2059
|
-
#
|
2060
1814
|
# @!attribute [rw] application_id
|
2061
1815
|
# The application ID.
|
2062
1816
|
# @return [String]
|
@@ -2089,14 +1843,6 @@ module Aws::AppConfig
|
|
2089
1843
|
include Aws::Structure
|
2090
1844
|
end
|
2091
1845
|
|
2092
|
-
# @note When making an API call, you may pass ListDeploymentStrategiesRequest
|
2093
|
-
# data as a hash:
|
2094
|
-
#
|
2095
|
-
# {
|
2096
|
-
# max_results: 1,
|
2097
|
-
# next_token: "NextToken",
|
2098
|
-
# }
|
2099
|
-
#
|
2100
1846
|
# @!attribute [rw] max_results
|
2101
1847
|
# The maximum number of items to return for this call. The call also
|
2102
1848
|
# returns a token that you can specify in a subsequent call to get the
|
@@ -2117,16 +1863,6 @@ module Aws::AppConfig
|
|
2117
1863
|
include Aws::Structure
|
2118
1864
|
end
|
2119
1865
|
|
2120
|
-
# @note When making an API call, you may pass ListDeploymentsRequest
|
2121
|
-
# data as a hash:
|
2122
|
-
#
|
2123
|
-
# {
|
2124
|
-
# application_id: "Id", # required
|
2125
|
-
# environment_id: "Id", # required
|
2126
|
-
# max_results: 1,
|
2127
|
-
# next_token: "NextToken",
|
2128
|
-
# }
|
2129
|
-
#
|
2130
1866
|
# @!attribute [rw] application_id
|
2131
1867
|
# The application ID.
|
2132
1868
|
# @return [String]
|
@@ -2159,15 +1895,6 @@ module Aws::AppConfig
|
|
2159
1895
|
include Aws::Structure
|
2160
1896
|
end
|
2161
1897
|
|
2162
|
-
# @note When making an API call, you may pass ListEnvironmentsRequest
|
2163
|
-
# data as a hash:
|
2164
|
-
#
|
2165
|
-
# {
|
2166
|
-
# application_id: "Id", # required
|
2167
|
-
# max_results: 1,
|
2168
|
-
# next_token: "NextToken",
|
2169
|
-
# }
|
2170
|
-
#
|
2171
1898
|
# @!attribute [rw] application_id
|
2172
1899
|
# The application ID.
|
2173
1900
|
# @return [String]
|
@@ -2193,17 +1920,6 @@ module Aws::AppConfig
|
|
2193
1920
|
include Aws::Structure
|
2194
1921
|
end
|
2195
1922
|
|
2196
|
-
# @note When making an API call, you may pass ListExtensionAssociationsRequest
|
2197
|
-
# data as a hash:
|
2198
|
-
#
|
2199
|
-
# {
|
2200
|
-
# resource_identifier: "Arn",
|
2201
|
-
# extension_identifier: "Identifier",
|
2202
|
-
# extension_version_number: 1,
|
2203
|
-
# max_results: 1,
|
2204
|
-
# next_token: "NextToken",
|
2205
|
-
# }
|
2206
|
-
#
|
2207
1923
|
# @!attribute [rw] resource_identifier
|
2208
1924
|
# The ARN of an application, configuration profile, or environment.
|
2209
1925
|
# @return [String]
|
@@ -2240,15 +1956,6 @@ module Aws::AppConfig
|
|
2240
1956
|
include Aws::Structure
|
2241
1957
|
end
|
2242
1958
|
|
2243
|
-
# @note When making an API call, you may pass ListExtensionsRequest
|
2244
|
-
# data as a hash:
|
2245
|
-
#
|
2246
|
-
# {
|
2247
|
-
# max_results: 1,
|
2248
|
-
# next_token: "NextToken",
|
2249
|
-
# name: "QueryName",
|
2250
|
-
# }
|
2251
|
-
#
|
2252
1959
|
# @!attribute [rw] max_results
|
2253
1960
|
# The maximum number of items to return for this call. The call also
|
2254
1961
|
# returns a token that you can specify in a subsequent call to get the
|
@@ -2274,16 +1981,6 @@ module Aws::AppConfig
|
|
2274
1981
|
include Aws::Structure
|
2275
1982
|
end
|
2276
1983
|
|
2277
|
-
# @note When making an API call, you may pass ListHostedConfigurationVersionsRequest
|
2278
|
-
# data as a hash:
|
2279
|
-
#
|
2280
|
-
# {
|
2281
|
-
# application_id: "Id", # required
|
2282
|
-
# configuration_profile_id: "Id", # required
|
2283
|
-
# max_results: 1,
|
2284
|
-
# next_token: "NextToken",
|
2285
|
-
# }
|
2286
|
-
#
|
2287
1984
|
# @!attribute [rw] application_id
|
2288
1985
|
# The application ID.
|
2289
1986
|
# @return [String]
|
@@ -2314,13 +2011,6 @@ module Aws::AppConfig
|
|
2314
2011
|
include Aws::Structure
|
2315
2012
|
end
|
2316
2013
|
|
2317
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
2318
|
-
# data as a hash:
|
2319
|
-
#
|
2320
|
-
# {
|
2321
|
-
# resource_arn: "Arn", # required
|
2322
|
-
# }
|
2323
|
-
#
|
2324
2014
|
# @!attribute [rw] resource_arn
|
2325
2015
|
# The resource ARN.
|
2326
2016
|
# @return [String]
|
@@ -2335,14 +2025,6 @@ module Aws::AppConfig
|
|
2335
2025
|
|
2336
2026
|
# Amazon CloudWatch alarms to monitor during the deployment process.
|
2337
2027
|
#
|
2338
|
-
# @note When making an API call, you may pass Monitor
|
2339
|
-
# data as a hash:
|
2340
|
-
#
|
2341
|
-
# {
|
2342
|
-
# alarm_arn: "StringWithLengthBetween1And2048", # required
|
2343
|
-
# alarm_role_arn: "RoleArn",
|
2344
|
-
# }
|
2345
|
-
#
|
2346
2028
|
# @!attribute [rw] alarm_arn
|
2347
2029
|
# Amazon Resource Name (ARN) of the Amazon CloudWatch alarm.
|
2348
2030
|
# @return [String]
|
@@ -2371,14 +2053,6 @@ module Aws::AppConfig
|
|
2371
2053
|
#
|
2372
2054
|
# [1]: https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html
|
2373
2055
|
#
|
2374
|
-
# @note When making an API call, you may pass Parameter
|
2375
|
-
# data as a hash:
|
2376
|
-
#
|
2377
|
-
# {
|
2378
|
-
# description: "Description",
|
2379
|
-
# required: false,
|
2380
|
-
# }
|
2381
|
-
#
|
2382
2056
|
# @!attribute [rw] description
|
2383
2057
|
# Information about the parameter.
|
2384
2058
|
# @return [String]
|
@@ -2467,21 +2141,6 @@ module Aws::AppConfig
|
|
2467
2141
|
include Aws::Structure
|
2468
2142
|
end
|
2469
2143
|
|
2470
|
-
# @note When making an API call, you may pass StartDeploymentRequest
|
2471
|
-
# data as a hash:
|
2472
|
-
#
|
2473
|
-
# {
|
2474
|
-
# application_id: "Id", # required
|
2475
|
-
# environment_id: "Id", # required
|
2476
|
-
# deployment_strategy_id: "DeploymentStrategyId", # required
|
2477
|
-
# configuration_profile_id: "Id", # required
|
2478
|
-
# configuration_version: "Version", # required
|
2479
|
-
# description: "Description",
|
2480
|
-
# tags: {
|
2481
|
-
# "TagKey" => "TagValue",
|
2482
|
-
# },
|
2483
|
-
# }
|
2484
|
-
#
|
2485
2144
|
# @!attribute [rw] application_id
|
2486
2145
|
# The application ID.
|
2487
2146
|
# @return [String]
|
@@ -2512,6 +2171,12 @@ module Aws::AppConfig
|
|
2512
2171
|
# an optional value, both of which you define.
|
2513
2172
|
# @return [Hash<String,String>]
|
2514
2173
|
#
|
2174
|
+
# @!attribute [rw] kms_key_identifier
|
2175
|
+
# The KMS key identifier (key ID, key alias, or key ARN). AppConfig
|
2176
|
+
# uses this ID to encrypt the configuration data using a customer
|
2177
|
+
# managed key.
|
2178
|
+
# @return [String]
|
2179
|
+
#
|
2515
2180
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/StartDeploymentRequest AWS API Documentation
|
2516
2181
|
#
|
2517
2182
|
class StartDeploymentRequest < Struct.new(
|
@@ -2521,20 +2186,12 @@ module Aws::AppConfig
|
|
2521
2186
|
:configuration_profile_id,
|
2522
2187
|
:configuration_version,
|
2523
2188
|
:description,
|
2524
|
-
:tags
|
2189
|
+
:tags,
|
2190
|
+
:kms_key_identifier)
|
2525
2191
|
SENSITIVE = []
|
2526
2192
|
include Aws::Structure
|
2527
2193
|
end
|
2528
2194
|
|
2529
|
-
# @note When making an API call, you may pass StopDeploymentRequest
|
2530
|
-
# data as a hash:
|
2531
|
-
#
|
2532
|
-
# {
|
2533
|
-
# application_id: "Id", # required
|
2534
|
-
# environment_id: "Id", # required
|
2535
|
-
# deployment_number: 1, # required
|
2536
|
-
# }
|
2537
|
-
#
|
2538
2195
|
# @!attribute [rw] application_id
|
2539
2196
|
# The application ID.
|
2540
2197
|
# @return [String]
|
@@ -2557,16 +2214,6 @@ module Aws::AppConfig
|
|
2557
2214
|
include Aws::Structure
|
2558
2215
|
end
|
2559
2216
|
|
2560
|
-
# @note When making an API call, you may pass TagResourceRequest
|
2561
|
-
# data as a hash:
|
2562
|
-
#
|
2563
|
-
# {
|
2564
|
-
# resource_arn: "Arn", # required
|
2565
|
-
# tags: { # required
|
2566
|
-
# "TagKey" => "TagValue",
|
2567
|
-
# },
|
2568
|
-
# }
|
2569
|
-
#
|
2570
2217
|
# @!attribute [rw] resource_arn
|
2571
2218
|
# The ARN of the resource for which to retrieve tags.
|
2572
2219
|
# @return [String]
|
@@ -2586,14 +2233,6 @@ module Aws::AppConfig
|
|
2586
2233
|
include Aws::Structure
|
2587
2234
|
end
|
2588
2235
|
|
2589
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
2590
|
-
# data as a hash:
|
2591
|
-
#
|
2592
|
-
# {
|
2593
|
-
# resource_arn: "Arn", # required
|
2594
|
-
# tag_keys: ["TagKey"], # required
|
2595
|
-
# }
|
2596
|
-
#
|
2597
2236
|
# @!attribute [rw] resource_arn
|
2598
2237
|
# The ARN of the resource for which to remove tags.
|
2599
2238
|
# @return [String]
|
@@ -2611,15 +2250,6 @@ module Aws::AppConfig
|
|
2611
2250
|
include Aws::Structure
|
2612
2251
|
end
|
2613
2252
|
|
2614
|
-
# @note When making an API call, you may pass UpdateApplicationRequest
|
2615
|
-
# data as a hash:
|
2616
|
-
#
|
2617
|
-
# {
|
2618
|
-
# application_id: "Id", # required
|
2619
|
-
# name: "Name",
|
2620
|
-
# description: "Description",
|
2621
|
-
# }
|
2622
|
-
#
|
2623
2253
|
# @!attribute [rw] application_id
|
2624
2254
|
# The application ID.
|
2625
2255
|
# @return [String]
|
@@ -2642,23 +2272,6 @@ module Aws::AppConfig
|
|
2642
2272
|
include Aws::Structure
|
2643
2273
|
end
|
2644
2274
|
|
2645
|
-
# @note When making an API call, you may pass UpdateConfigurationProfileRequest
|
2646
|
-
# data as a hash:
|
2647
|
-
#
|
2648
|
-
# {
|
2649
|
-
# application_id: "Id", # required
|
2650
|
-
# configuration_profile_id: "Id", # required
|
2651
|
-
# name: "Name",
|
2652
|
-
# description: "Description",
|
2653
|
-
# retrieval_role_arn: "RoleArn",
|
2654
|
-
# validators: [
|
2655
|
-
# {
|
2656
|
-
# type: "JSON_SCHEMA", # required, accepts JSON_SCHEMA, LAMBDA
|
2657
|
-
# content: "StringWithLengthBetween0And32768", # required
|
2658
|
-
# },
|
2659
|
-
# ],
|
2660
|
-
# }
|
2661
|
-
#
|
2662
2275
|
# @!attribute [rw] application_id
|
2663
2276
|
# The application ID.
|
2664
2277
|
# @return [String]
|
@@ -2697,18 +2310,6 @@ module Aws::AppConfig
|
|
2697
2310
|
include Aws::Structure
|
2698
2311
|
end
|
2699
2312
|
|
2700
|
-
# @note When making an API call, you may pass UpdateDeploymentStrategyRequest
|
2701
|
-
# data as a hash:
|
2702
|
-
#
|
2703
|
-
# {
|
2704
|
-
# deployment_strategy_id: "DeploymentStrategyId", # required
|
2705
|
-
# description: "Description",
|
2706
|
-
# deployment_duration_in_minutes: 1,
|
2707
|
-
# final_bake_time_in_minutes: 1,
|
2708
|
-
# growth_factor: 1.0,
|
2709
|
-
# growth_type: "LINEAR", # accepts LINEAR, EXPONENTIAL
|
2710
|
-
# }
|
2711
|
-
#
|
2712
2313
|
# @!attribute [rw] deployment_strategy_id
|
2713
2314
|
# The deployment strategy ID.
|
2714
2315
|
# @return [String]
|
@@ -2776,22 +2377,6 @@ module Aws::AppConfig
|
|
2776
2377
|
include Aws::Structure
|
2777
2378
|
end
|
2778
2379
|
|
2779
|
-
# @note When making an API call, you may pass UpdateEnvironmentRequest
|
2780
|
-
# data as a hash:
|
2781
|
-
#
|
2782
|
-
# {
|
2783
|
-
# application_id: "Id", # required
|
2784
|
-
# environment_id: "Id", # required
|
2785
|
-
# name: "Name",
|
2786
|
-
# description: "Description",
|
2787
|
-
# monitors: [
|
2788
|
-
# {
|
2789
|
-
# alarm_arn: "StringWithLengthBetween1And2048", # required
|
2790
|
-
# alarm_role_arn: "RoleArn",
|
2791
|
-
# },
|
2792
|
-
# ],
|
2793
|
-
# }
|
2794
|
-
#
|
2795
2380
|
# @!attribute [rw] application_id
|
2796
2381
|
# The application ID.
|
2797
2382
|
# @return [String]
|
@@ -2824,16 +2409,6 @@ module Aws::AppConfig
|
|
2824
2409
|
include Aws::Structure
|
2825
2410
|
end
|
2826
2411
|
|
2827
|
-
# @note When making an API call, you may pass UpdateExtensionAssociationRequest
|
2828
|
-
# data as a hash:
|
2829
|
-
#
|
2830
|
-
# {
|
2831
|
-
# extension_association_id: "Id", # required
|
2832
|
-
# parameters: {
|
2833
|
-
# "Name" => "StringWithLengthBetween1And2048",
|
2834
|
-
# },
|
2835
|
-
# }
|
2836
|
-
#
|
2837
2412
|
# @!attribute [rw] extension_association_id
|
2838
2413
|
# The system-generated ID for the association.
|
2839
2414
|
# @return [String]
|
@@ -2851,31 +2426,6 @@ module Aws::AppConfig
|
|
2851
2426
|
include Aws::Structure
|
2852
2427
|
end
|
2853
2428
|
|
2854
|
-
# @note When making an API call, you may pass UpdateExtensionRequest
|
2855
|
-
# data as a hash:
|
2856
|
-
#
|
2857
|
-
# {
|
2858
|
-
# extension_identifier: "Identifier", # required
|
2859
|
-
# description: "Description",
|
2860
|
-
# actions: {
|
2861
|
-
# "PRE_CREATE_HOSTED_CONFIGURATION_VERSION" => [
|
2862
|
-
# {
|
2863
|
-
# name: "Name",
|
2864
|
-
# description: "Description",
|
2865
|
-
# uri: "Uri",
|
2866
|
-
# role_arn: "Arn",
|
2867
|
-
# },
|
2868
|
-
# ],
|
2869
|
-
# },
|
2870
|
-
# parameters: {
|
2871
|
-
# "Name" => {
|
2872
|
-
# description: "Description",
|
2873
|
-
# required: false,
|
2874
|
-
# },
|
2875
|
-
# },
|
2876
|
-
# version_number: 1,
|
2877
|
-
# }
|
2878
|
-
#
|
2879
2429
|
# @!attribute [rw] extension_identifier
|
2880
2430
|
# The name, the ID, or the Amazon Resource Name (ARN) of the
|
2881
2431
|
# extension.
|
@@ -2909,15 +2459,6 @@ module Aws::AppConfig
|
|
2909
2459
|
include Aws::Structure
|
2910
2460
|
end
|
2911
2461
|
|
2912
|
-
# @note When making an API call, you may pass ValidateConfigurationRequest
|
2913
|
-
# data as a hash:
|
2914
|
-
#
|
2915
|
-
# {
|
2916
|
-
# application_id: "Id", # required
|
2917
|
-
# configuration_profile_id: "Id", # required
|
2918
|
-
# configuration_version: "Version", # required
|
2919
|
-
# }
|
2920
|
-
#
|
2921
2462
|
# @!attribute [rw] application_id
|
2922
2463
|
# The application ID.
|
2923
2464
|
# @return [String]
|
@@ -2947,14 +2488,6 @@ module Aws::AppConfig
|
|
2947
2488
|
# configuration. The configuration deployment or update can only proceed
|
2948
2489
|
# when the configuration data is valid.
|
2949
2490
|
#
|
2950
|
-
# @note When making an API call, you may pass Validator
|
2951
|
-
# data as a hash:
|
2952
|
-
#
|
2953
|
-
# {
|
2954
|
-
# type: "JSON_SCHEMA", # required, accepts JSON_SCHEMA, LAMBDA
|
2955
|
-
# content: "StringWithLengthBetween0And32768", # required
|
2956
|
-
# }
|
2957
|
-
#
|
2958
2491
|
# @!attribute [rw] type
|
2959
2492
|
# AppConfig supports validators of type `JSON_SCHEMA` and `LAMBDA`
|
2960
2493
|
# @return [String]
|