@aws-sdk/client-emr-containers 3.169.0 → 3.171.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 +259 -80
  3. package/dist-types/ts3.4/EMRContainersClient.d.ts +195 -88
  4. package/dist-types/ts3.4/commands/CancelJobRunCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateManagedEndpointCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateVirtualClusterCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/DeleteManagedEndpointCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteVirtualClusterCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/DescribeJobRunCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/DescribeManagedEndpointCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DescribeVirtualClusterCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/ListManagedEndpointsCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/ListVirtualClustersCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -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 +7 -6
  23. package/dist-types/ts3.4/models/index.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +435 -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 +65 -38
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  35. package/package.json +34 -34
@@ -1,567 +1,435 @@
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
+ virtualClusterId: string | undefined;
6
+ }
7
+ export interface CancelJobRunResponse {
8
+ id?: string;
9
+ virtualClusterId?: string;
10
+ }
11
+ export declare class InternalServerException extends __BaseException {
12
+ readonly name: "InternalServerException";
13
+ readonly $fault: "server";
14
+ constructor(
15
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
16
+ );
17
+ }
18
+ export declare class ValidationException extends __BaseException {
19
+ readonly name: "ValidationException";
20
+ readonly $fault: "client";
21
+ constructor(
22
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
23
+ );
24
+ }
25
+ export interface CloudWatchMonitoringConfiguration {
26
+ logGroupName: string | undefined;
27
+ logStreamNamePrefix?: string;
28
+ }
29
+ export declare enum PersistentAppUI {
30
+ DISABLED = "DISABLED",
31
+ ENABLED = "ENABLED",
32
+ }
33
+ export interface S3MonitoringConfiguration {
34
+ logUri: string | undefined;
35
+ }
36
+ export interface MonitoringConfiguration {
37
+ persistentAppUI?: PersistentAppUI | string;
38
+ cloudWatchMonitoringConfiguration?: CloudWatchMonitoringConfiguration;
39
+ s3MonitoringConfiguration?: S3MonitoringConfiguration;
40
+ }
41
+ export interface CreateManagedEndpointResponse {
42
+ id?: string;
43
+ name?: string;
44
+ arn?: string;
45
+ virtualClusterId?: string;
46
+ }
47
+ export declare class ResourceNotFoundException extends __BaseException {
48
+ readonly name: "ResourceNotFoundException";
49
+ readonly $fault: "client";
50
+ constructor(
51
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
52
+ );
53
+ }
54
+ export interface EksInfo {
55
+ namespace?: string;
56
+ }
57
+ export declare type ContainerInfo =
58
+ | ContainerInfo.EksInfoMember
59
+ | ContainerInfo.$UnknownMember;
60
+ export declare namespace ContainerInfo {
61
+ interface EksInfoMember {
62
+ eksInfo: EksInfo;
63
+ $unknown?: never;
64
+ }
65
+ interface $UnknownMember {
66
+ eksInfo?: never;
67
+ $unknown: [string, any];
68
+ }
69
+ interface Visitor<T> {
70
+ eksInfo: (value: EksInfo) => T;
71
+ _: (name: string, value: any) => T;
72
+ }
73
+ const visit: <T>(value: ContainerInfo, visitor: Visitor<T>) => T;
74
+ }
75
+ export declare enum ContainerProviderType {
76
+ EKS = "EKS",
77
+ }
78
+ export interface ContainerProvider {
79
+ type: ContainerProviderType | string | undefined;
80
+ id: string | undefined;
81
+ info?: ContainerInfo;
82
+ }
83
+ export interface CreateVirtualClusterRequest {
84
+ name: string | undefined;
85
+ containerProvider: ContainerProvider | undefined;
86
+ clientToken?: string;
87
+ tags?: Record<string, string>;
88
+ }
89
+ export interface CreateVirtualClusterResponse {
90
+ id?: string;
91
+ name?: string;
92
+ arn?: string;
93
+ }
94
+ export interface DeleteManagedEndpointRequest {
95
+ id: string | undefined;
96
+ virtualClusterId: string | undefined;
97
+ }
98
+ export interface DeleteManagedEndpointResponse {
99
+ id?: string;
100
+ virtualClusterId?: string;
101
+ }
102
+ export interface DeleteVirtualClusterRequest {
103
+ id: string | undefined;
104
+ }
105
+ export interface DeleteVirtualClusterResponse {
106
+ id?: string;
107
+ }
108
+ export interface DescribeJobRunRequest {
109
+ id: string | undefined;
110
+ virtualClusterId: string | undefined;
111
+ }
112
+ export declare enum FailureReason {
113
+ CLUSTER_UNAVAILABLE = "CLUSTER_UNAVAILABLE",
114
+ INTERNAL_ERROR = "INTERNAL_ERROR",
115
+ USER_ERROR = "USER_ERROR",
116
+ VALIDATION_ERROR = "VALIDATION_ERROR",
117
+ }
118
+ export interface SparkSqlJobDriver {
119
+ entryPoint?: string;
120
+ sparkSqlParameters?: string;
121
+ }
122
+ export interface SparkSubmitJobDriver {
123
+ entryPoint: string | undefined;
124
+ entryPointArguments?: string[];
125
+ sparkSubmitParameters?: string;
126
+ }
127
+ export interface JobDriver {
128
+ sparkSubmitJobDriver?: SparkSubmitJobDriver;
129
+ sparkSqlJobDriver?: SparkSqlJobDriver;
130
+ }
131
+ export declare enum JobRunState {
132
+ CANCELLED = "CANCELLED",
133
+ CANCEL_PENDING = "CANCEL_PENDING",
134
+ COMPLETED = "COMPLETED",
135
+ FAILED = "FAILED",
136
+ PENDING = "PENDING",
137
+ RUNNING = "RUNNING",
138
+ SUBMITTED = "SUBMITTED",
139
+ }
140
+ export interface DescribeManagedEndpointRequest {
141
+ id: string | undefined;
142
+ virtualClusterId: string | undefined;
143
+ }
144
+ export interface Certificate {
145
+ certificateArn?: string;
146
+ certificateData?: string;
147
+ }
148
+ export declare enum EndpointState {
149
+ ACTIVE = "ACTIVE",
150
+ CREATING = "CREATING",
151
+ TERMINATED = "TERMINATED",
152
+ TERMINATED_WITH_ERRORS = "TERMINATED_WITH_ERRORS",
153
+ TERMINATING = "TERMINATING",
154
+ }
155
+ export interface DescribeVirtualClusterRequest {
156
+ id: string | undefined;
157
+ }
158
+ export declare enum VirtualClusterState {
159
+ ARRESTED = "ARRESTED",
160
+ RUNNING = "RUNNING",
161
+ TERMINATED = "TERMINATED",
162
+ TERMINATING = "TERMINATING",
163
+ }
164
+ export interface VirtualCluster {
165
+ id?: string;
166
+ name?: string;
167
+ arn?: string;
168
+ state?: VirtualClusterState | string;
169
+ containerProvider?: ContainerProvider;
170
+ createdAt?: Date;
171
+ tags?: Record<string, string>;
172
+ }
173
+ export interface DescribeVirtualClusterResponse {
174
+ virtualCluster?: VirtualCluster;
175
+ }
176
+ export interface ListJobRunsRequest {
177
+ virtualClusterId: string | undefined;
178
+ createdBefore?: Date;
179
+ createdAfter?: Date;
180
+ name?: string;
181
+ states?: (JobRunState | string)[];
182
+ maxResults?: number;
183
+ nextToken?: string;
184
+ }
185
+ export interface ListManagedEndpointsRequest {
186
+ virtualClusterId: string | undefined;
187
+ createdBefore?: Date;
188
+ createdAfter?: Date;
189
+ types?: string[];
190
+ states?: (EndpointState | string)[];
191
+ maxResults?: number;
192
+ nextToken?: string;
193
+ }
194
+ export interface ListTagsForResourceRequest {
195
+ resourceArn: string | undefined;
196
+ }
197
+ export interface ListTagsForResourceResponse {
198
+ tags?: Record<string, string>;
199
+ }
200
+ export interface ListVirtualClustersRequest {
201
+ containerProviderId?: string;
202
+ containerProviderType?: ContainerProviderType | string;
203
+ createdAfter?: Date;
204
+ createdBefore?: Date;
205
+ states?: (VirtualClusterState | string)[];
206
+ maxResults?: number;
207
+ nextToken?: string;
208
+ }
209
+ export interface ListVirtualClustersResponse {
210
+ virtualClusters?: VirtualCluster[];
211
+ nextToken?: string;
212
+ }
213
+ export interface StartJobRunResponse {
214
+ id?: string;
215
+ name?: string;
216
+ arn?: string;
217
+ virtualClusterId?: string;
218
+ }
219
+ export interface TagResourceRequest {
220
+ resourceArn: string | undefined;
221
+ tags: Record<string, string> | undefined;
222
+ }
223
+ export interface TagResourceResponse {}
224
+ export interface UntagResourceRequest {
225
+ resourceArn: string | undefined;
226
+ tagKeys: string[] | undefined;
227
+ }
228
+ export interface UntagResourceResponse {}
229
+ export interface Configuration {
230
+ classification: string | undefined;
231
+ properties?: Record<string, string>;
232
+ configurations?: Configuration[];
233
+ }
234
+ export interface ConfigurationOverrides {
235
+ applicationConfiguration?: Configuration[];
236
+ monitoringConfiguration?: MonitoringConfiguration;
237
+ }
238
+ export interface CreateManagedEndpointRequest {
239
+ name: string | undefined;
240
+ virtualClusterId: string | undefined;
241
+ type: string | undefined;
242
+ releaseLabel: string | undefined;
243
+ executionRoleArn: string | undefined;
244
+ certificateArn?: string;
245
+ configurationOverrides?: ConfigurationOverrides;
246
+ clientToken?: string;
247
+ tags?: Record<string, string>;
248
+ }
249
+ export interface Endpoint {
250
+ id?: string;
251
+ name?: string;
252
+ arn?: string;
253
+ virtualClusterId?: string;
254
+ type?: string;
255
+ state?: EndpointState | string;
256
+ releaseLabel?: string;
257
+ executionRoleArn?: string;
258
+ certificateArn?: string;
259
+ certificateAuthority?: Certificate;
260
+ configurationOverrides?: ConfigurationOverrides;
261
+ serverUrl?: string;
262
+ createdAt?: Date;
263
+ securityGroup?: string;
264
+ subnetIds?: string[];
265
+ stateDetails?: string;
266
+ failureReason?: FailureReason | string;
267
+ tags?: Record<string, string>;
268
+ }
269
+ export interface JobRun {
270
+ id?: string;
271
+ name?: string;
272
+ virtualClusterId?: string;
273
+ arn?: string;
274
+ state?: JobRunState | string;
275
+ clientToken?: string;
276
+ executionRoleArn?: string;
277
+ releaseLabel?: string;
278
+ configurationOverrides?: ConfigurationOverrides;
279
+ jobDriver?: JobDriver;
280
+ createdAt?: Date;
281
+ createdBy?: string;
282
+ finishedAt?: Date;
283
+ stateDetails?: string;
284
+ failureReason?: FailureReason | string;
285
+ tags?: Record<string, string>;
286
+ }
287
+ export interface StartJobRunRequest {
288
+ name?: string;
289
+ virtualClusterId: string | undefined;
290
+ clientToken?: string;
291
+ executionRoleArn: string | undefined;
292
+ releaseLabel: string | undefined;
293
+ jobDriver: JobDriver | undefined;
294
+ configurationOverrides?: ConfigurationOverrides;
295
+ tags?: Record<string, string>;
296
+ }
297
+ export interface DescribeJobRunResponse {
298
+ jobRun?: JobRun;
299
+ }
300
+ export interface DescribeManagedEndpointResponse {
301
+ endpoint?: Endpoint;
302
+ }
303
+ export interface ListJobRunsResponse {
304
+ jobRuns?: JobRun[];
305
+ nextToken?: string;
306
+ }
307
+ export interface ListManagedEndpointsResponse {
308
+ endpoints?: Endpoint[];
309
+ nextToken?: string;
310
+ }
311
+ export declare const CancelJobRunRequestFilterSensitiveLog: (
312
+ obj: CancelJobRunRequest
313
+ ) => any;
314
+ export declare const CancelJobRunResponseFilterSensitiveLog: (
315
+ obj: CancelJobRunResponse
316
+ ) => any;
317
+ export declare const CloudWatchMonitoringConfigurationFilterSensitiveLog: (
318
+ obj: CloudWatchMonitoringConfiguration
319
+ ) => any;
320
+ export declare const S3MonitoringConfigurationFilterSensitiveLog: (
321
+ obj: S3MonitoringConfiguration
322
+ ) => any;
323
+ export declare const MonitoringConfigurationFilterSensitiveLog: (
324
+ obj: MonitoringConfiguration
325
+ ) => any;
326
+ export declare const CreateManagedEndpointResponseFilterSensitiveLog: (
327
+ obj: CreateManagedEndpointResponse
328
+ ) => any;
329
+ export declare const EksInfoFilterSensitiveLog: (obj: EksInfo) => any;
330
+ export declare const ContainerInfoFilterSensitiveLog: (
331
+ obj: ContainerInfo
332
+ ) => any;
333
+ export declare const ContainerProviderFilterSensitiveLog: (
334
+ obj: ContainerProvider
335
+ ) => any;
336
+ export declare const CreateVirtualClusterRequestFilterSensitiveLog: (
337
+ obj: CreateVirtualClusterRequest
338
+ ) => any;
339
+ export declare const CreateVirtualClusterResponseFilterSensitiveLog: (
340
+ obj: CreateVirtualClusterResponse
341
+ ) => any;
342
+ export declare const DeleteManagedEndpointRequestFilterSensitiveLog: (
343
+ obj: DeleteManagedEndpointRequest
344
+ ) => any;
345
+ export declare const DeleteManagedEndpointResponseFilterSensitiveLog: (
346
+ obj: DeleteManagedEndpointResponse
347
+ ) => any;
348
+ export declare const DeleteVirtualClusterRequestFilterSensitiveLog: (
349
+ obj: DeleteVirtualClusterRequest
350
+ ) => any;
351
+ export declare const DeleteVirtualClusterResponseFilterSensitiveLog: (
352
+ obj: DeleteVirtualClusterResponse
353
+ ) => any;
354
+ export declare const DescribeJobRunRequestFilterSensitiveLog: (
355
+ obj: DescribeJobRunRequest
356
+ ) => any;
357
+ export declare const SparkSqlJobDriverFilterSensitiveLog: (
358
+ obj: SparkSqlJobDriver
359
+ ) => any;
360
+ export declare const SparkSubmitJobDriverFilterSensitiveLog: (
361
+ obj: SparkSubmitJobDriver
362
+ ) => any;
363
+ export declare const JobDriverFilterSensitiveLog: (obj: JobDriver) => any;
364
+ export declare const DescribeManagedEndpointRequestFilterSensitiveLog: (
365
+ obj: DescribeManagedEndpointRequest
366
+ ) => any;
367
+ export declare const CertificateFilterSensitiveLog: (obj: Certificate) => any;
368
+ export declare const DescribeVirtualClusterRequestFilterSensitiveLog: (
369
+ obj: DescribeVirtualClusterRequest
370
+ ) => any;
371
+ export declare const VirtualClusterFilterSensitiveLog: (
372
+ obj: VirtualCluster
373
+ ) => any;
374
+ export declare const DescribeVirtualClusterResponseFilterSensitiveLog: (
375
+ obj: DescribeVirtualClusterResponse
376
+ ) => any;
377
+ export declare const ListJobRunsRequestFilterSensitiveLog: (
378
+ obj: ListJobRunsRequest
379
+ ) => any;
380
+ export declare const ListManagedEndpointsRequestFilterSensitiveLog: (
381
+ obj: ListManagedEndpointsRequest
382
+ ) => any;
383
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
384
+ obj: ListTagsForResourceRequest
385
+ ) => any;
386
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
387
+ obj: ListTagsForResourceResponse
388
+ ) => any;
389
+ export declare const ListVirtualClustersRequestFilterSensitiveLog: (
390
+ obj: ListVirtualClustersRequest
391
+ ) => any;
392
+ export declare const ListVirtualClustersResponseFilterSensitiveLog: (
393
+ obj: ListVirtualClustersResponse
394
+ ) => any;
395
+ export declare const StartJobRunResponseFilterSensitiveLog: (
396
+ obj: StartJobRunResponse
397
+ ) => any;
398
+ export declare const TagResourceRequestFilterSensitiveLog: (
399
+ obj: TagResourceRequest
400
+ ) => any;
401
+ export declare const TagResourceResponseFilterSensitiveLog: (
402
+ obj: TagResourceResponse
403
+ ) => any;
404
+ export declare const UntagResourceRequestFilterSensitiveLog: (
405
+ obj: UntagResourceRequest
406
+ ) => any;
407
+ export declare const UntagResourceResponseFilterSensitiveLog: (
408
+ obj: UntagResourceResponse
409
+ ) => any;
410
+ export declare const ConfigurationFilterSensitiveLog: (
411
+ obj: Configuration
412
+ ) => any;
413
+ export declare const ConfigurationOverridesFilterSensitiveLog: (
414
+ obj: ConfigurationOverrides
415
+ ) => any;
416
+ export declare const CreateManagedEndpointRequestFilterSensitiveLog: (
417
+ obj: CreateManagedEndpointRequest
418
+ ) => any;
419
+ export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
420
+ export declare const JobRunFilterSensitiveLog: (obj: JobRun) => any;
421
+ export declare const StartJobRunRequestFilterSensitiveLog: (
422
+ obj: StartJobRunRequest
423
+ ) => any;
424
+ export declare const DescribeJobRunResponseFilterSensitiveLog: (
425
+ obj: DescribeJobRunResponse
426
+ ) => any;
427
+ export declare const DescribeManagedEndpointResponseFilterSensitiveLog: (
428
+ obj: DescribeManagedEndpointResponse
429
+ ) => any;
430
+ export declare const ListJobRunsResponseFilterSensitiveLog: (
431
+ obj: ListJobRunsResponse
432
+ ) => any;
433
+ export declare const ListManagedEndpointsResponseFilterSensitiveLog: (
434
+ obj: ListManagedEndpointsResponse
435
+ ) => any;