@@ -19,6 +19,11 @@ import {
19
19
} from "./commands/AddJobFlowStepsCommand" ;
20
20
import { AddTagsCommand , AddTagsCommandInput , AddTagsCommandOutput } from "./commands/AddTagsCommand" ;
21
21
import { CancelStepsCommand , CancelStepsCommandInput , CancelStepsCommandOutput } from "./commands/CancelStepsCommand" ;
22
+ import {
23
+ CreatePersistentAppUICommand ,
24
+ CreatePersistentAppUICommandInput ,
25
+ CreatePersistentAppUICommandOutput ,
26
+ } from "./commands/CreatePersistentAppUICommand" ;
22
27
import {
23
28
CreateSecurityConfigurationCommand ,
24
29
CreateSecurityConfigurationCommandInput ,
@@ -64,6 +69,11 @@ import {
64
69
DescribeNotebookExecutionCommandInput ,
65
70
DescribeNotebookExecutionCommandOutput ,
66
71
} from "./commands/DescribeNotebookExecutionCommand" ;
72
+ import {
73
+ DescribePersistentAppUICommand ,
74
+ DescribePersistentAppUICommandInput ,
75
+ DescribePersistentAppUICommandOutput ,
76
+ } from "./commands/DescribePersistentAppUICommand" ;
67
77
import {
68
78
DescribeReleaseLabelCommand ,
69
79
DescribeReleaseLabelCommandInput ,
@@ -104,6 +114,16 @@ import {
104
114
GetManagedScalingPolicyCommandInput ,
105
115
GetManagedScalingPolicyCommandOutput ,
106
116
} from "./commands/GetManagedScalingPolicyCommand" ;
117
+ import {
118
+ GetOnClusterAppUIPresignedURLCommand ,
119
+ GetOnClusterAppUIPresignedURLCommandInput ,
120
+ GetOnClusterAppUIPresignedURLCommandOutput ,
121
+ } from "./commands/GetOnClusterAppUIPresignedURLCommand" ;
122
+ import {
123
+ GetPersistentAppUIPresignedURLCommand ,
124
+ GetPersistentAppUIPresignedURLCommandInput ,
125
+ GetPersistentAppUIPresignedURLCommandOutput ,
126
+ } from "./commands/GetPersistentAppUIPresignedURLCommand" ;
107
127
import {
108
128
GetStudioSessionMappingCommand ,
109
129
GetStudioSessionMappingCommandInput ,
@@ -266,6 +286,7 @@ const commands = {
266
286
AddJobFlowStepsCommand,
267
287
AddTagsCommand,
268
288
CancelStepsCommand,
289
+ CreatePersistentAppUICommand,
269
290
CreateSecurityConfigurationCommand,
270
291
CreateStudioCommand,
271
292
CreateStudioSessionMappingCommand,
@@ -275,6 +296,7 @@ const commands = {
275
296
DescribeClusterCommand,
276
297
DescribeJobFlowsCommand,
277
298
DescribeNotebookExecutionCommand,
299
+ DescribePersistentAppUICommand,
278
300
DescribeReleaseLabelCommand,
279
301
DescribeSecurityConfigurationCommand,
280
302
DescribeStepCommand,
@@ -283,6 +305,8 @@ const commands = {
283
305
GetBlockPublicAccessConfigurationCommand,
284
306
GetClusterSessionCredentialsCommand,
285
307
GetManagedScalingPolicyCommand,
308
+ GetOnClusterAppUIPresignedURLCommand,
309
+ GetPersistentAppUIPresignedURLCommand,
286
310
GetStudioSessionMappingCommand,
287
311
ListBootstrapActionsCommand,
288
312
ListClustersCommand,
@@ -390,6 +414,23 @@ export interface EMR {
390
414
cb : ( err : any , data ?: CancelStepsCommandOutput ) => void
391
415
) : void ;
392
416
417
+ /**
418
+ * @see {@link CreatePersistentAppUICommand }
419
+ */
420
+ createPersistentAppUI (
421
+ args : CreatePersistentAppUICommandInput ,
422
+ options ?: __HttpHandlerOptions
423
+ ) : Promise < CreatePersistentAppUICommandOutput > ;
424
+ createPersistentAppUI (
425
+ args : CreatePersistentAppUICommandInput ,
426
+ cb : ( err : any , data ?: CreatePersistentAppUICommandOutput ) => void
427
+ ) : void ;
428
+ createPersistentAppUI (
429
+ args : CreatePersistentAppUICommandInput ,
430
+ options : __HttpHandlerOptions ,
431
+ cb : ( err : any , data ?: CreatePersistentAppUICommandOutput ) => void
432
+ ) : void ;
433
+
393
434
/**
394
435
* @see {@link CreateSecurityConfigurationCommand }
395
436
*/
@@ -529,6 +570,23 @@ export interface EMR {
529
570
cb : ( err : any , data ?: DescribeNotebookExecutionCommandOutput ) => void
530
571
) : void ;
531
572
573
+ /**
574
+ * @see {@link DescribePersistentAppUICommand }
575
+ */
576
+ describePersistentAppUI (
577
+ args : DescribePersistentAppUICommandInput ,
578
+ options ?: __HttpHandlerOptions
579
+ ) : Promise < DescribePersistentAppUICommandOutput > ;
580
+ describePersistentAppUI (
581
+ args : DescribePersistentAppUICommandInput ,
582
+ cb : ( err : any , data ?: DescribePersistentAppUICommandOutput ) => void
583
+ ) : void ;
584
+ describePersistentAppUI (
585
+ args : DescribePersistentAppUICommandInput ,
586
+ options : __HttpHandlerOptions ,
587
+ cb : ( err : any , data ?: DescribePersistentAppUICommandOutput ) => void
588
+ ) : void ;
589
+
532
590
/**
533
591
* @see {@link DescribeReleaseLabelCommand }
534
592
*/
@@ -658,6 +716,40 @@ export interface EMR {
658
716
cb : ( err : any , data ?: GetManagedScalingPolicyCommandOutput ) => void
659
717
) : void ;
660
718
719
+ /**
720
+ * @see {@link GetOnClusterAppUIPresignedURLCommand }
721
+ */
722
+ getOnClusterAppUIPresignedURL (
723
+ args : GetOnClusterAppUIPresignedURLCommandInput ,
724
+ options ?: __HttpHandlerOptions
725
+ ) : Promise < GetOnClusterAppUIPresignedURLCommandOutput > ;
726
+ getOnClusterAppUIPresignedURL (
727
+ args : GetOnClusterAppUIPresignedURLCommandInput ,
728
+ cb : ( err : any , data ?: GetOnClusterAppUIPresignedURLCommandOutput ) => void
729
+ ) : void ;
730
+ getOnClusterAppUIPresignedURL (
731
+ args : GetOnClusterAppUIPresignedURLCommandInput ,
732
+ options : __HttpHandlerOptions ,
733
+ cb : ( err : any , data ?: GetOnClusterAppUIPresignedURLCommandOutput ) => void
734
+ ) : void ;
735
+
736
+ /**
737
+ * @see {@link GetPersistentAppUIPresignedURLCommand }
738
+ */
739
+ getPersistentAppUIPresignedURL (
740
+ args : GetPersistentAppUIPresignedURLCommandInput ,
741
+ options ?: __HttpHandlerOptions
742
+ ) : Promise < GetPersistentAppUIPresignedURLCommandOutput > ;
743
+ getPersistentAppUIPresignedURL (
744
+ args : GetPersistentAppUIPresignedURLCommandInput ,
745
+ cb : ( err : any , data ?: GetPersistentAppUIPresignedURLCommandOutput ) => void
746
+ ) : void ;
747
+ getPersistentAppUIPresignedURL (
748
+ args : GetPersistentAppUIPresignedURLCommandInput ,
749
+ options : __HttpHandlerOptions ,
750
+ cb : ( err : any , data ?: GetPersistentAppUIPresignedURLCommandOutput ) => void
751
+ ) : void ;
752
+
661
753
/**
662
754
* @see {@link GetStudioSessionMappingCommand }
663
755
*/
0 commit comments