@aws-sdk/client-cloudcontrol 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/CloudControl.d.ts +148 -45
  3. package/dist-types/ts3.4/CloudControlClient.d.ts +178 -81
  4. package/dist-types/ts3.4/commands/CancelResourceRequestCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CreateResourceCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/DeleteResourceCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/GetResourceCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/GetResourceRequestStatusCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/ListResourceRequestsCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/ListResourcesCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/UpdateResourceCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/index.d.ts +8 -8
  13. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  14. package/dist-types/ts3.4/index.d.ts +7 -7
  15. package/dist-types/ts3.4/models/CloudControlServiceException.d.ts +8 -6
  16. package/dist-types/ts3.4/models/index.d.ts +1 -1
  17. package/dist-types/ts3.4/models/models_0.d.ts +460 -393
  18. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  19. package/dist-types/ts3.4/pagination/ListResourceRequestsPaginator.d.ts +11 -4
  20. package/dist-types/ts3.4/pagination/ListResourcesPaginator.d.ts +11 -4
  21. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  22. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +101 -26
  23. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  24. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  25. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  26. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  27. package/dist-types/ts3.4/waiters/index.d.ts +1 -1
  28. package/dist-types/ts3.4/waiters/waitForResourceRequestSuccess.d.ts +13 -7
  29. package/package.json +35 -35
