@aws-sdk/client-appconfig 3.295.0 → 3.297.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/AppConfig.d.ts +44 -0
- package/dist-types/AppConfigClient.d.ts +24 -4
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +16 -0
- package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +16 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +16 -0
- package/dist-types/commands/CreateExtensionCommand.d.ts +16 -0
- package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfigurationProfileCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDeploymentStrategyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteExtensionAssociationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteExtensionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteHostedConfigurationVersionCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetConfigurationProfileCommand.d.ts +16 -0
- package/dist-types/commands/GetDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/GetDeploymentStrategyCommand.d.ts +16 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/GetExtensionAssociationCommand.d.ts +16 -0
- package/dist-types/commands/GetExtensionCommand.d.ts +16 -0
- package/dist-types/commands/GetHostedConfigurationVersionCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListConfigurationProfilesCommand.d.ts +16 -0
- package/dist-types/commands/ListDeploymentStrategiesCommand.d.ts +16 -0
- package/dist-types/commands/ListDeploymentsCommand.d.ts +16 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +16 -0
- package/dist-types/commands/ListExtensionsCommand.d.ts +16 -0
- package/dist-types/commands/ListHostedConfigurationVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/StopDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConfigurationProfileCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDeploymentStrategyCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateExtensionCommand.d.ts +16 -0
- package/dist-types/commands/ValidateConfigurationCommand.d.ts +16 -0
- package/dist-types/models/AppConfigServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +236 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListConfigurationProfilesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDeploymentStrategiesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDeploymentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListExtensionAssociationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListExtensionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListHostedConfigurationVersionsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { HostedConfigurationVersions, ListHostedConfigurationVersionsRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListHostedConfigurationVersionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListHostedConfigurationVersionsCommandInput extends ListHostedConfigurationVersionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListHostedConfigurationVersionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListHostedConfigurationVersionsCommandOutput extends HostedConfigurationVersions, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists configurations stored in the AppConfig hosted configuration store by
|
|
18
23
|
* version.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListHostedConfigurationVersionsCommandOutput extends HostedConf
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListHostedConfigurationVersionsCommandInput - {@link ListHostedConfigurationVersionsCommandInput}
|
|
35
|
+
* @returns {@link ListHostedConfigurationVersionsCommandOutput}
|
|
29
36
|
* @see {@link ListHostedConfigurationVersionsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListHostedConfigurationVersionsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface ListHostedConfigurationVersionsCommandOutput extends HostedConf
|
|
|
68
75
|
export declare class ListHostedConfigurationVersionsCommand extends $Command<ListHostedConfigurationVersionsCommandInput, ListHostedConfigurationVersionsCommandOutput, AppConfigClientResolvedConfig> {
|
|
69
76
|
readonly input: ListHostedConfigurationVersionsCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: ListHostedConfigurationVersionsCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListHostedConfigurationVersionsCommandInput, ListHostedConfigurationVersionsCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ResourceTags } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ResourceTags, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the list of key-value tags assigned to the resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ResourceTags, __Metada
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface ListTagsForResourceCommandOutput extends ResourceTags, __Metada
|
|
|
61
68
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppConfigClientResolvedConfig> {
|
|
62
69
|
readonly input: ListTagsForResourceCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: ListTagsForResourceCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { Deployment, StartDeploymentRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartDeploymentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartDeploymentCommandInput extends StartDeploymentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartDeploymentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartDeploymentCommandOutput extends Deployment, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts a deployment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StartDeploymentCommandOutput extends Deployment, __MetadataBear
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StartDeploymentCommandInput - {@link StartDeploymentCommandInput}
|
|
34
|
+
* @returns {@link StartDeploymentCommandOutput}
|
|
28
35
|
* @see {@link StartDeploymentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StartDeploymentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -91,11 +98,20 @@ export interface StartDeploymentCommandOutput extends Deployment, __MetadataBear
|
|
|
91
98
|
export declare class StartDeploymentCommand extends $Command<StartDeploymentCommandInput, StartDeploymentCommandOutput, AppConfigClientResolvedConfig> {
|
|
92
99
|
readonly input: StartDeploymentCommandInput;
|
|
93
100
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
101
|
+
/**
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
94
104
|
constructor(input: StartDeploymentCommandInput);
|
|
95
105
|
/**
|
|
96
106
|
* @internal
|
|
97
107
|
*/
|
|
98
108
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartDeploymentCommandInput, StartDeploymentCommandOutput>;
|
|
109
|
+
/**
|
|
110
|
+
* @internal
|
|
111
|
+
*/
|
|
99
112
|
private serialize;
|
|
113
|
+
/**
|
|
114
|
+
* @internal
|
|
115
|
+
*/
|
|
100
116
|
private deserialize;
|
|
101
117
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { Deployment, StopDeploymentRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StopDeploymentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StopDeploymentCommandInput extends StopDeploymentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StopDeploymentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StopDeploymentCommandOutput extends Deployment, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Stops a deployment. This API action works only on deployments that have a status of
|
|
18
23
|
* <code>DEPLOYING</code>. This action moves the deployment to a status of
|
|
19
24
|
* <code>ROLLED_BACK</code>.</p>
|
|
@@ -27,6 +32,8 @@ export interface StopDeploymentCommandOutput extends Deployment, __MetadataBeare
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param StopDeploymentCommandInput - {@link StopDeploymentCommandInput}
|
|
36
|
+
* @returns {@link StopDeploymentCommandOutput}
|
|
30
37
|
* @see {@link StopDeploymentCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link StopDeploymentCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface StopDeploymentCommandOutput extends Deployment, __MetadataBeare
|
|
|
67
74
|
export declare class StopDeploymentCommand extends $Command<StopDeploymentCommandInput, StopDeploymentCommandOutput, AppConfigClientResolvedConfig> {
|
|
68
75
|
readonly input: StopDeploymentCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: StopDeploymentCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopDeploymentCommandInput, StopDeploymentCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { TagResourceRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Assigns metadata to an AppConfig resource. Tags help organize and categorize
|
|
18
23
|
* your AppConfig resources. Each tag consists of a key and an optional value, both
|
|
19
24
|
* of which you define. You can specify a maximum of 50 tags for a resource.</p>
|
|
@@ -27,6 +32,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
36
|
+
* @returns {@link TagResourceCommandOutput}
|
|
30
37
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
59
66
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AppConfigClientResolvedConfig> {
|
|
60
67
|
readonly input: TagResourceCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: TagResourceCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { UntagResourceRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a tag key and value from an AppConfig resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
57
64
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AppConfigClientResolvedConfig> {
|
|
58
65
|
readonly input: UntagResourceCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: UntagResourceCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { Application, UpdateApplicationRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateApplicationCommandInput extends UpdateApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateApplicationCommandOutput extends Application, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateApplicationCommandOutput extends Application, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateApplicationCommandInput - {@link UpdateApplicationCommandInput}
|
|
34
|
+
* @returns {@link UpdateApplicationCommandOutput}
|
|
28
35
|
* @see {@link UpdateApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface UpdateApplicationCommandOutput extends Application, __MetadataB
|
|
|
63
70
|
export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, AppConfigClientResolvedConfig> {
|
|
64
71
|
readonly input: UpdateApplicationCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: UpdateApplicationCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { ConfigurationProfile, UpdateConfigurationProfileRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateConfigurationProfileCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateConfigurationProfileCommandInput extends UpdateConfigurationProfileRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateConfigurationProfileCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateConfigurationProfileCommandOutput extends ConfigurationProfile, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a configuration profile.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateConfigurationProfileCommandOutput extends ConfigurationPr
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateConfigurationProfileCommandInput - {@link UpdateConfigurationProfileCommandInput}
|
|
34
|
+
* @returns {@link UpdateConfigurationProfileCommandOutput}
|
|
28
35
|
* @see {@link UpdateConfigurationProfileCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateConfigurationProfileCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface UpdateConfigurationProfileCommandOutput extends ConfigurationPr
|
|
|
66
73
|
export declare class UpdateConfigurationProfileCommand extends $Command<UpdateConfigurationProfileCommandInput, UpdateConfigurationProfileCommandOutput, AppConfigClientResolvedConfig> {
|
|
67
74
|
readonly input: UpdateConfigurationProfileCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: UpdateConfigurationProfileCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateConfigurationProfileCommandInput, UpdateConfigurationProfileCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
74
87
|
private serialize;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
75
91
|
private deserialize;
|
|
76
92
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { DeploymentStrategy, UpdateDeploymentStrategyRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateDeploymentStrategyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateDeploymentStrategyCommandInput extends UpdateDeploymentStrategyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateDeploymentStrategyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateDeploymentStrategyCommandOutput extends DeploymentStrategy, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a deployment strategy.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateDeploymentStrategyCommandOutput extends DeploymentStrateg
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateDeploymentStrategyCommandInput - {@link UpdateDeploymentStrategyCommandInput}
|
|
34
|
+
* @returns {@link UpdateDeploymentStrategyCommandOutput}
|
|
28
35
|
* @see {@link UpdateDeploymentStrategyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateDeploymentStrategyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface UpdateDeploymentStrategyCommandOutput extends DeploymentStrateg
|
|
|
67
74
|
export declare class UpdateDeploymentStrategyCommand extends $Command<UpdateDeploymentStrategyCommandInput, UpdateDeploymentStrategyCommandOutput, AppConfigClientResolvedConfig> {
|
|
68
75
|
readonly input: UpdateDeploymentStrategyCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: UpdateDeploymentStrategyCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDeploymentStrategyCommandInput, UpdateDeploymentStrategyCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { Environment, UpdateEnvironmentRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateEnvironmentCommandInput extends UpdateEnvironmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateEnvironmentCommandOutput extends Environment, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an environment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateEnvironmentCommandOutput extends Environment, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateEnvironmentCommandInput - {@link UpdateEnvironmentCommandInput}
|
|
34
|
+
* @returns {@link UpdateEnvironmentCommandOutput}
|
|
28
35
|
* @see {@link UpdateEnvironmentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateEnvironmentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface UpdateEnvironmentCommandOutput extends Environment, __MetadataB
|
|
|
65
72
|
export declare class UpdateEnvironmentCommand extends $Command<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, AppConfigClientResolvedConfig> {
|
|
66
73
|
readonly input: UpdateEnvironmentCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: UpdateEnvironmentCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { ExtensionAssociation, UpdateExtensionAssociationRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateExtensionAssociationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateExtensionAssociationCommandInput extends UpdateExtensionAssociationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateExtensionAssociationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateExtensionAssociationCommandOutput extends ExtensionAssociation, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an association. For more information about extensions and associations, see
|
|
18
23
|
* <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
|
|
19
24
|
* AppConfig extensions</a> in the
|
|
@@ -28,6 +33,8 @@ export interface UpdateExtensionAssociationCommandOutput extends ExtensionAssoci
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param UpdateExtensionAssociationCommandInput - {@link UpdateExtensionAssociationCommandInput}
|
|
37
|
+
* @returns {@link UpdateExtensionAssociationCommandOutput}
|
|
31
38
|
* @see {@link UpdateExtensionAssociationCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link UpdateExtensionAssociationCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UpdateExtensionAssociationCommandOutput extends ExtensionAssoci
|
|
|
46
53
|
export declare class UpdateExtensionAssociationCommand extends $Command<UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput, AppConfigClientResolvedConfig> {
|
|
47
54
|
readonly input: UpdateExtensionAssociationCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UpdateExtensionAssociationCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { Extension, UpdateExtensionRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateExtensionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateExtensionCommandInput extends UpdateExtensionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateExtensionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateExtensionCommandOutput extends Extension, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an AppConfig extension. For more information about extensions, see
|
|
18
23
|
* <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
|
|
19
24
|
* AppConfig extensions</a> in the
|
|
@@ -28,6 +33,8 @@ export interface UpdateExtensionCommandOutput extends Extension, __MetadataBeare
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param UpdateExtensionCommandInput - {@link UpdateExtensionCommandInput}
|
|
37
|
+
* @returns {@link UpdateExtensionCommandOutput}
|
|
31
38
|
* @see {@link UpdateExtensionCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link UpdateExtensionCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface UpdateExtensionCommandOutput extends Extension, __MetadataBeare
|
|
|
50
57
|
export declare class UpdateExtensionCommand extends $Command<UpdateExtensionCommandInput, UpdateExtensionCommandOutput, AppConfigClientResolvedConfig> {
|
|
51
58
|
readonly input: UpdateExtensionCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: UpdateExtensionCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateExtensionCommandInput, UpdateExtensionCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { ValidateConfigurationRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ValidateConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ValidateConfigurationCommandInput extends ValidateConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ValidateConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ValidateConfigurationCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Uses the validators in a configuration profile to validate a configuration.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ValidateConfigurationCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ValidateConfigurationCommandInput - {@link ValidateConfigurationCommandInput}
|
|
34
|
+
* @returns {@link ValidateConfigurationCommandOutput}
|
|
28
35
|
* @see {@link ValidateConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ValidateConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface ValidateConfigurationCommandOutput extends __MetadataBearer {
|
|
|
56
63
|
export declare class ValidateConfigurationCommand extends $Command<ValidateConfigurationCommandInput, ValidateConfigurationCommandOutput, AppConfigClientResolvedConfig> {
|
|
57
64
|
readonly input: ValidateConfigurationCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: ValidateConfigurationCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ValidateConfigurationCommandInput, ValidateConfigurationCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|