@aws-sdk/client-emr-containers 3.131.0 → 3.137.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 (36) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/commands/CancelJobRunCommand.js +2 -2
  3. package/dist-cjs/commands/CreateManagedEndpointCommand.js +2 -2
  4. package/dist-cjs/commands/CreateVirtualClusterCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteManagedEndpointCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteVirtualClusterCommand.js +2 -2
  7. package/dist-cjs/commands/DescribeJobRunCommand.js +2 -2
  8. package/dist-cjs/commands/DescribeManagedEndpointCommand.js +2 -2
  9. package/dist-cjs/commands/DescribeVirtualClusterCommand.js +2 -2
  10. package/dist-cjs/commands/ListJobRunsCommand.js +2 -2
  11. package/dist-cjs/commands/ListManagedEndpointsCommand.js +2 -2
  12. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  13. package/dist-cjs/commands/ListVirtualClustersCommand.js +2 -2
  14. package/dist-cjs/commands/StartJobRunCommand.js +2 -2
  15. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  16. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  17. package/dist-cjs/models/models_0.js +218 -303
  18. package/dist-es/commands/CancelJobRunCommand.js +3 -3
  19. package/dist-es/commands/CreateManagedEndpointCommand.js +3 -3
  20. package/dist-es/commands/CreateVirtualClusterCommand.js +3 -3
  21. package/dist-es/commands/DeleteManagedEndpointCommand.js +3 -3
  22. package/dist-es/commands/DeleteVirtualClusterCommand.js +3 -3
  23. package/dist-es/commands/DescribeJobRunCommand.js +3 -3
  24. package/dist-es/commands/DescribeManagedEndpointCommand.js +3 -3
  25. package/dist-es/commands/DescribeVirtualClusterCommand.js +3 -3
  26. package/dist-es/commands/ListJobRunsCommand.js +3 -3
  27. package/dist-es/commands/ListManagedEndpointsCommand.js +3 -3
  28. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  29. package/dist-es/commands/ListVirtualClustersCommand.js +3 -3
  30. package/dist-es/commands/StartJobRunCommand.js +3 -3
  31. package/dist-es/commands/TagResourceCommand.js +3 -3
  32. package/dist-es/commands/UntagResourceCommand.js +3 -3
  33. package/dist-es/models/models_0.js +66 -195
  34. package/dist-types/models/models_0.d.ts +176 -262
  35. package/dist-types/ts3.4/models/models_0.d.ts +88 -174
  36. package/package.json +6 -6
@@ -10,12 +10,6 @@ export interface CancelJobRunRequest {
10
10
  */
11
11
  virtualClusterId: string | undefined;
12
12
  }
13
- export declare namespace CancelJobRunRequest {
14
- /**
15
- * @internal
16
- */
17
- const filterSensitiveLog: (obj: CancelJobRunRequest) => any;
18
- }
19
13
  export interface CancelJobRunResponse {
20
14
  /**
21
15
  * <p>The output contains the ID of the cancelled job run.</p>
@@ -26,12 +20,6 @@ export interface CancelJobRunResponse {
26
20
  */
27
21
  virtualClusterId?: string;
28
22
  }
29
- export declare namespace CancelJobRunResponse {
30
- /**
31
- * @internal
32
- */
33
- const filterSensitiveLog: (obj: CancelJobRunResponse) => any;
34
- }
35
23
  /**
36
24
  * <p>This is an internal server exception.</p>
37
25
  */
@@ -67,12 +55,6 @@ export interface CloudWatchMonitoringConfiguration {
67
55
  */
68
56
  logStreamNamePrefix?: string;
69
57
  }
