@aws-sdk/client-cloudcontrol 3.296.0 → 3.298.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.
Files changed (29) hide show
  1. package/dist-cjs/commands/CancelResourceRequestCommand.js +1 -1
  2. package/dist-cjs/commands/DeleteResourceCommand.js +1 -1
  3. package/dist-cjs/commands/GetResourceCommand.js +1 -1
  4. package/dist-cjs/commands/GetResourceRequestStatusCommand.js +1 -1
  5. package/dist-cjs/commands/ListResourceRequestsCommand.js +1 -1
  6. package/dist-cjs/models/models_0.js +1 -25
  7. package/dist-es/commands/CancelResourceRequestCommand.js +2 -2
  8. package/dist-es/commands/DeleteResourceCommand.js +2 -2
  9. package/dist-es/commands/GetResourceCommand.js +2 -2
  10. package/dist-es/commands/GetResourceRequestStatusCommand.js +2 -2
  11. package/dist-es/commands/ListResourceRequestsCommand.js +2 -2
  12. package/dist-es/models/models_0.js +0 -18
  13. package/dist-types/CloudControl.d.ts +9 -0
  14. package/dist-types/CloudControlClient.d.ts +24 -4
  15. package/dist-types/commands/CancelResourceRequestCommand.d.ts +16 -0
  16. package/dist-types/commands/CreateResourceCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteResourceCommand.d.ts +16 -0
  18. package/dist-types/commands/GetResourceCommand.d.ts +16 -0
  19. package/dist-types/commands/GetResourceRequestStatusCommand.d.ts +16 -0
  20. package/dist-types/commands/ListResourceRequestsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListResourcesCommand.d.ts +16 -0
  22. package/dist-types/commands/UpdateResourceCommand.d.ts +16 -0
  23. package/dist-types/models/CloudControlServiceException.d.ts +2 -0
  24. package/dist-types/models/models_0.d.ts +81 -24
  25. package/dist-types/pagination/Interfaces.d.ts +3 -0
  26. package/dist-types/pagination/ListResourceRequestsPaginator.d.ts +3 -0
  27. package/dist-types/pagination/ListResourcesPaginator.d.ts +3 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +0 -18
  29. package/package.json +4 -3
@@ -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>
@@ -717,10 +798,6 @@ export interface UpdateResourceOutput {
717
798
  */
718
799
  ProgressEvent?: ProgressEvent;
719
800
  }
720
- /**
721
- * @internal
722
- */
723
- export declare const CancelResourceRequestInputFilterSensitiveLog: (obj: CancelResourceRequestInput) => any;
724
801
  /**
725
802
  * @internal
726
803
  */
@@ -737,18 +814,10 @@ export declare const CreateResourceInputFilterSensitiveLog: (obj: CreateResource
737
814
  * @internal
738
815
  */
739
816
  export declare const CreateResourceOutputFilterSensitiveLog: (obj: CreateResourceOutput) => any;
740
- /**
741
- * @internal
742
- */
743
- export declare const DeleteResourceInputFilterSensitiveLog: (obj: DeleteResourceInput) => any;
744
817
  /**
745
818
  * @internal
746
819
  */
747
820
  export declare const DeleteResourceOutputFilterSensitiveLog: (obj: DeleteResourceOutput) => any;
748
- /**
749
- * @internal
750
- */
751
- export declare const GetResourceInputFilterSensitiveLog: (obj: GetResourceInput) => any;
752
821
  /**
753
822
  * @internal
754
823
  */
@@ -757,22 +826,10 @@ export declare const ResourceDescriptionFilterSensitiveLog: (obj: ResourceDescri
757
826
  * @internal
758
827
  */
759
828
  export declare const GetResourceOutputFilterSensitiveLog: (obj: GetResourceOutput) => any;
760
- /**
761
- * @internal
762
- */
763
- export declare const GetResourceRequestStatusInputFilterSensitiveLog: (obj: GetResourceRequestStatusInput) => any;
764
829
  /**
765
830
  * @internal
766
831
  */
767
832
  export declare const GetResourceRequestStatusOutputFilterSensitiveLog: (obj: GetResourceRequestStatusOutput) => any;
768
- /**
769
- * @internal
770
- */
771
- export declare const ResourceRequestStatusFilterFilterSensitiveLog: (obj: ResourceRequestStatusFilter) => any;
772
- /**
773
- * @internal
774
- */
775
- export declare const ListResourceRequestsInputFilterSensitiveLog: (obj: ListResourceRequestsInput) => any;
776
833
  /**
777
834
  * @internal
778
835
  */
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { CloudControlClient } from "../CloudControlClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface CloudControlPaginationConfiguration extends PaginationConfiguration {
4
7
  client: CloudControlClient;
5
8
  }
@@ -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>;