@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 { Deployment, GetDeploymentRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDeploymentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDeploymentCommandInput extends GetDeploymentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDeploymentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDeploymentCommandOutput extends Deployment, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves information about a configuration 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 GetDeploymentCommandOutput extends Deployment, __MetadataBearer
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetDeploymentCommandInput - {@link GetDeploymentCommandInput}
|
|
34
|
+
* @returns {@link GetDeploymentCommandOutput}
|
|
28
35
|
* @see {@link GetDeploymentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetDeploymentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -120,11 +127,20 @@ export interface GetDeploymentCommandOutput extends Deployment, __MetadataBearer
|
|
|
120
127
|
export declare class GetDeploymentCommand extends $Command<GetDeploymentCommandInput, GetDeploymentCommandOutput, AppConfigClientResolvedConfig> {
|
|
121
128
|
readonly input: GetDeploymentCommandInput;
|
|
122
129
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
123
133
|
constructor(input: GetDeploymentCommandInput);
|
|
124
134
|
/**
|
|
125
135
|
* @internal
|
|
126
136
|
*/
|
|
127
137
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDeploymentCommandInput, GetDeploymentCommandOutput>;
|
|
138
|
+
/**
|
|
139
|
+
* @internal
|
|
140
|
+
*/
|
|
128
141
|
private serialize;
|
|
142
|
+
/**
|
|
143
|
+
* @internal
|
|
144
|
+
*/
|
|
129
145
|
private deserialize;
|
|
130
146
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { DeploymentStrategy, GetDeploymentStrategyRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDeploymentStrategyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDeploymentStrategyCommandInput extends GetDeploymentStrategyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDeploymentStrategyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDeploymentStrategyCommandOutput extends DeploymentStrategy, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves information about a deployment strategy. A deployment strategy defines
|
|
18
23
|
* important criteria for rolling out your configuration to the designated targets. A
|
|
19
24
|
* deployment strategy includes the overall duration required, a percentage of targets to
|
|
@@ -29,6 +34,8 @@ export interface GetDeploymentStrategyCommandOutput extends DeploymentStrategy,
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param GetDeploymentStrategyCommandInput - {@link GetDeploymentStrategyCommandInput}
|
|
38
|
+
* @returns {@link GetDeploymentStrategyCommandOutput}
|
|
32
39
|
* @see {@link GetDeploymentStrategyCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link GetDeploymentStrategyCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -69,11 +76,20 @@ export interface GetDeploymentStrategyCommandOutput extends DeploymentStrategy,
|
|
|
69
76
|
export declare class GetDeploymentStrategyCommand extends $Command<GetDeploymentStrategyCommandInput, GetDeploymentStrategyCommandOutput, AppConfigClientResolvedConfig> {
|
|
70
77
|
readonly input: GetDeploymentStrategyCommandInput;
|
|
71
78
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
72
82
|
constructor(input: GetDeploymentStrategyCommandInput);
|
|
73
83
|
/**
|
|
74
84
|
* @internal
|
|
75
85
|
*/
|
|
76
86
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDeploymentStrategyCommandInput, GetDeploymentStrategyCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
77
90
|
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
78
94
|
private deserialize;
|
|
79
95
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { Environment, GetEnvironmentRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetEnvironmentCommandOutput extends Environment, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves information about an environment. An environment is a deployment group of
|
|
18
23
|
* AppConfig applications, such as applications in a <code>Production</code>
|
|
19
24
|
* environment or in an <code>EU_Region</code> environment. Each configuration deployment
|
|
@@ -30,6 +35,8 @@ export interface GetEnvironmentCommandOutput extends Environment, __MetadataBear
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param GetEnvironmentCommandInput - {@link GetEnvironmentCommandInput}
|
|
39
|
+
* @returns {@link GetEnvironmentCommandOutput}
|
|
33
40
|
* @see {@link GetEnvironmentCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link GetEnvironmentCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface GetEnvironmentCommandOutput extends Environment, __MetadataBear
|
|
|
68
75
|
export declare class GetEnvironmentCommand extends $Command<GetEnvironmentCommandInput, GetEnvironmentCommandOutput, AppConfigClientResolvedConfig> {
|
|
69
76
|
readonly input: GetEnvironmentCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: GetEnvironmentCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEnvironmentCommandInput, GetEnvironmentCommandOutput>;
|
|
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 { ExtensionAssociation, GetExtensionAssociationRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetExtensionAssociationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetExtensionAssociationCommandInput extends GetExtensionAssociationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetExtensionAssociationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetExtensionAssociationCommandOutput extends ExtensionAssociation, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about an AppConfig extension association. For more
|
|
18
23
|
* information about extensions and associations, see <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 GetExtensionAssociationCommandOutput extends ExtensionAssociati
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param GetExtensionAssociationCommandInput - {@link GetExtensionAssociationCommandInput}
|
|
37
|
+
* @returns {@link GetExtensionAssociationCommandOutput}
|
|
31
38
|
* @see {@link GetExtensionAssociationCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link GetExtensionAssociationCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetExtensionAssociationCommandOutput extends ExtensionAssociati
|
|
|
46
53
|
export declare class GetExtensionAssociationCommand extends $Command<GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput, AppConfigClientResolvedConfig> {
|
|
47
54
|
readonly input: GetExtensionAssociationCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetExtensionAssociationCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput>;
|
|
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, GetExtensionRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetExtensionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetExtensionCommandInput extends GetExtensionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetExtensionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetExtensionCommandOutput extends Extension, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about an AppConfig extension.</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 GetExtensionCommandOutput extends Extension, __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetExtensionCommandInput - {@link GetExtensionCommandInput}
|
|
34
|
+
* @returns {@link GetExtensionCommandOutput}
|
|
28
35
|
* @see {@link GetExtensionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetExtensionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetExtensionCommandOutput extends Extension, __MetadataBearer {
|
|
|
43
50
|
export declare class GetExtensionCommand extends $Command<GetExtensionCommandInput, GetExtensionCommandOutput, AppConfigClientResolvedConfig> {
|
|
44
51
|
readonly input: GetExtensionCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetExtensionCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetExtensionCommandInput, GetExtensionCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { GetHostedConfigurationVersionRequest, HostedConfigurationVersion } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetHostedConfigurationVersionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetHostedConfigurationVersionCommandInput extends GetHostedConfigurationVersionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetHostedConfigurationVersionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetHostedConfigurationVersionCommandOutput extends HostedConfigurationVersion, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves information about a specific configuration version.</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 GetHostedConfigurationVersionCommandOutput extends HostedConfig
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetHostedConfigurationVersionCommandInput - {@link GetHostedConfigurationVersionCommandInput}
|
|
34
|
+
* @returns {@link GetHostedConfigurationVersionCommandOutput}
|
|
28
35
|
* @see {@link GetHostedConfigurationVersionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetHostedConfigurationVersionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -64,11 +71,20 @@ export interface GetHostedConfigurationVersionCommandOutput extends HostedConfig
|
|
|
64
71
|
export declare class GetHostedConfigurationVersionCommand extends $Command<GetHostedConfigurationVersionCommandInput, GetHostedConfigurationVersionCommandOutput, AppConfigClientResolvedConfig> {
|
|
65
72
|
readonly input: GetHostedConfigurationVersionCommandInput;
|
|
66
73
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
67
77
|
constructor(input: GetHostedConfigurationVersionCommandInput);
|
|
68
78
|
/**
|
|
69
79
|
* @internal
|
|
70
80
|
*/
|
|
71
81
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetHostedConfigurationVersionCommandInput, GetHostedConfigurationVersionCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
72
85
|
private serialize;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
73
89
|
private deserialize;
|
|
74
90
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { Applications, ListApplicationsRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListApplicationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListApplicationsCommandInput extends ListApplicationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListApplicationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListApplicationsCommandOutput extends Applications, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all applications in your Amazon Web Services account.</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 ListApplicationsCommandOutput extends Applications, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListApplicationsCommandInput - {@link ListApplicationsCommandInput}
|
|
34
|
+
* @returns {@link ListApplicationsCommandOutput}
|
|
28
35
|
* @see {@link ListApplicationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListApplicationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -64,11 +71,20 @@ export interface ListApplicationsCommandOutput extends Applications, __MetadataB
|
|
|
64
71
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, AppConfigClientResolvedConfig> {
|
|
65
72
|
readonly input: ListApplicationsCommandInput;
|
|
66
73
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
67
77
|
constructor(input: ListApplicationsCommandInput);
|
|
68
78
|
/**
|
|
69
79
|
* @internal
|
|
70
80
|
*/
|
|
71
81
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
72
85
|
private serialize;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
73
89
|
private deserialize;
|
|
74
90
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { ConfigurationProfiles, ListConfigurationProfilesRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListConfigurationProfilesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListConfigurationProfilesCommandInput extends ListConfigurationProfilesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListConfigurationProfilesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListConfigurationProfilesCommandOutput extends ConfigurationProfiles, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the configuration profiles for 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 ListConfigurationProfilesCommandOutput extends ConfigurationPro
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListConfigurationProfilesCommandInput - {@link ListConfigurationProfilesCommandInput}
|
|
34
|
+
* @returns {@link ListConfigurationProfilesCommandOutput}
|
|
28
35
|
* @see {@link ListConfigurationProfilesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListConfigurationProfilesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface ListConfigurationProfilesCommandOutput extends ConfigurationPro
|
|
|
66
73
|
export declare class ListConfigurationProfilesCommand extends $Command<ListConfigurationProfilesCommandInput, ListConfigurationProfilesCommandOutput, AppConfigClientResolvedConfig> {
|
|
67
74
|
readonly input: ListConfigurationProfilesCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: ListConfigurationProfilesCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConfigurationProfilesCommandInput, ListConfigurationProfilesCommandOutput>;
|
|
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 { DeploymentStrategies, ListDeploymentStrategiesRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListDeploymentStrategiesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListDeploymentStrategiesCommandInput extends ListDeploymentStrategiesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListDeploymentStrategiesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListDeploymentStrategiesCommandOutput extends DeploymentStrategies, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists deployment strategies.</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 ListDeploymentStrategiesCommandOutput extends DeploymentStrateg
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListDeploymentStrategiesCommandInput - {@link ListDeploymentStrategiesCommandInput}
|
|
34
|
+
* @returns {@link ListDeploymentStrategiesCommandOutput}
|
|
28
35
|
* @see {@link ListDeploymentStrategiesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListDeploymentStrategiesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -64,11 +71,20 @@ export interface ListDeploymentStrategiesCommandOutput extends DeploymentStrateg
|
|
|
64
71
|
export declare class ListDeploymentStrategiesCommand extends $Command<ListDeploymentStrategiesCommandInput, ListDeploymentStrategiesCommandOutput, AppConfigClientResolvedConfig> {
|
|
65
72
|
readonly input: ListDeploymentStrategiesCommandInput;
|
|
66
73
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
67
77
|
constructor(input: ListDeploymentStrategiesCommandInput);
|
|
68
78
|
/**
|
|
69
79
|
* @internal
|
|
70
80
|
*/
|
|
71
81
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDeploymentStrategiesCommandInput, ListDeploymentStrategiesCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
72
85
|
private serialize;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
73
89
|
private deserialize;
|
|
74
90
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { Deployments, ListDeploymentsRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListDeploymentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListDeploymentsCommandInput extends ListDeploymentsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListDeploymentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListDeploymentsCommandOutput extends Deployments, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the deployments for an environment in descending deployment number order.</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 ListDeploymentsCommandOutput extends Deployments, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListDeploymentsCommandInput - {@link ListDeploymentsCommandInput}
|
|
34
|
+
* @returns {@link ListDeploymentsCommandOutput}
|
|
28
35
|
* @see {@link ListDeploymentsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListDeploymentsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -74,11 +81,20 @@ export interface ListDeploymentsCommandOutput extends Deployments, __MetadataBea
|
|
|
74
81
|
export declare class ListDeploymentsCommand extends $Command<ListDeploymentsCommandInput, ListDeploymentsCommandOutput, AppConfigClientResolvedConfig> {
|
|
75
82
|
readonly input: ListDeploymentsCommandInput;
|
|
76
83
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
77
87
|
constructor(input: ListDeploymentsCommandInput);
|
|
78
88
|
/**
|
|
79
89
|
* @internal
|
|
80
90
|
*/
|
|
81
91
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDeploymentsCommandInput, ListDeploymentsCommandOutput>;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
82
95
|
private serialize;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
83
99
|
private deserialize;
|
|
84
100
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { Environments, ListEnvironmentsRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListEnvironmentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListEnvironmentsCommandInput extends ListEnvironmentsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListEnvironmentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListEnvironmentsCommandOutput extends Environments, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the environments for 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 ListEnvironmentsCommandOutput extends Environments, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListEnvironmentsCommandInput - {@link ListEnvironmentsCommandInput}
|
|
34
|
+
* @returns {@link ListEnvironmentsCommandOutput}
|
|
28
35
|
* @see {@link ListEnvironmentsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListEnvironmentsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface ListEnvironmentsCommandOutput extends Environments, __MetadataB
|
|
|
66
73
|
export declare class ListEnvironmentsCommand extends $Command<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput, AppConfigClientResolvedConfig> {
|
|
67
74
|
readonly input: ListEnvironmentsCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: ListEnvironmentsCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput>;
|
|
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 { ExtensionAssociations, ListExtensionAssociationsRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListExtensionAssociationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListExtensionAssociationsCommandInput extends ListExtensionAssociationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListExtensionAssociationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListExtensionAssociationsCommandOutput extends ExtensionAssociations, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all AppConfig extension associations in the account. For more
|
|
18
23
|
* information about extensions and associations, see <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 ListExtensionAssociationsCommandOutput extends ExtensionAssocia
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param ListExtensionAssociationsCommandInput - {@link ListExtensionAssociationsCommandInput}
|
|
37
|
+
* @returns {@link ListExtensionAssociationsCommandOutput}
|
|
31
38
|
* @see {@link ListExtensionAssociationsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link ListExtensionAssociationsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListExtensionAssociationsCommandOutput extends ExtensionAssocia
|
|
|
43
50
|
export declare class ListExtensionAssociationsCommand extends $Command<ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput, AppConfigClientResolvedConfig> {
|
|
44
51
|
readonly input: ListExtensionAssociationsCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListExtensionAssociationsCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
|
|
5
5
|
import { Extensions, ListExtensionsRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListExtensionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListExtensionsCommandInput extends ListExtensionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListExtensionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListExtensionsCommandOutput extends Extensions, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all custom and Amazon Web Services authored AppConfig extensions in the
|
|
18
23
|
* account. For more information about extensions, see <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 ListExtensionsCommandOutput extends Extensions, __MetadataBeare
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param ListExtensionsCommandInput - {@link ListExtensionsCommandInput}
|
|
37
|
+
* @returns {@link ListExtensionsCommandOutput}
|
|
31
38
|
* @see {@link ListExtensionsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link ListExtensionsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListExtensionsCommandOutput extends Extensions, __MetadataBeare
|
|
|
43
50
|
export declare class ListExtensionsCommand extends $Command<ListExtensionsCommandInput, ListExtensionsCommandOutput, AppConfigClientResolvedConfig> {
|
|
44
51
|
readonly input: ListExtensionsCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListExtensionsCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExtensionsCommandInput, ListExtensionsCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|