@aws-sdk/client-cloudcontrol 3.686.0 → 3.691.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.
|
@@ -7,7 +7,7 @@ import { CloudControlServiceException as __BaseException } from "./CloudControlS
|
|
|
7
7
|
export declare class AlreadyExistsException extends __BaseException {
|
|
8
8
|
readonly name: "AlreadyExistsException";
|
|
9
9
|
readonly $fault: "client";
|
|
10
|
-
Message?: string;
|
|
10
|
+
Message?: string | undefined;
|
|
11
11
|
/**
|
|
12
12
|
* @internal
|
|
13
13
|
*/
|
|
@@ -89,7 +89,7 @@ export interface ProgressEvent {
|
|
|
89
89
|
* <p>The name of the resource type used in the operation.</p>
|
|
90
90
|
* @public
|
|
91
91
|
*/
|
|
92
|
-
TypeName?: string;
|
|
92
|
+
TypeName?: string | undefined;
|
|
93
93
|
/**
|
|
94
94
|
* <p>The primary identifier for the resource.</p>
|
|
95
95
|
* <note>
|
|
@@ -98,19 +98,19 @@ export interface ProgressEvent {
|
|
|
98
98
|
* </note>
|
|
99
99
|
* @public
|
|
100
100
|
*/
|
|
101
|
-
Identifier?: string;
|
|
101
|
+
Identifier?: string | undefined;
|
|
102
102
|
/**
|
|
103
103
|
* <p>The unique token representing this resource operation request.</p>
|
|
104
104
|
* <p>Use the <code>RequestToken</code> with <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/APIReference/API_GetResourceRequestStatus.html">GetResourceRequestStatus</a> to return the current status of a resource operation
|
|
105
105
|
* request.</p>
|
|
106
106
|
* @public
|
|
107
107
|
*/
|
|
108
|
-
RequestToken?: string;
|
|
108
|
+
RequestToken?: string | undefined;
|
|
109
109
|
/**
|
|
110
110
|
* <p>The resource operation type.</p>
|
|
111
111
|
* @public
|
|
112
112
|
*/
|
|
113
|
-
Operation?: Operation;
|
|
113
|
+
Operation?: Operation | undefined;
|
|
114
114
|
/**
|
|
115
115
|
* <p>The current status of the resource operation request.</p>
|
|
116
116
|
* <ul>
|
|
@@ -143,35 +143,35 @@ export interface ProgressEvent {
|
|
|
143
143
|
* </ul>
|
|
144
144
|
* @public
|
|
145
145
|
*/
|
|
146
|
-
OperationStatus?: OperationStatus;
|
|
146
|
+
OperationStatus?: OperationStatus | undefined;
|
|
147
147
|
/**
|
|
148
148
|
* <p>When the resource operation request was initiated.</p>
|
|
149
149
|
* @public
|
|
150
150
|
*/
|
|
151
|
-
EventTime?: Date;
|
|
151
|
+
EventTime?: Date | undefined;
|
|
152
152
|
/**
|
|
153
153
|
* <p>A JSON string containing the resource model, consisting of each resource property and its
|
|
154
154
|
* current value.</p>
|
|
155
155
|
* @public
|
|
156
156
|
*/
|
|
157
|
-
ResourceModel?: string;
|
|
157
|
+
ResourceModel?: string | undefined;
|
|
158
158
|
/**
|
|
159
159
|
* <p>Any message explaining the current status.</p>
|
|
160
160
|
* @public
|
|
161
161
|
*/
|
|
162
|
-
StatusMessage?: string;
|
|
162
|
+
StatusMessage?: string | undefined;
|
|
163
163
|
/**
|
|
164
164
|
* <p>For requests with a status of <code>FAILED</code>, the associated error code.</p>
|
|
165
165
|
* <p>For error code definitions, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-test-contract-errors.html">Handler error codes</a> in the <i>CloudFormation Command
|
|
166
166
|
* Line Interface User Guide for Extension Development</i>.</p>
|
|
167
167
|
* @public
|
|
168
168
|
*/
|
|
169
|
-
ErrorCode?: HandlerErrorCode;
|
|
169
|
+
ErrorCode?: HandlerErrorCode | undefined;
|
|
170
170
|
/**
|
|
171
171
|
* <p>When to next request the status of this resource operation request.</p>
|
|
172
172
|
* @public
|
|
173
173
|
*/
|
|
174
|
-
RetryAfter?: Date;
|
|
174
|
+
RetryAfter?: Date | undefined;
|
|
175
175
|
}
|
|
176
176
|
/**
|
|
177
177
|
* @public
|
|
@@ -183,7 +183,7 @@ export interface CancelResourceRequestOutput {
|
|
|
183
183
|
* <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
184
184
|
* @public
|
|
185
185
|
*/
|
|
186
|
-
ProgressEvent?: ProgressEvent;
|
|
186
|
+
ProgressEvent?: ProgressEvent | undefined;
|
|
187
187
|
}
|
|
188
188
|
/**
|
|
189
189
|
* <p>The resource is currently being modified by another operation.</p>
|
|
@@ -192,7 +192,7 @@ export interface CancelResourceRequestOutput {
|
|
|
192
192
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
193
193
|
readonly name: "ConcurrentModificationException";
|
|
194
194
|
readonly $fault: "server";
|
|
195
|
-
Message?: string;
|
|
195
|
+
Message?: string | undefined;
|
|
196
196
|
/**
|
|
197
197
|
* @internal
|
|
198
198
|
*/
|
|
@@ -205,7 +205,7 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
205
205
|
export declare class RequestTokenNotFoundException extends __BaseException {
|
|
206
206
|
readonly name: "RequestTokenNotFoundException";
|
|
207
207
|
readonly $fault: "client";
|
|
208
|
-
Message?: string;
|
|
208
|
+
Message?: string | undefined;
|
|
209
209
|
/**
|
|
210
210
|
* @internal
|
|
211
211
|
*/
|
|
@@ -220,7 +220,7 @@ export declare class RequestTokenNotFoundException extends __BaseException {
|
|
|
220
220
|
export declare class ClientTokenConflictException extends __BaseException {
|
|
221
221
|
readonly name: "ClientTokenConflictException";
|
|
222
222
|
readonly $fault: "client";
|
|
223
|
-
Message?: string;
|
|
223
|
+
Message?: string | undefined;
|
|
224
224
|
/**
|
|
225
225
|
* @internal
|
|
226
226
|
*/
|
|
@@ -233,7 +233,7 @@ export declare class ClientTokenConflictException extends __BaseException {
|
|
|
233
233
|
export declare class ConcurrentOperationException extends __BaseException {
|
|
234
234
|
readonly name: "ConcurrentOperationException";
|
|
235
235
|
readonly $fault: "client";
|
|
236
|
-
Message?: string;
|
|
236
|
+
Message?: string | undefined;
|
|
237
237
|
/**
|
|
238
238
|
* @internal
|
|
239
239
|
*/
|
|
@@ -254,7 +254,7 @@ export interface CreateResourceInput {
|
|
|
254
254
|
* uses the default version.</p>
|
|
255
255
|
* @public
|
|
256
256
|
*/
|
|
257
|
-
TypeVersionId?: string;
|
|
257
|
+
TypeVersionId?: string | undefined;
|
|
258
258
|
/**
|
|
259
259
|
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management
|
|
260
260
|
* (IAM) role for Cloud Control API to use when performing this resource
|
|
@@ -271,7 +271,7 @@ export interface CreateResourceInput {
|
|
|
271
271
|
* credentials</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
272
272
|
* @public
|
|
273
273
|
*/
|
|
274
|
-
RoleArn?: string;
|
|
274
|
+
RoleArn?: string | undefined;
|
|
275
275
|
/**
|
|
276
276
|
* <p>A unique identifier to ensure the idempotency of the resource request. As a
|
|
277
277
|
* best practice, specify this token to ensure idempotency, so that Amazon Web Services Cloud Control API can
|
|
@@ -286,7 +286,7 @@ export interface CreateResourceInput {
|
|
|
286
286
|
* Guide</i>.</p>
|
|
287
287
|
* @public
|
|
288
288
|
*/
|
|
289
|
-
ClientToken?: string;
|
|
289
|
+
ClientToken?: string | undefined;
|
|
290
290
|
/**
|
|
291
291
|
* <p>Structured data format representing the desired state of the resource, consisting of that
|
|
292
292
|
* resource's properties and their desired values.</p>
|
|
@@ -321,7 +321,7 @@ export interface CreateResourceOutput {
|
|
|
321
321
|
* <code>ProgressEvent</code> returned by <code>CreateResource</code>.</p>
|
|
322
322
|
* @public
|
|
323
323
|
*/
|
|
324
|
-
ProgressEvent?: ProgressEvent;
|
|
324
|
+
ProgressEvent?: ProgressEvent | undefined;
|
|
325
325
|
}
|
|
326
326
|
/**
|
|
327
327
|
* <p>The resource handler has returned that the downstream service generated an error that
|
|
@@ -331,7 +331,7 @@ export interface CreateResourceOutput {
|
|
|
331
331
|
export declare class GeneralServiceException extends __BaseException {
|
|
332
332
|
readonly name: "GeneralServiceException";
|
|
333
333
|
readonly $fault: "client";
|
|
334
|
-
Message?: string;
|
|
334
|
+
Message?: string | undefined;
|
|
335
335
|
/**
|
|
336
336
|
* @internal
|
|
337
337
|
*/
|
|
@@ -345,7 +345,7 @@ export declare class GeneralServiceException extends __BaseException {
|
|
|
345
345
|
export declare class HandlerFailureException extends __BaseException {
|
|
346
346
|
readonly name: "HandlerFailureException";
|
|
347
347
|
readonly $fault: "server";
|
|
348
|
-
Message?: string;
|
|
348
|
+
Message?: string | undefined;
|
|
349
349
|
/**
|
|
350
350
|
* @internal
|
|
351
351
|
*/
|
|
@@ -359,7 +359,7 @@ export declare class HandlerFailureException extends __BaseException {
|
|
|
359
359
|
export declare class HandlerInternalFailureException extends __BaseException {
|
|
360
360
|
readonly name: "HandlerInternalFailureException";
|
|
361
361
|
readonly $fault: "server";
|
|
362
|
-
Message?: string;
|
|
362
|
+
Message?: string | undefined;
|
|
363
363
|
/**
|
|
364
364
|
* @internal
|
|
365
365
|
*/
|
|
@@ -373,7 +373,7 @@ export declare class HandlerInternalFailureException extends __BaseException {
|
|
|
373
373
|
export declare class InvalidCredentialsException extends __BaseException {
|
|
374
374
|
readonly name: "InvalidCredentialsException";
|
|
375
375
|
readonly $fault: "client";
|
|
376
|
-
Message?: string;
|
|
376
|
+
Message?: string | undefined;
|
|
377
377
|
/**
|
|
378
378
|
* @internal
|
|
379
379
|
*/
|
|
@@ -387,7 +387,7 @@ export declare class InvalidCredentialsException extends __BaseException {
|
|
|
387
387
|
export declare class InvalidRequestException extends __BaseException {
|
|
388
388
|
readonly name: "InvalidRequestException";
|
|
389
389
|
readonly $fault: "client";
|
|
390
|
-
Message?: string;
|
|
390
|
+
Message?: string | undefined;
|
|
391
391
|
/**
|
|
392
392
|
* @internal
|
|
393
393
|
*/
|
|
@@ -401,7 +401,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
401
401
|
export declare class NetworkFailureException extends __BaseException {
|
|
402
402
|
readonly name: "NetworkFailureException";
|
|
403
403
|
readonly $fault: "server";
|
|
404
|
-
Message?: string;
|
|
404
|
+
Message?: string | undefined;
|
|
405
405
|
/**
|
|
406
406
|
* @internal
|
|
407
407
|
*/
|
|
@@ -415,7 +415,7 @@ export declare class NetworkFailureException extends __BaseException {
|
|
|
415
415
|
export declare class NotStabilizedException extends __BaseException {
|
|
416
416
|
readonly name: "NotStabilizedException";
|
|
417
417
|
readonly $fault: "client";
|
|
418
|
-
Message?: string;
|
|
418
|
+
Message?: string | undefined;
|
|
419
419
|
/**
|
|
420
420
|
* @internal
|
|
421
421
|
*/
|
|
@@ -429,7 +429,7 @@ export declare class NotStabilizedException extends __BaseException {
|
|
|
429
429
|
export declare class NotUpdatableException extends __BaseException {
|
|
430
430
|
readonly name: "NotUpdatableException";
|
|
431
431
|
readonly $fault: "client";
|
|
432
|
-
Message?: string;
|
|
432
|
+
Message?: string | undefined;
|
|
433
433
|
/**
|
|
434
434
|
* @internal
|
|
435
435
|
*/
|
|
@@ -444,7 +444,7 @@ export declare class NotUpdatableException extends __BaseException {
|
|
|
444
444
|
export declare class PrivateTypeException extends __BaseException {
|
|
445
445
|
readonly name: "PrivateTypeException";
|
|
446
446
|
readonly $fault: "client";
|
|
447
|
-
Message?: string;
|
|
447
|
+
Message?: string | undefined;
|
|
448
448
|
/**
|
|
449
449
|
* @internal
|
|
450
450
|
*/
|
|
@@ -459,7 +459,7 @@ export declare class PrivateTypeException extends __BaseException {
|
|
|
459
459
|
export declare class ResourceConflictException extends __BaseException {
|
|
460
460
|
readonly name: "ResourceConflictException";
|
|
461
461
|
readonly $fault: "client";
|
|
462
|
-
Message?: string;
|
|
462
|
+
Message?: string | undefined;
|
|
463
463
|
/**
|
|
464
464
|
* @internal
|
|
465
465
|
*/
|
|
@@ -472,7 +472,7 @@ export declare class ResourceConflictException extends __BaseException {
|
|
|
472
472
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
473
473
|
readonly name: "ResourceNotFoundException";
|
|
474
474
|
readonly $fault: "client";
|
|
475
|
-
Message?: string;
|
|
475
|
+
Message?: string | undefined;
|
|
476
476
|
/**
|
|
477
477
|
* @internal
|
|
478
478
|
*/
|
|
@@ -486,7 +486,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
486
486
|
export declare class ServiceInternalErrorException extends __BaseException {
|
|
487
487
|
readonly name: "ServiceInternalErrorException";
|
|
488
488
|
readonly $fault: "server";
|
|
489
|
-
Message?: string;
|
|
489
|
+
Message?: string | undefined;
|
|
490
490
|
/**
|
|
491
491
|
* @internal
|
|
492
492
|
*/
|
|
@@ -500,7 +500,7 @@ export declare class ServiceInternalErrorException extends __BaseException {
|
|
|
500
500
|
export declare class ServiceLimitExceededException extends __BaseException {
|
|
501
501
|
readonly name: "ServiceLimitExceededException";
|
|
502
502
|
readonly $fault: "client";
|
|
503
|
-
Message?: string;
|
|
503
|
+
Message?: string | undefined;
|
|
504
504
|
/**
|
|
505
505
|
* @internal
|
|
506
506
|
*/
|
|
@@ -513,7 +513,7 @@ export declare class ServiceLimitExceededException extends __BaseException {
|
|
|
513
513
|
export declare class ThrottlingException extends __BaseException {
|
|
514
514
|
readonly name: "ThrottlingException";
|
|
515
515
|
readonly $fault: "client";
|
|
516
|
-
Message?: string;
|
|
516
|
+
Message?: string | undefined;
|
|
517
517
|
/**
|
|
518
518
|
* @internal
|
|
519
519
|
*/
|
|
@@ -526,7 +526,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
526
526
|
export declare class TypeNotFoundException extends __BaseException {
|
|
527
527
|
readonly name: "TypeNotFoundException";
|
|
528
528
|
readonly $fault: "client";
|
|
529
|
-
Message?: string;
|
|
529
|
+
Message?: string | undefined;
|
|
530
530
|
/**
|
|
531
531
|
* @internal
|
|
532
532
|
*/
|
|
@@ -539,7 +539,7 @@ export declare class TypeNotFoundException extends __BaseException {
|
|
|
539
539
|
export declare class UnsupportedActionException extends __BaseException {
|
|
540
540
|
readonly name: "UnsupportedActionException";
|
|
541
541
|
readonly $fault: "client";
|
|
542
|
-
Message?: string;
|
|
542
|
+
Message?: string | undefined;
|
|
543
543
|
/**
|
|
544
544
|
* @internal
|
|
545
545
|
*/
|
|
@@ -560,7 +560,7 @@ export interface DeleteResourceInput {
|
|
|
560
560
|
* uses the default version.</p>
|
|
561
561
|
* @public
|
|
562
562
|
*/
|
|
563
|
-
TypeVersionId?: string;
|
|
563
|
+
TypeVersionId?: string | undefined;
|
|
564
564
|
/**
|
|
565
565
|
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management
|
|
566
566
|
* (IAM) role for Cloud Control API to use when performing this resource
|
|
@@ -577,7 +577,7 @@ export interface DeleteResourceInput {
|
|
|
577
577
|
* credentials</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
578
578
|
* @public
|
|
579
579
|
*/
|
|
580
|
-
RoleArn?: string;
|
|
580
|
+
RoleArn?: string | undefined;
|
|
581
581
|
/**
|
|
582
582
|
* <p>A unique identifier to ensure the idempotency of the resource request. As a
|
|
583
583
|
* best practice, specify this token to ensure idempotency, so that Amazon Web Services Cloud Control API can
|
|
@@ -592,7 +592,7 @@ export interface DeleteResourceInput {
|
|
|
592
592
|
* Guide</i>.</p>
|
|
593
593
|
* @public
|
|
594
594
|
*/
|
|
595
|
-
ClientToken?: string;
|
|
595
|
+
ClientToken?: string | undefined;
|
|
596
596
|
/**
|
|
597
597
|
* <p>The identifier for the resource.</p>
|
|
598
598
|
* <p>You can specify the primary identifier, or any secondary identifier
|
|
@@ -621,7 +621,7 @@ export interface DeleteResourceOutput {
|
|
|
621
621
|
* <code>ProgressEvent</code> returned by <code>DeleteResource</code>.</p>
|
|
622
622
|
* @public
|
|
623
623
|
*/
|
|
624
|
-
ProgressEvent?: ProgressEvent;
|
|
624
|
+
ProgressEvent?: ProgressEvent | undefined;
|
|
625
625
|
}
|
|
626
626
|
/**
|
|
627
627
|
* @public
|
|
@@ -638,7 +638,7 @@ export interface GetResourceInput {
|
|
|
638
638
|
* uses the default version.</p>
|
|
639
639
|
* @public
|
|
640
640
|
*/
|
|
641
|
-
TypeVersionId?: string;
|
|
641
|
+
TypeVersionId?: string | undefined;
|
|
642
642
|
/**
|
|
643
643
|
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management
|
|
644
644
|
* (IAM) role for Cloud Control API to use when performing this resource
|
|
@@ -655,7 +655,7 @@ export interface GetResourceInput {
|
|
|
655
655
|
* credentials</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
656
656
|
* @public
|
|
657
657
|
*/
|
|
658
|
-
RoleArn?: string;
|
|
658
|
+
RoleArn?: string | undefined;
|
|
659
659
|
/**
|
|
660
660
|
* <p>The identifier for the resource.</p>
|
|
661
661
|
* <p>You can specify the primary identifier, or any secondary identifier
|
|
@@ -684,12 +684,12 @@ export interface ResourceDescription {
|
|
|
684
684
|
* resources</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
685
685
|
* @public
|
|
686
686
|
*/
|
|
687
|
-
Identifier?: string;
|
|
687
|
+
Identifier?: string | undefined;
|
|
688
688
|
/**
|
|
689
689
|
* <p>A list of the resource properties and their current values.</p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
Properties?: string;
|
|
692
|
+
Properties?: string | undefined;
|
|
693
693
|
}
|
|
694
694
|
/**
|
|
695
695
|
* @public
|
|
@@ -699,12 +699,12 @@ export interface GetResourceOutput {
|
|
|
699
699
|
* <p>The name of the resource type.</p>
|
|
700
700
|
* @public
|
|
701
701
|
*/
|
|
702
|
-
TypeName?: string;
|
|
702
|
+
TypeName?: string | undefined;
|
|
703
703
|
/**
|
|
704
704
|
* <p>Represents information about a provisioned resource.</p>
|
|
705
705
|
* @public
|
|
706
706
|
*/
|
|
707
|
-
ResourceDescription?: ResourceDescription;
|
|
707
|
+
ResourceDescription?: ResourceDescription | undefined;
|
|
708
708
|
}
|
|
709
709
|
/**
|
|
710
710
|
* @public
|
|
@@ -726,7 +726,7 @@ export interface GetResourceRequestStatusOutput {
|
|
|
726
726
|
* <p>Represents the current status of the resource operation request.</p>
|
|
727
727
|
* @public
|
|
728
728
|
*/
|
|
729
|
-
ProgressEvent?: ProgressEvent;
|
|
729
|
+
ProgressEvent?: ProgressEvent | undefined;
|
|
730
730
|
}
|
|
731
731
|
/**
|
|
732
732
|
* <p>The filter criteria to use in determining the requests returned.</p>
|
|
@@ -737,7 +737,7 @@ export interface ResourceRequestStatusFilter {
|
|
|
737
737
|
* <p>The operation types to include in the filter.</p>
|
|
738
738
|
* @public
|
|
739
739
|
*/
|
|
740
|
-
Operations?: Operation[];
|
|
740
|
+
Operations?: Operation[] | undefined;
|
|
741
741
|
/**
|
|
742
742
|
* <p>The operation statuses to include in the filter.</p>
|
|
743
743
|
* <ul>
|
|
@@ -769,7 +769,7 @@ export interface ResourceRequestStatusFilter {
|
|
|
769
769
|
* </ul>
|
|
770
770
|
* @public
|
|
771
771
|
*/
|
|
772
|
-
OperationStatuses?: OperationStatus[];
|
|
772
|
+
OperationStatuses?: OperationStatus[] | undefined;
|
|
773
773
|
}
|
|
774
774
|
/**
|
|
775
775
|
* @public
|
|
@@ -783,7 +783,7 @@ export interface ListResourceRequestsInput {
|
|
|
783
783
|
* <p>The default is <code>20</code>.</p>
|
|
784
784
|
* @public
|
|
785
785
|
*/
|
|
786
|
-
MaxResults?: number;
|
|
786
|
+
MaxResults?: number | undefined;
|
|
787
787
|
/**
|
|
788
788
|
* <p>If the previous paginated request didn't return all of the remaining results,
|
|
789
789
|
* the response object's <code>NextToken</code> parameter value is set to a token.
|
|
@@ -793,12 +793,12 @@ export interface ListResourceRequestsInput {
|
|
|
793
793
|
* <code>null</code>.</p>
|
|
794
794
|
* @public
|
|
795
795
|
*/
|
|
796
|
-
NextToken?: string;
|
|
796
|
+
NextToken?: string | undefined;
|
|
797
797
|
/**
|
|
798
798
|
* <p>The filter criteria to apply to the requests returned.</p>
|
|
799
799
|
* @public
|
|
800
800
|
*/
|
|
801
|
-
ResourceRequestStatusFilter?: ResourceRequestStatusFilter;
|
|
801
|
+
ResourceRequestStatusFilter?: ResourceRequestStatusFilter | undefined;
|
|
802
802
|
}
|
|
803
803
|
/**
|
|
804
804
|
* @public
|
|
@@ -808,7 +808,7 @@ export interface ListResourceRequestsOutput {
|
|
|
808
808
|
* <p>The requests that match the specified filter criteria.</p>
|
|
809
809
|
* @public
|
|
810
810
|
*/
|
|
811
|
-
ResourceRequestStatusSummaries?: ProgressEvent[];
|
|
811
|
+
ResourceRequestStatusSummaries?: ProgressEvent[] | undefined;
|
|
812
812
|
/**
|
|
813
813
|
* <p>If the request doesn't return all of the remaining results,
|
|
814
814
|
* <code>NextToken</code> is set to a token. To retrieve the next set of results, call
|
|
@@ -817,7 +817,7 @@ export interface ListResourceRequestsOutput {
|
|
|
817
817
|
* <code>NextToken</code> is set to null.</p>
|
|
818
818
|
* @public
|
|
819
819
|
*/
|
|
820
|
-
NextToken?: string;
|
|
820
|
+
NextToken?: string | undefined;
|
|
821
821
|
}
|
|
822
822
|
/**
|
|
823
823
|
* @public
|
|
@@ -834,7 +834,7 @@ export interface ListResourcesInput {
|
|
|
834
834
|
* uses the default version.</p>
|
|
835
835
|
* @public
|
|
836
836
|
*/
|
|
837
|
-
TypeVersionId?: string;
|
|
837
|
+
TypeVersionId?: string | undefined;
|
|
838
838
|
/**
|
|
839
839
|
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management
|
|
840
840
|
* (IAM) role for Cloud Control API to use when performing this resource
|
|
@@ -851,7 +851,7 @@ export interface ListResourcesInput {
|
|
|
851
851
|
* credentials</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
852
852
|
* @public
|
|
853
853
|
*/
|
|
854
|
-
RoleArn?: string;
|
|
854
|
+
RoleArn?: string | undefined;
|
|
855
855
|
/**
|
|
856
856
|
* <p>If the previous paginated request didn't return all of the remaining results,
|
|
857
857
|
* the response object's <code>NextToken</code> parameter value is set to a token.
|
|
@@ -861,17 +861,17 @@ export interface ListResourcesInput {
|
|
|
861
861
|
* <code>null</code>.</p>
|
|
862
862
|
* @public
|
|
863
863
|
*/
|
|
864
|
-
NextToken?: string;
|
|
864
|
+
NextToken?: string | undefined;
|
|
865
865
|
/**
|
|
866
866
|
* <p>Reserved.</p>
|
|
867
867
|
* @public
|
|
868
868
|
*/
|
|
869
|
-
MaxResults?: number;
|
|
869
|
+
MaxResults?: number | undefined;
|
|
870
870
|
/**
|
|
871
871
|
* <p>The resource model to use to select the resources to return.</p>
|
|
872
872
|
* @public
|
|
873
873
|
*/
|
|
874
|
-
ResourceModel?: string;
|
|
874
|
+
ResourceModel?: string | undefined;
|
|
875
875
|
}
|
|
876
876
|
/**
|
|
877
877
|
* @public
|
|
@@ -881,13 +881,13 @@ export interface ListResourcesOutput {
|
|
|
881
881
|
* <p>The name of the resource type.</p>
|
|
882
882
|
* @public
|
|
883
883
|
*/
|
|
884
|
-
TypeName?: string;
|
|
884
|
+
TypeName?: string | undefined;
|
|
885
885
|
/**
|
|
886
886
|
* <p>Information about the specified resources, including primary identifier and resource
|
|
887
887
|
* model.</p>
|
|
888
888
|
* @public
|
|
889
889
|
*/
|
|
890
|
-
ResourceDescriptions?: ResourceDescription[];
|
|
890
|
+
ResourceDescriptions?: ResourceDescription[] | undefined;
|
|
891
891
|
/**
|
|
892
892
|
* <p>If the request doesn't return all of the remaining results,
|
|
893
893
|
* <code>NextToken</code> is set to a token. To retrieve the next set of results, call
|
|
@@ -896,7 +896,7 @@ export interface ListResourcesOutput {
|
|
|
896
896
|
* <code>NextToken</code> is set to null.</p>
|
|
897
897
|
* @public
|
|
898
898
|
*/
|
|
899
|
-
NextToken?: string;
|
|
899
|
+
NextToken?: string | undefined;
|
|
900
900
|
}
|
|
901
901
|
/**
|
|
902
902
|
* @public
|
|
@@ -913,7 +913,7 @@ export interface UpdateResourceInput {
|
|
|
913
913
|
* uses the default version.</p>
|
|
914
914
|
* @public
|
|
915
915
|
*/
|
|
916
|
-
TypeVersionId?: string;
|
|
916
|
+
TypeVersionId?: string | undefined;
|
|
917
917
|
/**
|
|
918
918
|
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management
|
|
919
919
|
* (IAM) role for Cloud Control API to use when performing this resource
|
|
@@ -930,7 +930,7 @@ export interface UpdateResourceInput {
|
|
|
930
930
|
* credentials</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
|
|
931
931
|
* @public
|
|
932
932
|
*/
|
|
933
|
-
RoleArn?: string;
|
|
933
|
+
RoleArn?: string | undefined;
|
|
934
934
|
/**
|
|
935
935
|
* <p>A unique identifier to ensure the idempotency of the resource request. As a
|
|
936
936
|
* best practice, specify this token to ensure idempotency, so that Amazon Web Services Cloud Control API can
|
|
@@ -945,7 +945,7 @@ export interface UpdateResourceInput {
|
|
|
945
945
|
* Guide</i>.</p>
|
|
946
946
|
* @public
|
|
947
947
|
*/
|
|
948
|
-
ClientToken?: string;
|
|
948
|
+
ClientToken?: string | undefined;
|
|
949
949
|
/**
|
|
950
950
|
* <p>The identifier for the resource.</p>
|
|
951
951
|
* <p>You can specify the primary identifier, or any secondary identifier
|
|
@@ -980,7 +980,7 @@ export interface UpdateResourceOutput {
|
|
|
980
980
|
* request.</p>
|
|
981
981
|
* @public
|
|
982
982
|
*/
|
|
983
|
-
ProgressEvent?: ProgressEvent;
|
|
983
|
+
ProgressEvent?: ProgressEvent | undefined;
|
|
984
984
|
}
|
|
985
985
|
/**
|
|
986
986
|
* @internal
|
|
@@ -3,7 +3,7 @@ import { CloudControlServiceException as __BaseException } from "./CloudControlS
|
|
|
3
3
|
export declare class AlreadyExistsException extends __BaseException {
|
|
4
4
|
readonly name: "AlreadyExistsException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
Message?: string;
|
|
6
|
+
Message?: string | undefined;
|
|
7
7
|
constructor(
|
|
8
8
|
opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>
|
|
9
9
|
);
|
|
@@ -47,24 +47,24 @@ export declare const OperationStatus: {
|
|
|
47
47
|
export type OperationStatus =
|
|
48
48
|
(typeof OperationStatus)[keyof typeof OperationStatus];
|
|
49
49
|
export interface ProgressEvent {
|
|
50
|
-
TypeName?: string;
|
|
51
|
-
Identifier?: string;
|
|
52
|
-
RequestToken?: string;
|
|
53
|
-
Operation?: Operation;
|
|
54
|
-
OperationStatus?: OperationStatus;
|
|
55
|
-
EventTime?: Date;
|
|
56
|
-
ResourceModel?: string;
|
|
57
|
-
StatusMessage?: string;
|
|
58
|
-
ErrorCode?: HandlerErrorCode;
|
|
59
|
-
RetryAfter?: Date;
|
|
50
|
+
TypeName?: string | undefined;
|
|
51
|
+
Identifier?: string | undefined;
|
|
52
|
+
RequestToken?: string | undefined;
|
|
53
|
+
Operation?: Operation | undefined;
|
|
54
|
+
OperationStatus?: OperationStatus | undefined;
|
|
55
|
+
EventTime?: Date | undefined;
|
|
56
|
+
ResourceModel?: string | undefined;
|
|
57
|
+
StatusMessage?: string | undefined;
|
|
58
|
+
ErrorCode?: HandlerErrorCode | undefined;
|
|
59
|
+
RetryAfter?: Date | undefined;
|
|
60
60
|
}
|
|
61
61
|
export interface CancelResourceRequestOutput {
|
|
62
|
-
ProgressEvent?: ProgressEvent;
|
|
62
|
+
ProgressEvent?: ProgressEvent | undefined;
|
|
63
63
|
}
|
|
64
64
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
65
65
|
readonly name: "ConcurrentModificationException";
|
|
66
66
|
readonly $fault: "server";
|
|
67
|
-
Message?: string;
|
|
67
|
+
Message?: string | undefined;
|
|
68
68
|
constructor(
|
|
69
69
|
opts: __ExceptionOptionType<
|
|
70
70
|
ConcurrentModificationException,
|
|
@@ -75,7 +75,7 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
75
75
|
export declare class RequestTokenNotFoundException extends __BaseException {
|
|
76
76
|
readonly name: "RequestTokenNotFoundException";
|
|
77
77
|
readonly $fault: "client";
|
|
78
|
-
Message?: string;
|
|
78
|
+
Message?: string | undefined;
|
|
79
79
|
constructor(
|
|
80
80
|
opts: __ExceptionOptionType<RequestTokenNotFoundException, __BaseException>
|
|
81
81
|
);
|
|
@@ -83,7 +83,7 @@ export declare class RequestTokenNotFoundException extends __BaseException {
|
|
|
83
83
|
export declare class ClientTokenConflictException extends __BaseException {
|
|
84
84
|
readonly name: "ClientTokenConflictException";
|
|
85
85
|
readonly $fault: "client";
|
|
86
|
-
Message?: string;
|
|
86
|
+
Message?: string | undefined;
|
|
87
87
|
constructor(
|
|
88
88
|
opts: __ExceptionOptionType<ClientTokenConflictException, __BaseException>
|
|
89
89
|
);
|
|
@@ -91,25 +91,25 @@ export declare class ClientTokenConflictException extends __BaseException {
|
|
|
91
91
|
export declare class ConcurrentOperationException extends __BaseException {
|
|
92
92
|
readonly name: "ConcurrentOperationException";
|
|
93
93
|
readonly $fault: "client";
|
|
94
|
-
Message?: string;
|
|
94
|
+
Message?: string | undefined;
|
|
95
95
|
constructor(
|
|
96
96
|
opts: __ExceptionOptionType<ConcurrentOperationException, __BaseException>
|
|
97
97
|
);
|
|
98
98
|
}
|
|
99
99
|
export interface CreateResourceInput {
|
|
100
100
|
TypeName: string | undefined;
|
|
101
|
-
TypeVersionId?: string;
|
|
102
|
-
RoleArn?: string;
|
|
103
|
-
ClientToken?: string;
|
|
101
|
+
TypeVersionId?: string | undefined;
|
|
102
|
+
RoleArn?: string | undefined;
|
|
103
|
+
ClientToken?: string | undefined;
|
|
104
104
|
DesiredState: string | undefined;
|
|
105
105
|
}
|
|
106
106
|
export interface CreateResourceOutput {
|
|
107
|
-
ProgressEvent?: ProgressEvent;
|
|
107
|
+
ProgressEvent?: ProgressEvent | undefined;
|
|
108
108
|
}
|
|
109
109
|
export declare class GeneralServiceException extends __BaseException {
|
|
110
110
|
readonly name: "GeneralServiceException";
|
|
111
111
|
readonly $fault: "client";
|
|
112
|
-
Message?: string;
|
|
112
|
+
Message?: string | undefined;
|
|
113
113
|
constructor(
|
|
114
114
|
opts: __ExceptionOptionType<GeneralServiceException, __BaseException>
|
|
115
115
|
);
|
|
@@ -117,7 +117,7 @@ export declare class GeneralServiceException extends __BaseException {
|
|
|
117
117
|
export declare class HandlerFailureException extends __BaseException {
|
|
118
118
|
readonly name: "HandlerFailureException";
|
|
119
119
|
readonly $fault: "server";
|
|
120
|
-
Message?: string;
|
|
120
|
+
Message?: string | undefined;
|
|
121
121
|
constructor(
|
|
122
122
|
opts: __ExceptionOptionType<HandlerFailureException, __BaseException>
|
|
123
123
|
);
|
|
@@ -125,7 +125,7 @@ export declare class HandlerFailureException extends __BaseException {
|
|
|
125
125
|
export declare class HandlerInternalFailureException extends __BaseException {
|
|
126
126
|
readonly name: "HandlerInternalFailureException";
|
|
127
127
|
readonly $fault: "server";
|
|
128
|
-
Message?: string;
|
|
128
|
+
Message?: string | undefined;
|
|
129
129
|
constructor(
|
|
130
130
|
opts: __ExceptionOptionType<
|
|
131
131
|
HandlerInternalFailureException,
|
|
@@ -136,7 +136,7 @@ export declare class HandlerInternalFailureException extends __BaseException {
|
|
|
136
136
|
export declare class InvalidCredentialsException extends __BaseException {
|
|
137
137
|
readonly name: "InvalidCredentialsException";
|
|
138
138
|
readonly $fault: "client";
|
|
139
|
-
Message?: string;
|
|
139
|
+
Message?: string | undefined;
|
|
140
140
|
constructor(
|
|
141
141
|
opts: __ExceptionOptionType<InvalidCredentialsException, __BaseException>
|
|
142
142
|
);
|
|
@@ -144,7 +144,7 @@ export declare class InvalidCredentialsException extends __BaseException {
|
|
|
144
144
|
export declare class InvalidRequestException extends __BaseException {
|
|
145
145
|
readonly name: "InvalidRequestException";
|
|
146
146
|
readonly $fault: "client";
|
|
147
|
-
Message?: string;
|
|
147
|
+
Message?: string | undefined;
|
|
148
148
|
constructor(
|
|
149
149
|
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
150
150
|
);
|
|
@@ -152,7 +152,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
152
152
|
export declare class NetworkFailureException extends __BaseException {
|
|
153
153
|
readonly name: "NetworkFailureException";
|
|
154
154
|
readonly $fault: "server";
|
|
155
|
-
Message?: string;
|
|
155
|
+
Message?: string | undefined;
|
|
156
156
|
constructor(
|
|
157
157
|
opts: __ExceptionOptionType<NetworkFailureException, __BaseException>
|
|
158
158
|
);
|
|
@@ -160,7 +160,7 @@ export declare class NetworkFailureException extends __BaseException {
|
|
|
160
160
|
export declare class NotStabilizedException extends __BaseException {
|
|
161
161
|
readonly name: "NotStabilizedException";
|
|
162
162
|
readonly $fault: "client";
|
|
163
|
-
Message?: string;
|
|
163
|
+
Message?: string | undefined;
|
|
164
164
|
constructor(
|
|
165
165
|
opts: __ExceptionOptionType<NotStabilizedException, __BaseException>
|
|
166
166
|
);
|
|
@@ -168,7 +168,7 @@ export declare class NotStabilizedException extends __BaseException {
|
|
|
168
168
|
export declare class NotUpdatableException extends __BaseException {
|
|
169
169
|
readonly name: "NotUpdatableException";
|
|
170
170
|
readonly $fault: "client";
|
|
171
|
-
Message?: string;
|
|
171
|
+
Message?: string | undefined;
|
|
172
172
|
constructor(
|
|
173
173
|
opts: __ExceptionOptionType<NotUpdatableException, __BaseException>
|
|
174
174
|
);
|
|
@@ -176,7 +176,7 @@ export declare class NotUpdatableException extends __BaseException {
|
|
|
176
176
|
export declare class PrivateTypeException extends __BaseException {
|
|
177
177
|
readonly name: "PrivateTypeException";
|
|
178
178
|
readonly $fault: "client";
|
|
179
|
-
Message?: string;
|
|
179
|
+
Message?: string | undefined;
|
|
180
180
|
constructor(
|
|
181
181
|
opts: __ExceptionOptionType<PrivateTypeException, __BaseException>
|
|
182
182
|
);
|
|
@@ -184,7 +184,7 @@ export declare class PrivateTypeException extends __BaseException {
|
|
|
184
184
|
export declare class ResourceConflictException extends __BaseException {
|
|
185
185
|
readonly name: "ResourceConflictException";
|
|
186
186
|
readonly $fault: "client";
|
|
187
|
-
Message?: string;
|
|
187
|
+
Message?: string | undefined;
|
|
188
188
|
constructor(
|
|
189
189
|
opts: __ExceptionOptionType<ResourceConflictException, __BaseException>
|
|
190
190
|
);
|
|
@@ -192,7 +192,7 @@ export declare class ResourceConflictException extends __BaseException {
|
|
|
192
192
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
193
193
|
readonly name: "ResourceNotFoundException";
|
|
194
194
|
readonly $fault: "client";
|
|
195
|
-
Message?: string;
|
|
195
|
+
Message?: string | undefined;
|
|
196
196
|
constructor(
|
|
197
197
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
198
198
|
);
|
|
@@ -200,7 +200,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
200
200
|
export declare class ServiceInternalErrorException extends __BaseException {
|
|
201
201
|
readonly name: "ServiceInternalErrorException";
|
|
202
202
|
readonly $fault: "server";
|
|
203
|
-
Message?: string;
|
|
203
|
+
Message?: string | undefined;
|
|
204
204
|
constructor(
|
|
205
205
|
opts: __ExceptionOptionType<ServiceInternalErrorException, __BaseException>
|
|
206
206
|
);
|
|
@@ -208,7 +208,7 @@ export declare class ServiceInternalErrorException extends __BaseException {
|
|
|
208
208
|
export declare class ServiceLimitExceededException extends __BaseException {
|
|
209
209
|
readonly name: "ServiceLimitExceededException";
|
|
210
210
|
readonly $fault: "client";
|
|
211
|
-
Message?: string;
|
|
211
|
+
Message?: string | undefined;
|
|
212
212
|
constructor(
|
|
213
213
|
opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>
|
|
214
214
|
);
|
|
@@ -216,7 +216,7 @@ export declare class ServiceLimitExceededException extends __BaseException {
|
|
|
216
216
|
export declare class ThrottlingException extends __BaseException {
|
|
217
217
|
readonly name: "ThrottlingException";
|
|
218
218
|
readonly $fault: "client";
|
|
219
|
-
Message?: string;
|
|
219
|
+
Message?: string | undefined;
|
|
220
220
|
constructor(
|
|
221
221
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
222
222
|
);
|
|
@@ -224,7 +224,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
224
224
|
export declare class TypeNotFoundException extends __BaseException {
|
|
225
225
|
readonly name: "TypeNotFoundException";
|
|
226
226
|
readonly $fault: "client";
|
|
227
|
-
Message?: string;
|
|
227
|
+
Message?: string | undefined;
|
|
228
228
|
constructor(
|
|
229
229
|
opts: __ExceptionOptionType<TypeNotFoundException, __BaseException>
|
|
230
230
|
);
|
|
@@ -232,77 +232,77 @@ export declare class TypeNotFoundException extends __BaseException {
|
|
|
232
232
|
export declare class UnsupportedActionException extends __BaseException {
|
|
233
233
|
readonly name: "UnsupportedActionException";
|
|
234
234
|
readonly $fault: "client";
|
|
235
|
-
Message?: string;
|
|
235
|
+
Message?: string | undefined;
|
|
236
236
|
constructor(
|
|
237
237
|
opts: __ExceptionOptionType<UnsupportedActionException, __BaseException>
|
|
238
238
|
);
|
|
239
239
|
}
|
|
240
240
|
export interface DeleteResourceInput {
|
|
241
241
|
TypeName: string | undefined;
|
|
242
|
-
TypeVersionId?: string;
|
|
243
|
-
RoleArn?: string;
|
|
244
|
-
ClientToken?: string;
|
|
242
|
+
TypeVersionId?: string | undefined;
|
|
243
|
+
RoleArn?: string | undefined;
|
|
244
|
+
ClientToken?: string | undefined;
|
|
245
245
|
Identifier: string | undefined;
|
|
246
246
|
}
|
|
247
247
|
export interface DeleteResourceOutput {
|
|
248
|
-
ProgressEvent?: ProgressEvent;
|
|
248
|
+
ProgressEvent?: ProgressEvent | undefined;
|
|
249
249
|
}
|
|
250
250
|
export interface GetResourceInput {
|
|
251
251
|
TypeName: string | undefined;
|
|
252
|
-
TypeVersionId?: string;
|
|
253
|
-
RoleArn?: string;
|
|
252
|
+
TypeVersionId?: string | undefined;
|
|
253
|
+
RoleArn?: string | undefined;
|
|
254
254
|
Identifier: string | undefined;
|
|
255
255
|
}
|
|
256
256
|
export interface ResourceDescription {
|
|
257
|
-
Identifier?: string;
|
|
258
|
-
Properties?: string;
|
|
257
|
+
Identifier?: string | undefined;
|
|
258
|
+
Properties?: string | undefined;
|
|
259
259
|
}
|
|
260
260
|
export interface GetResourceOutput {
|
|
261
|
-
TypeName?: string;
|
|
262
|
-
ResourceDescription?: ResourceDescription;
|
|
261
|
+
TypeName?: string | undefined;
|
|
262
|
+
ResourceDescription?: ResourceDescription | undefined;
|
|
263
263
|
}
|
|
264
264
|
export interface GetResourceRequestStatusInput {
|
|
265
265
|
RequestToken: string | undefined;
|
|
266
266
|
}
|
|
267
267
|
export interface GetResourceRequestStatusOutput {
|
|
268
|
-
ProgressEvent?: ProgressEvent;
|
|
268
|
+
ProgressEvent?: ProgressEvent | undefined;
|
|
269
269
|
}
|
|
270
270
|
export interface ResourceRequestStatusFilter {
|
|
271
|
-
Operations?: Operation[];
|
|
272
|
-
OperationStatuses?: OperationStatus[];
|
|
271
|
+
Operations?: Operation[] | undefined;
|
|
272
|
+
OperationStatuses?: OperationStatus[] | undefined;
|
|
273
273
|
}
|
|
274
274
|
export interface ListResourceRequestsInput {
|
|
275
|
-
MaxResults?: number;
|
|
276
|
-
NextToken?: string;
|
|
277
|
-
ResourceRequestStatusFilter?: ResourceRequestStatusFilter;
|
|
275
|
+
MaxResults?: number | undefined;
|
|
276
|
+
NextToken?: string | undefined;
|
|
277
|
+
ResourceRequestStatusFilter?: ResourceRequestStatusFilter | undefined;
|
|
278
278
|
}
|
|
279
279
|
export interface ListResourceRequestsOutput {
|
|
280
|
-
ResourceRequestStatusSummaries?: ProgressEvent[];
|
|
281
|
-
NextToken?: string;
|
|
280
|
+
ResourceRequestStatusSummaries?: ProgressEvent[] | undefined;
|
|
281
|
+
NextToken?: string | undefined;
|
|
282
282
|
}
|
|
283
283
|
export interface ListResourcesInput {
|
|
284
284
|
TypeName: string | undefined;
|
|
285
|
-
TypeVersionId?: string;
|
|
286
|
-
RoleArn?: string;
|
|
287
|
-
NextToken?: string;
|
|
288
|
-
MaxResults?: number;
|
|
289
|
-
ResourceModel?: string;
|
|
285
|
+
TypeVersionId?: string | undefined;
|
|
286
|
+
RoleArn?: string | undefined;
|
|
287
|
+
NextToken?: string | undefined;
|
|
288
|
+
MaxResults?: number | undefined;
|
|
289
|
+
ResourceModel?: string | undefined;
|
|
290
290
|
}
|
|
291
291
|
export interface ListResourcesOutput {
|
|
292
|
-
TypeName?: string;
|
|
293
|
-
ResourceDescriptions?: ResourceDescription[];
|
|
294
|
-
NextToken?: string;
|
|
292
|
+
TypeName?: string | undefined;
|
|
293
|
+
ResourceDescriptions?: ResourceDescription[] | undefined;
|
|
294
|
+
NextToken?: string | undefined;
|
|
295
295
|
}
|
|
296
296
|
export interface UpdateResourceInput {
|
|
297
297
|
TypeName: string | undefined;
|
|
298
|
-
TypeVersionId?: string;
|
|
299
|
-
RoleArn?: string;
|
|
300
|
-
ClientToken?: string;
|
|
298
|
+
TypeVersionId?: string | undefined;
|
|
299
|
+
RoleArn?: string | undefined;
|
|
300
|
+
ClientToken?: string | undefined;
|
|
301
301
|
Identifier: string | undefined;
|
|
302
302
|
PatchDocument: string | undefined;
|
|
303
303
|
}
|
|
304
304
|
export interface UpdateResourceOutput {
|
|
305
|
-
ProgressEvent?: ProgressEvent;
|
|
305
|
+
ProgressEvent?: ProgressEvent | undefined;
|
|
306
306
|
}
|
|
307
307
|
export declare const ProgressEventFilterSensitiveLog: (
|
|
308
308
|
obj: ProgressEvent
|
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.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudcontrol",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|