@aws-sdk/client-appconfig 3.775.0 → 3.777.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.
- package/dist-types/commands/CreateApplicationCommand.d.ts +8 -8
- package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +12 -12
- package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +14 -14
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +9 -9
- package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +1 -0
- package/dist-types/commands/CreateExtensionCommand.d.ts +1 -0
- package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +12 -12
- package/dist-types/commands/DeleteApplicationCommand.d.ts +8 -5
- package/dist-types/commands/DeleteConfigurationProfileCommand.d.ts +8 -5
- package/dist-types/commands/DeleteDeploymentStrategyCommand.d.ts +7 -4
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +8 -5
- package/dist-types/commands/DeleteExtensionAssociationCommand.d.ts +1 -0
- package/dist-types/commands/DeleteExtensionCommand.d.ts +1 -0
- package/dist-types/commands/DeleteHostedConfigurationVersionCommand.d.ts +9 -6
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +1 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +6 -6
- package/dist-types/commands/GetConfigurationCommand.d.ts +9 -9
- package/dist-types/commands/GetConfigurationProfileCommand.d.ts +10 -10
- package/dist-types/commands/GetDeploymentCommand.d.ts +1 -77
- package/dist-types/commands/GetDeploymentStrategyCommand.d.ts +11 -11
- package/dist-types/commands/GetEnvironmentCommand.d.ts +9 -9
- package/dist-types/commands/GetExtensionAssociationCommand.d.ts +1 -0
- package/dist-types/commands/GetExtensionCommand.d.ts +1 -0
- package/dist-types/commands/GetHostedConfigurationVersionCommand.d.ts +10 -10
- package/dist-types/commands/ListApplicationsCommand.d.ts +10 -10
- package/dist-types/commands/ListConfigurationProfilesCommand.d.ts +9 -9
- package/dist-types/commands/ListDeploymentStrategiesCommand.d.ts +12 -12
- package/dist-types/commands/ListDeploymentsCommand.d.ts +1 -31
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +9 -9
- package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +1 -0
- package/dist-types/commands/ListExtensionsCommand.d.ts +1 -0
- package/dist-types/commands/ListHostedConfigurationVersionsCommand.d.ts +10 -10
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -6
- package/dist-types/commands/StartDeploymentCommand.d.ts +1 -44
- package/dist-types/commands/StopDeploymentCommand.d.ts +11 -11
- package/dist-types/commands/TagResourceCommand.d.ts +9 -6
- package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
- package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +9 -9
- package/dist-types/commands/UpdateConfigurationProfileCommand.d.ts +12 -12
- package/dist-types/commands/UpdateDeploymentStrategyCommand.d.ts +13 -13
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +11 -11
- package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +1 -0
- package/dist-types/commands/UpdateExtensionCommand.d.ts +1 -0
- package/dist-types/commands/ValidateConfigurationCommand.d.ts +9 -6
- package/package.json +2 -2
|
@@ -75,31 +75,31 @@ declare const UpdateDeploymentStrategyCommand_base: {
|
|
|
75
75
|
* @throws {@link AppConfigServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from AppConfig service.</p>
|
|
77
77
|
*
|
|
78
|
-
*
|
|
78
|
+
*
|
|
79
79
|
* @example To update a deployment strategy
|
|
80
80
|
* ```javascript
|
|
81
81
|
* // The following update-deployment-strategy example updates final bake time to 20 minutes in the specified deployment strategy. ::
|
|
82
|
-
*
|
|
82
|
+
*
|
|
83
83
|
* const input = {
|
|
84
|
-
*
|
|
85
|
-
*
|
|
84
|
+
* DeploymentStrategyId: "1225qzk",
|
|
85
|
+
* FinalBakeTimeInMinutes: 20
|
|
86
86
|
* };
|
|
87
87
|
* const command = new UpdateDeploymentStrategyCommand(input);
|
|
88
88
|
* const response = await client.send(command);
|
|
89
|
-
* /* response
|
|
89
|
+
* /* response is
|
|
90
90
|
* {
|
|
91
|
-
*
|
|
92
|
-
*
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
*
|
|
96
|
-
*
|
|
97
|
-
*
|
|
91
|
+
* DeploymentDurationInMinutes: 15,
|
|
92
|
+
* FinalBakeTimeInMinutes: 20,
|
|
93
|
+
* GrowthFactor: 25,
|
|
94
|
+
* GrowthType: "LINEAR",
|
|
95
|
+
* Id: "1225qzk",
|
|
96
|
+
* Name: "Example-Deployment",
|
|
97
|
+
* ReplicateTo: "SSM_DOCUMENT"
|
|
98
98
|
* }
|
|
99
99
|
* *\/
|
|
100
|
-
* // example id: to-update-a-deployment-strategy-1632330896602
|
|
101
100
|
* ```
|
|
102
101
|
*
|
|
102
|
+
* @public
|
|
103
103
|
*/
|
|
104
104
|
export declare class UpdateDeploymentStrategyCommand extends UpdateDeploymentStrategyCommand_base {
|
|
105
105
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -82,29 +82,29 @@ declare const UpdateEnvironmentCommand_base: {
|
|
|
82
82
|
* @throws {@link AppConfigServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from AppConfig service.</p>
|
|
84
84
|
*
|
|
85
|
-
*
|
|
85
|
+
*
|
|
86
86
|
* @example To update an environment
|
|
87
87
|
* ```javascript
|
|
88
88
|
* // The following update-environment example updates an environment's description.
|
|
89
89
|
* const input = {
|
|
90
|
-
*
|
|
91
|
-
*
|
|
92
|
-
*
|
|
90
|
+
* ApplicationId: "339ohji",
|
|
91
|
+
* Description: "An environment for examples.",
|
|
92
|
+
* EnvironmentId: "54j1r29"
|
|
93
93
|
* };
|
|
94
94
|
* const command = new UpdateEnvironmentCommand(input);
|
|
95
95
|
* const response = await client.send(command);
|
|
96
|
-
* /* response
|
|
96
|
+
* /* response is
|
|
97
97
|
* {
|
|
98
|
-
*
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
98
|
+
* ApplicationId: "339ohji",
|
|
99
|
+
* Description: "An environment for examples.",
|
|
100
|
+
* Id: "54j1r29",
|
|
101
|
+
* Name: "Example-Environment",
|
|
102
|
+
* State: "ROLLED_BACK"
|
|
103
103
|
* }
|
|
104
104
|
* *\/
|
|
105
|
-
* // example id: to-update-an-environment-1632331382428
|
|
106
105
|
* ```
|
|
107
106
|
*
|
|
107
|
+
* @public
|
|
108
108
|
*/
|
|
109
109
|
export declare class UpdateEnvironmentCommand extends UpdateEnvironmentCommand_base {
|
|
110
110
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -75,6 +75,7 @@ declare const UpdateExtensionAssociationCommand_base: {
|
|
|
75
75
|
* @throws {@link AppConfigServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from AppConfig service.</p>
|
|
77
77
|
*
|
|
78
|
+
*
|
|
78
79
|
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class UpdateExtensionAssociationCommand extends UpdateExtensionAssociationCommand_base {
|
|
@@ -109,6 +109,7 @@ declare const UpdateExtensionCommand_base: {
|
|
|
109
109
|
* @throws {@link AppConfigServiceException}
|
|
110
110
|
* <p>Base exception class for all service exceptions from AppConfig service.</p>
|
|
111
111
|
*
|
|
112
|
+
*
|
|
112
113
|
* @public
|
|
113
114
|
*/
|
|
114
115
|
export declare class UpdateExtensionCommand extends UpdateExtensionCommand_base {
|
|
@@ -63,20 +63,23 @@ declare const ValidateConfigurationCommand_base: {
|
|
|
63
63
|
* @throws {@link AppConfigServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from AppConfig service.</p>
|
|
65
65
|
*
|
|
66
|
-
*
|
|
66
|
+
*
|
|
67
67
|
* @example To validate a configuration
|
|
68
68
|
* ```javascript
|
|
69
69
|
* // The following validate-configuration example uses the validators in a configuration profile to validate a configuration.
|
|
70
70
|
* const input = {
|
|
71
|
-
*
|
|
72
|
-
*
|
|
73
|
-
*
|
|
71
|
+
* ApplicationId: "abc1234",
|
|
72
|
+
* ConfigurationProfileId: "ur8hx2f",
|
|
73
|
+
* ConfigurationVersion: "1"
|
|
74
74
|
* };
|
|
75
75
|
* const command = new ValidateConfigurationCommand(input);
|
|
76
|
-
* await client.send(command);
|
|
77
|
-
*
|
|
76
|
+
* const response = await client.send(command);
|
|
77
|
+
* /* response is
|
|
78
|
+
* { /* metadata only *\/ }
|
|
79
|
+
* *\/
|
|
78
80
|
* ```
|
|
79
81
|
*
|
|
82
|
+
* @public
|
|
80
83
|
*/
|
|
81
84
|
export declare class ValidateConfigurationCommand extends ValidateConfigurationCommand_base {
|
|
82
85
|
/** @internal type navigation helper, not in runtime. */
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appconfig",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appconfig Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.777.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-appconfig",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.775.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.777.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.775.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|