@aws-sdk/client-cloudcontrol 3.296.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/CloudControl.d.ts +9 -0
- package/dist-types/CloudControlClient.d.ts +24 -4
- package/dist-types/commands/CancelResourceRequestCommand.d.ts +16 -0
- package/dist-types/commands/CreateResourceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourceCommand.d.ts +16 -0
- package/dist-types/commands/GetResourceCommand.d.ts +16 -0
- package/dist-types/commands/GetResourceRequestStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListResourceRequestsCommand.d.ts +16 -0
- package/dist-types/commands/ListResourcesCommand.d.ts +16 -0
- package/dist-types/commands/UpdateResourceCommand.d.ts +16 -0
- package/dist-types/models/CloudControlServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +81 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListResourceRequestsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListResourcesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -9,11 +9,13 @@ import { ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput } f
|
|
|
9
9
|
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "./commands/ListResourcesCommand";
|
|
10
10
|
import { UpdateResourceCommandInput, UpdateResourceCommandOutput } from "./commands/UpdateResourceCommand";
|
|
11
11
|
/**
|
|
12
|
+
* @public
|
|
12
13
|
* <p>For more information about Amazon Web Services Cloud Control API, see the <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/what-is-cloudcontrolapi.html">Amazon Web Services Cloud Control API User
|
|
13
14
|
* Guide</a>.</p>
|
|
14
15
|
*/
|
|
15
16
|
export declare class CloudControl extends CloudControlClient {
|
|
16
17
|
/**
|
|
18
|
+
* @public
|
|
17
19
|
* <p>Cancels the specified resource operation request. For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-manage-requests.html#resource-operations-manage-requests-cancel">Canceling resource operation requests</a> in the
|
|
18
20
|
* <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
19
21
|
* <p>Only resource operations requests with a status of <code>PENDING</code> or
|
|
@@ -23,6 +25,7 @@ export declare class CloudControl extends CloudControlClient {
|
|
|
23
25
|
cancelResourceRequest(args: CancelResourceRequestCommandInput, cb: (err: any, data?: CancelResourceRequestCommandOutput) => void): void;
|
|
24
26
|
cancelResourceRequest(args: CancelResourceRequestCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelResourceRequestCommandOutput) => void): void;
|
|
25
27
|
/**
|
|
28
|
+
* @public
|
|
26
29
|
* <p>Creates the specified resource. For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-create.html">Creating a
|
|
27
30
|
* resource</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
28
31
|
* <p>After you have initiated a resource creation request, you can monitor the progress of your
|
|
@@ -33,6 +36,7 @@ export declare class CloudControl extends CloudControlClient {
|
|
|
33
36
|
createResource(args: CreateResourceCommandInput, cb: (err: any, data?: CreateResourceCommandOutput) => void): void;
|
|
34
37
|
createResource(args: CreateResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResourceCommandOutput) => void): void;
|
|
35
38
|
/**
|
|
39
|
+
* @public
|
|
36
40
|
* <p>Deletes the specified resource. For details, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-delete.html">Deleting a
|
|
37
41
|
* resource</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
38
42
|
* <p>After you have initiated a resource deletion request, you can monitor the progress of your
|
|
@@ -43,6 +47,7 @@ export declare class CloudControl extends CloudControlClient {
|
|
|
43
47
|
deleteResource(args: DeleteResourceCommandInput, cb: (err: any, data?: DeleteResourceCommandOutput) => void): void;
|
|
44
48
|
deleteResource(args: DeleteResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourceCommandOutput) => void): void;
|
|
45
49
|
/**
|
|
50
|
+
* @public
|
|
46
51
|
* <p>Returns information about the current state of the specified resource. For details, see
|
|
47
52
|
* <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-read.html">Reading a resource's current state</a>.</p>
|
|
48
53
|
* <p>You can use this action to return information about an existing resource in your account
|
|
@@ -52,6 +57,7 @@ export declare class CloudControl extends CloudControlClient {
|
|
|
52
57
|
getResource(args: GetResourceCommandInput, cb: (err: any, data?: GetResourceCommandOutput) => void): void;
|
|
53
58
|
getResource(args: GetResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceCommandOutput) => void): void;
|
|
54
59
|
/**
|
|
60
|
+
* @public
|
|
55
61
|
* <p>Returns the current status of a resource operation request. For more information, see
|
|
56
62
|
* <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-manage-requests.html#resource-operations-manage-requests-track">Tracking the progress of resource operation requests</a> in the
|
|
57
63
|
* <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
@@ -60,6 +66,7 @@ export declare class CloudControl extends CloudControlClient {
|
|
|
60
66
|
getResourceRequestStatus(args: GetResourceRequestStatusCommandInput, cb: (err: any, data?: GetResourceRequestStatusCommandOutput) => void): void;
|
|
61
67
|
getResourceRequestStatus(args: GetResourceRequestStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceRequestStatusCommandOutput) => void): void;
|
|
62
68
|
/**
|
|
69
|
+
* @public
|
|
63
70
|
* <p>Returns existing resource operation requests. This includes requests of all status types.
|
|
64
71
|
* For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-manage-requests.html#resource-operations-manage-requests-list">Listing active resource operation requests</a> in the
|
|
65
72
|
* <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
@@ -71,6 +78,7 @@ export declare class CloudControl extends CloudControlClient {
|
|
|
71
78
|
listResourceRequests(args: ListResourceRequestsCommandInput, cb: (err: any, data?: ListResourceRequestsCommandOutput) => void): void;
|
|
72
79
|
listResourceRequests(args: ListResourceRequestsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceRequestsCommandOutput) => void): void;
|
|
73
80
|
/**
|
|
81
|
+
* @public
|
|
74
82
|
* <p>Returns information about the specified resources. For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-list.html">Discovering resources</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
75
83
|
* <p>You can use this action to return information about existing resources in your account and
|
|
76
84
|
* Amazon Web Services Region, whether those resources were provisioned using Cloud Control API.</p>
|
|
@@ -79,6 +87,7 @@ export declare class CloudControl extends CloudControlClient {
|
|
|
79
87
|
listResources(args: ListResourcesCommandInput, cb: (err: any, data?: ListResourcesCommandOutput) => void): void;
|
|
80
88
|
listResources(args: ListResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourcesCommandOutput) => void): void;
|
|
81
89
|
/**
|
|
90
|
+
* @public
|
|
82
91
|
* <p>Updates the specified property values in the resource.</p>
|
|
83
92
|
* <p>You specify your resource property updates as a list of patch operations contained in a
|
|
84
93
|
* JSON patch document that adheres to the <a href="https://datatracker.ietf.org/doc/html/rfc6902">
|
|
@@ -16,15 +16,24 @@ import { ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput } f
|
|
|
16
16
|
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "./commands/ListResourcesCommand";
|
|
17
17
|
import { UpdateResourceCommandInput, UpdateResourceCommandOutput } from "./commands/UpdateResourceCommand";
|
|
18
18
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
19
22
|
export type ServiceInputTypes = CancelResourceRequestCommandInput | CreateResourceCommandInput | DeleteResourceCommandInput | GetResourceCommandInput | GetResourceRequestStatusCommandInput | ListResourceRequestsCommandInput | ListResourcesCommandInput | UpdateResourceCommandInput;
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
20
26
|
export type ServiceOutputTypes = CancelResourceRequestCommandOutput | CreateResourceCommandOutput | DeleteResourceCommandOutput | GetResourceCommandOutput | GetResourceRequestStatusCommandOutput | ListResourceRequestsCommandOutput | ListResourcesCommandOutput | UpdateResourceCommandOutput;
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
21
30
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
22
31
|
/**
|
|
23
32
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
24
33
|
*/
|
|
25
34
|
requestHandler?: __HttpHandler;
|
|
26
35
|
/**
|
|
27
|
-
* A constructor for a class implementing the {@link
|
|
36
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
28
37
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
29
38
|
* @internal
|
|
30
39
|
*/
|
|
@@ -114,23 +123,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
114
123
|
*/
|
|
115
124
|
logger?: __Logger;
|
|
116
125
|
/**
|
|
117
|
-
* The {@link
|
|
126
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
118
127
|
*/
|
|
119
128
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
120
129
|
}
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
121
133
|
type CloudControlClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
122
134
|
/**
|
|
123
|
-
*
|
|
135
|
+
* @public
|
|
136
|
+
*
|
|
137
|
+
* The configuration interface of CloudControlClient class constructor that set the region, credentials and other options.
|
|
124
138
|
*/
|
|
125
139
|
export interface CloudControlClientConfig extends CloudControlClientConfigType {
|
|
126
140
|
}
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
127
144
|
type CloudControlClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
128
145
|
/**
|
|
129
|
-
*
|
|
146
|
+
* @public
|
|
147
|
+
*
|
|
148
|
+
* The resolved configuration interface of CloudControlClient class. This is resolved and normalized from the {@link CloudControlClientConfig | constructor configuration interface}.
|
|
130
149
|
*/
|
|
131
150
|
export interface CloudControlClientResolvedConfig extends CloudControlClientResolvedConfigType {
|
|
132
151
|
}
|
|
133
152
|
/**
|
|
153
|
+
* @public
|
|
134
154
|
* <p>For more information about Amazon Web Services Cloud Control API, see the <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/what-is-cloudcontrolapi.html">Amazon Web Services Cloud Control API User
|
|
135
155
|
* Guide</a>.</p>
|
|
136
156
|
*/
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
5
5
|
import { CancelResourceRequestInput, CancelResourceRequestOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CancelResourceRequestCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CancelResourceRequestCommandInput extends CancelResourceRequestInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CancelResourceRequestCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CancelResourceRequestCommandOutput extends CancelResourceRequestOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Cancels the specified resource operation request. For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-manage-requests.html#resource-operations-manage-requests-cancel">Canceling resource operation requests</a> in the
|
|
18
23
|
* <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
19
24
|
* <p>Only resource operations requests with a status of <code>PENDING</code> or
|
|
@@ -28,6 +33,8 @@ export interface CancelResourceRequestCommandOutput extends CancelResourceReques
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param CancelResourceRequestCommandInput - {@link CancelResourceRequestCommandInput}
|
|
37
|
+
* @returns {@link CancelResourceRequestCommandOutput}
|
|
31
38
|
* @see {@link CancelResourceRequestCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link CancelResourceRequestCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface CancelResourceRequestCommandOutput extends CancelResourceReques
|
|
|
43
50
|
export declare class CancelResourceRequestCommand extends $Command<CancelResourceRequestCommandInput, CancelResourceRequestCommandOutput, CloudControlClientResolvedConfig> {
|
|
44
51
|
readonly input: CancelResourceRequestCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: CancelResourceRequestCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelResourceRequestCommandInput, CancelResourceRequestCommandOutput>;
|
|
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 { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
5
5
|
import { CreateResourceInput, CreateResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateResourceCommandInput extends CreateResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateResourceCommandOutput extends CreateResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates the specified resource. For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-create.html">Creating a
|
|
18
23
|
* resource</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
19
24
|
* <p>After you have initiated a resource creation request, you can monitor the progress of your
|
|
@@ -29,6 +34,8 @@ export interface CreateResourceCommandOutput extends CreateResourceOutput, __Met
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param CreateResourceCommandInput - {@link CreateResourceCommandInput}
|
|
38
|
+
* @returns {@link CreateResourceCommandOutput}
|
|
32
39
|
* @see {@link CreateResourceCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link CreateResourceCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
@@ -111,11 +118,20 @@ export interface CreateResourceCommandOutput extends CreateResourceOutput, __Met
|
|
|
111
118
|
export declare class CreateResourceCommand extends $Command<CreateResourceCommandInput, CreateResourceCommandOutput, CloudControlClientResolvedConfig> {
|
|
112
119
|
readonly input: CreateResourceCommandInput;
|
|
113
120
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
121
|
+
/**
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
114
124
|
constructor(input: CreateResourceCommandInput);
|
|
115
125
|
/**
|
|
116
126
|
* @internal
|
|
117
127
|
*/
|
|
118
128
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateResourceCommandInput, CreateResourceCommandOutput>;
|
|
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 { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
5
5
|
import { DeleteResourceInput, DeleteResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteResourceCommandInput extends DeleteResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteResourceCommandOutput extends DeleteResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified resource. For details, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-delete.html">Deleting a
|
|
18
23
|
* resource</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
19
24
|
* <p>After you have initiated a resource deletion request, you can monitor the progress of your
|
|
@@ -29,6 +34,8 @@ export interface DeleteResourceCommandOutput extends DeleteResourceOutput, __Met
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param DeleteResourceCommandInput - {@link DeleteResourceCommandInput}
|
|
38
|
+
* @returns {@link DeleteResourceCommandOutput}
|
|
32
39
|
* @see {@link DeleteResourceCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link DeleteResourceCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
@@ -111,11 +118,20 @@ export interface DeleteResourceCommandOutput extends DeleteResourceOutput, __Met
|
|
|
111
118
|
export declare class DeleteResourceCommand extends $Command<DeleteResourceCommandInput, DeleteResourceCommandOutput, CloudControlClientResolvedConfig> {
|
|
112
119
|
readonly input: DeleteResourceCommandInput;
|
|
113
120
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
121
|
+
/**
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
114
124
|
constructor(input: DeleteResourceCommandInput);
|
|
115
125
|
/**
|
|
116
126
|
* @internal
|
|
117
127
|
*/
|
|
118
128
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResourceCommandInput, DeleteResourceCommandOutput>;
|
|
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 { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
5
5
|
import { GetResourceInput, GetResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetResourceCommandInput extends GetResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetResourceCommandOutput extends GetResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about the current state of the specified resource. For details, see
|
|
18
23
|
* <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-read.html">Reading a resource's current state</a>.</p>
|
|
19
24
|
* <p>You can use this action to return information about an existing resource in your account
|
|
@@ -28,6 +33,8 @@ export interface GetResourceCommandOutput extends GetResourceOutput, __MetadataB
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param GetResourceCommandInput - {@link GetResourceCommandInput}
|
|
37
|
+
* @returns {@link GetResourceCommandOutput}
|
|
31
38
|
* @see {@link GetResourceCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link GetResourceCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
@@ -102,11 +109,20 @@ export interface GetResourceCommandOutput extends GetResourceOutput, __MetadataB
|
|
|
102
109
|
export declare class GetResourceCommand extends $Command<GetResourceCommandInput, GetResourceCommandOutput, CloudControlClientResolvedConfig> {
|
|
103
110
|
readonly input: GetResourceCommandInput;
|
|
104
111
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
112
|
+
/**
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
105
115
|
constructor(input: GetResourceCommandInput);
|
|
106
116
|
/**
|
|
107
117
|
* @internal
|
|
108
118
|
*/
|
|
109
119
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourceCommandInput, GetResourceCommandOutput>;
|
|
120
|
+
/**
|
|
121
|
+
* @internal
|
|
122
|
+
*/
|
|
110
123
|
private serialize;
|
|
124
|
+
/**
|
|
125
|
+
* @internal
|
|
126
|
+
*/
|
|
111
127
|
private deserialize;
|
|
112
128
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
5
5
|
import { GetResourceRequestStatusInput, GetResourceRequestStatusOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetResourceRequestStatusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetResourceRequestStatusCommandInput extends GetResourceRequestStatusInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetResourceRequestStatusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetResourceRequestStatusCommandOutput extends GetResourceRequestStatusOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the current status of a resource operation request. For more information, see
|
|
18
23
|
* <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-manage-requests.html#resource-operations-manage-requests-track">Tracking the progress of resource operation requests</a> in the
|
|
19
24
|
* <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetResourceRequestStatusCommandOutput extends GetResourceReques
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetResourceRequestStatusCommandInput - {@link GetResourceRequestStatusCommandInput}
|
|
36
|
+
* @returns {@link GetResourceRequestStatusCommandOutput}
|
|
30
37
|
* @see {@link GetResourceRequestStatusCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetResourceRequestStatusCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
@@ -39,11 +46,20 @@ export interface GetResourceRequestStatusCommandOutput extends GetResourceReques
|
|
|
39
46
|
export declare class GetResourceRequestStatusCommand extends $Command<GetResourceRequestStatusCommandInput, GetResourceRequestStatusCommandOutput, CloudControlClientResolvedConfig> {
|
|
40
47
|
readonly input: GetResourceRequestStatusCommandInput;
|
|
41
48
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
42
52
|
constructor(input: GetResourceRequestStatusCommandInput);
|
|
43
53
|
/**
|
|
44
54
|
* @internal
|
|
45
55
|
*/
|
|
46
56
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourceRequestStatusCommandInput, GetResourceRequestStatusCommandOutput>;
|
|
57
|
+
/**
|
|
58
|
+
* @internal
|
|
59
|
+
*/
|
|
47
60
|
private serialize;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
48
64
|
private deserialize;
|
|
49
65
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
5
5
|
import { ListResourceRequestsInput, ListResourceRequestsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListResourceRequestsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListResourceRequestsCommandInput extends ListResourceRequestsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListResourceRequestsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListResourceRequestsCommandOutput extends ListResourceRequestsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns existing resource operation requests. This includes requests of all status types.
|
|
18
23
|
* For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-manage-requests.html#resource-operations-manage-requests-list">Listing active resource operation requests</a> in the
|
|
19
24
|
* <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
@@ -30,6 +35,8 @@ export interface ListResourceRequestsCommandOutput extends ListResourceRequestsO
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param ListResourceRequestsCommandInput - {@link ListResourceRequestsCommandInput}
|
|
39
|
+
* @returns {@link ListResourceRequestsCommandOutput}
|
|
33
40
|
* @see {@link ListResourceRequestsCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link ListResourceRequestsCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
@@ -39,11 +46,20 @@ export interface ListResourceRequestsCommandOutput extends ListResourceRequestsO
|
|
|
39
46
|
export declare class ListResourceRequestsCommand extends $Command<ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput, CloudControlClientResolvedConfig> {
|
|
40
47
|
readonly input: ListResourceRequestsCommandInput;
|
|
41
48
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
42
52
|
constructor(input: ListResourceRequestsCommandInput);
|
|
43
53
|
/**
|
|
44
54
|
* @internal
|
|
45
55
|
*/
|
|
46
56
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput>;
|
|
57
|
+
/**
|
|
58
|
+
* @internal
|
|
59
|
+
*/
|
|
47
60
|
private serialize;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
48
64
|
private deserialize;
|
|
49
65
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
5
5
|
import { ListResourcesInput, ListResourcesOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListResourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListResourcesCommandInput extends ListResourcesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListResourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListResourcesCommandOutput extends ListResourcesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about the specified resources. For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-list.html">Discovering resources</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
18
23
|
* <p>You can use this action to return information about existing resources in your account and
|
|
19
24
|
* Amazon Web Services Region, whether those resources were provisioned using Cloud Control API.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListResourcesCommandOutput extends ListResourcesOutput, __Metad
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListResourcesCommandInput - {@link ListResourcesCommandInput}
|
|
36
|
+
* @returns {@link ListResourcesCommandOutput}
|
|
30
37
|
* @see {@link ListResourcesCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListResourcesCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
@@ -101,11 +108,20 @@ export interface ListResourcesCommandOutput extends ListResourcesOutput, __Metad
|
|
|
101
108
|
export declare class ListResourcesCommand extends $Command<ListResourcesCommandInput, ListResourcesCommandOutput, CloudControlClientResolvedConfig> {
|
|
102
109
|
readonly input: ListResourcesCommandInput;
|
|
103
110
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
104
114
|
constructor(input: ListResourcesCommandInput);
|
|
105
115
|
/**
|
|
106
116
|
* @internal
|
|
107
117
|
*/
|
|
108
118
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListResourcesCommandInput, ListResourcesCommandOutput>;
|
|
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 { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
5
5
|
import { UpdateResourceInput, UpdateResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateResourceCommandInput extends UpdateResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateResourceCommandOutput extends UpdateResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the specified property values in the resource.</p>
|
|
18
23
|
* <p>You specify your resource property updates as a list of patch operations contained in a
|
|
19
24
|
* JSON patch document that adheres to the <a href="https://datatracker.ietf.org/doc/html/rfc6902">
|
|
@@ -36,6 +41,8 @@ export interface UpdateResourceCommandOutput extends UpdateResourceOutput, __Met
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param UpdateResourceCommandInput - {@link UpdateResourceCommandInput}
|
|
45
|
+
* @returns {@link UpdateResourceCommandOutput}
|
|
39
46
|
* @see {@link UpdateResourceCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link UpdateResourceCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
@@ -118,11 +125,20 @@ export interface UpdateResourceCommandOutput extends UpdateResourceOutput, __Met
|
|
|
118
125
|
export declare class UpdateResourceCommand extends $Command<UpdateResourceCommandInput, UpdateResourceCommandOutput, CloudControlClientResolvedConfig> {
|
|
119
126
|
readonly input: UpdateResourceCommandInput;
|
|
120
127
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
128
|
+
/**
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
121
131
|
constructor(input: UpdateResourceCommandInput);
|
|
122
132
|
/**
|
|
123
133
|
* @internal
|
|
124
134
|
*/
|
|
125
135
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateResourceCommandInput, UpdateResourceCommandOutput>;
|
|
136
|
+
/**
|
|
137
|
+
* @internal
|
|
138
|
+
*/
|
|
126
139
|
private serialize;
|
|
140
|
+
/**
|
|
141
|
+
* @internal
|
|
142
|
+
*/
|
|
127
143
|
private deserialize;
|
|
128
144
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from CloudControl service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class CloudControlServiceException extends __ServiceException {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { CloudControlServiceException as __BaseException } from "./CloudControlServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>The resource with the name requested already exists.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AlreadyExistsException extends __BaseException {
|
|
@@ -12,6 +13,9 @@ export declare class AlreadyExistsException extends __BaseException {
|
|
|
12
13
|
*/
|
|
13
14
|
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
14
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
15
19
|
export interface CancelResourceRequestInput {
|
|
16
20
|
/**
|
|
17
21
|
* <p>The <code>RequestToken</code> of the <code>ProgressEvent</code> object returned by the
|
|
@@ -19,6 +23,9 @@ export interface CancelResourceRequestInput {
|
|
|
19
23
|
*/
|
|
20
24
|
RequestToken: string | undefined;
|
|
21
25
|
}
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
22
29
|
export declare enum HandlerErrorCode {
|
|
23
30
|
ACCESS_DENIED = "AccessDenied",
|
|
24
31
|
ALREADY_EXISTS = "AlreadyExists",
|
|
@@ -36,11 +43,17 @@ export declare enum HandlerErrorCode {
|
|
|
36
43
|
SERVICE_TIMEOUT = "ServiceTimeout",
|
|
37
44
|
THROTTLING = "Throttling"
|
|
38
45
|
}
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
39
49
|
export declare enum Operation {
|
|
40
50
|
CREATE = "CREATE",
|
|
41
51
|
DELETE = "DELETE",
|
|
42
52
|
UPDATE = "UPDATE"
|
|
43
53
|
}
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
44
57
|
export declare enum OperationStatus {
|
|
45
58
|
CANCEL_COMPLETE = "CANCEL_COMPLETE",
|
|
46
59
|
CANCEL_IN_PROGRESS = "CANCEL_IN_PROGRESS",
|
|
@@ -50,6 +63,7 @@ export declare enum OperationStatus {
|
|
|
50
63
|
SUCCESS = "SUCCESS"
|
|
51
64
|
}
|
|
52
65
|
/**
|
|
66
|
+
* @public
|
|
53
67
|
* <p>Represents the current status of a resource operation request. For more information, see
|
|
54
68
|
* <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-manage-requests.html">Managing resource operation requests</a> in the
|
|
55
69
|
* <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
@@ -133,6 +147,9 @@ export interface ProgressEvent {
|
|
|
133
147
|
*/
|
|
134
148
|
RetryAfter?: Date;
|
|
135
149
|
}
|
|
150
|
+
/**
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
136
153
|
export interface CancelResourceRequestOutput {
|
|
137
154
|
/**
|
|
138
155
|
* <p>Represents the current status of a resource operation request. For more information, see
|
|
@@ -142,6 +159,7 @@ export interface CancelResourceRequestOutput {
|
|
|
142
159
|
ProgressEvent?: ProgressEvent;
|
|
143
160
|
}
|
|
144
161
|
/**
|
|
162
|
+
* @public
|
|
145
163
|
* <p>The resource is currently being modified by another operation.</p>
|
|
146
164
|
*/
|
|
147
165
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
@@ -154,6 +172,7 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
154
172
|
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
155
173
|
}
|
|
156
174
|
/**
|
|
175
|
+
* @public
|
|
157
176
|
* <p>A resource operation with the specified request token can't be found.</p>
|
|
158
177
|
*/
|
|
159
178
|
export declare class RequestTokenNotFoundException extends __BaseException {
|
|
@@ -166,6 +185,7 @@ export declare class RequestTokenNotFoundException extends __BaseException {
|
|
|
166
185
|
constructor(opts: __ExceptionOptionType<RequestTokenNotFoundException, __BaseException>);
|
|
167
186
|
}
|
|
168
187
|
/**
|
|
188
|
+
* @public
|
|
169
189
|
* <p>The specified client token has already been used in another resource request.</p>
|
|
170
190
|
* <p>It's best practice for client tokens to be unique for each resource operation request.
|
|
171
191
|
* However, client token expire after 36 hours.</p>
|
|
@@ -180,6 +200,7 @@ export declare class ClientTokenConflictException extends __BaseException {
|
|
|
180
200
|
constructor(opts: __ExceptionOptionType<ClientTokenConflictException, __BaseException>);
|
|
181
201
|
}
|
|
182
202
|
/**
|
|
203
|
+
* @public
|
|
183
204
|
* <p>Another resource operation is currently being performed on this resource.</p>
|
|
184
205
|
*/
|
|
185
206
|
export declare class ConcurrentOperationException extends __BaseException {
|
|
@@ -191,6 +212,9 @@ export declare class ConcurrentOperationException extends __BaseException {
|
|
|
191
212
|
*/
|
|
192
213
|
constructor(opts: __ExceptionOptionType<ConcurrentOperationException, __BaseException>);
|
|
193
214
|
}
|
|
215
|
+
/**
|
|
216
|
+
* @public
|
|
217
|
+
*/
|
|
194
218
|
export interface CreateResourceInput {
|
|
195
219
|
/**
|
|
196
220
|
* <p>The name of the resource type.</p>
|
|
@@ -238,6 +262,9 @@ export interface CreateResourceInput {
|
|
|
238
262
|
*/
|
|
239
263
|
DesiredState: string | undefined;
|
|
240
264
|
}
|
|
265
|
+
/**
|
|
266
|
+
* @public
|
|
267
|
+
*/
|
|
241
268
|
export interface CreateResourceOutput {
|
|
242
269
|
/**
|
|
243
270
|
* <p>Represents the current status of the resource creation request.</p>
|
|
@@ -248,6 +275,7 @@ export interface CreateResourceOutput {
|
|
|
248
275
|
ProgressEvent?: ProgressEvent;
|
|
249
276
|
}
|
|
250
277
|
/**
|
|
278
|
+
* @public
|
|
251
279
|
* <p>The resource handler has returned that the downstream service generated an error that
|
|
252
280
|
* doesn't map to any other handler error code.</p>
|
|
253
281
|
*/
|
|
@@ -261,6 +289,7 @@ export declare class GeneralServiceException extends __BaseException {
|
|
|
261
289
|
constructor(opts: __ExceptionOptionType<GeneralServiceException, __BaseException>);
|
|
262
290
|
}
|
|
263
291
|
/**
|
|
292
|
+
* @public
|
|
264
293
|
* <p>The resource handler has failed without a returning a more specific error code. This can
|
|
265
294
|
* include timeouts.</p>
|
|
266
295
|
*/
|
|
@@ -274,6 +303,7 @@ export declare class HandlerFailureException extends __BaseException {
|
|
|
274
303
|
constructor(opts: __ExceptionOptionType<HandlerFailureException, __BaseException>);
|
|
275
304
|
}
|
|
276
305
|
/**
|
|
306
|
+
* @public
|
|
277
307
|
* <p>The resource handler has returned that an unexpected error occurred within the resource
|
|
278
308
|
* handler.</p>
|
|
279
309
|
*/
|
|
@@ -287,6 +317,7 @@ export declare class HandlerInternalFailureException extends __BaseException {
|
|
|
287
317
|
constructor(opts: __ExceptionOptionType<HandlerInternalFailureException, __BaseException>);
|
|
288
318
|
}
|
|
289
319
|
/**
|
|
320
|
+
* @public
|
|
290
321
|
* <p>The resource handler has returned that the credentials provided by the user are
|
|
291
322
|
* invalid.</p>
|
|
292
323
|
*/
|
|
@@ -300,6 +331,7 @@ export declare class InvalidCredentialsException extends __BaseException {
|
|
|
300
331
|
constructor(opts: __ExceptionOptionType<InvalidCredentialsException, __BaseException>);
|
|
301
332
|
}
|
|
302
333
|
/**
|
|
334
|
+
* @public
|
|
303
335
|
* <p>The resource handler has returned that invalid input from the user has generated a generic
|
|
304
336
|
* exception.</p>
|
|
305
337
|
*/
|
|
@@ -313,6 +345,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
313
345
|
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
314
346
|
}
|
|
315
347
|
/**
|
|
348
|
+
* @public
|
|
316
349
|
* <p>The resource handler has returned that the request couldn't be completed due to networking
|
|
317
350
|
* issues, such as a failure to receive a response from the server.</p>
|
|
318
351
|
*/
|
|
@@ -326,6 +359,7 @@ export declare class NetworkFailureException extends __BaseException {
|
|
|
326
359
|
constructor(opts: __ExceptionOptionType<NetworkFailureException, __BaseException>);
|
|
327
360
|
}
|
|
328
361
|
/**
|
|
362
|
+
* @public
|
|
329
363
|
* <p>The resource handler has returned that the downstream resource failed to complete all of
|
|
330
364
|
* its ready-state checks.</p>
|
|
331
365
|
*/
|
|
@@ -339,6 +373,7 @@ export declare class NotStabilizedException extends __BaseException {
|
|
|
339
373
|
constructor(opts: __ExceptionOptionType<NotStabilizedException, __BaseException>);
|
|
340
374
|
}
|
|
341
375
|
/**
|
|
376
|
+
* @public
|
|
342
377
|
* <p>One or more properties included in this resource operation are defined as create-only, and
|
|
343
378
|
* therefore can't be updated.</p>
|
|
344
379
|
*/
|
|
@@ -352,6 +387,7 @@ export declare class NotUpdatableException extends __BaseException {
|
|
|
352
387
|
constructor(opts: __ExceptionOptionType<NotUpdatableException, __BaseException>);
|
|
353
388
|
}
|
|
354
389
|
/**
|
|
390
|
+
* @public
|
|
355
391
|
* <p>Cloud Control API hasn't received a valid response from the resource handler, due to a configuration
|
|
356
392
|
* error. This includes issues such as the resource handler returning an invalid response, or
|
|
357
393
|
* timing out.</p>
|
|
@@ -366,6 +402,7 @@ export declare class PrivateTypeException extends __BaseException {
|
|
|
366
402
|
constructor(opts: __ExceptionOptionType<PrivateTypeException, __BaseException>);
|
|
367
403
|
}
|
|
368
404
|
/**
|
|
405
|
+
* @public
|
|
369
406
|
* <p>The resource is temporarily unavailable to be acted upon. For example, if the resource is
|
|
370
407
|
* currently undergoing an operation and can't be acted upon until that operation is
|
|
371
408
|
* finished.</p>
|
|
@@ -380,6 +417,7 @@ export declare class ResourceConflictException extends __BaseException {
|
|
|
380
417
|
constructor(opts: __ExceptionOptionType<ResourceConflictException, __BaseException>);
|
|
381
418
|
}
|
|
382
419
|
/**
|
|
420
|
+
* @public
|
|
383
421
|
* <p>A resource with the specified identifier can't be found.</p>
|
|
384
422
|
*/
|
|
385
423
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -392,6 +430,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
392
430
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
393
431
|
}
|
|
394
432
|
/**
|
|
433
|
+
* @public
|
|
395
434
|
* <p>The resource handler has returned that the downstream service returned an internal error,
|
|
396
435
|
* typically with a <code>5XX HTTP</code> status code.</p>
|
|
397
436
|
*/
|
|
@@ -405,6 +444,7 @@ export declare class ServiceInternalErrorException extends __BaseException {
|
|
|
405
444
|
constructor(opts: __ExceptionOptionType<ServiceInternalErrorException, __BaseException>);
|
|
406
445
|
}
|
|
407
446
|
/**
|
|
447
|
+
* @public
|
|
408
448
|
* <p>The resource handler has returned that a non-transient resource limit was reached on the
|
|
409
449
|
* service side.</p>
|
|
410
450
|
*/
|
|
@@ -418,6 +458,7 @@ export declare class ServiceLimitExceededException extends __BaseException {
|
|
|
418
458
|
constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
|
|
419
459
|
}
|
|
420
460
|
/**
|
|
461
|
+
* @public
|
|
421
462
|
* <p>The request was denied due to request throttling.</p>
|
|
422
463
|
*/
|
|
423
464
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -430,6 +471,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
430
471
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
431
472
|
}
|
|
432
473
|
/**
|
|
474
|
+
* @public
|
|
433
475
|
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
434
476
|
*/
|
|
435
477
|
export declare class TypeNotFoundException extends __BaseException {
|
|
@@ -442,6 +484,7 @@ export declare class TypeNotFoundException extends __BaseException {
|
|
|
442
484
|
constructor(opts: __ExceptionOptionType<TypeNotFoundException, __BaseException>);
|
|
443
485
|
}
|
|
444
486
|
/**
|
|
487
|
+
* @public
|
|
445
488
|
* <p>The specified resource doesn't support this resource operation.</p>
|
|
446
489
|
*/
|
|
447
490
|
export declare class UnsupportedActionException extends __BaseException {
|
|
@@ -453,6 +496,9 @@ export declare class UnsupportedActionException extends __BaseException {
|
|
|
453
496
|
*/
|
|
454
497
|
constructor(opts: __ExceptionOptionType<UnsupportedActionException, __BaseException>);
|
|
455
498
|
}
|
|
499
|
+
/**
|
|
500
|
+
* @public
|
|
501
|
+
*/
|
|
456
502
|
export interface DeleteResourceInput {
|
|
457
503
|
/**
|
|
458
504
|
* <p>The name of the resource type.</p>
|
|
@@ -485,6 +531,9 @@ export interface DeleteResourceInput {
|
|
|
485
531
|
*/
|
|
486
532
|
Identifier: string | undefined;
|
|
487
533
|
}
|
|
534
|
+
/**
|
|
535
|
+
* @public
|
|
536
|
+
*/
|
|
488
537
|
export interface DeleteResourceOutput {
|
|
489
538
|
/**
|
|
490
539
|
* <p>Represents the current status of the resource deletion request.</p>
|
|
@@ -494,6 +543,9 @@ export interface DeleteResourceOutput {
|
|
|
494
543
|
*/
|
|
495
544
|
ProgressEvent?: ProgressEvent;
|
|
496
545
|
}
|
|
546
|
+
/**
|
|
547
|
+
* @public
|
|
548
|
+
*/
|
|
497
549
|
export interface GetResourceInput {
|
|
498
550
|
/**
|
|
499
551
|
* <p>The name of the resource type.</p>
|
|
@@ -520,6 +572,7 @@ export interface GetResourceInput {
|
|
|
520
572
|
Identifier: string | undefined;
|
|
521
573
|
}
|
|
522
574
|
/**
|
|
575
|
+
* @public
|
|
523
576
|
* <p>Represents information about a provisioned resource.</p>
|
|
524
577
|
*/
|
|
525
578
|
export interface ResourceDescription {
|
|
@@ -534,6 +587,9 @@ export interface ResourceDescription {
|
|
|
534
587
|
*/
|
|
535
588
|
Properties?: string;
|
|
536
589
|
}
|
|
590
|
+
/**
|
|
591
|
+
* @public
|
|
592
|
+
*/
|
|
537
593
|
export interface GetResourceOutput {
|
|
538
594
|
/**
|
|
539
595
|
* <p>The name of the resource type.</p>
|
|
@@ -544,6 +600,9 @@ export interface GetResourceOutput {
|
|
|
544
600
|
*/
|
|
545
601
|
ResourceDescription?: ResourceDescription;
|
|
546
602
|
}
|
|
603
|
+
/**
|
|
604
|
+
* @public
|
|
605
|
+
*/
|
|
547
606
|
export interface GetResourceRequestStatusInput {
|
|
548
607
|
/**
|
|
549
608
|
* <p>A unique token used to track the progress of the resource operation request.</p>
|
|
@@ -552,6 +611,9 @@ export interface GetResourceRequestStatusInput {
|
|
|
552
611
|
*/
|
|
553
612
|
RequestToken: string | undefined;
|
|
554
613
|
}
|
|
614
|
+
/**
|
|
615
|
+
* @public
|
|
616
|
+
*/
|
|
555
617
|
export interface GetResourceRequestStatusOutput {
|
|
556
618
|
/**
|
|
557
619
|
* <p>Represents the current status of the resource operation request.</p>
|
|
@@ -559,6 +621,7 @@ export interface GetResourceRequestStatusOutput {
|
|
|
559
621
|
ProgressEvent?: ProgressEvent;
|
|
560
622
|
}
|
|
561
623
|
/**
|
|
624
|
+
* @public
|
|
562
625
|
* <p>The filter criteria to use in determining the requests returned.</p>
|
|
563
626
|
*/
|
|
564
627
|
export interface ResourceRequestStatusFilter {
|
|
@@ -598,6 +661,9 @@ export interface ResourceRequestStatusFilter {
|
|
|
598
661
|
*/
|
|
599
662
|
OperationStatuses?: (OperationStatus | string)[];
|
|
600
663
|
}
|
|
664
|
+
/**
|
|
665
|
+
* @public
|
|
666
|
+
*/
|
|
601
667
|
export interface ListResourceRequestsInput {
|
|
602
668
|
/**
|
|
603
669
|
* <p>The maximum number of results to be returned with a single call. If the number of
|
|
@@ -616,6 +682,9 @@ export interface ListResourceRequestsInput {
|
|
|
616
682
|
*/
|
|
617
683
|
ResourceRequestStatusFilter?: ResourceRequestStatusFilter;
|
|
618
684
|
}
|
|
685
|
+
/**
|
|
686
|
+
* @public
|
|
687
|
+
*/
|
|
619
688
|
export interface ListResourceRequestsOutput {
|
|
620
689
|
/**
|
|
621
690
|
* <p>The requests that match the specified filter criteria.</p>
|
|
@@ -626,6 +695,9 @@ export interface ListResourceRequestsOutput {
|
|
|
626
695
|
*/
|
|
627
696
|
NextToken?: string;
|
|
628
697
|
}
|
|
698
|
+
/**
|
|
699
|
+
* @public
|
|
700
|
+
*/
|
|
629
701
|
export interface ListResourcesInput {
|
|
630
702
|
/**
|
|
631
703
|
* <p>The name of the resource type.</p>
|
|
@@ -656,6 +728,9 @@ export interface ListResourcesInput {
|
|
|
656
728
|
*/
|
|
657
729
|
ResourceModel?: string;
|
|
658
730
|
}
|
|
731
|
+
/**
|
|
732
|
+
* @public
|
|
733
|
+
*/
|
|
659
734
|
export interface ListResourcesOutput {
|
|
660
735
|
/**
|
|
661
736
|
* <p>The name of the resource type.</p>
|
|
@@ -671,6 +746,9 @@ export interface ListResourcesOutput {
|
|
|
671
746
|
*/
|
|
672
747
|
NextToken?: string;
|
|
673
748
|
}
|
|
749
|
+
/**
|
|
750
|
+
* @public
|
|
751
|
+
*/
|
|
674
752
|
export interface UpdateResourceInput {
|
|
675
753
|
/**
|
|
676
754
|
* <p>The name of the resource type.</p>
|
|
@@ -709,6 +787,9 @@ export interface UpdateResourceInput {
|
|
|
709
787
|
*/
|
|
710
788
|
PatchDocument: string | undefined;
|
|
711
789
|
}
|
|
790
|
+
/**
|
|
791
|
+
* @public
|
|
792
|
+
*/
|
|
712
793
|
export interface UpdateResourceOutput {
|
|
713
794
|
/**
|
|
714
795
|
* <p>Represents the current status of the resource update request.</p>
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput } from "../commands/ListResourceRequestsCommand";
|
|
3
3
|
import { CloudControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListResourceRequests(config: CloudControlPaginationConfiguration, input: ListResourceRequestsCommandInput, ...additionalArguments: any): Paginator<ListResourceRequestsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "../commands/ListResourcesCommand";
|
|
3
3
|
import { CloudControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListResources(config: CloudControlPaginationConfiguration, input: ListResourcesCommandInput, ...additionalArguments: any): Paginator<ListResourcesCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudcontrol",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudcontrol Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.297.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|