@aws-sdk/client-emr-containers 3.168.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 (35) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/EMRContainers.d.ts +274 -80
  3. package/dist-types/ts3.4/EMRContainersClient.d.ts +220 -88
  4. package/dist-types/ts3.4/commands/CancelJobRunCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CreateManagedEndpointCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateVirtualClusterCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/DeleteManagedEndpointCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DeleteVirtualClusterCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DescribeJobRunCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DescribeManagedEndpointCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DescribeVirtualClusterCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/ListManagedEndpointsCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/ListVirtualClustersCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/index.d.ts +15 -15
  20. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  21. package/dist-types/ts3.4/index.d.ts +6 -6
  22. package/dist-types/ts3.4/models/EMRContainersServiceException.d.ts +8 -6
  23. package/dist-types/ts3.4/models/index.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +607 -567
  25. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  26. package/dist-types/ts3.4/pagination/ListJobRunsPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/ListManagedEndpointsPaginator.d.ts +11 -4
  28. package/dist-types/ts3.4/pagination/ListVirtualClustersPaginator.d.ts +11 -4
  29. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  30. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -47
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  35. package/package.json +34 -34
@@ -1,567 +1,607 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { EMRContainersServiceException as __BaseException } from "./EMRContainersServiceException";
3
- export interface CancelJobRunRequest {
4
-
5
- id: string | undefined;
6
-
7
- virtualClusterId: string | undefined;
8
- }
9
- export interface CancelJobRunResponse {
10
-
11
- id?: string;
12
-
13
- virtualClusterId?: string;
14
- }
15
-
16
- export declare class InternalServerException extends __BaseException {
17
- readonly name: "InternalServerException";
18
- readonly $fault: "server";
19
-
20
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
21
- }
22
-
23
- export declare class ValidationException extends __BaseException {
24
- readonly name: "ValidationException";
25
- readonly $fault: "client";
26
-
27
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
28
- }
29
-
30
- export interface CloudWatchMonitoringConfiguration {
31
-
32
- logGroupName: string | undefined;
33
-
34
- logStreamNamePrefix?: string;
35
- }
36
- export declare enum PersistentAppUI {
37
- DISABLED = "DISABLED",
38
- ENABLED = "ENABLED"
39
- }
40
-
41
- export interface S3MonitoringConfiguration {
42
-
43
- logUri: string | undefined;
44
- }
45
-
46
- export interface MonitoringConfiguration {
47
-
48
- persistentAppUI?: PersistentAppUI | string;
49
-
50
- cloudWatchMonitoringConfiguration?: CloudWatchMonitoringConfiguration;
51
-
52
- s3MonitoringConfiguration?: S3MonitoringConfiguration;
53
- }
54
- export interface CreateManagedEndpointResponse {
55
-
56
- id?: string;
57
-
58
- name?: string;
59
-
60
- arn?: string;
61
-
62
- virtualClusterId?: string;
63
- }
64
-
65
- export declare class ResourceNotFoundException extends __BaseException {
66
- readonly name: "ResourceNotFoundException";
67
- readonly $fault: "client";
68
-
69
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
70
- }
71
-
72
- export interface EksInfo {
73
-
74
- namespace?: string;
75
- }
76
-
77
- export declare type ContainerInfo = ContainerInfo.EksInfoMember | ContainerInfo.$UnknownMember;
78
- export declare namespace ContainerInfo {
79
-
80
- interface EksInfoMember {
81
- eksInfo: EksInfo;
82
- $unknown?: never;
83
- }
84
- interface $UnknownMember {
85
- eksInfo?: never;
86
- $unknown: [
87
- string,
88
- any
89
- ];
90
- }
91
- interface Visitor<T> {
92
- eksInfo: (value: EksInfo) => T;
93
- _: (name: string, value: any) => T;
94
- }
95
- const visit: <T>(value: ContainerInfo, visitor: Visitor<T>) => T;
96
- }
97
- export declare enum ContainerProviderType {
98
- EKS = "EKS"
99
- }
100
-
101
- export interface ContainerProvider {
102
-
103
- type: ContainerProviderType | string | undefined;
104
-
105
- id: string | undefined;
106
-
107
- info?: ContainerInfo;
108
- }
109
- export interface CreateVirtualClusterRequest {
110
-
111
- name: string | undefined;
112
-
113
- containerProvider: ContainerProvider | undefined;
114
-
115
- clientToken?: string;
116
-
117
- tags?: Record<string, string>;
118
- }
119
- export interface CreateVirtualClusterResponse {
120
-
121
- id?: string;
122
-
123
- name?: string;
124
-
125
- arn?: string;
126
- }
127
- export interface DeleteManagedEndpointRequest {
128
-
129
- id: string | undefined;
130
-
131
- virtualClusterId: string | undefined;
132
- }
133
- export interface DeleteManagedEndpointResponse {
134
-
135
- id?: string;
136
-
137
- virtualClusterId?: string;
138
- }
139
- export interface DeleteVirtualClusterRequest {
140
-
141
- id: string | undefined;
142
- }
143
- export interface DeleteVirtualClusterResponse {
144
-
145
- id?: string;
146
- }
147
- export interface DescribeJobRunRequest {
148
-
149
- id: string | undefined;
150
-
151
- virtualClusterId: string | undefined;
152
- }
153
- export declare enum FailureReason {
154
- CLUSTER_UNAVAILABLE = "CLUSTER_UNAVAILABLE",
155
- INTERNAL_ERROR = "INTERNAL_ERROR",
156
- USER_ERROR = "USER_ERROR",
157
- VALIDATION_ERROR = "VALIDATION_ERROR"
158
- }
159
-
160
- export interface SparkSqlJobDriver {
161
-
162
- entryPoint?: string;
163
-
164
- sparkSqlParameters?: string;
165
- }
166
-
167
- export interface SparkSubmitJobDriver {
168
-
169
- entryPoint: string | undefined;
170
-
171
- entryPointArguments?: string[];
172
-
173
- sparkSubmitParameters?: string;
174
- }
175
-
176
- export interface JobDriver {
177
-
178
- sparkSubmitJobDriver?: SparkSubmitJobDriver;
179
-
180
- sparkSqlJobDriver?: SparkSqlJobDriver;
181
- }
182
- export declare enum JobRunState {
183
- CANCELLED = "CANCELLED",
184
- CANCEL_PENDING = "CANCEL_PENDING",
185
- COMPLETED = "COMPLETED",
186
- FAILED = "FAILED",
187
- PENDING = "PENDING",
188
- RUNNING = "RUNNING",
189
- SUBMITTED = "SUBMITTED"
190
- }
191
- export interface DescribeManagedEndpointRequest {
192
-
193
- id: string | undefined;
194
-
195
- virtualClusterId: string | undefined;
196
- }
197
-
198
- export interface Certificate {
199
-
200
- certificateArn?: string;
201
-
202
- certificateData?: string;
203
- }
204
- export declare enum EndpointState {
205
- ACTIVE = "ACTIVE",
206
- CREATING = "CREATING",
207
- TERMINATED = "TERMINATED",
208
- TERMINATED_WITH_ERRORS = "TERMINATED_WITH_ERRORS",
209
- TERMINATING = "TERMINATING"
210
- }
211
- export interface DescribeVirtualClusterRequest {
212
-
213
- id: string | undefined;
214
- }
215
- export declare enum VirtualClusterState {
216
- ARRESTED = "ARRESTED",
217
- RUNNING = "RUNNING",
218
- TERMINATED = "TERMINATED",
219
- TERMINATING = "TERMINATING"
220
- }
221
-
222
- export interface VirtualCluster {
223
-
224
- id?: string;
225
-
226
- name?: string;
227
-
228
- arn?: string;
229
-
230
- state?: VirtualClusterState | string;
231
-
232
- containerProvider?: ContainerProvider;
233
-
234
- createdAt?: Date;
235
-
236
- tags?: Record<string, string>;
237
- }
238
- export interface DescribeVirtualClusterResponse {
239
-
240
- virtualCluster?: VirtualCluster;
241
- }
242
- export interface ListJobRunsRequest {
243
-
244
- virtualClusterId: string | undefined;
245
-
246
- createdBefore?: Date;
247
-
248
- createdAfter?: Date;
249
-
250
- name?: string;
251
-
252
- states?: (JobRunState | string)[];
253
-
254
- maxResults?: number;
255
-
256
- nextToken?: string;
257
- }
258
- export interface ListManagedEndpointsRequest {
259
-
260
- virtualClusterId: string | undefined;
261
-
262
- createdBefore?: Date;
263
-
264
- createdAfter?: Date;
265
-
266
- types?: string[];
267
-
268
- states?: (EndpointState | string)[];
269
-
270
- maxResults?: number;
271
-
272
- nextToken?: string;
273
- }
274
- export interface ListTagsForResourceRequest {
275
-
276
- resourceArn: string | undefined;
277
- }
278
- export interface ListTagsForResourceResponse {
279
-
280
- tags?: Record<string, string>;
281
- }
282
- export interface ListVirtualClustersRequest {
283
-
284
- containerProviderId?: string;
285
-
286
- containerProviderType?: ContainerProviderType | string;
287
-
288
- createdAfter?: Date;
289
-
290
- createdBefore?: Date;
291
-
292
- states?: (VirtualClusterState | string)[];
293
-
294
- maxResults?: number;
295
-
296
- nextToken?: string;
297
- }
298
- export interface ListVirtualClustersResponse {
299
-
300
- virtualClusters?: VirtualCluster[];
301
-
302
- nextToken?: string;
303
- }
304
- export interface StartJobRunResponse {
305
-
306
- id?: string;
307
-
308
- name?: string;
309
-
310
- arn?: string;
311
-
312
- virtualClusterId?: string;
313
- }
314
- export interface TagResourceRequest {
315
-
316
- resourceArn: string | undefined;
317
-
318
- tags: Record<string, string> | undefined;
319
- }
320
- export interface TagResourceResponse {
321
- }
322
- export interface UntagResourceRequest {
323
-
324
- resourceArn: string | undefined;
325
-
326
- tagKeys: string[] | undefined;
327
- }
328
- export interface UntagResourceResponse {
329
- }
330
-
331
- export interface Configuration {
332
-
333
- classification: string | undefined;
334
-
335
- properties?: Record<string, string>;
336
-
337
- configurations?: Configuration[];
338
- }
339
-
340
- export interface ConfigurationOverrides {
341
-
342
- applicationConfiguration?: Configuration[];
343
-
344
- monitoringConfiguration?: MonitoringConfiguration;
345
- }
346
- export interface CreateManagedEndpointRequest {
347
-
348
- name: string | undefined;
349
-
350
- virtualClusterId: string | undefined;
351
-
352
- type: string | undefined;
353
-
354
- releaseLabel: string | undefined;
355
-
356
- executionRoleArn: string | undefined;
357
-
358
- certificateArn?: string;
359
-
360
- configurationOverrides?: ConfigurationOverrides;
361
-
362
- clientToken?: string;
363
-
364
- tags?: Record<string, string>;
365
- }
366
-
367
- export interface Endpoint {
368
-
369
- id?: string;
370
-
371
- name?: string;
372
-
373
- arn?: string;
374
-
375
- virtualClusterId?: string;
376
-
377
- type?: string;
378
-
379
- state?: EndpointState | string;
380
-
381
- releaseLabel?: string;
382
-
383
- executionRoleArn?: string;
384
-
385
- certificateArn?: string;
386
-
387
- certificateAuthority?: Certificate;
388
-
389
- configurationOverrides?: ConfigurationOverrides;
390
-
391
- serverUrl?: string;
392
-
393
- createdAt?: Date;
394
-
395
- securityGroup?: string;
396
-
397
- subnetIds?: string[];
398
-
399
- stateDetails?: string;
400
-
401
- failureReason?: FailureReason | string;
402
-
403
- tags?: Record<string, string>;
404
- }
405
-
406
- export interface JobRun {
407
-
408
- id?: string;
409
-
410
- name?: string;
411
-
412
- virtualClusterId?: string;
413
-
414
- arn?: string;
415
-
416
- state?: JobRunState | string;
417
-
418
- clientToken?: string;
419
-
420
- executionRoleArn?: string;
421
-
422
- releaseLabel?: string;
423
-
424
- configurationOverrides?: ConfigurationOverrides;
425
-
426
- jobDriver?: JobDriver;
427
-
428
- createdAt?: Date;
429
-
430
- createdBy?: string;
431
-
432
- finishedAt?: Date;
433
-
434
- stateDetails?: string;
435
-
436
- failureReason?: FailureReason | string;
437
-
438
- tags?: Record<string, string>;
439
- }
440
- export interface StartJobRunRequest {
441
-
442
- name?: string;
443
-
444
- virtualClusterId: string | undefined;
445
-
446
- clientToken?: string;
447
-
448
- executionRoleArn: string | undefined;
449
-
450
- releaseLabel: string | undefined;
451
-
452
- jobDriver: JobDriver | undefined;
453
-
454
- configurationOverrides?: ConfigurationOverrides;
455
-
456
- tags?: Record<string, string>;
457
- }
458
- export interface DescribeJobRunResponse {
459
-
460
- jobRun?: JobRun;
461
- }
462
- export interface DescribeManagedEndpointResponse {
463
-
464
- endpoint?: Endpoint;
465
- }
466
- export interface ListJobRunsResponse {
467
-
468
- jobRuns?: JobRun[];
469
-
470
- nextToken?: string;
471
- }
472
- export interface ListManagedEndpointsResponse {
473
-
474
- endpoints?: Endpoint[];
475
-
476
- nextToken?: string;
477
- }
478
-
479
- export declare const CancelJobRunRequestFilterSensitiveLog: (obj: CancelJobRunRequest) => any;
480
-
481
- export declare const CancelJobRunResponseFilterSensitiveLog: (obj: CancelJobRunResponse) => any;
482
-
483
- export declare const CloudWatchMonitoringConfigurationFilterSensitiveLog: (obj: CloudWatchMonitoringConfiguration) => any;
484
-
485
- export declare const S3MonitoringConfigurationFilterSensitiveLog: (obj: S3MonitoringConfiguration) => any;
486
-
487
- export declare const MonitoringConfigurationFilterSensitiveLog: (obj: MonitoringConfiguration) => any;
488
-
489
- export declare const CreateManagedEndpointResponseFilterSensitiveLog: (obj: CreateManagedEndpointResponse) => any;
490
-
491
- export declare const EksInfoFilterSensitiveLog: (obj: EksInfo) => any;
492
-
493
- export declare const ContainerInfoFilterSensitiveLog: (obj: ContainerInfo) => any;
494
-
495
- export declare const ContainerProviderFilterSensitiveLog: (obj: ContainerProvider) => any;
496
-
497
- export declare const CreateVirtualClusterRequestFilterSensitiveLog: (obj: CreateVirtualClusterRequest) => any;
498
-
499
- export declare const CreateVirtualClusterResponseFilterSensitiveLog: (obj: CreateVirtualClusterResponse) => any;
500
-
501
- export declare const DeleteManagedEndpointRequestFilterSensitiveLog: (obj: DeleteManagedEndpointRequest) => any;
502
-
503
- export declare const DeleteManagedEndpointResponseFilterSensitiveLog: (obj: DeleteManagedEndpointResponse) => any;
504
-
505
- export declare const DeleteVirtualClusterRequestFilterSensitiveLog: (obj: DeleteVirtualClusterRequest) => any;
506
-
507
- export declare const DeleteVirtualClusterResponseFilterSensitiveLog: (obj: DeleteVirtualClusterResponse) => any;
508
-
509
- export declare const DescribeJobRunRequestFilterSensitiveLog: (obj: DescribeJobRunRequest) => any;
510
-
511
- export declare const SparkSqlJobDriverFilterSensitiveLog: (obj: SparkSqlJobDriver) => any;
512
-
513
- export declare const SparkSubmitJobDriverFilterSensitiveLog: (obj: SparkSubmitJobDriver) => any;
514
-
515
- export declare const JobDriverFilterSensitiveLog: (obj: JobDriver) => any;
516
-
517
- export declare const DescribeManagedEndpointRequestFilterSensitiveLog: (obj: DescribeManagedEndpointRequest) => any;
518
-
519
- export declare const CertificateFilterSensitiveLog: (obj: Certificate) => any;
520
-
521
- export declare const DescribeVirtualClusterRequestFilterSensitiveLog: (obj: DescribeVirtualClusterRequest) => any;
522
-
523
- export declare const VirtualClusterFilterSensitiveLog: (obj: VirtualCluster) => any;
524
-
525
- export declare const DescribeVirtualClusterResponseFilterSensitiveLog: (obj: DescribeVirtualClusterResponse) => any;
526
-
527
- export declare const ListJobRunsRequestFilterSensitiveLog: (obj: ListJobRunsRequest) => any;
528
-
529
- export declare const ListManagedEndpointsRequestFilterSensitiveLog: (obj: ListManagedEndpointsRequest) => any;
530
-
531
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
532
-
533
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
534
-
535
- export declare const ListVirtualClustersRequestFilterSensitiveLog: (obj: ListVirtualClustersRequest) => any;
536
-
537
- export declare const ListVirtualClustersResponseFilterSensitiveLog: (obj: ListVirtualClustersResponse) => any;
538
-
539
- export declare const StartJobRunResponseFilterSensitiveLog: (obj: StartJobRunResponse) => any;
540
-
541
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
542
-
543
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
544
-
545
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
546
-
547
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
548
-
549
- export declare const ConfigurationFilterSensitiveLog: (obj: Configuration) => any;
550
-
551
- export declare const ConfigurationOverridesFilterSensitiveLog: (obj: ConfigurationOverrides) => any;
552
-
553
- export declare const CreateManagedEndpointRequestFilterSensitiveLog: (obj: CreateManagedEndpointRequest) => any;
554
-
555
- export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
556
-
557
- export declare const JobRunFilterSensitiveLog: (obj: JobRun) => any;
558
-
559
- export declare const StartJobRunRequestFilterSensitiveLog: (obj: StartJobRunRequest) => any;
560
-
561
- export declare const DescribeJobRunResponseFilterSensitiveLog: (obj: DescribeJobRunResponse) => any;
562
-
563
- export declare const DescribeManagedEndpointResponseFilterSensitiveLog: (obj: DescribeManagedEndpointResponse) => any;
564
-
565
- export declare const ListJobRunsResponseFilterSensitiveLog: (obj: ListJobRunsResponse) => any;
566
-
567
- export declare const ListManagedEndpointsResponseFilterSensitiveLog: (obj: ListManagedEndpointsResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { EMRContainersServiceException as __BaseException } from "./EMRContainersServiceException";
3
+ export interface CancelJobRunRequest {
4
+ id: string | undefined;
5
+
6
+ virtualClusterId: string | undefined;
7
+ }
8
+ export interface CancelJobRunResponse {
9
+ id?: string;
10
+
11
+ virtualClusterId?: string;
12
+ }
13
+
14
+ export declare class InternalServerException extends __BaseException {
15
+ readonly name: "InternalServerException";
16
+ readonly $fault: "server";
17
+
18
+ constructor(
19
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
20
+ );
21
+ }
22
+
23
+ export declare class ValidationException extends __BaseException {
24
+ readonly name: "ValidationException";
25
+ readonly $fault: "client";
26
+
27
+ constructor(
28
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
29
+ );
30
+ }
31
+
32
+ export interface CloudWatchMonitoringConfiguration {
33
+ logGroupName: string | undefined;
34
+
35
+ logStreamNamePrefix?: string;
36
+ }
37
+ export declare enum PersistentAppUI {
38
+ DISABLED = "DISABLED",
39
+ ENABLED = "ENABLED",
40
+ }
41
+
42
+ export interface S3MonitoringConfiguration {
43
+ logUri: string | undefined;
44
+ }
45
+
46
+ export interface MonitoringConfiguration {
47
+ persistentAppUI?: PersistentAppUI | string;
48
+
49
+ cloudWatchMonitoringConfiguration?: CloudWatchMonitoringConfiguration;
50
+
51
+ s3MonitoringConfiguration?: S3MonitoringConfiguration;
52
+ }
53
+ export interface CreateManagedEndpointResponse {
54
+ id?: string;
55
+
56
+ name?: string;
57
+
58
+ arn?: string;
59
+
60
+ virtualClusterId?: string;
61
+ }
62
+
63
+ export declare class ResourceNotFoundException extends __BaseException {
64
+ readonly name: "ResourceNotFoundException";
65
+ readonly $fault: "client";
66
+
67
+ constructor(
68
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
69
+ );
70
+ }
71
+
72
+ export interface EksInfo {
73
+ namespace?: string;
74
+ }
75
+
76
+ export declare type ContainerInfo =
77
+ | ContainerInfo.EksInfoMember
78
+ | ContainerInfo.$UnknownMember;
79
+ export declare namespace ContainerInfo {
80
+ interface EksInfoMember {
81
+ eksInfo: EksInfo;
82
+ $unknown?: never;
83
+ }
84
+ interface $UnknownMember {
85
+ eksInfo?: never;
86
+ $unknown: [string, any];
87
+ }
88
+ interface Visitor<T> {
89
+ eksInfo: (value: EksInfo) => T;
90
+ _: (name: string, value: any) => T;
91
+ }
92
+ const visit: <T>(value: ContainerInfo, visitor: Visitor<T>) => T;
93
+ }
94
+ export declare enum ContainerProviderType {
95
+ EKS = "EKS",
96
+ }
97
+
98
+ export interface ContainerProvider {
99
+ type: ContainerProviderType | string | undefined;
100
+
101
+ id: string | undefined;
102
+
103
+ info?: ContainerInfo;
104
+ }
105
+ export interface CreateVirtualClusterRequest {
106
+ name: string | undefined;
107
+
108
+ containerProvider: ContainerProvider | undefined;
109
+
110
+ clientToken?: string;
111
+
112
+ tags?: Record<string, string>;
113
+ }
114
+ export interface CreateVirtualClusterResponse {
115
+ id?: string;
116
+
117
+ name?: string;
118
+
119
+ arn?: string;
120
+ }
121
+ export interface DeleteManagedEndpointRequest {
122
+ id: string | undefined;
123
+
124
+ virtualClusterId: string | undefined;
125
+ }
126
+ export interface DeleteManagedEndpointResponse {
127
+ id?: string;
128
+
129
+ virtualClusterId?: string;
130
+ }
131
+ export interface DeleteVirtualClusterRequest {
132
+ id: string | undefined;
133
+ }
134
+ export interface DeleteVirtualClusterResponse {
135
+ id?: string;
136
+ }
137
+ export interface DescribeJobRunRequest {
138
+ id: string | undefined;
139
+
140
+ virtualClusterId: string | undefined;
141
+ }
142
+ export declare enum FailureReason {
143
+ CLUSTER_UNAVAILABLE = "CLUSTER_UNAVAILABLE",
144
+ INTERNAL_ERROR = "INTERNAL_ERROR",
145
+ USER_ERROR = "USER_ERROR",
146
+ VALIDATION_ERROR = "VALIDATION_ERROR",
147
+ }
148
+
149
+ export interface SparkSqlJobDriver {
150
+ entryPoint?: string;
151
+
152
+ sparkSqlParameters?: string;
153
+ }
154
+
155
+ export interface SparkSubmitJobDriver {
156
+ entryPoint: string | undefined;
157
+
158
+ entryPointArguments?: string[];
159
+
160
+ sparkSubmitParameters?: string;
161
+ }
162
+
163
+ export interface JobDriver {
164
+ sparkSubmitJobDriver?: SparkSubmitJobDriver;
165
+
166
+ sparkSqlJobDriver?: SparkSqlJobDriver;
167
+ }
168
+ export declare enum JobRunState {
169
+ CANCELLED = "CANCELLED",
170
+ CANCEL_PENDING = "CANCEL_PENDING",
171
+ COMPLETED = "COMPLETED",
172
+ FAILED = "FAILED",
173
+ PENDING = "PENDING",
174
+ RUNNING = "RUNNING",
175
+ SUBMITTED = "SUBMITTED",
176
+ }
177
+ export interface DescribeManagedEndpointRequest {
178
+ id: string | undefined;
179
+
180
+ virtualClusterId: string | undefined;
181
+ }
182
+
183
+ export interface Certificate {
184
+ certificateArn?: string;
185
+
186
+ certificateData?: string;
187
+ }
188
+ export declare enum EndpointState {
189
+ ACTIVE = "ACTIVE",
190
+ CREATING = "CREATING",
191
+ TERMINATED = "TERMINATED",
192
+ TERMINATED_WITH_ERRORS = "TERMINATED_WITH_ERRORS",
193
+ TERMINATING = "TERMINATING",
194
+ }
195
+ export interface DescribeVirtualClusterRequest {
196
+ id: string | undefined;
197
+ }
198
+ export declare enum VirtualClusterState {
199
+ ARRESTED = "ARRESTED",
200
+ RUNNING = "RUNNING",
201
+ TERMINATED = "TERMINATED",
202
+ TERMINATING = "TERMINATING",
203
+ }
204
+
205
+ export interface VirtualCluster {
206
+ id?: string;
207
+
208
+ name?: string;
209
+
210
+ arn?: string;
211
+
212
+ state?: VirtualClusterState | string;
213
+
214
+ containerProvider?: ContainerProvider;
215
+
216
+ createdAt?: Date;
217
+
218
+ tags?: Record<string, string>;
219
+ }
220
+ export interface DescribeVirtualClusterResponse {
221
+ virtualCluster?: VirtualCluster;
222
+ }
223
+ export interface ListJobRunsRequest {
224
+ virtualClusterId: string | undefined;
225
+
226
+ createdBefore?: Date;
227
+
228
+ createdAfter?: Date;
229
+
230
+ name?: string;
231
+
232
+ states?: (JobRunState | string)[];
233
+
234
+ maxResults?: number;
235
+
236
+ nextToken?: string;
237
+ }
238
+ export interface ListManagedEndpointsRequest {
239
+ virtualClusterId: string | undefined;
240
+
241
+ createdBefore?: Date;
242
+
243
+ createdAfter?: Date;
244
+
245
+ types?: string[];
246
+
247
+ states?: (EndpointState | string)[];
248
+
249
+ maxResults?: number;
250
+
251
+ nextToken?: string;
252
+ }
253
+ export interface ListTagsForResourceRequest {
254
+ resourceArn: string | undefined;
255
+ }
256
+ export interface ListTagsForResourceResponse {
257
+ tags?: Record<string, string>;
258
+ }
259
+ export interface ListVirtualClustersRequest {
260
+ containerProviderId?: string;
261
+
262
+ containerProviderType?: ContainerProviderType | string;
263
+
264
+ createdAfter?: Date;
265
+
266
+ createdBefore?: Date;
267
+
268
+ states?: (VirtualClusterState | string)[];
269
+
270
+ maxResults?: number;
271
+
272
+ nextToken?: string;
273
+ }
274
+ export interface ListVirtualClustersResponse {
275
+ virtualClusters?: VirtualCluster[];
276
+
277
+ nextToken?: string;
278
+ }
279
+ export interface StartJobRunResponse {
280
+ id?: string;
281
+
282
+ name?: string;
283
+
284
+ arn?: string;
285
+
286
+ virtualClusterId?: string;
287
+ }
288
+ export interface TagResourceRequest {
289
+ resourceArn: string | undefined;
290
+
291
+ tags: Record<string, string> | undefined;
292
+ }
293
+ export interface TagResourceResponse {}
294
+ export interface UntagResourceRequest {
295
+ resourceArn: string | undefined;
296
+
297
+ tagKeys: string[] | undefined;
298
+ }
299
+ export interface UntagResourceResponse {}
300
+
301
+ export interface Configuration {
302
+ classification: string | undefined;
303
+
304
+ properties?: Record<string, string>;
305
+
306
+ configurations?: Configuration[];
307
+ }
308
+
309
+ export interface ConfigurationOverrides {
310
+ applicationConfiguration?: Configuration[];
311
+
312
+ monitoringConfiguration?: MonitoringConfiguration;
313
+ }
314
+ export interface CreateManagedEndpointRequest {
315
+ name: string | undefined;
316
+
317
+ virtualClusterId: string | undefined;
318
+
319
+ type: string | undefined;
320
+
321
+ releaseLabel: string | undefined;
322
+
323
+ executionRoleArn: string | undefined;
324
+
325
+ certificateArn?: string;
326
+
327
+ configurationOverrides?: ConfigurationOverrides;
328
+
329
+ clientToken?: string;
330
+
331
+ tags?: Record<string, string>;
332
+ }
333
+
334
+ export interface Endpoint {
335
+ id?: string;
336
+
337
+ name?: string;
338
+
339
+ arn?: string;
340
+
341
+ virtualClusterId?: string;
342
+
343
+ type?: string;
344
+
345
+ state?: EndpointState | string;
346
+
347
+ releaseLabel?: string;
348
+
349
+ executionRoleArn?: string;
350
+
351
+ certificateArn?: string;
352
+
353
+ certificateAuthority?: Certificate;
354
+
355
+ configurationOverrides?: ConfigurationOverrides;
356
+
357
+ serverUrl?: string;
358
+
359
+ createdAt?: Date;
360
+
361
+ securityGroup?: string;
362
+
363
+ subnetIds?: string[];
364
+
365
+ stateDetails?: string;
366
+
367
+ failureReason?: FailureReason | string;
368
+
369
+ tags?: Record<string, string>;
370
+ }
371
+
372
+ export interface JobRun {
373
+ id?: string;
374
+
375
+ name?: string;
376
+
377
+ virtualClusterId?: string;
378
+
379
+ arn?: string;
380
+
381
+ state?: JobRunState | string;
382
+
383
+ clientToken?: string;
384
+
385
+ executionRoleArn?: string;
386
+
387
+ releaseLabel?: string;
388
+
389
+ configurationOverrides?: ConfigurationOverrides;
390
+
391
+ jobDriver?: JobDriver;
392
+
393
+ createdAt?: Date;
394
+
395
+ createdBy?: string;
396
+
397
+ finishedAt?: Date;
398
+
399
+ stateDetails?: string;
400
+
401
+ failureReason?: FailureReason | string;
402
+
403
+ tags?: Record<string, string>;
404
+ }
405
+ export interface StartJobRunRequest {
406
+ name?: string;
407
+
408
+ virtualClusterId: string | undefined;
409
+
410
+ clientToken?: string;
411
+
412
+ executionRoleArn: string | undefined;
413
+
414
+ releaseLabel: string | undefined;
415
+
416
+ jobDriver: JobDriver | undefined;
417
+
418
+ configurationOverrides?: ConfigurationOverrides;
419
+
420
+ tags?: Record<string, string>;
421
+ }
422
+ export interface DescribeJobRunResponse {
423
+ jobRun?: JobRun;
424
+ }
425
+ export interface DescribeManagedEndpointResponse {
426
+ endpoint?: Endpoint;
427
+ }
428
+ export interface ListJobRunsResponse {
429
+ jobRuns?: JobRun[];
430
+
431
+ nextToken?: string;
432
+ }
433
+ export interface ListManagedEndpointsResponse {
434
+ endpoints?: Endpoint[];
435
+
436
+ nextToken?: string;
437
+ }
438
+
439
+ export declare const CancelJobRunRequestFilterSensitiveLog: (
440
+ obj: CancelJobRunRequest
441
+ ) => any;
442
+
443
+ export declare const CancelJobRunResponseFilterSensitiveLog: (
444
+ obj: CancelJobRunResponse
445
+ ) => any;
446
+
447
+ export declare const CloudWatchMonitoringConfigurationFilterSensitiveLog: (
448
+ obj: CloudWatchMonitoringConfiguration
449
+ ) => any;
450
+
451
+ export declare const S3MonitoringConfigurationFilterSensitiveLog: (
452
+ obj: S3MonitoringConfiguration
453
+ ) => any;
454
+
455
+ export declare const MonitoringConfigurationFilterSensitiveLog: (
456
+ obj: MonitoringConfiguration
457
+ ) => any;
458
+
459
+ export declare const CreateManagedEndpointResponseFilterSensitiveLog: (
460
+ obj: CreateManagedEndpointResponse
461
+ ) => any;
462
+
463
+ export declare const EksInfoFilterSensitiveLog: (obj: EksInfo) => any;
464
+
465
+ export declare const ContainerInfoFilterSensitiveLog: (
466
+ obj: ContainerInfo
467
+ ) => any;
468
+
469
+ export declare const ContainerProviderFilterSensitiveLog: (
470
+ obj: ContainerProvider
471
+ ) => any;
472
+
473
+ export declare const CreateVirtualClusterRequestFilterSensitiveLog: (
474
+ obj: CreateVirtualClusterRequest
475
+ ) => any;
476
+
477
+ export declare const CreateVirtualClusterResponseFilterSensitiveLog: (
478
+ obj: CreateVirtualClusterResponse
479
+ ) => any;
480
+
481
+ export declare const DeleteManagedEndpointRequestFilterSensitiveLog: (
482
+ obj: DeleteManagedEndpointRequest
483
+ ) => any;
484
+
485
+ export declare const DeleteManagedEndpointResponseFilterSensitiveLog: (
486
+ obj: DeleteManagedEndpointResponse
487
+ ) => any;
488
+
489
+ export declare const DeleteVirtualClusterRequestFilterSensitiveLog: (
490
+ obj: DeleteVirtualClusterRequest
491
+ ) => any;
492
+
493
+ export declare const DeleteVirtualClusterResponseFilterSensitiveLog: (
494
+ obj: DeleteVirtualClusterResponse
495
+ ) => any;
496
+
497
+ export declare const DescribeJobRunRequestFilterSensitiveLog: (
498
+ obj: DescribeJobRunRequest
499
+ ) => any;
500
+
501
+ export declare const SparkSqlJobDriverFilterSensitiveLog: (
502
+ obj: SparkSqlJobDriver
503
+ ) => any;
504
+
505
+ export declare const SparkSubmitJobDriverFilterSensitiveLog: (
506
+ obj: SparkSubmitJobDriver
507
+ ) => any;
508
+
509
+ export declare const JobDriverFilterSensitiveLog: (obj: JobDriver) => any;
510
+
511
+ export declare const DescribeManagedEndpointRequestFilterSensitiveLog: (
512
+ obj: DescribeManagedEndpointRequest
513
+ ) => any;
514
+
515
+ export declare const CertificateFilterSensitiveLog: (obj: Certificate) => any;
516
+
517
+ export declare const DescribeVirtualClusterRequestFilterSensitiveLog: (
518
+ obj: DescribeVirtualClusterRequest
519
+ ) => any;
520
+
521
+ export declare const VirtualClusterFilterSensitiveLog: (
522
+ obj: VirtualCluster
523
+ ) => any;
524
+
525
+ export declare const DescribeVirtualClusterResponseFilterSensitiveLog: (
526
+ obj: DescribeVirtualClusterResponse
527
+ ) => any;
528
+
529
+ export declare const ListJobRunsRequestFilterSensitiveLog: (
530
+ obj: ListJobRunsRequest
531
+ ) => any;
532
+
533
+ export declare const ListManagedEndpointsRequestFilterSensitiveLog: (
534
+ obj: ListManagedEndpointsRequest
535
+ ) => any;
536
+
537
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
538
+ obj: ListTagsForResourceRequest
539
+ ) => any;
540
+
541
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
542
+ obj: ListTagsForResourceResponse
543
+ ) => any;
544
+
545
+ export declare const ListVirtualClustersRequestFilterSensitiveLog: (
546
+ obj: ListVirtualClustersRequest
547
+ ) => any;
548
+
549
+ export declare const ListVirtualClustersResponseFilterSensitiveLog: (
550
+ obj: ListVirtualClustersResponse
551
+ ) => any;
552
+
553
+ export declare const StartJobRunResponseFilterSensitiveLog: (
554
+ obj: StartJobRunResponse
555
+ ) => any;
556
+
557
+ export declare const TagResourceRequestFilterSensitiveLog: (
558
+ obj: TagResourceRequest
559
+ ) => any;
560
+
561
+ export declare const TagResourceResponseFilterSensitiveLog: (
562
+ obj: TagResourceResponse
563
+ ) => any;
564
+
565
+ export declare const UntagResourceRequestFilterSensitiveLog: (
566
+ obj: UntagResourceRequest
567
+ ) => any;
568
+
569
+ export declare const UntagResourceResponseFilterSensitiveLog: (
570
+ obj: UntagResourceResponse
571
+ ) => any;
572
+
573
+ export declare const ConfigurationFilterSensitiveLog: (
574
+ obj: Configuration
575
+ ) => any;
576
+
577
+ export declare const ConfigurationOverridesFilterSensitiveLog: (
578
+ obj: ConfigurationOverrides
579
+ ) => any;
580
+
581
+ export declare const CreateManagedEndpointRequestFilterSensitiveLog: (
582
+ obj: CreateManagedEndpointRequest
583
+ ) => any;
584
+
585
+ export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
586
+
587
+ export declare const JobRunFilterSensitiveLog: (obj: JobRun) => any;
588
+
589
+ export declare const StartJobRunRequestFilterSensitiveLog: (
590
+ obj: StartJobRunRequest
591
+ ) => any;
592
+
593
+ export declare const DescribeJobRunResponseFilterSensitiveLog: (
594
+ obj: DescribeJobRunResponse
595
+ ) => any;
596
+
597
+ export declare const DescribeManagedEndpointResponseFilterSensitiveLog: (
598
+ obj: DescribeManagedEndpointResponse
599
+ ) => any;
600
+
601
+ export declare const ListJobRunsResponseFilterSensitiveLog: (
602
+ obj: ListJobRunsResponse
603
+ ) => any;
604
+
605
+ export declare const ListManagedEndpointsResponseFilterSensitiveLog: (
606
+ obj: ListManagedEndpointsResponse
607
+ ) => any;