@@ -1,393 +1,460 @@
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 enum HandlerErrorCode {
16
- ACCESS_DENIED = "AccessDenied",
17
- ALREADY_EXISTS = "AlreadyExists",
18
- GENERAL_SERVICE_EXCEPTION = "GeneralServiceException",
19
- INTERNAL_FAILURE = "InternalFailure",
20
- INVALID_CREDENTIALS = "InvalidCredentials",
21
- INVALID_REQUEST = "InvalidRequest",
22
- NETWORK_FAILURE = "NetworkFailure",
23
- NOT_FOUND = "NotFound",
24
- NOT_STABILIZED = "NotStabilized",
25
- NOT_UPDATABLE = "NotUpdatable",
26
- RESOURCE_CONFLICT = "ResourceConflict",
27
- SERVICE_INTERNAL_ERROR = "ServiceInternalError",
28
- SERVICE_LIMIT_EXCEEDED = "ServiceLimitExceeded",
29
- SERVICE_TIMEOUT = "ServiceTimeout",
30
- THROTTLING = "Throttling"
31
- }
32
- export declare enum Operation {
33
- CREATE = "CREATE",
34
- DELETE = "DELETE",
35
- UPDATE = "UPDATE"
36
- }
37
- export declare enum OperationStatus {
38
- CANCEL_COMPLETE = "CANCEL_COMPLETE",
39
- CANCEL_IN_PROGRESS = "CANCEL_IN_PROGRESS",
40
- FAILED = "FAILED",
41
- IN_PROGRESS = "IN_PROGRESS",
42
- PENDING = "PENDING",
43
- SUCCESS = "SUCCESS"
44
- }
45
-
46
- export interface ProgressEvent {
47
-
48
- TypeName?: string;
49
-
50
- Identifier?: string;
51
-
52
- RequestToken?: string;
53
-
54
- Operation?: Operation | string;
55
-
56
- OperationStatus?: OperationStatus | string;
57
-
58
- EventTime?: Date;
59
-
60
- ResourceModel?: string;
61
-
62
- StatusMessage?: string;
63
-
64
- ErrorCode?: HandlerErrorCode | string;
65
-
66
- RetryAfter?: Date;
67
- }
68
- export interface CancelResourceRequestOutput {
69
-
70
- ProgressEvent?: ProgressEvent;
71
- }
72
-
73
- export declare class ConcurrentModificationException extends __BaseException {
74
- readonly name: "ConcurrentModificationException";
75
- readonly $fault: "server";
76
- Message?: string;
77
-
78
- constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
79
- }
80
-
81
- export declare class RequestTokenNotFoundException extends __BaseException {
82
- readonly name: "RequestTokenNotFoundException";
83
- readonly $fault: "client";
84
- Message?: string;
85
-
86
- constructor(opts: __ExceptionOptionType<RequestTokenNotFoundException, __BaseException>);
87
- }
88
-
89
- export declare class ClientTokenConflictException extends __BaseException {
90
- readonly name: "ClientTokenConflictException";
91
- readonly $fault: "client";
92
- Message?: string;
93
-
94
- constructor(opts: __ExceptionOptionType<ClientTokenConflictException, __BaseException>);
95
- }
96
-
97
- export declare class ConcurrentOperationException extends __BaseException {
98
- readonly name: "ConcurrentOperationException";
99
- readonly $fault: "client";
100
- Message?: string;
101
-
102
- constructor(opts: __ExceptionOptionType<ConcurrentOperationException, __BaseException>);
103
- }
104
- export interface CreateResourceInput {
105
-
106
- TypeName: string | undefined;
107
-
108
- TypeVersionId?: string;
109
-
110
- RoleArn?: string;
111
-
112
- ClientToken?: string;
113
-
114
- DesiredState: string | undefined;
115
- }
116
- export interface CreateResourceOutput {
117
-
118
- ProgressEvent?: ProgressEvent;
119
- }
120
-
121
- export declare class GeneralServiceException extends __BaseException {
122
- readonly name: "GeneralServiceException";
123
- readonly $fault: "client";
124
- Message?: string;
125
-
126
- constructor(opts: __ExceptionOptionType<GeneralServiceException, __BaseException>);
127
- }
128
-
129
- export declare class HandlerFailureException extends __BaseException {
130
- readonly name: "HandlerFailureException";
131
- readonly $fault: "server";
132
- Message?: string;
133
-
134
- constructor(opts: __ExceptionOptionType<HandlerFailureException, __BaseException>);
135
- }
136
-
137
- export declare class HandlerInternalFailureException extends __BaseException {
138
- readonly name: "HandlerInternalFailureException";
139
- readonly $fault: "server";
140
- Message?: string;
141
-
142
- constructor(opts: __ExceptionOptionType<HandlerInternalFailureException, __BaseException>);
143
- }
144
-
145
- export declare class InvalidCredentialsException extends __BaseException {
146
- readonly name: "InvalidCredentialsException";
147
- readonly $fault: "client";
148
- Message?: string;
149
-
150
- constructor(opts: __ExceptionOptionType<InvalidCredentialsException, __BaseException>);
151
- }
152
-
153
- export declare class InvalidRequestException extends __BaseException {
154
- readonly name: "InvalidRequestException";
155
- readonly $fault: "client";
156
- Message?: string;
157
-
158
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
159
- }
160
-
161
- export declare class NetworkFailureException extends __BaseException {
162
- readonly name: "NetworkFailureException";
163
- readonly $fault: "server";
164
- Message?: string;
165
-
166
- constructor(opts: __ExceptionOptionType<NetworkFailureException, __BaseException>);
167
- }
168
-
169
- export declare class NotStabilizedException extends __BaseException {
170
- readonly name: "NotStabilizedException";
171
- readonly $fault: "client";
172
- Message?: string;
173
-
174
- constructor(opts: __ExceptionOptionType<NotStabilizedException, __BaseException>);
175
- }
176
-
177
- export declare class NotUpdatableException extends __BaseException {
178
- readonly name: "NotUpdatableException";
179
- readonly $fault: "client";
180
- Message?: string;
181
-
182
- constructor(opts: __ExceptionOptionType<NotUpdatableException, __BaseException>);
183
- }
184
-
185
- export declare class PrivateTypeException extends __BaseException {
186
- readonly name: "PrivateTypeException";
187
- readonly $fault: "client";
188
- Message?: string;
189
-
190
- constructor(opts: __ExceptionOptionType<PrivateTypeException, __BaseException>);
191
- }
192
-
193
- export declare class ResourceConflictException extends __BaseException {
194
- readonly name: "ResourceConflictException";
195
- readonly $fault: "client";
196
- Message?: string;
197
-
198
- constructor(opts: __ExceptionOptionType<ResourceConflictException, __BaseException>);
199
- }
200
-
201
- export declare class ResourceNotFoundException extends __BaseException {
202
- readonly name: "ResourceNotFoundException";
203
- readonly $fault: "client";
204
- Message?: string;
205
-
206
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
207
- }
208
-
209
- export declare class ServiceInternalErrorException extends __BaseException {
210
- readonly name: "ServiceInternalErrorException";
211
- readonly $fault: "server";
212
- Message?: string;
213
-
214
- constructor(opts: __ExceptionOptionType<ServiceInternalErrorException, __BaseException>);
215
- }
216
-
217
- export declare class ServiceLimitExceededException extends __BaseException {
218
- readonly name: "ServiceLimitExceededException";
219
- readonly $fault: "client";
220
- Message?: string;
221
-
222
- constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
223
- }
224
-
225
- export declare class ThrottlingException extends __BaseException {
226
- readonly name: "ThrottlingException";
227
- readonly $fault: "client";
228
- Message?: string;
229
-
230
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
231
- }
232
-
233
- export declare class TypeNotFoundException extends __BaseException {
234
- readonly name: "TypeNotFoundException";
235
- readonly $fault: "client";
236
- Message?: string;
237
-
238
- constructor(opts: __ExceptionOptionType<TypeNotFoundException, __BaseException>);
239
- }
240
-
241
- export declare class UnsupportedActionException extends __BaseException {
242
- readonly name: "UnsupportedActionException";
243
- readonly $fault: "client";
244
- Message?: string;
245
-
246
- constructor(opts: __ExceptionOptionType<UnsupportedActionException, __BaseException>);
247
- }
248
- export interface DeleteResourceInput {
249
-
250
- TypeName: string | undefined;
251
-
252
- TypeVersionId?: string;
253
-
254
- RoleArn?: string;
255
-
256
- ClientToken?: string;
257
-
258
- Identifier: string | undefined;
259
- }
260
- export interface DeleteResourceOutput {
261
-
262
- ProgressEvent?: ProgressEvent;
263
- }
264
- export interface GetResourceInput {
265
-
266
- TypeName: string | undefined;
267
-
268
- TypeVersionId?: string;
269
-
270
- RoleArn?: string;
271
-
272
- Identifier: string | undefined;
273
- }
274
-
275
- export interface ResourceDescription {
276
-
277
- Identifier?: string;
278
-
279
- Properties?: string;
280
- }
281
- export interface GetResourceOutput {
282
-
283
- TypeName?: string;
284
-
285
- ResourceDescription?: ResourceDescription;
286
- }
287
- export interface GetResourceRequestStatusInput {
288
-
289
- RequestToken: string | undefined;
290
- }
291
- export interface GetResourceRequestStatusOutput {
292
-
293
- ProgressEvent?: ProgressEvent;
294
- }
295
-
296
- export interface ResourceRequestStatusFilter {
297
-
298
- Operations?: (Operation | string)[];
299
-
300
- OperationStatuses?: (OperationStatus | string)[];
301
- }
302
- export interface ListResourceRequestsInput {
303
-
304
- MaxResults?: number;
305
-
306
- NextToken?: string;
307
-
308
- ResourceRequestStatusFilter?: ResourceRequestStatusFilter;
309
- }
310
- export interface ListResourceRequestsOutput {
311
-
312
- ResourceRequestStatusSummaries?: ProgressEvent[];
313
-
314
- NextToken?: string;
315
- }
316
- export interface ListResourcesInput {
317
-
318
- TypeName: string | undefined;
319
-
320
- TypeVersionId?: string;
321
-
322
- RoleArn?: string;
323
-
324
- NextToken?: string;
325
-
326
- MaxResults?: number;
327
-
328
- ResourceModel?: string;
329
- }
330
- export interface ListResourcesOutput {
331
-
332
- TypeName?: string;
333
-
334
- ResourceDescriptions?: ResourceDescription[];
335
-
336
- NextToken?: string;
337
- }
338
- export interface UpdateResourceInput {
339
-
340
- TypeName: string | undefined;
341
-
342
- TypeVersionId?: string;
343
-
344
- RoleArn?: string;
345
-
346
- ClientToken?: string;
347
-
348
- Identifier: string | undefined;
349
-
350
- PatchDocument: string | undefined;
351
- }
352
- export interface UpdateResourceOutput {
353
-
354
- ProgressEvent?: ProgressEvent;
355
- }
356
-
357
- export declare const CancelResourceRequestInputFilterSensitiveLog: (obj: CancelResourceRequestInput) => any;
358
-
359
- export declare const ProgressEventFilterSensitiveLog: (obj: ProgressEvent) => any;
360
-
361
- export declare const CancelResourceRequestOutputFilterSensitiveLog: (obj: CancelResourceRequestOutput) => any;
362
-
363
- export declare const CreateResourceInputFilterSensitiveLog: (obj: CreateResourceInput) => any;
364
-
365
- export declare const CreateResourceOutputFilterSensitiveLog: (obj: CreateResourceOutput) => any;
366
-
367
- export declare const DeleteResourceInputFilterSensitiveLog: (obj: DeleteResourceInput) => any;
368
-
369
- export declare const DeleteResourceOutputFilterSensitiveLog: (obj: DeleteResourceOutput) => any;
370
-
371
- export declare const GetResourceInputFilterSensitiveLog: (obj: GetResourceInput) => any;
372
-
373
- export declare const ResourceDescriptionFilterSensitiveLog: (obj: ResourceDescription) => any;
374
-
375
- export declare const GetResourceOutputFilterSensitiveLog: (obj: GetResourceOutput) => any;
376
-
377
- export declare const GetResourceRequestStatusInputFilterSensitiveLog: (obj: GetResourceRequestStatusInput) => any;
378
-
379
- export declare const GetResourceRequestStatusOutputFilterSensitiveLog: (obj: GetResourceRequestStatusOutput) => any;
380
-
381
- export declare const ResourceRequestStatusFilterFilterSensitiveLog: (obj: ResourceRequestStatusFilter) => any;
382
-
383
- export declare const ListResourceRequestsInputFilterSensitiveLog: (obj: ListResourceRequestsInput) => any;
384
-
385
- export declare const ListResourceRequestsOutputFilterSensitiveLog: (obj: ListResourceRequestsOutput) => any;
386
-
387
- export declare const ListResourcesInputFilterSensitiveLog: (obj: ListResourcesInput) => any;
388
-
389
- export declare const ListResourcesOutputFilterSensitiveLog: (obj: ListResourcesOutput) => any;
390
-
391
- export declare const UpdateResourceInputFilterSensitiveLog: (obj: UpdateResourceInput) => any;
392
-
393
- export declare const UpdateResourceOutputFilterSensitiveLog: (obj: UpdateResourceOutput) => any;
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(
10
+ opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>
11
+ );
12
+ }
13
+ export interface CancelResourceRequestInput {
14
+ RequestToken: string | undefined;
15
+ }
16
+ export declare enum HandlerErrorCode {
17
+ ACCESS_DENIED = "AccessDenied",
18
+ ALREADY_EXISTS = "AlreadyExists",
19
+ GENERAL_SERVICE_EXCEPTION = "GeneralServiceException",
20
+ INTERNAL_FAILURE = "InternalFailure",
21
+ INVALID_CREDENTIALS = "InvalidCredentials",
22
+ INVALID_REQUEST = "InvalidRequest",
23
+ NETWORK_FAILURE = "NetworkFailure",
24
+ NOT_FOUND = "NotFound",
25
+ NOT_STABILIZED = "NotStabilized",
26
+ NOT_UPDATABLE = "NotUpdatable",
27
+ RESOURCE_CONFLICT = "ResourceConflict",
28
+ SERVICE_INTERNAL_ERROR = "ServiceInternalError",
29
+ SERVICE_LIMIT_EXCEEDED = "ServiceLimitExceeded",
30
+ SERVICE_TIMEOUT = "ServiceTimeout",
31
+ THROTTLING = "Throttling",
32
+ }
33
+ export declare enum Operation {
34
+ CREATE = "CREATE",
35
+ DELETE = "DELETE",
36
+ UPDATE = "UPDATE",
37
+ }
38
+ export declare enum OperationStatus {
39
+ CANCEL_COMPLETE = "CANCEL_COMPLETE",
40
+ CANCEL_IN_PROGRESS = "CANCEL_IN_PROGRESS",
41
+ FAILED = "FAILED",
42
+ IN_PROGRESS = "IN_PROGRESS",
43
+ PENDING = "PENDING",
44
+ SUCCESS = "SUCCESS",
45
+ }
46
+
47
+ export interface ProgressEvent {
48
+ TypeName?: string;
49
+
50
+ Identifier?: string;
51
+
52
+ RequestToken?: string;
53
+
54
+ Operation?: Operation | string;
55
+
56
+ OperationStatus?: OperationStatus | string;
57
+
58
+ EventTime?: Date;
59
+
60
+ ResourceModel?: string;
61
+
62
+ StatusMessage?: string;
63
+
64
+ ErrorCode?: HandlerErrorCode | string;
65
+
66
+ RetryAfter?: Date;
67
+ }
68
+ export interface CancelResourceRequestOutput {
69
+ ProgressEvent?: ProgressEvent;
70
+ }
71
+
72
+ export declare class ConcurrentModificationException extends __BaseException {
73
+ readonly name: "ConcurrentModificationException";
74
+ readonly $fault: "server";
75
+ Message?: string;
76
+
77
+ constructor(
78
+ opts: __ExceptionOptionType<
79
+ ConcurrentModificationException,
80
+ __BaseException
81
+ >
82
+ );
83
+ }
84
+
85
+ export declare class RequestTokenNotFoundException extends __BaseException {
86
+ readonly name: "RequestTokenNotFoundException";
87
+ readonly $fault: "client";
88
+ Message?: string;
89
+
90
+ constructor(
91
+ opts: __ExceptionOptionType<RequestTokenNotFoundException, __BaseException>
92
+ );
93
+ }
94
+
95
+ export declare class ClientTokenConflictException extends __BaseException {
96
+ readonly name: "ClientTokenConflictException";
97
+ readonly $fault: "client";
98
+ Message?: string;
99
+
100
+ constructor(
101
+ opts: __ExceptionOptionType<ClientTokenConflictException, __BaseException>
102
+ );
103
+ }
104
+
105
+ export declare class ConcurrentOperationException extends __BaseException {
106
+ readonly name: "ConcurrentOperationException";
107
+ readonly $fault: "client";
108
+ Message?: string;
109
+
110
+ constructor(
111
+ opts: __ExceptionOptionType<ConcurrentOperationException, __BaseException>
112
+ );
113
+ }
114
+ export interface CreateResourceInput {
115
+ TypeName: string | undefined;
116
+
117
+ TypeVersionId?: string;
118
+
119
+ RoleArn?: string;
120
+
121
+ ClientToken?: string;
122
+
123
+ DesiredState: string | undefined;
124
+ }
125
+ export interface CreateResourceOutput {
126
+ ProgressEvent?: ProgressEvent;
127
+ }
128
+
129
+ export declare class GeneralServiceException extends __BaseException {
130
+ readonly name: "GeneralServiceException";
131
+ readonly $fault: "client";
132
+ Message?: string;
133
+
134
+ constructor(
135
+ opts: __ExceptionOptionType<GeneralServiceException, __BaseException>
136
+ );
137
+ }
138
+
139
+ export declare class HandlerFailureException extends __BaseException {
140
+ readonly name: "HandlerFailureException";
141
+ readonly $fault: "server";
142
+ Message?: string;
143
+
144
+ constructor(
145
+ opts: __ExceptionOptionType<HandlerFailureException, __BaseException>
146
+ );
147
+ }
148
+
149
+ export declare class HandlerInternalFailureException extends __BaseException {
150
+ readonly name: "HandlerInternalFailureException";
151
+ readonly $fault: "server";
152
+ Message?: string;
153
+
154
+ constructor(
155
+ opts: __ExceptionOptionType<
156
+ HandlerInternalFailureException,
157
+ __BaseException
158
+ >
159
+ );
160
+ }
161
+
162
+ export declare class InvalidCredentialsException extends __BaseException {
163
+ readonly name: "InvalidCredentialsException";
164
+ readonly $fault: "client";
165
+ Message?: string;
166
+
167
+ constructor(
168
+ opts: __ExceptionOptionType<InvalidCredentialsException, __BaseException>
169
+ );
170
+ }
171
+
172
+ export declare class InvalidRequestException extends __BaseException {
173
+ readonly name: "InvalidRequestException";
174
+ readonly $fault: "client";
175
+ Message?: string;
176
+
177
+ constructor(
178
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
179
+ );
180
+ }
181
+
182
+ export declare class NetworkFailureException extends __BaseException {
183
+ readonly name: "NetworkFailureException";
184
+ readonly $fault: "server";
185
+ Message?: string;
186
+
187
+ constructor(
188
+ opts: __ExceptionOptionType<NetworkFailureException, __BaseException>
189
+ );
190
+ }
191
+
192
+ export declare class NotStabilizedException extends __BaseException {
193
+ readonly name: "NotStabilizedException";
194
+ readonly $fault: "client";
195
+ Message?: string;
196
+
197
+ constructor(
198
+ opts: __ExceptionOptionType<NotStabilizedException, __BaseException>
199
+ );
200
+ }
201
+
202
+ export declare class NotUpdatableException extends __BaseException {
203
+ readonly name: "NotUpdatableException";
204
+ readonly $fault: "client";
205
+ Message?: string;
206
+
207
+ constructor(
208
+ opts: __ExceptionOptionType<NotUpdatableException, __BaseException>
209
+ );
210
+ }
211
+
212
+ export declare class PrivateTypeException extends __BaseException {
213
+ readonly name: "PrivateTypeException";
214
+ readonly $fault: "client";
215
+ Message?: string;
216
+
217
+ constructor(
218
+ opts: __ExceptionOptionType<PrivateTypeException, __BaseException>
219
+ );
220
+ }
221
+
222
+ export declare class ResourceConflictException extends __BaseException {
223
+ readonly name: "ResourceConflictException";
224
+ readonly $fault: "client";
225
+ Message?: string;
226
+
227
+ constructor(
228
+ opts: __ExceptionOptionType<ResourceConflictException, __BaseException>
229
+ );
230
+ }
231
+
232
+ export declare class ResourceNotFoundException extends __BaseException {
233
+ readonly name: "ResourceNotFoundException";
234
+ readonly $fault: "client";
235
+ Message?: string;
236
+
237
+ constructor(
238
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
239
+ );
240
+ }
241
+
242
+ export declare class ServiceInternalErrorException extends __BaseException {
243
+ readonly name: "ServiceInternalErrorException";
244
+ readonly $fault: "server";
245
+ Message?: string;
246
+
247
+ constructor(
248
+ opts: __ExceptionOptionType<ServiceInternalErrorException, __BaseException>
249
+ );
250
+ }
251
+
252
+ export declare class ServiceLimitExceededException extends __BaseException {
253
+ readonly name: "ServiceLimitExceededException";
254
+ readonly $fault: "client";
255
+ Message?: string;
256
+
257
+ constructor(
258
+ opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>
259
+ );
260
+ }
261
+
262
+ export declare class ThrottlingException extends __BaseException {
263
+ readonly name: "ThrottlingException";
264
+ readonly $fault: "client";
265
+ Message?: string;
266
+
267
+ constructor(
268
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
269
+ );
270
+ }
271
+
272
+ export declare class TypeNotFoundException extends __BaseException {
273
+ readonly name: "TypeNotFoundException";
274
+ readonly $fault: "client";
275
+ Message?: string;
276
+
277
+ constructor(
278
+ opts: __ExceptionOptionType<TypeNotFoundException, __BaseException>
279
+ );
280
+ }
281
+
282
+ export declare class UnsupportedActionException extends __BaseException {
283
+ readonly name: "UnsupportedActionException";
284
+ readonly $fault: "client";
285
+ Message?: string;
286
+
287
+ constructor(
288
+ opts: __ExceptionOptionType<UnsupportedActionException, __BaseException>
289
+ );
290
+ }
291
+ export interface DeleteResourceInput {
292
+ TypeName: string | undefined;
293
+
294
+ TypeVersionId?: string;
295
+
296
+ RoleArn?: string;
297
+
298
+ ClientToken?: string;
299
+
300
+ Identifier: string | undefined;
301
+ }
302
+ export interface DeleteResourceOutput {
303
+ ProgressEvent?: ProgressEvent;
304
+ }
305
+ export interface GetResourceInput {
306
+ TypeName: string | undefined;
307
+
308
+ TypeVersionId?: string;
309
+
310
+ RoleArn?: string;
311
+
312
+ Identifier: string | undefined;
313
+ }
314
+
315
+ export interface ResourceDescription {
316
+ Identifier?: string;
317
+
318
+ Properties?: string;
319
+ }
320
+ export interface GetResourceOutput {
321
+ TypeName?: string;
322
+
323
+ ResourceDescription?: ResourceDescription;
324
+ }
325
+ export interface GetResourceRequestStatusInput {
326
+ RequestToken: string | undefined;
327
+ }
328
+ export interface GetResourceRequestStatusOutput {
329
+ ProgressEvent?: ProgressEvent;
330
+ }
331
+
332
+ export interface ResourceRequestStatusFilter {
333
+ Operations?: (Operation | string)[];
334
+
335
+ OperationStatuses?: (OperationStatus | string)[];
336
+ }
337
+ export interface ListResourceRequestsInput {
338
+ MaxResults?: number;
339
+
340
+ NextToken?: string;
341
+
342
+ ResourceRequestStatusFilter?: ResourceRequestStatusFilter;
343
+ }
344
+ export interface ListResourceRequestsOutput {
345
+ ResourceRequestStatusSummaries?: ProgressEvent[];
346
+
347
+ NextToken?: string;
348
+ }
349
+ export interface ListResourcesInput {
350
+ TypeName: string | undefined;
351
+
352
+ TypeVersionId?: string;
353
+
354
+ RoleArn?: string;
355
+
356
+ NextToken?: string;
357
+
358
+ MaxResults?: number;
359
+
360
+ ResourceModel?: string;
361
+ }
362
+ export interface ListResourcesOutput {
363
+ TypeName?: string;
364
+
365
+ ResourceDescriptions?: ResourceDescription[];
366
+
367
+ NextToken?: string;
368
+ }
369
+ export interface UpdateResourceInput {
370
+ TypeName: string | undefined;
371
+
372
+ TypeVersionId?: string;
373
+
374
+ RoleArn?: string;
375
+
376
+ ClientToken?: string;
377
+
378
+ Identifier: string | undefined;
379
+
380
+ PatchDocument: string | undefined;
381
+ }
382
+ export interface UpdateResourceOutput {
383
+ ProgressEvent?: ProgressEvent;
384
+ }
385
+
386
+ export declare const CancelResourceRequestInputFilterSensitiveLog: (
387
+ obj: CancelResourceRequestInput
388
+ ) => any;
389
+
390
+ export declare const ProgressEventFilterSensitiveLog: (
391
+ obj: ProgressEvent
392
+ ) => any;
393
+
394
+ export declare const CancelResourceRequestOutputFilterSensitiveLog: (
395
+ obj: CancelResourceRequestOutput
396
+ ) => any;
397
+
398
+ export declare const CreateResourceInputFilterSensitiveLog: (
399
+ obj: CreateResourceInput
400
+ ) => any;
401
+
402
+ export declare const CreateResourceOutputFilterSensitiveLog: (
403
+ obj: CreateResourceOutput
404
+ ) => any;
405
+
406
+ export declare const DeleteResourceInputFilterSensitiveLog: (
407
+ obj: DeleteResourceInput
408
+ ) => any;
409
+
410
+ export declare const DeleteResourceOutputFilterSensitiveLog: (
411
+ obj: DeleteResourceOutput
412
+ ) => any;
413
+
414
+ export declare const GetResourceInputFilterSensitiveLog: (
415
+ obj: GetResourceInput
416
+ ) => any;
417
+
418
+ export declare const ResourceDescriptionFilterSensitiveLog: (
419
+ obj: ResourceDescription
420
+ ) => any;
421
+
422
+ export declare const GetResourceOutputFilterSensitiveLog: (
423
+ obj: GetResourceOutput
424
+ ) => any;
425
+
426
+ export declare const GetResourceRequestStatusInputFilterSensitiveLog: (
427
+ obj: GetResourceRequestStatusInput
428
+ ) => any;
429
+
430
+ export declare const GetResourceRequestStatusOutputFilterSensitiveLog: (
431
+ obj: GetResourceRequestStatusOutput
432
+ ) => any;
433
+
434
+ export declare const ResourceRequestStatusFilterFilterSensitiveLog: (
435
+ obj: ResourceRequestStatusFilter
436
+ ) => any;
437
+
438
+ export declare const ListResourceRequestsInputFilterSensitiveLog: (
439
+ obj: ListResourceRequestsInput
440
+ ) => any;
441
+
442
+ export declare const ListResourceRequestsOutputFilterSensitiveLog: (
443
+ obj: ListResourceRequestsOutput
444
+ ) => any;
445
+
446
+ export declare const ListResourcesInputFilterSensitiveLog: (
447
+ obj: ListResourcesInput
448
+ ) => any;
449
+
450
+ export declare const ListResourcesOutputFilterSensitiveLog: (
451
+ obj: ListResourcesOutput
452
+ ) => any;
453
+
454
+ export declare const UpdateResourceInputFilterSensitiveLog: (
455
+ obj: UpdateResourceInput
456
+ ) => any;
457
+
458
+ export declare const UpdateResourceOutputFilterSensitiveLog: (
459
+ obj: UpdateResourceOutput
460
+ ) => any;