70
- export declare namespace CloudWatchMonitoringConfiguration {
71
- /**
72
- * @internal
73
- */
74
- const filterSensitiveLog: (obj: CloudWatchMonitoringConfiguration) => any;
75
- }
76
58
  export declare enum PersistentAppUI {
77
59
  DISABLED = "DISABLED",
78
60
  ENABLED = "ENABLED"
@@ -86,12 +68,6 @@ export interface S3MonitoringConfiguration {
86
68
  */
87
69
  logUri: string | undefined;
88
70
  }
89
- export declare namespace S3MonitoringConfiguration {
90
- /**
91
- * @internal
92
- */
93
- const filterSensitiveLog: (obj: S3MonitoringConfiguration) => any;
94
- }
95
71
  /**
96
72
  * <p>Configuration setting for monitoring.</p>
97
73
  */
@@ -109,12 +85,6 @@ export interface MonitoringConfiguration {
109
85
  */
110
86
  s3MonitoringConfiguration?: S3MonitoringConfiguration;
111
87
  }
112
- export declare namespace MonitoringConfiguration {
113
- /**
114
- * @internal
115
- */
116
- const filterSensitiveLog: (obj: MonitoringConfiguration) => any;
117
- }
118
88
  export interface CreateManagedEndpointResponse {
119
89
  /**
120
90
  * <p>The output contains the ID of the managed endpoint.</p>
@@ -133,12 +103,6 @@ export interface CreateManagedEndpointResponse {
133
103
  */
134
104
  virtualClusterId?: string;
135
105
  }
136
- export declare namespace CreateManagedEndpointResponse {
137
- /**
138
- * @internal
139
- */
140
- const filterSensitiveLog: (obj: CreateManagedEndpointResponse) => any;
141
- }
142
106
  /**
143
107
  * <p>The specified resource was not found.</p>
144
108
  */
@@ -159,12 +123,6 @@ export interface EksInfo {
159
123
  */
160
124
  namespace?: string;
161
125
  }
162
- export declare namespace EksInfo {
163
- /**
164
- * @internal
165
- */
166
- const filterSensitiveLog: (obj: EksInfo) => any;
167
- }
168
126
  /**
169
127
  * <p>The information about the container used for a job run or a managed endpoint.</p>
170
128
  */
@@ -186,10 +144,6 @@ export declare namespace ContainerInfo {
186
144
  _: (name: string, value: any) => T;
187
145
  }
188
146
  const visit: <T>(value: ContainerInfo, visitor: Visitor<T>) => T;
189
- /**
190
- * @internal
191
- */
192
- const filterSensitiveLog: (obj: ContainerInfo) => any;
193
147
  }
