@aws-sdk/client-cloudcontrol 3.50.0 → 3.53.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/CloudControlServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +296 -1
- package/dist-cjs/protocols/Aws_json1_0.js +195 -751
- package/dist-es/index.js +1 -0
- package/dist-es/models/CloudControlServiceException.js +12 -0
- package/dist-es/models/models_0.js +275 -1
- package/dist-es/protocols/Aws_json1_0.js +350 -735
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CloudControlServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +149 -64
- package/dist-types/ts3.4/CloudControl.d.ts +45 -0
- package/dist-types/ts3.4/CloudControlClient.d.ts +81 -0
- package/dist-types/ts3.4/commands/CancelResourceRequestCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetResourceRequestStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListResourceRequestsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListResourcesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +7 -0
- package/dist-types/ts3.4/models/CloudControlServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +431 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListResourceRequestsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListResourcesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +26 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForResourceRequestSuccess.d.ts +7 -0
- package/package.json +34 -34
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from "./CloudControl";
|
|
2
|
+
export * from "./CloudControlClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export * from "./waiters";
|
|
7
|
+
export { CloudControlServiceException } from "./models/CloudControlServiceException";
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class CloudControlServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,431 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CloudControlServiceException as __BaseException } from "./CloudControlServiceException";
|
|
3
|
+
|
|
4
|
+
export declare class AlreadyExistsException extends __BaseException {
|
|
5
|
+
readonly name: "AlreadyExistsException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
Message?: string;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
10
|
+
}
|
|
11
|
+
export interface CancelResourceRequestInput {
|
|
12
|
+
|
|
13
|
+
RequestToken: string | undefined;
|
|
14
|
+
}
|
|
15
|
+
export declare namespace CancelResourceRequestInput {
|
|
16
|
+
|
|
17
|
+
const filterSensitiveLog: (obj: CancelResourceRequestInput) => any;
|
|
18
|
+
}
|
|
19
|
+
export declare enum HandlerErrorCode {
|
|
20
|
+
ACCESS_DENIED = "AccessDenied",
|
|
21
|
+
ALREADY_EXISTS = "AlreadyExists",
|
|
22
|
+
GENERAL_SERVICE_EXCEPTION = "GeneralServiceException",
|
|
23
|
+
INTERNAL_FAILURE = "InternalFailure",
|
|
24
|
+
INVALID_CREDENTIALS = "InvalidCredentials",
|
|
25
|
+
INVALID_REQUEST = "InvalidRequest",
|
|
26
|
+
NETWORK_FAILURE = "NetworkFailure",
|
|
27
|
+
NOT_FOUND = "NotFound",
|
|
28
|
+
NOT_STABILIZED = "NotStabilized",
|
|
29
|
+
NOT_UPDATABLE = "NotUpdatable",
|
|
30
|
+
RESOURCE_CONFLICT = "ResourceConflict",
|
|
31
|
+
SERVICE_INTERNAL_ERROR = "ServiceInternalError",
|
|
32
|
+
SERVICE_LIMIT_EXCEEDED = "ServiceLimitExceeded",
|
|
33
|
+
SERVICE_TIMEOUT = "ServiceTimeout",
|
|
34
|
+
THROTTLING = "Throttling"
|
|
35
|
+
}
|
|
36
|
+
export declare enum Operation {
|
|
37
|
+
CREATE = "CREATE",
|
|
38
|
+
DELETE = "DELETE",
|
|
39
|
+
UPDATE = "UPDATE"
|
|
40
|
+
}
|
|
41
|
+
export declare enum OperationStatus {
|
|
42
|
+
CANCEL_COMPLETE = "CANCEL_COMPLETE",
|
|
43
|
+
CANCEL_IN_PROGRESS = "CANCEL_IN_PROGRESS",
|
|
44
|
+
FAILED = "FAILED",
|
|
45
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
46
|
+
PENDING = "PENDING",
|
|
47
|
+
SUCCESS = "SUCCESS"
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export interface ProgressEvent {
|
|
51
|
+
|
|
52
|
+
TypeName?: string;
|
|
53
|
+
|
|
54
|
+
Identifier?: string;
|
|
55
|
+
|
|
56
|
+
RequestToken?: string;
|
|
57
|
+
|
|
58
|
+
Operation?: Operation | string;
|
|
59
|
+
|
|
60
|
+
OperationStatus?: OperationStatus | string;
|
|
61
|
+
|
|
62
|
+
EventTime?: Date;
|
|
63
|
+
|
|
64
|
+
ResourceModel?: string;
|
|
65
|
+
|
|
66
|
+
StatusMessage?: string;
|
|
67
|
+
|
|
68
|
+
ErrorCode?: HandlerErrorCode | string;
|
|
69
|
+
|
|
70
|
+
RetryAfter?: Date;
|
|
71
|
+
}
|
|
72
|
+
export declare namespace ProgressEvent {
|
|
73
|
+
|
|
74
|
+
const filterSensitiveLog: (obj: ProgressEvent) => any;
|
|
75
|
+
}
|
|
76
|
+
export interface CancelResourceRequestOutput {
|
|
77
|
+
|
|
78
|
+
ProgressEvent?: ProgressEvent;
|
|
79
|
+
}
|
|
80
|
+
export declare namespace CancelResourceRequestOutput {
|
|
81
|
+
|
|
82
|
+
const filterSensitiveLog: (obj: CancelResourceRequestOutput) => any;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
86
|
+
readonly name: "ConcurrentModificationException";
|
|
87
|
+
readonly $fault: "server";
|
|
88
|
+
Message?: string;
|
|
89
|
+
|
|
90
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export declare class RequestTokenNotFoundException extends __BaseException {
|
|
94
|
+
readonly name: "RequestTokenNotFoundException";
|
|
95
|
+
readonly $fault: "client";
|
|
96
|
+
Message?: string;
|
|
97
|
+
|
|
98
|
+
constructor(opts: __ExceptionOptionType<RequestTokenNotFoundException, __BaseException>);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export declare class ClientTokenConflictException extends __BaseException {
|
|
102
|
+
readonly name: "ClientTokenConflictException";
|
|
103
|
+
readonly $fault: "client";
|
|
104
|
+
Message?: string;
|
|
105
|
+
|
|
106
|
+
constructor(opts: __ExceptionOptionType<ClientTokenConflictException, __BaseException>);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export declare class ConcurrentOperationException extends __BaseException {
|
|
110
|
+
readonly name: "ConcurrentOperationException";
|
|
111
|
+
readonly $fault: "client";
|
|
112
|
+
Message?: string;
|
|
113
|
+
|
|
114
|
+
constructor(opts: __ExceptionOptionType<ConcurrentOperationException, __BaseException>);
|
|
115
|
+
}
|
|
116
|
+
export interface CreateResourceInput {
|
|
117
|
+
|
|
118
|
+
TypeName: string | undefined;
|
|
119
|
+
|
|
120
|
+
TypeVersionId?: string;
|
|
121
|
+
|
|
122
|
+
RoleArn?: string;
|
|
123
|
+
|
|
124
|
+
ClientToken?: string;
|
|
125
|
+
|
|
126
|
+
DesiredState: string | undefined;
|
|
127
|
+
}
|
|
128
|
+
export declare namespace CreateResourceInput {
|
|
129
|
+
|
|
130
|
+
const filterSensitiveLog: (obj: CreateResourceInput) => any;
|
|
131
|
+
}
|
|
132
|
+
export interface CreateResourceOutput {
|
|
133
|
+
|
|
134
|
+
ProgressEvent?: ProgressEvent;
|
|
135
|
+
}
|
|
136
|
+
export declare namespace CreateResourceOutput {
|
|
137
|
+
|
|
138
|
+
const filterSensitiveLog: (obj: CreateResourceOutput) => any;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export declare class GeneralServiceException extends __BaseException {
|
|
142
|
+
readonly name: "GeneralServiceException";
|
|
143
|
+
readonly $fault: "client";
|
|
144
|
+
Message?: string;
|
|
145
|
+
|
|
146
|
+
constructor(opts: __ExceptionOptionType<GeneralServiceException, __BaseException>);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
export declare class HandlerFailureException extends __BaseException {
|
|
150
|
+
readonly name: "HandlerFailureException";
|
|
151
|
+
readonly $fault: "server";
|
|
152
|
+
Message?: string;
|
|
153
|
+
|
|
154
|
+
constructor(opts: __ExceptionOptionType<HandlerFailureException, __BaseException>);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
export declare class HandlerInternalFailureException extends __BaseException {
|
|
158
|
+
readonly name: "HandlerInternalFailureException";
|
|
159
|
+
readonly $fault: "server";
|
|
160
|
+
Message?: string;
|
|
161
|
+
|
|
162
|
+
constructor(opts: __ExceptionOptionType<HandlerInternalFailureException, __BaseException>);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export declare class InvalidCredentialsException extends __BaseException {
|
|
166
|
+
readonly name: "InvalidCredentialsException";
|
|
167
|
+
readonly $fault: "client";
|
|
168
|
+
Message?: string;
|
|
169
|
+
|
|
170
|
+
constructor(opts: __ExceptionOptionType<InvalidCredentialsException, __BaseException>);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
174
|
+
readonly name: "InvalidRequestException";
|
|
175
|
+
readonly $fault: "client";
|
|
176
|
+
Message?: string;
|
|
177
|
+
|
|
178
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
export declare class NetworkFailureException extends __BaseException {
|
|
182
|
+
readonly name: "NetworkFailureException";
|
|
183
|
+
readonly $fault: "server";
|
|
184
|
+
Message?: string;
|
|
185
|
+
|
|
186
|
+
constructor(opts: __ExceptionOptionType<NetworkFailureException, __BaseException>);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
export declare class NotStabilizedException extends __BaseException {
|
|
190
|
+
readonly name: "NotStabilizedException";
|
|
191
|
+
readonly $fault: "client";
|
|
192
|
+
Message?: string;
|
|
193
|
+
|
|
194
|
+
constructor(opts: __ExceptionOptionType<NotStabilizedException, __BaseException>);
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
export declare class NotUpdatableException extends __BaseException {
|
|
198
|
+
readonly name: "NotUpdatableException";
|
|
199
|
+
readonly $fault: "client";
|
|
200
|
+
Message?: string;
|
|
201
|
+
|
|
202
|
+
constructor(opts: __ExceptionOptionType<NotUpdatableException, __BaseException>);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
export declare class PrivateTypeException extends __BaseException {
|
|
206
|
+
readonly name: "PrivateTypeException";
|
|
207
|
+
readonly $fault: "client";
|
|
208
|
+
Message?: string;
|
|
209
|
+
|
|
210
|
+
constructor(opts: __ExceptionOptionType<PrivateTypeException, __BaseException>);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
export declare class ResourceConflictException extends __BaseException {
|
|
214
|
+
readonly name: "ResourceConflictException";
|
|
215
|
+
readonly $fault: "client";
|
|
216
|
+
Message?: string;
|
|
217
|
+
|
|
218
|
+
constructor(opts: __ExceptionOptionType<ResourceConflictException, __BaseException>);
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
222
|
+
readonly name: "ResourceNotFoundException";
|
|
223
|
+
readonly $fault: "client";
|
|
224
|
+
Message?: string;
|
|
225
|
+
|
|
226
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
export declare class ServiceInternalErrorException extends __BaseException {
|
|
230
|
+
readonly name: "ServiceInternalErrorException";
|
|
231
|
+
readonly $fault: "server";
|
|
232
|
+
Message?: string;
|
|
233
|
+
|
|
234
|
+
constructor(opts: __ExceptionOptionType<ServiceInternalErrorException, __BaseException>);
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
export declare class ServiceLimitExceededException extends __BaseException {
|
|
238
|
+
readonly name: "ServiceLimitExceededException";
|
|
239
|
+
readonly $fault: "client";
|
|
240
|
+
Message?: string;
|
|
241
|
+
|
|
242
|
+
constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
export declare class ThrottlingException extends __BaseException {
|
|
246
|
+
readonly name: "ThrottlingException";
|
|
247
|
+
readonly $fault: "client";
|
|
248
|
+
Message?: string;
|
|
249
|
+
|
|
250
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
export declare class TypeNotFoundException extends __BaseException {
|
|
254
|
+
readonly name: "TypeNotFoundException";
|
|
255
|
+
readonly $fault: "client";
|
|
256
|
+
Message?: string;
|
|
257
|
+
|
|
258
|
+
constructor(opts: __ExceptionOptionType<TypeNotFoundException, __BaseException>);
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
export declare class UnsupportedActionException extends __BaseException {
|
|
262
|
+
readonly name: "UnsupportedActionException";
|
|
263
|
+
readonly $fault: "client";
|
|
264
|
+
Message?: string;
|
|
265
|
+
|
|
266
|
+
constructor(opts: __ExceptionOptionType<UnsupportedActionException, __BaseException>);
|
|
267
|
+
}
|
|
268
|
+
export interface DeleteResourceInput {
|
|
269
|
+
|
|
270
|
+
TypeName: string | undefined;
|
|
271
|
+
|
|
272
|
+
TypeVersionId?: string;
|
|
273
|
+
|
|
274
|
+
RoleArn?: string;
|
|
275
|
+
|
|
276
|
+
ClientToken?: string;
|
|
277
|
+
|
|
278
|
+
Identifier: string | undefined;
|
|
279
|
+
}
|
|
280
|
+
export declare namespace DeleteResourceInput {
|
|
281
|
+
|
|
282
|
+
const filterSensitiveLog: (obj: DeleteResourceInput) => any;
|
|
283
|
+
}
|
|
284
|
+
export interface DeleteResourceOutput {
|
|
285
|
+
|
|
286
|
+
ProgressEvent?: ProgressEvent;
|
|
287
|
+
}
|
|
288
|
+
export declare namespace DeleteResourceOutput {
|
|
289
|
+
|
|
290
|
+
const filterSensitiveLog: (obj: DeleteResourceOutput) => any;
|
|
291
|
+
}
|
|
292
|
+
export interface GetResourceInput {
|
|
293
|
+
|
|
294
|
+
TypeName: string | undefined;
|
|
295
|
+
|
|
296
|
+
TypeVersionId?: string;
|
|
297
|
+
|
|
298
|
+
RoleArn?: string;
|
|
299
|
+
|
|
300
|
+
Identifier: string | undefined;
|
|
301
|
+
}
|
|
302
|
+
export declare namespace GetResourceInput {
|
|
303
|
+
|
|
304
|
+
const filterSensitiveLog: (obj: GetResourceInput) => any;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
export interface ResourceDescription {
|
|
308
|
+
|
|
309
|
+
Identifier?: string;
|
|
310
|
+
|
|
311
|
+
Properties?: string;
|
|
312
|
+
}
|
|
313
|
+
export declare namespace ResourceDescription {
|
|
314
|
+
|
|
315
|
+
const filterSensitiveLog: (obj: ResourceDescription) => any;
|
|
316
|
+
}
|
|
317
|
+
export interface GetResourceOutput {
|
|
318
|
+
|
|
319
|
+
TypeName?: string;
|
|
320
|
+
|
|
321
|
+
ResourceDescription?: ResourceDescription;
|
|
322
|
+
}
|
|
323
|
+
export declare namespace GetResourceOutput {
|
|
324
|
+
|
|
325
|
+
const filterSensitiveLog: (obj: GetResourceOutput) => any;
|
|
326
|
+
}
|
|
327
|
+
export interface GetResourceRequestStatusInput {
|
|
328
|
+
|
|
329
|
+
RequestToken: string | undefined;
|
|
330
|
+
}
|
|
331
|
+
export declare namespace GetResourceRequestStatusInput {
|
|
332
|
+
|
|
333
|
+
const filterSensitiveLog: (obj: GetResourceRequestStatusInput) => any;
|
|
334
|
+
}
|
|
335
|
+
export interface GetResourceRequestStatusOutput {
|
|
336
|
+
|
|
337
|
+
ProgressEvent?: ProgressEvent;
|
|
338
|
+
}
|
|
339
|
+
export declare namespace GetResourceRequestStatusOutput {
|
|
340
|
+
|
|
341
|
+
const filterSensitiveLog: (obj: GetResourceRequestStatusOutput) => any;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
export interface ResourceRequestStatusFilter {
|
|
345
|
+
|
|
346
|
+
Operations?: (Operation | string)[];
|
|
347
|
+
|
|
348
|
+
OperationStatuses?: (OperationStatus | string)[];
|
|
349
|
+
}
|
|
350
|
+
export declare namespace ResourceRequestStatusFilter {
|
|
351
|
+
|
|
352
|
+
const filterSensitiveLog: (obj: ResourceRequestStatusFilter) => any;
|
|
353
|
+
}
|
|
354
|
+
export interface ListResourceRequestsInput {
|
|
355
|
+
|
|
356
|
+
MaxResults?: number;
|
|
357
|
+
|
|
358
|
+
NextToken?: string;
|
|
359
|
+
|
|
360
|
+
ResourceRequestStatusFilter?: ResourceRequestStatusFilter;
|
|
361
|
+
}
|
|
362
|
+
export declare namespace ListResourceRequestsInput {
|
|
363
|
+
|
|
364
|
+
const filterSensitiveLog: (obj: ListResourceRequestsInput) => any;
|
|
365
|
+
}
|
|
366
|
+
export interface ListResourceRequestsOutput {
|
|
367
|
+
|
|
368
|
+
ResourceRequestStatusSummaries?: ProgressEvent[];
|
|
369
|
+
|
|
370
|
+
NextToken?: string;
|
|
371
|
+
}
|
|
372
|
+
export declare namespace ListResourceRequestsOutput {
|
|
373
|
+
|
|
374
|
+
const filterSensitiveLog: (obj: ListResourceRequestsOutput) => any;
|
|
375
|
+
}
|
|
376
|
+
export interface ListResourcesInput {
|
|
377
|
+
|
|
378
|
+
TypeName: string | undefined;
|
|
379
|
+
|
|
380
|
+
TypeVersionId?: string;
|
|
381
|
+
|
|
382
|
+
RoleArn?: string;
|
|
383
|
+
|
|
384
|
+
NextToken?: string;
|
|
385
|
+
|
|
386
|
+
MaxResults?: number;
|
|
387
|
+
|
|
388
|
+
ResourceModel?: string;
|
|
389
|
+
}
|
|
390
|
+
export declare namespace ListResourcesInput {
|
|
391
|
+
|
|
392
|
+
const filterSensitiveLog: (obj: ListResourcesInput) => any;
|
|
393
|
+
}
|
|
394
|
+
export interface ListResourcesOutput {
|
|
395
|
+
|
|
396
|
+
TypeName?: string;
|
|
397
|
+
|
|
398
|
+
ResourceDescriptions?: ResourceDescription[];
|
|
399
|
+
|
|
400
|
+
NextToken?: string;
|
|
401
|
+
}
|
|
402
|
+
export declare namespace ListResourcesOutput {
|
|
403
|
+
|
|
404
|
+
const filterSensitiveLog: (obj: ListResourcesOutput) => any;
|
|
405
|
+
}
|
|
406
|
+
export interface UpdateResourceInput {
|
|
407
|
+
|
|
408
|
+
TypeName: string | undefined;
|
|
409
|
+
|
|
410
|
+
TypeVersionId?: string;
|
|
411
|
+
|
|
412
|
+
RoleArn?: string;
|
|
413
|
+
|
|
414
|
+
ClientToken?: string;
|
|
415
|
+
|
|
416
|
+
Identifier: string | undefined;
|
|
417
|
+
|
|
418
|
+
PatchDocument: string | undefined;
|
|
419
|
+
}
|
|
420
|
+
export declare namespace UpdateResourceInput {
|
|
421
|
+
|
|
422
|
+
const filterSensitiveLog: (obj: UpdateResourceInput) => any;
|
|
423
|
+
}
|
|
424
|
+
export interface UpdateResourceOutput {
|
|
425
|
+
|
|
426
|
+
ProgressEvent?: ProgressEvent;
|
|
427
|
+
}
|
|
428
|
+
export declare namespace UpdateResourceOutput {
|
|
429
|
+
|
|
430
|
+
const filterSensitiveLog: (obj: UpdateResourceOutput) => any;
|
|
431
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { CloudControl } from "../CloudControl";
|
|
3
|
+
import { CloudControlClient } from "../CloudControlClient";
|
|
4
|
+
export interface CloudControlPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
+
client: CloudControl | CloudControlClient;
|
|
6
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput } from "../commands/ListResourceRequestsCommand";
|
|
3
|
+
import { CloudControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListResourceRequests(config: CloudControlPaginationConfiguration, input: ListResourceRequestsCommandInput, ...additionalArguments: any): Paginator<ListResourceRequestsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "../commands/ListResourcesCommand";
|
|
3
|
+
import { CloudControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListResources(config: CloudControlPaginationConfiguration, input: ListResourcesCommandInput, ...additionalArguments: any): Paginator<ListResourcesCommandOutput>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { CancelResourceRequestCommandInput, CancelResourceRequestCommandOutput } from "../commands/CancelResourceRequestCommand";
|
|
4
|
+
import { CreateResourceCommandInput, CreateResourceCommandOutput } from "../commands/CreateResourceCommand";
|
|
5
|
+
import { DeleteResourceCommandInput, DeleteResourceCommandOutput } from "../commands/DeleteResourceCommand";
|
|
6
|
+
import { GetResourceCommandInput, GetResourceCommandOutput } from "../commands/GetResourceCommand";
|
|
7
|
+
import { GetResourceRequestStatusCommandInput, GetResourceRequestStatusCommandOutput } from "../commands/GetResourceRequestStatusCommand";
|
|
8
|
+
import { ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput } from "../commands/ListResourceRequestsCommand";
|
|
9
|
+
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "../commands/ListResourcesCommand";
|
|
10
|
+
import { UpdateResourceCommandInput, UpdateResourceCommandOutput } from "../commands/UpdateResourceCommand";
|
|
11
|
+
export declare const serializeAws_json1_0CancelResourceRequestCommand: (input: CancelResourceRequestCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
12
|
+
export declare const serializeAws_json1_0CreateResourceCommand: (input: CreateResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
13
|
+
export declare const serializeAws_json1_0DeleteResourceCommand: (input: DeleteResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
14
|
+
export declare const serializeAws_json1_0GetResourceCommand: (input: GetResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
15
|
+
export declare const serializeAws_json1_0GetResourceRequestStatusCommand: (input: GetResourceRequestStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
16
|
+
export declare const serializeAws_json1_0ListResourceRequestsCommand: (input: ListResourceRequestsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
|
+
export declare const serializeAws_json1_0ListResourcesCommand: (input: ListResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
|
+
export declare const serializeAws_json1_0UpdateResourceCommand: (input: UpdateResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
|
+
export declare const deserializeAws_json1_0CancelResourceRequestCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelResourceRequestCommandOutput>;
|
|
20
|
+
export declare const deserializeAws_json1_0CreateResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateResourceCommandOutput>;
|
|
21
|
+
export declare const deserializeAws_json1_0DeleteResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResourceCommandOutput>;
|
|
22
|
+
export declare const deserializeAws_json1_0GetResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceCommandOutput>;
|
|
23
|
+
export declare const deserializeAws_json1_0GetResourceRequestStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceRequestStatusCommandOutput>;
|
|
24
|
+
export declare const deserializeAws_json1_0ListResourceRequestsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResourceRequestsCommandOutput>;
|
|
25
|
+
export declare const deserializeAws_json1_0ListResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResourcesCommandOutput>;
|
|
26
|
+
export declare const deserializeAws_json1_0UpdateResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateResourceCommandOutput>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { CloudControlClientConfig } from "./CloudControlClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { CloudControlClientConfig } from "./CloudControlClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { CloudControlClientConfig } from "./CloudControlClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
6
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
disableHostPrefix: boolean;
|
|
16
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
27
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
+
tls?: boolean | undefined;
|
|
29
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
30
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
31
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
32
|
+
signingEscapePath?: boolean | undefined;
|
|
33
|
+
systemClockOffset?: number | undefined;
|
|
34
|
+
signingRegion?: string | undefined;
|
|
35
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
36
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
37
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { CloudControlClientConfig } from "./CloudControlClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
logger: __Logger;
|
|
8
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
9
|
+
serviceId: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./waitForResourceRequestSuccess";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
+
import { CloudControlClient } from "../CloudControlClient";
|
|
3
|
+
import { GetResourceRequestStatusCommandInput } from "../commands/GetResourceRequestStatusCommand";
|
|
4
|
+
|
|
5
|
+
export declare const waitForResourceRequestSuccess: (params: WaiterConfiguration<CloudControlClient>, input: GetResourceRequestStatusCommandInput) => Promise<WaiterResult>;
|
|
6
|
+
|
|
7
|
+
export declare const waitUntilResourceRequestSuccess: (params: WaiterConfiguration<CloudControlClient>, input: GetResourceRequestStatusCommandInput) => Promise<WaiterResult>;
|