@aws-sdk/client-cloudcontrol 3.325.0 → 3.326.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/commands/CancelResourceRequestCommand.d.ts +17 -0
- package/dist-types/commands/CreateResourceCommand.d.ts +17 -0
- package/dist-types/commands/DeleteResourceCommand.d.ts +17 -0
- package/dist-types/commands/GetResourceCommand.d.ts +10 -0
- package/dist-types/commands/GetResourceRequestStatusCommand.d.ts +17 -0
- package/dist-types/commands/ListResourceRequestsCommand.d.ts +20 -0
- package/dist-types/commands/ListResourcesCommand.d.ts +13 -0
- package/dist-types/commands/UpdateResourceCommand.d.ts +17 -0
- package/package.json +3 -3
|
@@ -34,6 +34,21 @@ export interface CancelResourceRequestCommandOutput extends CancelResourceReques
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new CancelResourceRequestCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // CancelResourceRequestOutput
|
|
38
|
+
* // ProgressEvent: { // ProgressEvent
|
|
39
|
+
* // TypeName: "STRING_VALUE",
|
|
40
|
+
* // Identifier: "STRING_VALUE",
|
|
41
|
+
* // RequestToken: "STRING_VALUE",
|
|
42
|
+
* // Operation: "STRING_VALUE",
|
|
43
|
+
* // OperationStatus: "STRING_VALUE",
|
|
44
|
+
* // EventTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // ResourceModel: "STRING_VALUE",
|
|
46
|
+
* // StatusMessage: "STRING_VALUE",
|
|
47
|
+
* // ErrorCode: "STRING_VALUE",
|
|
48
|
+
* // RetryAfter: new Date("TIMESTAMP"),
|
|
49
|
+
* // },
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
37
52
|
* ```
|
|
38
53
|
*
|
|
39
54
|
* @param CancelResourceRequestCommandInput - {@link CancelResourceRequestCommandInput}
|
|
@@ -48,6 +63,8 @@ export interface CancelResourceRequestCommandOutput extends CancelResourceReques
|
|
|
48
63
|
* @throws {@link RequestTokenNotFoundException} (client fault)
|
|
49
64
|
* <p>A resource operation with the specified request token can't be found.</p>
|
|
50
65
|
*
|
|
66
|
+
* @throws {@link CloudControlServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from CloudControl service.</p>
|
|
51
68
|
*
|
|
52
69
|
*/
|
|
53
70
|
export declare class CancelResourceRequestCommand extends $Command<CancelResourceRequestCommandInput, CancelResourceRequestCommandOutput, CloudControlClientResolvedConfig> {
|
|
@@ -39,6 +39,21 @@ export interface CreateResourceCommandOutput extends CreateResourceOutput, __Met
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new CreateResourceCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // CreateResourceOutput
|
|
43
|
+
* // ProgressEvent: { // ProgressEvent
|
|
44
|
+
* // TypeName: "STRING_VALUE",
|
|
45
|
+
* // Identifier: "STRING_VALUE",
|
|
46
|
+
* // RequestToken: "STRING_VALUE",
|
|
47
|
+
* // Operation: "STRING_VALUE",
|
|
48
|
+
* // OperationStatus: "STRING_VALUE",
|
|
49
|
+
* // EventTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // ResourceModel: "STRING_VALUE",
|
|
51
|
+
* // StatusMessage: "STRING_VALUE",
|
|
52
|
+
* // ErrorCode: "STRING_VALUE",
|
|
53
|
+
* // RetryAfter: new Date("TIMESTAMP"),
|
|
54
|
+
* // },
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
42
57
|
* ```
|
|
43
58
|
*
|
|
44
59
|
* @param CreateResourceCommandInput - {@link CreateResourceCommandInput}
|
|
@@ -120,6 +135,8 @@ export interface CreateResourceCommandOutput extends CreateResourceOutput, __Met
|
|
|
120
135
|
* @throws {@link UnsupportedActionException} (client fault)
|
|
121
136
|
* <p>The specified resource doesn't support this resource operation.</p>
|
|
122
137
|
*
|
|
138
|
+
* @throws {@link CloudControlServiceException}
|
|
139
|
+
* <p>Base exception class for all service exceptions from CloudControl service.</p>
|
|
123
140
|
*
|
|
124
141
|
*/
|
|
125
142
|
export declare class CreateResourceCommand extends $Command<CreateResourceCommandInput, CreateResourceCommandOutput, CloudControlClientResolvedConfig> {
|
|
@@ -39,6 +39,21 @@ export interface DeleteResourceCommandOutput extends DeleteResourceOutput, __Met
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new DeleteResourceCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // DeleteResourceOutput
|
|
43
|
+
* // ProgressEvent: { // ProgressEvent
|
|
44
|
+
* // TypeName: "STRING_VALUE",
|
|
45
|
+
* // Identifier: "STRING_VALUE",
|
|
46
|
+
* // RequestToken: "STRING_VALUE",
|
|
47
|
+
* // Operation: "STRING_VALUE",
|
|
48
|
+
* // OperationStatus: "STRING_VALUE",
|
|
49
|
+
* // EventTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // ResourceModel: "STRING_VALUE",
|
|
51
|
+
* // StatusMessage: "STRING_VALUE",
|
|
52
|
+
* // ErrorCode: "STRING_VALUE",
|
|
53
|
+
* // RetryAfter: new Date("TIMESTAMP"),
|
|
54
|
+
* // },
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
42
57
|
* ```
|
|
43
58
|
*
|
|
44
59
|
* @param DeleteResourceCommandInput - {@link DeleteResourceCommandInput}
|
|
@@ -120,6 +135,8 @@ export interface DeleteResourceCommandOutput extends DeleteResourceOutput, __Met
|
|
|
120
135
|
* @throws {@link UnsupportedActionException} (client fault)
|
|
121
136
|
* <p>The specified resource doesn't support this resource operation.</p>
|
|
122
137
|
*
|
|
138
|
+
* @throws {@link CloudControlServiceException}
|
|
139
|
+
* <p>Base exception class for all service exceptions from CloudControl service.</p>
|
|
123
140
|
*
|
|
124
141
|
*/
|
|
125
142
|
export declare class DeleteResourceCommand extends $Command<DeleteResourceCommandInput, DeleteResourceCommandOutput, CloudControlClientResolvedConfig> {
|
|
@@ -37,6 +37,14 @@ export interface GetResourceCommandOutput extends GetResourceOutput, __MetadataB
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new GetResourceCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // GetResourceOutput
|
|
41
|
+
* // TypeName: "STRING_VALUE",
|
|
42
|
+
* // ResourceDescription: { // ResourceDescription
|
|
43
|
+
* // Identifier: "STRING_VALUE",
|
|
44
|
+
* // Properties: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
40
48
|
* ```
|
|
41
49
|
*
|
|
42
50
|
* @param GetResourceCommandInput - {@link GetResourceCommandInput}
|
|
@@ -110,6 +118,8 @@ export interface GetResourceCommandOutput extends GetResourceOutput, __MetadataB
|
|
|
110
118
|
* @throws {@link UnsupportedActionException} (client fault)
|
|
111
119
|
* <p>The specified resource doesn't support this resource operation.</p>
|
|
112
120
|
*
|
|
121
|
+
* @throws {@link CloudControlServiceException}
|
|
122
|
+
* <p>Base exception class for all service exceptions from CloudControl service.</p>
|
|
113
123
|
*
|
|
114
124
|
*/
|
|
115
125
|
export declare class GetResourceCommand extends $Command<GetResourceCommandInput, GetResourceCommandOutput, CloudControlClientResolvedConfig> {
|
|
@@ -33,6 +33,21 @@ export interface GetResourceRequestStatusCommandOutput extends GetResourceReques
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetResourceRequestStatusCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetResourceRequestStatusOutput
|
|
37
|
+
* // ProgressEvent: { // ProgressEvent
|
|
38
|
+
* // TypeName: "STRING_VALUE",
|
|
39
|
+
* // Identifier: "STRING_VALUE",
|
|
40
|
+
* // RequestToken: "STRING_VALUE",
|
|
41
|
+
* // Operation: "STRING_VALUE",
|
|
42
|
+
* // OperationStatus: "STRING_VALUE",
|
|
43
|
+
* // EventTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // ResourceModel: "STRING_VALUE",
|
|
45
|
+
* // StatusMessage: "STRING_VALUE",
|
|
46
|
+
* // ErrorCode: "STRING_VALUE",
|
|
47
|
+
* // RetryAfter: new Date("TIMESTAMP"),
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
36
51
|
* ```
|
|
37
52
|
*
|
|
38
53
|
* @param GetResourceRequestStatusCommandInput - {@link GetResourceRequestStatusCommandInput}
|
|
@@ -44,6 +59,8 @@ export interface GetResourceRequestStatusCommandOutput extends GetResourceReques
|
|
|
44
59
|
* @throws {@link RequestTokenNotFoundException} (client fault)
|
|
45
60
|
* <p>A resource operation with the specified request token can't be found.</p>
|
|
46
61
|
*
|
|
62
|
+
* @throws {@link CloudControlServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from CloudControl service.</p>
|
|
47
64
|
*
|
|
48
65
|
*/
|
|
49
66
|
export declare class GetResourceRequestStatusCommand extends $Command<GetResourceRequestStatusCommandInput, GetResourceRequestStatusCommandOutput, CloudControlClientResolvedConfig> {
|
|
@@ -45,6 +45,24 @@ export interface ListResourceRequestsCommandOutput extends ListResourceRequestsO
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new ListResourceRequestsCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // { // ListResourceRequestsOutput
|
|
49
|
+
* // ResourceRequestStatusSummaries: [ // ResourceRequestStatusSummaries
|
|
50
|
+
* // { // ProgressEvent
|
|
51
|
+
* // TypeName: "STRING_VALUE",
|
|
52
|
+
* // Identifier: "STRING_VALUE",
|
|
53
|
+
* // RequestToken: "STRING_VALUE",
|
|
54
|
+
* // Operation: "STRING_VALUE",
|
|
55
|
+
* // OperationStatus: "STRING_VALUE",
|
|
56
|
+
* // EventTime: new Date("TIMESTAMP"),
|
|
57
|
+
* // ResourceModel: "STRING_VALUE",
|
|
58
|
+
* // StatusMessage: "STRING_VALUE",
|
|
59
|
+
* // ErrorCode: "STRING_VALUE",
|
|
60
|
+
* // RetryAfter: new Date("TIMESTAMP"),
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // NextToken: "STRING_VALUE",
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
48
66
|
* ```
|
|
49
67
|
*
|
|
50
68
|
* @param ListResourceRequestsCommandInput - {@link ListResourceRequestsCommandInput}
|
|
@@ -53,6 +71,8 @@ export interface ListResourceRequestsCommandOutput extends ListResourceRequestsO
|
|
|
53
71
|
* @see {@link ListResourceRequestsCommandOutput} for command's `response` shape.
|
|
54
72
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
55
73
|
*
|
|
74
|
+
* @throws {@link CloudControlServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from CloudControl service.</p>
|
|
56
76
|
*
|
|
57
77
|
*/
|
|
58
78
|
export declare class ListResourceRequestsCommand extends $Command<ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput, CloudControlClientResolvedConfig> {
|
|
@@ -38,6 +38,17 @@ export interface ListResourcesCommandOutput extends ListResourcesOutput, __Metad
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ListResourcesCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ListResourcesOutput
|
|
42
|
+
* // TypeName: "STRING_VALUE",
|
|
43
|
+
* // ResourceDescriptions: [ // ResourceDescriptions
|
|
44
|
+
* // { // ResourceDescription
|
|
45
|
+
* // Identifier: "STRING_VALUE",
|
|
46
|
+
* // Properties: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // NextToken: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
41
52
|
* ```
|
|
42
53
|
*
|
|
43
54
|
* @param ListResourcesCommandInput - {@link ListResourcesCommandInput}
|
|
@@ -111,6 +122,8 @@ export interface ListResourcesCommandOutput extends ListResourcesOutput, __Metad
|
|
|
111
122
|
* @throws {@link UnsupportedActionException} (client fault)
|
|
112
123
|
* <p>The specified resource doesn't support this resource operation.</p>
|
|
113
124
|
*
|
|
125
|
+
* @throws {@link CloudControlServiceException}
|
|
126
|
+
* <p>Base exception class for all service exceptions from CloudControl service.</p>
|
|
114
127
|
*
|
|
115
128
|
*/
|
|
116
129
|
export declare class ListResourcesCommand extends $Command<ListResourcesCommandInput, ListResourcesCommandOutput, CloudControlClientResolvedConfig> {
|
|
@@ -47,6 +47,21 @@ export interface UpdateResourceCommandOutput extends UpdateResourceOutput, __Met
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new UpdateResourceCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // { // UpdateResourceOutput
|
|
51
|
+
* // ProgressEvent: { // ProgressEvent
|
|
52
|
+
* // TypeName: "STRING_VALUE",
|
|
53
|
+
* // Identifier: "STRING_VALUE",
|
|
54
|
+
* // RequestToken: "STRING_VALUE",
|
|
55
|
+
* // Operation: "STRING_VALUE",
|
|
56
|
+
* // OperationStatus: "STRING_VALUE",
|
|
57
|
+
* // EventTime: new Date("TIMESTAMP"),
|
|
58
|
+
* // ResourceModel: "STRING_VALUE",
|
|
59
|
+
* // StatusMessage: "STRING_VALUE",
|
|
60
|
+
* // ErrorCode: "STRING_VALUE",
|
|
61
|
+
* // RetryAfter: new Date("TIMESTAMP"),
|
|
62
|
+
* // },
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
50
65
|
* ```
|
|
51
66
|
*
|
|
52
67
|
* @param UpdateResourceCommandInput - {@link UpdateResourceCommandInput}
|
|
@@ -128,6 +143,8 @@ export interface UpdateResourceCommandOutput extends UpdateResourceOutput, __Met
|
|
|
128
143
|
* @throws {@link UnsupportedActionException} (client fault)
|
|
129
144
|
* <p>The specified resource doesn't support this resource operation.</p>
|
|
130
145
|
*
|
|
146
|
+
* @throws {@link CloudControlServiceException}
|
|
147
|
+
* <p>Base exception class for all service exceptions from CloudControl service.</p>
|
|
131
148
|
*
|
|
132
149
|
*/
|
|
133
150
|
export declare class UpdateResourceCommand extends $Command<UpdateResourceCommandInput, UpdateResourceCommandOutput, CloudControlClientResolvedConfig> {
|
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.326.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|