@aws-sdk/client-appconfig 3.774.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.
Files changed (52) hide show
  1. package/dist-cjs/auth/httpAuthSchemeProvider.js +1 -3
  2. package/dist-cjs/index.js +17 -18
  3. package/dist-es/AppConfigClient.js +2 -1
  4. package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
  5. package/dist-es/endpoint/EndpointParameters.js +2 -3
  6. package/dist-es/runtimeExtensions.js +2 -14
  7. package/dist-types/commands/CreateApplicationCommand.d.ts +8 -8
  8. package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +12 -12
  9. package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +14 -14
  10. package/dist-types/commands/CreateEnvironmentCommand.d.ts +9 -9
  11. package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +1 -0
  12. package/dist-types/commands/CreateExtensionCommand.d.ts +1 -0
  13. package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +12 -12
  14. package/dist-types/commands/DeleteApplicationCommand.d.ts +8 -5
  15. package/dist-types/commands/DeleteConfigurationProfileCommand.d.ts +8 -5
  16. package/dist-types/commands/DeleteDeploymentStrategyCommand.d.ts +7 -4
  17. package/dist-types/commands/DeleteEnvironmentCommand.d.ts +8 -5
  18. package/dist-types/commands/DeleteExtensionAssociationCommand.d.ts +1 -0
  19. package/dist-types/commands/DeleteExtensionCommand.d.ts +1 -0
  20. package/dist-types/commands/DeleteHostedConfigurationVersionCommand.d.ts +9 -6
  21. package/dist-types/commands/GetAccountSettingsCommand.d.ts +1 -0
  22. package/dist-types/commands/GetApplicationCommand.d.ts +6 -6
  23. package/dist-types/commands/GetConfigurationCommand.d.ts +9 -9
  24. package/dist-types/commands/GetConfigurationProfileCommand.d.ts +10 -10
  25. package/dist-types/commands/GetDeploymentCommand.d.ts +1 -77
  26. package/dist-types/commands/GetDeploymentStrategyCommand.d.ts +11 -11
  27. package/dist-types/commands/GetEnvironmentCommand.d.ts +9 -9
  28. package/dist-types/commands/GetExtensionAssociationCommand.d.ts +1 -0
  29. package/dist-types/commands/GetExtensionCommand.d.ts +1 -0
  30. package/dist-types/commands/GetHostedConfigurationVersionCommand.d.ts +10 -10
  31. package/dist-types/commands/ListApplicationsCommand.d.ts +10 -10
  32. package/dist-types/commands/ListConfigurationProfilesCommand.d.ts +9 -9
  33. package/dist-types/commands/ListDeploymentStrategiesCommand.d.ts +12 -12
  34. package/dist-types/commands/ListDeploymentsCommand.d.ts +1 -31
  35. package/dist-types/commands/ListEnvironmentsCommand.d.ts +9 -9
  36. package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +1 -0
  37. package/dist-types/commands/ListExtensionsCommand.d.ts +1 -0
  38. package/dist-types/commands/ListHostedConfigurationVersionsCommand.d.ts +10 -10
  39. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -6
  40. package/dist-types/commands/StartDeploymentCommand.d.ts +1 -44
  41. package/dist-types/commands/StopDeploymentCommand.d.ts +11 -11
  42. package/dist-types/commands/TagResourceCommand.d.ts +9 -6
  43. package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
  44. package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +1 -0
  45. package/dist-types/commands/UpdateApplicationCommand.d.ts +9 -9
  46. package/dist-types/commands/UpdateConfigurationProfileCommand.d.ts +12 -12
  47. package/dist-types/commands/UpdateDeploymentStrategyCommand.d.ts +13 -13
  48. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +11 -11
  49. package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +1 -0
  50. package/dist-types/commands/UpdateExtensionCommand.d.ts +1 -0
  51. package/dist-types/commands/ValidateConfigurationCommand.d.ts +9 -6
  52. package/package.json +34 -34