194
148
  export declare enum ContainerProviderType {
195
149
  EKS = "EKS"
@@ -211,12 +165,6 @@ export interface ContainerProvider {
211
165
  */
212
166
  info?: ContainerInfo;
213
167
  }
214
- export declare namespace ContainerProvider {
215
- /**
216
- * @internal
217
- */
218
- const filterSensitiveLog: (obj: ContainerProvider) => any;
219
- }
220
168
  export interface CreateVirtualClusterRequest {
221
169
  /**
222
170
  * <p>The specified name of the virtual cluster.</p>
@@ -235,12 +183,6 @@ export interface CreateVirtualClusterRequest {
235
183
  */
236
184
  tags?: Record<string, string>;
237
185
  }
238
- export declare namespace CreateVirtualClusterRequest {
239
- /**
240
- * @internal
241
- */
242
- const filterSensitiveLog: (obj: CreateVirtualClusterRequest) => any;
243
- }
244
186
  export interface CreateVirtualClusterResponse {
245
187
  /**
246
188
  * <p>This output contains the virtual cluster ID.</p>
@@ -255,12 +197,6 @@ export interface CreateVirtualClusterResponse {
255
197
  */
256
198
  arn?: string;
257
199
  }
258
- export declare namespace CreateVirtualClusterResponse {
259
- /**
260
- * @internal
261
- */
262
- const filterSensitiveLog: (obj: CreateVirtualClusterResponse) => any;
263
- }
264
200
  export interface DeleteManagedEndpointRequest {
265
201
  /**
266
202
  * <p>The ID of the managed endpoint.</p>
@@ -271,12 +207,6 @@ export interface DeleteManagedEndpointRequest {
271
207
  */
272
208
  virtualClusterId: string | undefined;
273
209
  }
274
- export declare namespace DeleteManagedEndpointRequest {
275
- /**
276
- * @internal
277
- */
278
- const filterSensitiveLog: (obj: DeleteManagedEndpointRequest) => any;
279
- }
280
210
  export interface DeleteManagedEndpointResponse {
281
211
  /**
282
212
  * <p>The output displays the ID of the managed endpoint.</p>
@@ -287,36 +217,18 @@ export interface DeleteManagedEndpointResponse {
287
217
  */
288
218
  virtualClusterId?: string;
289
219
  }
290
- export declare namespace DeleteManagedEndpointResponse {
291
- /**
292
- * @internal
293
- */
294
- const filterSensitiveLog: (obj: DeleteManagedEndpointResponse) => any;
295
- }
296
220
  export interface DeleteVirtualClusterRequest {
297
221
  /**
298
222
  * <p>The ID of the virtual cluster that will be deleted.</p>
299
223
  */
300
224
  id: string | undefined;
301
225
  }
302
- export declare namespace DeleteVirtualClusterRequest {
303
- /**
304
- * @internal
305
- */
306
- const filterSensitiveLog: (obj: DeleteVirtualClusterRequest) => any;
307
- }
308
226
  export interface DeleteVirtualClusterResponse {
309
227
  /**
310
228
  * <p>This output contains the ID of the virtual cluster that will be deleted. </p>
311
229
  */
312
230
  id?: string;
313
231
  }
314
- export declare namespace DeleteVirtualClusterResponse {
315
- /**
316
- * @internal
317
- */
318
- const filterSensitiveLog: (obj: DeleteVirtualClusterResponse) => any;
319
- }
320
232
  export interface DescribeJobRunRequest {
321
233
  /**
322
234
  * <p>The ID of the job run request. </p>
@@ -327,12 +239,6 @@ export interface DescribeJobRunRequest {
327
239
  */
328
240
  virtualClusterId: string | undefined;
329
241
  }
330
- export declare namespace DescribeJobRunRequest {
331
- /**
332
- * @internal
333
- */
334
- const filterSensitiveLog: (obj: DescribeJobRunRequest) => any;
335
- }
336
242
  export declare enum FailureReason {
337
243
  CLUSTER_UNAVAILABLE = "CLUSTER_UNAVAILABLE",
338
244
  INTERNAL_ERROR = "INTERNAL_ERROR",
@@ -356,12 +262,6 @@ export interface SparkSubmitJobDriver {
356
262
  */
357
263
  sparkSubmitParameters?: string;
358
264
  }
359
- export declare namespace SparkSubmitJobDriver {
360
- /**
361
- * @internal
362
- */
363
- const filterSensitiveLog: (obj: SparkSubmitJobDriver) => any;
364
- }
365
265
  /**
366
266
  * <p>Specify the driver that the job runs on.</p>
367
267
  */
@@ -371,12 +271,6 @@ export interface JobDriver {
371
271
  */
372
272
  sparkSubmitJobDriver?: SparkSubmitJobDriver;
373
273
  }
374
- export declare namespace JobDriver {
375
- /**
376
- * @internal
377
- */
378
- const filterSensitiveLog: (obj: JobDriver) => any;
379
- }
380
274
  export declare enum JobRunState {
381
275
  CANCELLED = "CANCELLED",
382
276
  CANCEL_PENDING = "CANCEL_PENDING",
@@ -396,12 +290,6 @@ export interface DescribeManagedEndpointRequest {
396
290
  */
397
291
  virtualClusterId: string | undefined;
398
292
  }
399
- export declare namespace DescribeManagedEndpointRequest {
400
- /**
401
- * @internal
402
- */
403
- const filterSensitiveLog: (obj: DescribeManagedEndpointRequest) => any;
404
- }
405
293
  /**
406
294
  * <p>The entity representing certificate data generated for managed endpoint.</p>
407
295
  */
@@ -415,12 +303,6 @@ export interface Certificate {
415
303
  */
416
304
  certificateData?: string;
417
305
  }
418
- export declare namespace Certificate {
419
- /**
420
- * @internal
421
- */
422
- const filterSensitiveLog: (obj: Certificate) => any;
423
- }
424
306
  export declare enum EndpointState {
425
307
  ACTIVE = "ACTIVE",
426
308
  CREATING = "CREATING",
@@ -434,12 +316,6 @@ export interface DescribeVirtualClusterRequest {
434
316
  */
435
317
  id: string | undefined;
436
318
  }
437
- export declare namespace DescribeVirtualClusterRequest {
438
- /**
439
- * @internal
440
- */
441
- const filterSensitiveLog: (obj: DescribeVirtualClusterRequest) => any;
442
- }
443
319
  export declare enum VirtualClusterState {
444
320
  ARRESTED = "ARRESTED",
445
321
  RUNNING = "RUNNING",
@@ -479,24 +355,12 @@ export interface VirtualCluster {
479
355
  */
480
356
  tags?: Record<string, string>;
481
357
  }
482
- export declare namespace VirtualCluster {
483
- /**
484
- * @internal
485
- */
486
- const filterSensitiveLog: (obj: VirtualCluster) => any;
487
- }
488
358
  export interface DescribeVirtualClusterResponse {
489
359
  /**
490
360
  * <p>This output displays information about the specified virtual cluster.</p>
491
361
  */
492
362
  virtualCluster?: VirtualCluster;
493
363
  }
494
- export declare namespace DescribeVirtualClusterResponse {
495
- /**
496
- * @internal
497
- */
498
- const filterSensitiveLog: (obj: DescribeVirtualClusterResponse) => any;
499
- }
500
364
  export interface ListJobRunsRequest {
501
365
  /**
502
366
  * <p>The ID of the virtual cluster for which to list the job run. </p>
@@ -527,12 +391,6 @@ export interface ListJobRunsRequest {
527
391
  */
528
392
  nextToken?: string;
529
393
  }
530
- export declare namespace ListJobRunsRequest {
531
- /**
532
- * @internal
533
- */
534
- const filterSensitiveLog: (obj: ListJobRunsRequest) => any;
535
- }
536
394
  export interface ListManagedEndpointsRequest {
537
395
  /**
538
396
  * <p>The ID of the virtual cluster.</p>
@@ -563,36 +421,18 @@ export interface ListManagedEndpointsRequest {
563
421
  */
564
422
  nextToken?: string;
565
423
  }
566
- export declare namespace ListManagedEndpointsRequest {
567
- /**
568
- * @internal
569
- */
570
- const filterSensitiveLog: (obj: ListManagedEndpointsRequest) => any;
571
- }
572
424
  export interface ListTagsForResourceRequest {
573
425
  /**
574
426
  * <p>The ARN of tagged resources.</p>
575
427
  */
576
428
  resourceArn: string | undefined;
577
429
  }
578
- export declare namespace ListTagsForResourceRequest {
579
- /**
580
- * @internal
581
- */
582
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
583
- }
584
430
  export interface ListTagsForResourceResponse {
585
431
  /**
586
432
  * <p>The tags assigned to resources.</p>
587
433
  */
588
434
  tags?: Record<string, string>;
589
435
  }
590
- export declare namespace ListTagsForResourceResponse {
591
- /**
592
- * @internal
593
- */
594
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
595
- }
596
436
  export interface ListVirtualClustersRequest {
597
437
  /**
598
438
  * <p>The container provider ID of the virtual cluster.</p>
@@ -623,12 +463,6 @@ export interface ListVirtualClustersRequest {
623
463
  */
624
464
  nextToken?: string;
625
465
  }
626
- export declare namespace ListVirtualClustersRequest {
627
- /**
628
- * @internal
629
- */
630
- const filterSensitiveLog: (obj: ListVirtualClustersRequest) => any;
631
- }
632
466
  export interface ListVirtualClustersResponse {
633
467
  /**
634
468
  * <p>This output lists the specified virtual clusters.</p>
@@ -639,12 +473,6 @@ export interface ListVirtualClustersResponse {
639
473
  */
640
474
  nextToken?: string;
641
475
  }
642
- export declare namespace ListVirtualClustersResponse {
643
- /**
644
- * @internal
645
- */
646
- const filterSensitiveLog: (obj: ListVirtualClustersResponse) => any;
647
- }
648
476
  export interface StartJobRunResponse {
649
477
  /**
650
478
  * <p>This output displays the started job run ID.</p>
@@ -663,12 +491,6 @@ export interface StartJobRunResponse {
663
491
  */
664
492
  virtualClusterId?: string;
665
493
  }
666
- export declare namespace StartJobRunResponse {
667
- /**
668
- * @internal
669
- */
670
- const filterSensitiveLog: (obj: StartJobRunResponse) => any;
671
- }
672
494
  export interface TagResourceRequest {
673
495
  /**
674
496
  * <p>The ARN of resources.</p>
@@ -679,20 +501,8 @@ export interface TagResourceRequest {
679
501
  */
680
502
  tags: Record<string, string> | undefined;
681
503
  }
682
- export declare namespace TagResourceRequest {
683
- /**
684
- * @internal
685
- */
686
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
687
- }
688
504
  export interface TagResourceResponse {
689
505
  }
690
- export declare namespace TagResourceResponse {
691
- /**
692
- * @internal
693
- */
694
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
695
- }
696
506
  export interface UntagResourceRequest {
697
507
  /**
698
508
  * <p>The ARN of resources.</p>
@@ -703,20 +513,8 @@ export interface UntagResourceRequest {
703
513
  */
704
514
  tagKeys: string[] | undefined;
705
515
  }
706
- export declare namespace UntagResourceRequest {
707
- /**
708
- * @internal
709
- */
710
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
711
- }
712
516
  export interface UntagResourceResponse {
713
517
  }
714
- export declare namespace UntagResourceResponse {
715
- /**
716
- * @internal
717
- */
718
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
719
- }
720
518
  /**
721
519
  * <p>A configuration specification to be used when provisioning virtual clusters, which can include configurations for applications and software bundled with Amazon EMR on EKS. A configuration consists of a classification, properties, and optional nested configurations. A classification refers to an application-specific configuration file. Properties are the settings you want to change in that file.</p>
722
520
  */
@@ -734,12 +532,6 @@ export interface Configuration {
734
532
  */
735
533
  configurations?: Configuration[];
736
534
  }
737
- export declare namespace Configuration {
738
- /**
739
- * @internal
740
- */
741
- const filterSensitiveLog: (obj: Configuration) => any;
742
- }
743
535
  /**
744
536
  * <p>A configuration specification to be used to override existing configurations.</p>
745
537
  */
@@ -753,12 +545,6 @@ export interface ConfigurationOverrides {
753
545
  */
754
546
  monitoringConfiguration?: MonitoringConfiguration;
755
547
  }
756
- export declare namespace ConfigurationOverrides {
757
- /**
758
- * @internal
759
- */
760
- const filterSensitiveLog: (obj: ConfigurationOverrides) => any;
761
- }
762
548
  export interface CreateManagedEndpointRequest {
763
549
  /**
764
550
  * <p>The name of the managed endpoint.</p>
@@ -800,12 +586,6 @@ export interface CreateManagedEndpointRequest {
800
586
  */
801
587
  tags?: Record<string, string>;
802
588
  }
803
- export declare namespace CreateManagedEndpointRequest {
804
- /**
805
- * @internal
806
- */
807
- const filterSensitiveLog: (obj: CreateManagedEndpointRequest) => any;
808
- }
809
589
  /**
810
590
  * <p>This entity represents the endpoint that is managed by Amazon EMR on EKS.</p>
811
591
  */
@@ -892,12 +672,6 @@ export interface Endpoint {
892
672
  */
893
673
  tags?: Record<string, string>;
894
674
  }
895
- export declare namespace Endpoint {
896
- /**
897
- * @internal
898
- */
899
- const filterSensitiveLog: (obj: Endpoint) => any;
900
- }
901
675
  /**
902
676
  * <p>This entity describes a job run. A job run is a unit of work, such as a Spark jar, PySpark script, or SparkSQL query, that you submit to Amazon EMR on EKS. </p>
903
677
  */
@@ -967,12 +741,6 @@ export interface JobRun {
967
741
  */
968
742
  tags?: Record<string, string>;
969
743
  }
970
- export declare namespace JobRun {
971
- /**
972
- * @internal
973
- */
974
- const filterSensitiveLog: (obj: JobRun) => any;
975
- }
976
744
  export interface StartJobRunRequest {
977
745
  /**
978
746
  * <p>The name of the job run.</p>
@@ -1007,36 +775,18 @@ export interface StartJobRunRequest {
1007
775
  */
1008
776
  tags?: Record<string, string>;
1009
777
  }
1010
- export declare namespace StartJobRunRequest {
1011
- /**
1012
- * @internal
1013
- */
1014
- const filterSensitiveLog: (obj: StartJobRunRequest) => any;
1015
- }
1016
778
  export interface DescribeJobRunResponse {
1017
779
  /**
1018
780
  * <p>The output displays information about a job run.</p>
1019
781
  */
1020
782
  jobRun?: JobRun;
1021
783
  }
1022
- export declare namespace DescribeJobRunResponse {
1023
- /**
1024
- * @internal
1025
- */
1026
- const filterSensitiveLog: (obj: DescribeJobRunResponse) => any;
1027
- }
1028
784
  export interface DescribeManagedEndpointResponse {
1029
785
  /**
1030
786
  * <p>This output displays information about a managed endpoint.</p>
1031
787
  */
1032
788
  endpoint?: Endpoint;
1033
789
  }
1034
- export declare namespace DescribeManagedEndpointResponse {
1035
- /**
1036
- * @internal
1037
- */
1038
- const filterSensitiveLog: (obj: DescribeManagedEndpointResponse) => any;
1039
- }
1040
790
  export interface ListJobRunsResponse {
1041
791
  /**
1042
792
  * <p>This output lists information about the specified job runs.</p>
@@ -1047,12 +797,6 @@ export interface ListJobRunsResponse {
1047
797
  */
1048
798
  nextToken?: string;
1049
799
  }
1050
- export declare namespace ListJobRunsResponse {
1051
- /**
1052
- * @internal
1053
- */
1054
- const filterSensitiveLog: (obj: ListJobRunsResponse) => any;
1055
- }
1056
800
  export interface ListManagedEndpointsResponse {
1057
801
  /**
1058
802
  * <p>The managed endpoints to be listed.</p>
@@ -1063,9 +807,179 @@ export interface ListManagedEndpointsResponse {
1063
807
  */
1064
808
  nextToken?: string;
1065
809
  }
1066
- export declare namespace ListManagedEndpointsResponse {
1067
- /**
1068
- * @internal
1069
- */
1070
- const filterSensitiveLog: (obj: ListManagedEndpointsResponse) => any;
1071
- }
810
+ /**
811
+ * @internal
812
+ */
813
+ export declare const CancelJobRunRequestFilterSensitiveLog: (obj: CancelJobRunRequest) => any;
814
+ /**
815
+ * @internal
816
+ */
817
+ export declare const CancelJobRunResponseFilterSensitiveLog: (obj: CancelJobRunResponse) => any;
818
+ /**
819
+ * @internal
820
+ */
821
+ export declare const CloudWatchMonitoringConfigurationFilterSensitiveLog: (obj: CloudWatchMonitoringConfiguration) => any;
822
+ /**
823
+ * @internal
824
+ */
825
+ export declare const S3MonitoringConfigurationFilterSensitiveLog: (obj: S3MonitoringConfiguration) => any;
826
+ /**
827
+ * @internal
828
+ */
829
+ export declare const MonitoringConfigurationFilterSensitiveLog: (obj: MonitoringConfiguration) => any;
830
+ /**
831
+ * @internal
832
+ */
833
+ export declare const CreateManagedEndpointResponseFilterSensitiveLog: (obj: CreateManagedEndpointResponse) => any;
834
+ /**
835
+ * @internal
836
+ */
837
+ export declare const EksInfoFilterSensitiveLog: (obj: EksInfo) => any;
838
+ /**
839
+ * @internal
840
+ */
841
+ export declare const ContainerInfoFilterSensitiveLog: (obj: ContainerInfo) => any;
842
+ /**
843
+ * @internal
844
+ */
845
+ export declare const ContainerProviderFilterSensitiveLog: (obj: ContainerProvider) => any;
846
+ /**
847
+ * @internal
848
+ */
849
+ export declare const CreateVirtualClusterRequestFilterSensitiveLog: (obj: CreateVirtualClusterRequest) => any;
850
+ /**
851
+ * @internal
852
+ */
853
+ export declare const CreateVirtualClusterResponseFilterSensitiveLog: (obj: CreateVirtualClusterResponse) => any;
854
+ /**
855
+ * @internal
856
+ */
857
+ export declare const DeleteManagedEndpointRequestFilterSensitiveLog: (obj: DeleteManagedEndpointRequest) => any;
858
+ /**
859
+ * @internal
860
+ */
861
+ export declare const DeleteManagedEndpointResponseFilterSensitiveLog: (obj: DeleteManagedEndpointResponse) => any;
862
+ /**
863
+ * @internal
864
+ */
865
+ export declare const DeleteVirtualClusterRequestFilterSensitiveLog: (obj: DeleteVirtualClusterRequest) => any;
866
+ /**
867
+ * @internal
868
+ */
869
+ export declare const DeleteVirtualClusterResponseFilterSensitiveLog: (obj: DeleteVirtualClusterResponse) => any;
870
+ /**
871
+ * @internal
872
+ */
873
+ export declare const DescribeJobRunRequestFilterSensitiveLog: (obj: DescribeJobRunRequest) => any;
874
+ /**
875
+ * @internal
876
+ */
877
+ export declare const SparkSubmitJobDriverFilterSensitiveLog: (obj: SparkSubmitJobDriver) => any;
878
+ /**
879
+ * @internal
880
+ */
881
+ export declare const JobDriverFilterSensitiveLog: (obj: JobDriver) => any;
882
+ /**
883
+ * @internal
884
+ */
885
+ export declare const DescribeManagedEndpointRequestFilterSensitiveLog: (obj: DescribeManagedEndpointRequest) => any;
886
+ /**
887
+ * @internal
888
+ */
889
+ export declare const CertificateFilterSensitiveLog: (obj: Certificate) => any;
890
+ /**
891
+ * @internal
892
+ */
893
+ export declare const DescribeVirtualClusterRequestFilterSensitiveLog: (obj: DescribeVirtualClusterRequest) => any;
894
+ /**
895
+ * @internal
896
+ */
897
+ export declare const VirtualClusterFilterSensitiveLog: (obj: VirtualCluster) => any;
898
+ /**
899
+ * @internal
900
+ */
901
+ export declare const DescribeVirtualClusterResponseFilterSensitiveLog: (obj: DescribeVirtualClusterResponse) => any;
902
+ /**
903
+ * @internal
904
+ */
905
+ export declare const ListJobRunsRequestFilterSensitiveLog: (obj: ListJobRunsRequest) => any;
906
+ /**
907
+ * @internal
908
+ */
909
+ export declare const ListManagedEndpointsRequestFilterSensitiveLog: (obj: ListManagedEndpointsRequest) => any;
910
+ /**
911
+ * @internal
912
+ */
913
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
914
+ /**
915
+ * @internal
916
+ */
917
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
918
+ /**
919
+ * @internal
920
+ */
921
+ export declare const ListVirtualClustersRequestFilterSensitiveLog: (obj: ListVirtualClustersRequest) => any;
922
+ /**
923
+ * @internal
924
+ */
925
+ export declare const ListVirtualClustersResponseFilterSensitiveLog: (obj: ListVirtualClustersResponse) => any;
926
+ /**
927
+ * @internal
928
+ */
929
+ export declare const StartJobRunResponseFilterSensitiveLog: (obj: StartJobRunResponse) => any;
930
+ /**
931
+ * @internal
932
+ */
933
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
934
+ /**
935
+ * @internal
936
+ */
937
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
938
+ /**
939
+ * @internal
940
+ */
941
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
942
+ /**
943
+ * @internal
944
+ */
945
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
946
+ /**
947
+ * @internal
948
+ */
949
+ export declare const ConfigurationFilterSensitiveLog: (obj: Configuration) => any;
950
+ /**
951
+ * @internal
952
+ */
953
+ export declare const ConfigurationOverridesFilterSensitiveLog: (obj: ConfigurationOverrides) => any;
954
+ /**
955
+ * @internal
956
+ */
957
+ export declare const CreateManagedEndpointRequestFilterSensitiveLog: (obj: CreateManagedEndpointRequest) => any;
958
+ /**
959
+ * @internal
960
+ */
961
+ export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
962
+ /**
963
+ * @internal
964
+ */
965
+ export declare const JobRunFilterSensitiveLog: (obj: JobRun) => any;
966
+ /**
967
+ * @internal
968
+ */
969
+ export declare const StartJobRunRequestFilterSensitiveLog: (obj: StartJobRunRequest) => any;
970
+ /**
971
+ * @internal
972
+ */
973
+ export declare const DescribeJobRunResponseFilterSensitiveLog: (obj: DescribeJobRunResponse) => any;
974
+ /**
975
+ * @internal
976
+ */
977
+ export declare const DescribeManagedEndpointResponseFilterSensitiveLog: (obj: DescribeManagedEndpointResponse) => any;
978
+ /**
979
+ * @internal
980
+ */
981
+ export declare const ListJobRunsResponseFilterSensitiveLog: (obj: ListJobRunsResponse) => any;
982
+ /**
983
+ * @internal
984
+ */
985
+ export declare const ListManagedEndpointsResponseFilterSensitiveLog: (obj: ListManagedEndpointsResponse) => any;