@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 { CreateServiceRequest, CreateServiceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateServiceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateServiceCommandInput extends CreateServiceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateServiceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateServiceCommandOutput extends CreateServiceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Runs and maintains your desired number of tasks from a specified task definition. If
|
|
18
23
|
* the number of tasks running in a service drops below the <code>desiredCount</code>,
|
|
19
24
|
* Amazon ECS runs another copy of the task in the specified cluster. To update an existing
|
|
@@ -101,6 +106,8 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
|
|
|
101
106
|
* const response = await client.send(command);
|
|
102
107
|
* ```
|
|
103
108
|
*
|
|
109
|
+
* @param CreateServiceCommandInput - {@link CreateServiceCommandInput}
|
|
110
|
+
* @returns {@link CreateServiceCommandOutput}
|
|
104
111
|
* @see {@link CreateServiceCommandInput} for command's `input` shape.
|
|
105
112
|
* @see {@link CreateServiceCommandOutput} for command's `response` shape.
|
|
106
113
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -258,11 +265,20 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
|
|
|
258
265
|
export declare class CreateServiceCommand extends $Command<CreateServiceCommandInput, CreateServiceCommandOutput, ECSClientResolvedConfig> {
|
|
259
266
|
readonly input: CreateServiceCommandInput;
|
|
260
267
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
268
|
+
/**
|
|
269
|
+
* @public
|
|
270
|
+
*/
|
|
261
271
|
constructor(input: CreateServiceCommandInput);
|
|
262
272
|
/**
|
|
263
273
|
* @internal
|
|
264
274
|
*/
|
|
265
275
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateServiceCommandInput, CreateServiceCommandOutput>;
|
|
276
|
+
/**
|
|
277
|
+
* @internal
|
|
278
|
+
*/
|
|
266
279
|
private serialize;
|
|
280
|
+
/**
|
|
281
|
+
* @internal
|
|
282
|
+
*/
|
|
267
283
|
private deserialize;
|
|
268
284
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { CreateTaskSetRequest, CreateTaskSetResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateTaskSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateTaskSetCommandInput extends CreateTaskSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateTaskSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateTaskSetCommandOutput extends CreateTaskSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Create a task set in the specified cluster and service. This is used when a service
|
|
18
23
|
* uses the <code>EXTERNAL</code> deployment controller type. For more information, see
|
|
19
24
|
* <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html">Amazon ECS deployment
|
|
@@ -28,6 +33,8 @@ export interface CreateTaskSetCommandOutput extends CreateTaskSetResponse, __Met
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param CreateTaskSetCommandInput - {@link CreateTaskSetCommandInput}
|
|
37
|
+
* @returns {@link CreateTaskSetCommandOutput}
|
|
31
38
|
* @see {@link CreateTaskSetCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link CreateTaskSetCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -76,11 +83,20 @@ export interface CreateTaskSetCommandOutput extends CreateTaskSetResponse, __Met
|
|
|
76
83
|
export declare class CreateTaskSetCommand extends $Command<CreateTaskSetCommandInput, CreateTaskSetCommandOutput, ECSClientResolvedConfig> {
|
|
77
84
|
readonly input: CreateTaskSetCommandInput;
|
|
78
85
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
79
89
|
constructor(input: CreateTaskSetCommandInput);
|
|
80
90
|
/**
|
|
81
91
|
* @internal
|
|
82
92
|
*/
|
|
83
93
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateTaskSetCommandInput, CreateTaskSetCommandOutput>;
|
|
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 { DeleteAccountSettingRequest, DeleteAccountSettingResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteAccountSettingCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteAccountSettingCommandInput extends DeleteAccountSettingRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteAccountSettingCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteAccountSettingCommandOutput extends DeleteAccountSettingResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disables an account setting for a specified user, role, or the root user for
|
|
18
23
|
* an account.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteAccountSettingCommandOutput extends DeleteAccountSettingR
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteAccountSettingCommandInput - {@link DeleteAccountSettingCommandInput}
|
|
35
|
+
* @returns {@link DeleteAccountSettingCommandOutput}
|
|
29
36
|
* @see {@link DeleteAccountSettingCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteAccountSettingCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -88,11 +95,20 @@ export interface DeleteAccountSettingCommandOutput extends DeleteAccountSettingR
|
|
|
88
95
|
export declare class DeleteAccountSettingCommand extends $Command<DeleteAccountSettingCommandInput, DeleteAccountSettingCommandOutput, ECSClientResolvedConfig> {
|
|
89
96
|
readonly input: DeleteAccountSettingCommandInput;
|
|
90
97
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
91
101
|
constructor(input: DeleteAccountSettingCommandInput);
|
|
92
102
|
/**
|
|
93
103
|
* @internal
|
|
94
104
|
*/
|
|
95
105
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAccountSettingCommandInput, DeleteAccountSettingCommandOutput>;
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
96
109
|
private serialize;
|
|
110
|
+
/**
|
|
111
|
+
* @internal
|
|
112
|
+
*/
|
|
97
113
|
private deserialize;
|
|
98
114
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DeleteAttributesRequest, DeleteAttributesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteAttributesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteAttributesCommandInput extends DeleteAttributesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteAttributesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteAttributesCommandOutput extends DeleteAttributesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes one or more custom attributes from an Amazon ECS 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 DeleteAttributesCommandOutput extends DeleteAttributesResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteAttributesCommandInput - {@link DeleteAttributesCommandInput}
|
|
34
|
+
* @returns {@link DeleteAttributesCommandOutput}
|
|
28
35
|
* @see {@link DeleteAttributesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteAttributesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteAttributesCommandOutput extends DeleteAttributesResponse,
|
|
|
46
53
|
export declare class DeleteAttributesCommand extends $Command<DeleteAttributesCommandInput, DeleteAttributesCommandOutput, ECSClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteAttributesCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteAttributesCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAttributesCommandInput, DeleteAttributesCommandOutput>;
|
|
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 { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DeleteCapacityProviderRequest, DeleteCapacityProviderResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteCapacityProviderCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteCapacityProviderCommandInput extends DeleteCapacityProviderRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteCapacityProviderCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteCapacityProviderCommandOutput extends DeleteCapacityProviderResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified capacity provider.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>The <code>FARGATE</code> and <code>FARGATE_SPOT</code> capacity providers are
|
|
@@ -39,6 +44,8 @@ export interface DeleteCapacityProviderCommandOutput extends DeleteCapacityProvi
|
|
|
39
44
|
* const response = await client.send(command);
|
|
40
45
|
* ```
|
|
41
46
|
*
|
|
47
|
+
* @param DeleteCapacityProviderCommandInput - {@link DeleteCapacityProviderCommandInput}
|
|
48
|
+
* @returns {@link DeleteCapacityProviderCommandOutput}
|
|
42
49
|
* @see {@link DeleteCapacityProviderCommandInput} for command's `input` shape.
|
|
43
50
|
* @see {@link DeleteCapacityProviderCommandOutput} for command's `response` shape.
|
|
44
51
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -60,11 +67,20 @@ export interface DeleteCapacityProviderCommandOutput extends DeleteCapacityProvi
|
|
|
60
67
|
export declare class DeleteCapacityProviderCommand extends $Command<DeleteCapacityProviderCommandInput, DeleteCapacityProviderCommandOutput, ECSClientResolvedConfig> {
|
|
61
68
|
readonly input: DeleteCapacityProviderCommandInput;
|
|
62
69
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
63
73
|
constructor(input: DeleteCapacityProviderCommandInput);
|
|
64
74
|
/**
|
|
65
75
|
* @internal
|
|
66
76
|
*/
|
|
67
77
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCapacityProviderCommandInput, DeleteCapacityProviderCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
68
81
|
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
69
85
|
private deserialize;
|
|
70
86
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteClusterCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteClusterCommandInput extends DeleteClusterRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteClusterCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified cluster. The cluster transitions to the <code>INACTIVE</code>
|
|
18
23
|
* state. Clusters with an <code>INACTIVE</code> status might remain discoverable in your
|
|
19
24
|
* account for a period of time. However, this behavior is subject to change in the future.
|
|
@@ -30,6 +35,8 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param DeleteClusterCommandInput - {@link DeleteClusterCommandInput}
|
|
39
|
+
* @returns {@link DeleteClusterCommandOutput}
|
|
33
40
|
* @see {@link DeleteClusterCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link DeleteClusterCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -98,11 +105,20 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
|
|
|
98
105
|
export declare class DeleteClusterCommand extends $Command<DeleteClusterCommandInput, DeleteClusterCommandOutput, ECSClientResolvedConfig> {
|
|
99
106
|
readonly input: DeleteClusterCommandInput;
|
|
100
107
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
108
|
+
/**
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
101
111
|
constructor(input: DeleteClusterCommandInput);
|
|
102
112
|
/**
|
|
103
113
|
* @internal
|
|
104
114
|
*/
|
|
105
115
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteClusterCommandInput, DeleteClusterCommandOutput>;
|
|
116
|
+
/**
|
|
117
|
+
* @internal
|
|
118
|
+
*/
|
|
106
119
|
private serialize;
|
|
120
|
+
/**
|
|
121
|
+
* @internal
|
|
122
|
+
*/
|
|
107
123
|
private deserialize;
|
|
108
124
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DeleteServiceRequest, DeleteServiceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteServiceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteServiceCommandInput extends DeleteServiceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteServiceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a specified service within a cluster. You can delete a service if you have no
|
|
18
23
|
* running tasks in it and the desired task count is zero. If the service is actively
|
|
19
24
|
* maintaining tasks, you can't delete it, and you must update the service to a desired
|
|
@@ -45,6 +50,8 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met
|
|
|
45
50
|
* const response = await client.send(command);
|
|
46
51
|
* ```
|
|
47
52
|
*
|
|
53
|
+
* @param DeleteServiceCommandInput - {@link DeleteServiceCommandInput}
|
|
54
|
+
* @returns {@link DeleteServiceCommandOutput}
|
|
48
55
|
* @see {@link DeleteServiceCommandInput} for command's `input` shape.
|
|
49
56
|
* @see {@link DeleteServiceCommandOutput} for command's `response` shape.
|
|
50
57
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -84,11 +91,20 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met
|
|
|
84
91
|
export declare class DeleteServiceCommand extends $Command<DeleteServiceCommandInput, DeleteServiceCommandOutput, ECSClientResolvedConfig> {
|
|
85
92
|
readonly input: DeleteServiceCommandInput;
|
|
86
93
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
87
97
|
constructor(input: DeleteServiceCommandInput);
|
|
88
98
|
/**
|
|
89
99
|
* @internal
|
|
90
100
|
*/
|
|
91
101
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteServiceCommandInput, DeleteServiceCommandOutput>;
|
|
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 { DeleteTaskDefinitionsRequest, DeleteTaskDefinitionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteTaskDefinitionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteTaskDefinitionsCommandInput extends DeleteTaskDefinitionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteTaskDefinitionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteTaskDefinitionsCommandOutput extends DeleteTaskDefinitionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes one or more task definitions.</p>
|
|
18
23
|
* <p>You must deregister a task definition revision before you delete it. For more information,
|
|
19
24
|
* see <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_DeregisterTaskDefinition.html">DeregisterTaskDefinition</a>.</p>
|
|
@@ -38,6 +43,8 @@ export interface DeleteTaskDefinitionsCommandOutput extends DeleteTaskDefinition
|
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
46
|
+
* @param DeleteTaskDefinitionsCommandInput - {@link DeleteTaskDefinitionsCommandInput}
|
|
47
|
+
* @returns {@link DeleteTaskDefinitionsCommandOutput}
|
|
41
48
|
* @see {@link DeleteTaskDefinitionsCommandInput} for command's `input` shape.
|
|
42
49
|
* @see {@link DeleteTaskDefinitionsCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface DeleteTaskDefinitionsCommandOutput extends DeleteTaskDefinition
|
|
|
62
69
|
export declare class DeleteTaskDefinitionsCommand extends $Command<DeleteTaskDefinitionsCommandInput, DeleteTaskDefinitionsCommandOutput, ECSClientResolvedConfig> {
|
|
63
70
|
readonly input: DeleteTaskDefinitionsCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: DeleteTaskDefinitionsCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTaskDefinitionsCommandInput, DeleteTaskDefinitionsCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DeleteTaskSetRequest, DeleteTaskSetResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteTaskSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteTaskSetCommandInput extends DeleteTaskSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteTaskSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteTaskSetCommandOutput extends DeleteTaskSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a specified task set within a service. This is used when a service uses the
|
|
18
23
|
* <code>EXTERNAL</code> deployment controller type. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html">Amazon ECS deployment types</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteTaskSetCommandOutput extends DeleteTaskSetResponse, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteTaskSetCommandInput - {@link DeleteTaskSetCommandInput}
|
|
35
|
+
* @returns {@link DeleteTaskSetCommandOutput}
|
|
29
36
|
* @see {@link DeleteTaskSetCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteTaskSetCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface DeleteTaskSetCommandOutput extends DeleteTaskSetResponse, __Met
|
|
|
68
75
|
export declare class DeleteTaskSetCommand extends $Command<DeleteTaskSetCommandInput, DeleteTaskSetCommandOutput, ECSClientResolvedConfig> {
|
|
69
76
|
readonly input: DeleteTaskSetCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: DeleteTaskSetCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTaskSetCommandInput, DeleteTaskSetCommandOutput>;
|
|
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 { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DeregisterContainerInstanceRequest, DeregisterContainerInstanceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeregisterContainerInstanceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeregisterContainerInstanceCommandInput extends DeregisterContainerInstanceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeregisterContainerInstanceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeregisterContainerInstanceCommandOutput extends DeregisterContainerInstanceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deregisters an Amazon ECS container instance from the specified cluster. This instance is
|
|
18
23
|
* no longer available to run tasks.</p>
|
|
19
24
|
* <p>If you intend to use the container instance for some other purpose after
|
|
@@ -38,6 +43,8 @@ export interface DeregisterContainerInstanceCommandOutput extends DeregisterCont
|
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
46
|
+
* @param DeregisterContainerInstanceCommandInput - {@link DeregisterContainerInstanceCommandInput}
|
|
47
|
+
* @returns {@link DeregisterContainerInstanceCommandOutput}
|
|
41
48
|
* @see {@link DeregisterContainerInstanceCommandInput} for command's `input` shape.
|
|
42
49
|
* @see {@link DeregisterContainerInstanceCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -75,11 +82,20 @@ export interface DeregisterContainerInstanceCommandOutput extends DeregisterCont
|
|
|
75
82
|
export declare class DeregisterContainerInstanceCommand extends $Command<DeregisterContainerInstanceCommandInput, DeregisterContainerInstanceCommandOutput, ECSClientResolvedConfig> {
|
|
76
83
|
readonly input: DeregisterContainerInstanceCommandInput;
|
|
77
84
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
78
88
|
constructor(input: DeregisterContainerInstanceCommandInput);
|
|
79
89
|
/**
|
|
80
90
|
* @internal
|
|
81
91
|
*/
|
|
82
92
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterContainerInstanceCommandInput, DeregisterContainerInstanceCommandOutput>;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
83
96
|
private serialize;
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
84
100
|
private deserialize;
|
|
85
101
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DeregisterTaskDefinitionRequest, DeregisterTaskDefinitionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeregisterTaskDefinitionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeregisterTaskDefinitionCommandInput extends DeregisterTaskDefinitionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeregisterTaskDefinitionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeregisterTaskDefinitionCommandOutput extends DeregisterTaskDefinitionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deregisters the specified task definition by family and revision. Upon deregistration, the
|
|
18
23
|
* task definition is marked as <code>INACTIVE</code>. Existing tasks and services that
|
|
19
24
|
* reference an <code>INACTIVE</code> task definition continue to run without disruption.
|
|
@@ -42,6 +47,8 @@ export interface DeregisterTaskDefinitionCommandOutput extends DeregisterTaskDef
|
|
|
42
47
|
* const response = await client.send(command);
|
|
43
48
|
* ```
|
|
44
49
|
*
|
|
50
|
+
* @param DeregisterTaskDefinitionCommandInput - {@link DeregisterTaskDefinitionCommandInput}
|
|
51
|
+
* @returns {@link DeregisterTaskDefinitionCommandOutput}
|
|
45
52
|
* @see {@link DeregisterTaskDefinitionCommandInput} for command's `input` shape.
|
|
46
53
|
* @see {@link DeregisterTaskDefinitionCommandOutput} for command's `response` shape.
|
|
47
54
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface DeregisterTaskDefinitionCommandOutput extends DeregisterTaskDef
|
|
|
63
70
|
export declare class DeregisterTaskDefinitionCommand extends $Command<DeregisterTaskDefinitionCommandInput, DeregisterTaskDefinitionCommandOutput, ECSClientResolvedConfig> {
|
|
64
71
|
readonly input: DeregisterTaskDefinitionCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: DeregisterTaskDefinitionCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterTaskDefinitionCommandInput, DeregisterTaskDefinitionCommandOutput>;
|
|
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 { DescribeCapacityProvidersRequest, DescribeCapacityProvidersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeCapacityProvidersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeCapacityProvidersCommandInput extends DescribeCapacityProvidersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeCapacityProvidersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeCapacityProvidersCommandOutput extends DescribeCapacityProvidersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes one or more of your capacity providers.</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 DescribeCapacityProvidersCommandOutput extends DescribeCapacity
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeCapacityProvidersCommandInput - {@link DescribeCapacityProvidersCommandInput}
|
|
34
|
+
* @returns {@link DescribeCapacityProvidersCommandOutput}
|
|
28
35
|
* @see {@link DescribeCapacityProvidersCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeCapacityProvidersCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DescribeCapacityProvidersCommandOutput extends DescribeCapacity
|
|
|
46
53
|
export declare class DescribeCapacityProvidersCommand extends $Command<DescribeCapacityProvidersCommandInput, DescribeCapacityProvidersCommandOutput, ECSClientResolvedConfig> {
|
|
47
54
|
readonly input: DescribeCapacityProvidersCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DescribeCapacityProvidersCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCapacityProvidersCommandInput, DescribeCapacityProvidersCommandOutput>;
|
|
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 { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DescribeClustersRequest, DescribeClustersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeClustersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeClustersCommandInput extends DescribeClustersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeClustersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeClustersCommandOutput extends DescribeClustersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes one or more of your 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 DescribeClustersCommandOutput extends DescribeClustersResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeClustersCommandInput - {@link DescribeClustersCommandInput}
|
|
34
|
+
* @returns {@link DescribeClustersCommandOutput}
|
|
28
35
|
* @see {@link DescribeClustersCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeClustersCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -71,11 +78,20 @@ export interface DescribeClustersCommandOutput extends DescribeClustersResponse,
|
|
|
71
78
|
export declare class DescribeClustersCommand extends $Command<DescribeClustersCommandInput, DescribeClustersCommandOutput, ECSClientResolvedConfig> {
|
|
72
79
|
readonly input: DescribeClustersCommandInput;
|
|
73
80
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
74
84
|
constructor(input: DescribeClustersCommandInput);
|
|
75
85
|
/**
|
|
76
86
|
* @internal
|
|
77
87
|
*/
|
|
78
88
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeClustersCommandInput, DescribeClustersCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
79
92
|
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
80
96
|
private deserialize;
|
|
81
97
|
}
|