@aws-sdk/client-ecs 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/ECS.d.ts +57 -0
- package/dist-types/ECSClient.d.ts +24 -4
- package/dist-types/commands/CreateCapacityProviderCommand.d.ts +16 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +16 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
- package/dist-types/commands/CreateTaskSetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAccountSettingCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAttributesCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +16 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +16 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTaskSetCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCapacityProvidersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeClustersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeContainerInstancesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeServicesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTaskSetsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTasksCommand.d.ts +16 -0
- package/dist-types/commands/DiscoverPollEndpointCommand.d.ts +16 -0
- package/dist-types/commands/ExecuteCommandCommand.d.ts +16 -0
- package/dist-types/commands/GetTaskProtectionCommand.d.ts +16 -0
- package/dist-types/commands/ListAccountSettingsCommand.d.ts +16 -0
- package/dist-types/commands/ListAttributesCommand.d.ts +16 -0
- package/dist-types/commands/ListClustersCommand.d.ts +16 -0
- package/dist-types/commands/ListContainerInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesByNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTaskDefinitionFamiliesCommand.d.ts +16 -0
- package/dist-types/commands/ListTaskDefinitionsCommand.d.ts +16 -0
- package/dist-types/commands/ListTasksCommand.d.ts +16 -0
- package/dist-types/commands/PutAccountSettingCommand.d.ts +16 -0
- package/dist-types/commands/PutAccountSettingDefaultCommand.d.ts +16 -0
- package/dist-types/commands/PutAttributesCommand.d.ts +16 -0
- package/dist-types/commands/PutClusterCapacityProvidersCommand.d.ts +16 -0
- package/dist-types/commands/RegisterContainerInstanceCommand.d.ts +16 -0
- package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/RunTaskCommand.d.ts +16 -0
- package/dist-types/commands/StartTaskCommand.d.ts +16 -0
- package/dist-types/commands/StopTaskCommand.d.ts +16 -0
- package/dist-types/commands/SubmitAttachmentStateChangesCommand.d.ts +16 -0
- package/dist-types/commands/SubmitContainerStateChangeCommand.d.ts +16 -0
- package/dist-types/commands/SubmitTaskStateChangeCommand.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/UpdateCapacityProviderCommand.d.ts +16 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +16 -0
- package/dist-types/commands/UpdateClusterSettingsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateContainerAgentCommand.d.ts +16 -0
- package/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +16 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateServicePrimaryTaskSetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTaskProtectionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTaskSetCommand.d.ts +16 -0
- package/dist-types/models/ECSServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +631 -8
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAccountSettingsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAttributesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListClustersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListContainerInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListServicesByNamespacePaginator.d.ts +3 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTaskDefinitionFamiliesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTaskDefinitionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTasksPaginator.d.ts +3 -0
- package/package.json +30 -30
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DescribeContainerInstancesRequest, DescribeContainerInstancesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeContainerInstancesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeContainerInstancesCommandInput extends DescribeContainerInstancesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeContainerInstancesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeContainerInstancesCommandOutput extends DescribeContainerInstancesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes one or more container instances. Returns metadata about each container
|
|
18
23
|
* instance requested.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeContainerInstancesCommandOutput extends DescribeContain
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeContainerInstancesCommandInput - {@link DescribeContainerInstancesCommandInput}
|
|
35
|
+
* @returns {@link DescribeContainerInstancesCommandOutput}
|
|
29
36
|
* @see {@link DescribeContainerInstancesCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeContainerInstancesCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -138,11 +145,20 @@ export interface DescribeContainerInstancesCommandOutput extends DescribeContain
|
|
|
138
145
|
export declare class DescribeContainerInstancesCommand extends $Command<DescribeContainerInstancesCommandInput, DescribeContainerInstancesCommandOutput, ECSClientResolvedConfig> {
|
|
139
146
|
readonly input: DescribeContainerInstancesCommandInput;
|
|
140
147
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
148
|
+
/**
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
141
151
|
constructor(input: DescribeContainerInstancesCommandInput);
|
|
142
152
|
/**
|
|
143
153
|
* @internal
|
|
144
154
|
*/
|
|
145
155
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeContainerInstancesCommandInput, DescribeContainerInstancesCommandOutput>;
|
|
156
|
+
/**
|
|
157
|
+
* @internal
|
|
158
|
+
*/
|
|
146
159
|
private serialize;
|
|
160
|
+
/**
|
|
161
|
+
* @internal
|
|
162
|
+
*/
|
|
147
163
|
private deserialize;
|
|
148
164
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DescribeServicesRequest, DescribeServicesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeServicesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeServicesCommandInput extends DescribeServicesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeServicesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeServicesCommandOutput extends DescribeServicesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the specified services running in your cluster.</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 DescribeServicesCommandOutput extends DescribeServicesResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeServicesCommandInput - {@link DescribeServicesCommandInput}
|
|
34
|
+
* @returns {@link DescribeServicesCommandOutput}
|
|
28
35
|
* @see {@link DescribeServicesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeServicesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -104,11 +111,20 @@ export interface DescribeServicesCommandOutput extends DescribeServicesResponse,
|
|
|
104
111
|
export declare class DescribeServicesCommand extends $Command<DescribeServicesCommandInput, DescribeServicesCommandOutput, ECSClientResolvedConfig> {
|
|
105
112
|
readonly input: DescribeServicesCommandInput;
|
|
106
113
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
114
|
+
/**
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
107
117
|
constructor(input: DescribeServicesCommandInput);
|
|
108
118
|
/**
|
|
109
119
|
* @internal
|
|
110
120
|
*/
|
|
111
121
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeServicesCommandInput, DescribeServicesCommandOutput>;
|
|
122
|
+
/**
|
|
123
|
+
* @internal
|
|
124
|
+
*/
|
|
112
125
|
private serialize;
|
|
126
|
+
/**
|
|
127
|
+
* @internal
|
|
128
|
+
*/
|
|
113
129
|
private deserialize;
|
|
114
130
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DescribeTaskDefinitionRequest, DescribeTaskDefinitionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeTaskDefinitionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeTaskDefinitionCommandInput extends DescribeTaskDefinitionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeTaskDefinitionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeTaskDefinitionCommandOutput extends DescribeTaskDefinitionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes a task definition. You can specify a <code>family</code> and
|
|
18
23
|
* <code>revision</code> to find information about a specific task definition, or you
|
|
19
24
|
* can simply specify the family to find the latest <code>ACTIVE</code> revision in that
|
|
@@ -32,6 +37,8 @@ export interface DescribeTaskDefinitionCommandOutput extends DescribeTaskDefinit
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param DescribeTaskDefinitionCommandInput - {@link DescribeTaskDefinitionCommandInput}
|
|
41
|
+
* @returns {@link DescribeTaskDefinitionCommandOutput}
|
|
35
42
|
* @see {@link DescribeTaskDefinitionCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link DescribeTaskDefinitionCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -111,11 +118,20 @@ export interface DescribeTaskDefinitionCommandOutput extends DescribeTaskDefinit
|
|
|
111
118
|
export declare class DescribeTaskDefinitionCommand extends $Command<DescribeTaskDefinitionCommandInput, DescribeTaskDefinitionCommandOutput, ECSClientResolvedConfig> {
|
|
112
119
|
readonly input: DescribeTaskDefinitionCommandInput;
|
|
113
120
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
121
|
+
/**
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
114
124
|
constructor(input: DescribeTaskDefinitionCommandInput);
|
|
115
125
|
/**
|
|
116
126
|
* @internal
|
|
117
127
|
*/
|
|
118
128
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTaskDefinitionCommandInput, DescribeTaskDefinitionCommandOutput>;
|
|
129
|
+
/**
|
|
130
|
+
* @internal
|
|
131
|
+
*/
|
|
119
132
|
private serialize;
|
|
133
|
+
/**
|
|
134
|
+
* @internal
|
|
135
|
+
*/
|
|
120
136
|
private deserialize;
|
|
121
137
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DescribeTaskSetsRequest, DescribeTaskSetsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeTaskSetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeTaskSetsCommandInput extends DescribeTaskSetsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeTaskSetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeTaskSetsCommandOutput extends DescribeTaskSetsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the task sets in the specified cluster and service. This is used when a
|
|
18
23
|
* service uses the <code>EXTERNAL</code> deployment controller type. For more information,
|
|
19
24
|
* see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html">Amazon ECS Deployment
|
|
@@ -28,6 +33,8 @@ export interface DescribeTaskSetsCommandOutput extends DescribeTaskSetsResponse,
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DescribeTaskSetsCommandInput - {@link DescribeTaskSetsCommandInput}
|
|
37
|
+
* @returns {@link DescribeTaskSetsCommandOutput}
|
|
31
38
|
* @see {@link DescribeTaskSetsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DescribeTaskSetsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface DescribeTaskSetsCommandOutput extends DescribeTaskSetsResponse,
|
|
|
66
73
|
export declare class DescribeTaskSetsCommand extends $Command<DescribeTaskSetsCommandInput, DescribeTaskSetsCommandOutput, ECSClientResolvedConfig> {
|
|
67
74
|
readonly input: DescribeTaskSetsCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: DescribeTaskSetsCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTaskSetsCommandInput, DescribeTaskSetsCommandOutput>;
|
|
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 { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DescribeTasksRequest, DescribeTasksResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeTasksCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeTasksCommandInput extends DescribeTasksRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeTasksCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeTasksCommandOutput extends DescribeTasksResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes a specified task or tasks.</p>
|
|
18
23
|
* <p>Currently, stopped tasks appear in the returned results for at least one hour.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeTasksCommandOutput extends DescribeTasksResponse, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeTasksCommandInput - {@link DescribeTasksCommandInput}
|
|
35
|
+
* @returns {@link DescribeTasksCommandOutput}
|
|
29
36
|
* @see {@link DescribeTasksCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeTasksCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -101,11 +108,20 @@ export interface DescribeTasksCommandOutput extends DescribeTasksResponse, __Met
|
|
|
101
108
|
export declare class DescribeTasksCommand extends $Command<DescribeTasksCommandInput, DescribeTasksCommandOutput, ECSClientResolvedConfig> {
|
|
102
109
|
readonly input: DescribeTasksCommandInput;
|
|
103
110
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
104
114
|
constructor(input: DescribeTasksCommandInput);
|
|
105
115
|
/**
|
|
106
116
|
* @internal
|
|
107
117
|
*/
|
|
108
118
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTasksCommandInput, DescribeTasksCommandOutput>;
|
|
119
|
+
/**
|
|
120
|
+
* @internal
|
|
121
|
+
*/
|
|
109
122
|
private serialize;
|
|
123
|
+
/**
|
|
124
|
+
* @internal
|
|
125
|
+
*/
|
|
110
126
|
private deserialize;
|
|
111
127
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DiscoverPollEndpointRequest, DiscoverPollEndpointResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DiscoverPollEndpointCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DiscoverPollEndpointCommandInput extends DiscoverPollEndpointRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DiscoverPollEndpointCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DiscoverPollEndpointCommandOutput extends DiscoverPollEndpointResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <note>
|
|
18
23
|
* <p>This action is only used by the Amazon ECS agent, and it is not intended for use outside of the agent.</p>
|
|
19
24
|
* </note>
|
|
@@ -28,6 +33,8 @@ export interface DiscoverPollEndpointCommandOutput extends DiscoverPollEndpointR
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DiscoverPollEndpointCommandInput - {@link DiscoverPollEndpointCommandInput}
|
|
37
|
+
* @returns {@link DiscoverPollEndpointCommandOutput}
|
|
31
38
|
* @see {@link DiscoverPollEndpointCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DiscoverPollEndpointCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface DiscoverPollEndpointCommandOutput extends DiscoverPollEndpointR
|
|
|
45
52
|
export declare class DiscoverPollEndpointCommand extends $Command<DiscoverPollEndpointCommandInput, DiscoverPollEndpointCommandOutput, ECSClientResolvedConfig> {
|
|
46
53
|
readonly input: DiscoverPollEndpointCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: DiscoverPollEndpointCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DiscoverPollEndpointCommandInput, DiscoverPollEndpointCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ExecuteCommandRequest, ExecuteCommandResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ExecuteCommandCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ExecuteCommandCommandInput extends ExecuteCommandRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ExecuteCommandCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ExecuteCommandCommandOutput extends ExecuteCommandResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Runs a command remotely on a container within a task.</p>
|
|
18
23
|
* <p>If you use a condition key in your IAM policy to refine the conditions for the policy
|
|
19
24
|
* statement, for example limit the actions to a specific cluster, you receive an
|
|
@@ -31,6 +36,8 @@ export interface ExecuteCommandCommandOutput extends ExecuteCommandResponse, __M
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param ExecuteCommandCommandInput - {@link ExecuteCommandCommandInput}
|
|
40
|
+
* @returns {@link ExecuteCommandCommandOutput}
|
|
34
41
|
* @see {@link ExecuteCommandCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link ExecuteCommandCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -76,11 +83,20 @@ export interface ExecuteCommandCommandOutput extends ExecuteCommandResponse, __M
|
|
|
76
83
|
export declare class ExecuteCommandCommand extends $Command<ExecuteCommandCommandInput, ExecuteCommandCommandOutput, ECSClientResolvedConfig> {
|
|
77
84
|
readonly input: ExecuteCommandCommandInput;
|
|
78
85
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
79
89
|
constructor(input: ExecuteCommandCommandInput);
|
|
80
90
|
/**
|
|
81
91
|
* @internal
|
|
82
92
|
*/
|
|
83
93
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExecuteCommandCommandInput, ExecuteCommandCommandOutput>;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
84
97
|
private serialize;
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
85
101
|
private deserialize;
|
|
86
102
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { GetTaskProtectionRequest, GetTaskProtectionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetTaskProtectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetTaskProtectionCommandInput extends GetTaskProtectionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetTaskProtectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetTaskProtectionCommandOutput extends GetTaskProtectionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the protection status of tasks in an Amazon ECS service.</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 GetTaskProtectionCommandOutput extends GetTaskProtectionRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetTaskProtectionCommandInput - {@link GetTaskProtectionCommandInput}
|
|
34
|
+
* @returns {@link GetTaskProtectionCommandOutput}
|
|
28
35
|
* @see {@link GetTaskProtectionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetTaskProtectionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -84,11 +91,20 @@ export interface GetTaskProtectionCommandOutput extends GetTaskProtectionRespons
|
|
|
84
91
|
export declare class GetTaskProtectionCommand extends $Command<GetTaskProtectionCommandInput, GetTaskProtectionCommandOutput, ECSClientResolvedConfig> {
|
|
85
92
|
readonly input: GetTaskProtectionCommandInput;
|
|
86
93
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
87
97
|
constructor(input: GetTaskProtectionCommandInput);
|
|
88
98
|
/**
|
|
89
99
|
* @internal
|
|
90
100
|
*/
|
|
91
101
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTaskProtectionCommandInput, GetTaskProtectionCommandOutput>;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
92
105
|
private serialize;
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
93
109
|
private deserialize;
|
|
94
110
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListAccountSettingsRequest, ListAccountSettingsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAccountSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAccountSettingsCommandInput extends ListAccountSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAccountSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAccountSettingsCommandOutput extends ListAccountSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the account settings for a specified principal.</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 ListAccountSettingsCommandOutput extends ListAccountSettingsRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListAccountSettingsCommandInput - {@link ListAccountSettingsCommandInput}
|
|
34
|
+
* @returns {@link ListAccountSettingsCommandOutput}
|
|
28
35
|
* @see {@link ListAccountSettingsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListAccountSettingsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -111,11 +118,20 @@ export interface ListAccountSettingsCommandOutput extends ListAccountSettingsRes
|
|
|
111
118
|
export declare class ListAccountSettingsCommand extends $Command<ListAccountSettingsCommandInput, ListAccountSettingsCommandOutput, ECSClientResolvedConfig> {
|
|
112
119
|
readonly input: ListAccountSettingsCommandInput;
|
|
113
120
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
121
|
+
/**
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
114
124
|
constructor(input: ListAccountSettingsCommandInput);
|
|
115
125
|
/**
|
|
116
126
|
* @internal
|
|
117
127
|
*/
|
|
118
128
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAccountSettingsCommandInput, ListAccountSettingsCommandOutput>;
|
|
129
|
+
/**
|
|
130
|
+
* @internal
|
|
131
|
+
*/
|
|
119
132
|
private serialize;
|
|
133
|
+
/**
|
|
134
|
+
* @internal
|
|
135
|
+
*/
|
|
120
136
|
private deserialize;
|
|
121
137
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListAttributesRequest, ListAttributesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAttributesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAttributesCommandInput extends ListAttributesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAttributesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAttributesCommandOutput extends ListAttributesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the attributes for Amazon ECS resources within a specified target type and cluster.
|
|
18
23
|
* When you specify a target type and cluster, <code>ListAttributes</code> returns a list
|
|
19
24
|
* of attribute objects, one for each attribute on each resource. You can filter the list
|
|
@@ -31,6 +36,8 @@ export interface ListAttributesCommandOutput extends ListAttributesResponse, __M
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param ListAttributesCommandInput - {@link ListAttributesCommandInput}
|
|
40
|
+
* @returns {@link ListAttributesCommandOutput}
|
|
34
41
|
* @see {@link ListAttributesCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link ListAttributesCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface ListAttributesCommandOutput extends ListAttributesResponse, __M
|
|
|
47
54
|
export declare class ListAttributesCommand extends $Command<ListAttributesCommandInput, ListAttributesCommandOutput, ECSClientResolvedConfig> {
|
|
48
55
|
readonly input: ListAttributesCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: ListAttributesCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAttributesCommandInput, ListAttributesCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListClustersRequest, ListClustersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListClustersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListClustersCommandInput extends ListClustersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListClustersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListClustersCommandOutput extends ListClustersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of existing clusters.</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 ListClustersCommandOutput extends ListClustersResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListClustersCommandInput - {@link ListClustersCommandInput}
|
|
34
|
+
* @returns {@link ListClustersCommandOutput}
|
|
28
35
|
* @see {@link ListClustersCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListClustersCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
|
|
|
63
70
|
export declare class ListClustersCommand extends $Command<ListClustersCommandInput, ListClustersCommandOutput, ECSClientResolvedConfig> {
|
|
64
71
|
readonly input: ListClustersCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: ListClustersCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListClustersCommandInput, ListClustersCommandOutput>;
|
|
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 { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListContainerInstancesRequest, ListContainerInstancesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListContainerInstancesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListContainerInstancesCommandInput extends ListContainerInstancesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListContainerInstancesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListContainerInstancesCommandOutput extends ListContainerInstancesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of container instances in a specified cluster. You can filter the
|
|
18
23
|
* results of a <code>ListContainerInstances</code> operation with cluster query language
|
|
19
24
|
* statements inside the <code>filter</code> parameter. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html">Cluster Query Language</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListContainerInstancesCommandOutput extends ListContainerInstan
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListContainerInstancesCommandInput - {@link ListContainerInstancesCommandInput}
|
|
36
|
+
* @returns {@link ListContainerInstancesCommandOutput}
|
|
30
37
|
* @see {@link ListContainerInstancesCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListContainerInstancesCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -70,11 +77,20 @@ export interface ListContainerInstancesCommandOutput extends ListContainerInstan
|
|
|
70
77
|
export declare class ListContainerInstancesCommand extends $Command<ListContainerInstancesCommandInput, ListContainerInstancesCommandOutput, ECSClientResolvedConfig> {
|
|
71
78
|
readonly input: ListContainerInstancesCommandInput;
|
|
72
79
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
73
83
|
constructor(input: ListContainerInstancesCommandInput);
|
|
74
84
|
/**
|
|
75
85
|
* @internal
|
|
76
86
|
*/
|
|
77
87
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListContainerInstancesCommandInput, ListContainerInstancesCommandOutput>;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
78
91
|
private serialize;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
79
95
|
private deserialize;
|
|
80
96
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListServicesByNamespaceRequest, ListServicesByNamespaceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListServicesByNamespaceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListServicesByNamespaceCommandInput extends ListServicesByNamespaceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListServicesByNamespaceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListServicesByNamespaceCommandOutput extends ListServicesByNamespaceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation lists all of the services that are associated with a Cloud Map
|
|
18
23
|
* namespace. This list might include services in different clusters. In contrast,
|
|
19
24
|
* <code>ListServices</code> can only list services in one cluster at a time. If you
|
|
@@ -29,6 +34,8 @@ export interface ListServicesByNamespaceCommandOutput extends ListServicesByName
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param ListServicesByNamespaceCommandInput - {@link ListServicesByNamespaceCommandInput}
|
|
38
|
+
* @returns {@link ListServicesByNamespaceCommandOutput}
|
|
32
39
|
* @see {@link ListServicesByNamespaceCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link ListServicesByNamespaceCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface ListServicesByNamespaceCommandOutput extends ListServicesByName
|
|
|
53
60
|
export declare class ListServicesByNamespaceCommand extends $Command<ListServicesByNamespaceCommandInput, ListServicesByNamespaceCommandOutput, ECSClientResolvedConfig> {
|
|
54
61
|
readonly input: ListServicesByNamespaceCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: ListServicesByNamespaceCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListServicesByNamespaceCommandInput, ListServicesByNamespaceCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|