@@ -66,21 +66,24 @@ declare const TagResourceCommand_base: {
66
66
  * @throws {@link AppConfigServiceException}
67
67
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
68
68
  *
69
- * @public
69
+ *
70
70
  * @example To tag an application
71
71
  * ```javascript
72
72
  * // The following tag-resource example tags an application resource.
73
73
  * const input = {
74
- * "ResourceArn": "arn:aws:appconfig:us-east-1:111122223333:application/339ohji",
75
- * "Tags": {
76
- * "group1": "1"
74
+ * ResourceArn: "arn:aws:appconfig:us-east-1:111122223333:application/339ohji",
75
+ * Tags: {
76
+ * group1: "1"
77
77
  * }
78
78
  * };
79
79
  * const command = new TagResourceCommand(input);
80
- * await client.send(command);
81
- * // example id: to-tag-an-application-1632330350645
80
+ * const response = await client.send(command);
81
+ * /* response is
82
+ * { /* metadata only *\/ }
83
+ * *\/
82
84
  * ```
83
85
  *
86
+ * @public
84
87
  */
85
88
  export declare class TagResourceCommand extends TagResourceCommand_base {
86
89
  /** @internal type navigation helper, not in runtime. */
@@ -64,21 +64,24 @@ declare const UntagResourceCommand_base: {
64
64
  * @throws {@link AppConfigServiceException}
65
65
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
66
66
  *
67
- * @public
67
+ *
68
68
  * @example To remove a tag from an application
69
69
  * ```javascript
70
70
  * // The following untag-resource example removes the group1 tag from the specified application.
71
71
  * const input = {
72
- * "ResourceArn": "arn:aws:appconfig:us-east-1:111122223333:application/339ohji",
73
- * "TagKeys": [
72
+ * ResourceArn: "arn:aws:appconfig:us-east-1:111122223333:application/339ohji",
73
+ * TagKeys: [
74
74
  * "group1"
75
75
  * ]
76
76
  * };
77
77
  * const command = new UntagResourceCommand(input);
78
- * await client.send(command);
79
- * // example id: to-remove-a-tag-from-an-application-1632330429881
78
+ * const response = await client.send(command);
79
+ * /* response is
80
+ * { /* metadata only *\/ }
81
+ * *\/
80
82
  * ```
81
83
  *
84
+ * @public
82
85
  */
83
86
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
84
87
  /** @internal type navigation helper, not in runtime. */
@@ -66,6 +66,7 @@ declare const UpdateAccountSettingsCommand_base: {
66
66
  * @throws {@link AppConfigServiceException}
67
67
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
68
68
  *
69
+ *
69
70
  * @public
70
71
  */
71
72
  export declare class UpdateAccountSettingsCommand extends UpdateAccountSettingsCommand_base {
@@ -67,27 +67,27 @@ declare const UpdateApplicationCommand_base: {
67
67
  * @throws {@link AppConfigServiceException}
68
68
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
69
69
  *
70
- * @public
70
+ *
71
71
  * @example To update an application
72
72
  * ```javascript
73
73
  * // The following update-application example updates the name of the specified application.
74
74
  * const input = {
75
- * "ApplicationId": "339ohji",
76
- * "Description": "",
77
- * "Name": "Example-Application"
75
+ * ApplicationId: "339ohji",
76
+ * Description: "",
77
+ * Name: "Example-Application"
78
78
  * };
79
79
  * const command = new UpdateApplicationCommand(input);
80
80
  * const response = await client.send(command);
81
- * /* response ==
81
+ * /* response is
82
82
  * {
83
- * "Description": "An application used for creating an example.",
84
- * "Id": "339ohji",
85
- * "Name": "Example-Application"
83
+ * Description: "An application used for creating an example.",
84
+ * Id: "339ohji",
85
+ * Name: "Example-Application"
86
86
  * }
87
87
  * *\/
88
- * // example id: to-update-an-application-1632330585893
89
88
  * ```
90
89
  *
90
+ * @public
91
91
  */
92
92
  export declare class UpdateApplicationCommand extends UpdateApplicationCommand_base {
93
93
  /** @internal type navigation helper, not in runtime. */
@@ -88,30 +88,30 @@ declare const UpdateConfigurationProfileCommand_base: {
88
88
  * @throws {@link AppConfigServiceException}
89
89
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
90
90
  *
91
- * @public
91
+ *
92
92
  * @example To update a configuration profile
93
93
  * ```javascript
94
94
  * // The following update-configuration-profile example updates the description of the specified configuration profile.
95
95
  * const input = {
96
- * "ApplicationId": "339ohji",
97
- * "ConfigurationProfileId": "ur8hx2f",
98
- * "Description": "Configuration profile used for examples."
96
+ * ApplicationId: "339ohji",
97
+ * ConfigurationProfileId: "ur8hx2f",
98
+ * Description: "Configuration profile used for examples."
99
99
  * };
100
100
  * const command = new UpdateConfigurationProfileCommand(input);
101
101
  * const response = await client.send(command);
102
- * /* response ==
102
+ * /* response is
103
103
  * {
104
- * "ApplicationId": "339ohji",
105
- * "Description": "Configuration profile used for examples.",
106
- * "Id": "ur8hx2f",
107
- * "LocationUri": "ssm-parameter://Example-Parameter",
108
- * "Name": "Example-Configuration-Profile",
109
- * "RetrievalRoleArn": "arn:aws:iam::111122223333:role/Example-App-Config-Role"
104
+ * ApplicationId: "339ohji",
105
+ * Description: "Configuration profile used for examples.",
106
+ * Id: "ur8hx2f",
107
+ * LocationUri: "ssm-parameter://Example-Parameter",
108
+ * Name: "Example-Configuration-Profile",
109
+ * RetrievalRoleArn: "arn:aws:iam::111122223333:role/Example-App-Config-Role"
110
110
  * }
111
111
  * *\/
112
- * // example id: to-update-a-configuration-profile-1632330721974
113
112
  * ```
114
113
  *
114
+ * @public
115
115
  */
116
116
  export declare class UpdateConfigurationProfileCommand extends UpdateConfigurationProfileCommand_base {
117
117
  /** @internal type navigation helper, not in runtime. */
@@ -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
- * @public
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
- * "DeploymentStrategyId": "1225qzk",
85
- * "FinalBakeTimeInMinutes": 20
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
- * "DeploymentDurationInMinutes": 15,
92
- * "FinalBakeTimeInMinutes": 20,
93
- * "GrowthFactor": 25,
94
- * "GrowthType": "LINEAR",
95
- * "Id": "1225qzk",
96
- * "Name": "Example-Deployment",
97
- * "ReplicateTo": "SSM_DOCUMENT"
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
- * @public
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
- * "ApplicationId": "339ohji",
91
- * "Description": "An environment for examples.",
92
- * "EnvironmentId": "54j1r29"
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
- * "ApplicationId": "339ohji",
99
- * "Description": "An environment for examples.",
100
- * "Id": "54j1r29",
101
- * "Name": "Example-Environment",
102
- * "State": "ROLLED_BACK"
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
- * @public
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
- * "ApplicationId": "abc1234",
72
- * "ConfigurationProfileId": "ur8hx2f",
73
- * "ConfigurationVersion": "1"
71
+ * ApplicationId: "abc1234",
72
+ * ConfigurationProfileId: "ur8hx2f",
73
+ * ConfigurationVersion: "1"
74
74
  * };
75
75
  * const command = new ValidateConfigurationCommand(input);
76
- * await client.send(command);
77
- * // example id: to-validate-a-configuration-1632331491365
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.774.0",
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",
@@ -20,42 +20,42 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.774.0",
24
- "@aws-sdk/credential-provider-node": "3.774.0",
25
- "@aws-sdk/middleware-host-header": "3.774.0",
26
- "@aws-sdk/middleware-logger": "3.734.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.772.0",
28
- "@aws-sdk/middleware-user-agent": "3.774.0",
29
- "@aws-sdk/region-config-resolver": "3.734.0",
30
- "@aws-sdk/types": "3.734.0",
31
- "@aws-sdk/util-endpoints": "3.743.0",
32
- "@aws-sdk/util-user-agent-browser": "3.734.0",
33
- "@aws-sdk/util-user-agent-node": "3.774.0",
34
- "@smithy/config-resolver": "^4.0.1",
35
- "@smithy/core": "^3.1.5",
36
- "@smithy/fetch-http-handler": "^5.0.1",
37
- "@smithy/hash-node": "^4.0.1",
38
- "@smithy/invalid-dependency": "^4.0.1",
39
- "@smithy/middleware-content-length": "^4.0.1",
40
- "@smithy/middleware-endpoint": "^4.0.6",
41
- "@smithy/middleware-retry": "^4.0.7",
42
- "@smithy/middleware-serde": "^4.0.2",
43
- "@smithy/middleware-stack": "^4.0.1",
44
- "@smithy/node-config-provider": "^4.0.1",
45
- "@smithy/node-http-handler": "^4.0.3",
46
- "@smithy/protocol-http": "^5.0.1",
47
- "@smithy/smithy-client": "^4.1.6",
48
- "@smithy/types": "^4.1.0",
49
- "@smithy/url-parser": "^4.0.1",
23
+ "@aws-sdk/core": "3.775.0",
24
+ "@aws-sdk/credential-provider-node": "3.777.0",
25
+ "@aws-sdk/middleware-host-header": "3.775.0",
26
+ "@aws-sdk/middleware-logger": "3.775.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.775.0",
28
+ "@aws-sdk/middleware-user-agent": "3.775.0",
29
+ "@aws-sdk/region-config-resolver": "3.775.0",
30
+ "@aws-sdk/types": "3.775.0",
31
+ "@aws-sdk/util-endpoints": "3.775.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.775.0",
33
+ "@aws-sdk/util-user-agent-node": "3.775.0",
34
+ "@smithy/config-resolver": "^4.1.0",
35
+ "@smithy/core": "^3.2.0",
36
+ "@smithy/fetch-http-handler": "^5.0.2",
37
+ "@smithy/hash-node": "^4.0.2",
38
+ "@smithy/invalid-dependency": "^4.0.2",
39
+ "@smithy/middleware-content-length": "^4.0.2",
40
+ "@smithy/middleware-endpoint": "^4.1.0",
41
+ "@smithy/middleware-retry": "^4.1.0",
42
+ "@smithy/middleware-serde": "^4.0.3",
43
+ "@smithy/middleware-stack": "^4.0.2",
44
+ "@smithy/node-config-provider": "^4.0.2",
45
+ "@smithy/node-http-handler": "^4.0.4",
46
+ "@smithy/protocol-http": "^5.1.0",
47
+ "@smithy/smithy-client": "^4.2.0",
48
+ "@smithy/types": "^4.2.0",
49
+ "@smithy/url-parser": "^4.0.2",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.7",
54
- "@smithy/util-defaults-mode-node": "^4.0.7",
55
- "@smithy/util-endpoints": "^3.0.1",
56
- "@smithy/util-middleware": "^4.0.1",
57
- "@smithy/util-retry": "^4.0.1",
58
- "@smithy/util-stream": "^4.1.2",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.8",
54
+ "@smithy/util-defaults-mode-node": "^4.0.8",
55
+ "@smithy/util-endpoints": "^3.0.2",
56
+ "@smithy/util-middleware": "^4.0.2",
57
+ "@smithy/util-retry": "^4.0.2",
58
+ "@smithy/util-stream": "^4.2.0",
59
59
  "@smithy/util-utf8": "^4.0.0",
60
60
  "tslib": "^2.6.2"
61
61
  },