@aws-sdk/client-emr 3.1061.0 → 3.1062.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 (45) hide show
  1. package/README.md +35 -0
  2. package/dist-cjs/index.js +85 -0
  3. package/dist-cjs/schemas/schemas_0.js +178 -32
  4. package/dist-es/EMR.js +12 -0
  5. package/dist-es/commands/GetSessionCommand.js +16 -0
  6. package/dist-es/commands/GetSessionEndpointCommand.js +16 -0
  7. package/dist-es/commands/ListSessionsCommand.js +16 -0
  8. package/dist-es/commands/StartSessionCommand.js +16 -0
  9. package/dist-es/commands/TerminateSessionCommand.js +16 -0
  10. package/dist-es/commands/index.js +5 -0
  11. package/dist-es/models/enums.js +10 -0
  12. package/dist-es/pagination/ListSessionsPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +1 -0
  14. package/dist-es/schemas/schemas_0.js +171 -26
  15. package/dist-types/EMR.d.ts +42 -0
  16. package/dist-types/EMRClient.d.ts +7 -2
  17. package/dist-types/commands/AddTagsCommand.d.ts +1 -0
  18. package/dist-types/commands/DescribeClusterCommand.d.ts +1 -0
  19. package/dist-types/commands/GetSessionCommand.d.ts +155 -0
  20. package/dist-types/commands/GetSessionEndpointCommand.d.ts +92 -0
  21. package/dist-types/commands/ListSessionsCommand.d.ts +162 -0
  22. package/dist-types/commands/RemoveTagsCommand.d.ts +1 -0
  23. package/dist-types/commands/RunJobFlowCommand.d.ts +1 -0
  24. package/dist-types/commands/StartSessionCommand.d.ts +141 -0
  25. package/dist-types/commands/TerminateSessionCommand.d.ts +86 -0
  26. package/dist-types/commands/index.d.ts +5 -0
  27. package/dist-types/models/enums.d.ts +18 -0
  28. package/dist-types/models/models_0.d.ts +473 -7
  29. package/dist-types/pagination/ListSessionsPaginator.d.ts +7 -0
  30. package/dist-types/pagination/index.d.ts +1 -0
  31. package/dist-types/schemas/schemas_0.d.ts +21 -0
  32. package/dist-types/ts3.4/EMR.d.ts +92 -0
  33. package/dist-types/ts3.4/EMRClient.d.ts +30 -0
  34. package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +49 -0
  35. package/dist-types/ts3.4/commands/GetSessionEndpointCommand.d.ts +53 -0
  36. package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +49 -0
  37. package/dist-types/ts3.4/commands/StartSessionCommand.d.ts +49 -0
  38. package/dist-types/ts3.4/commands/TerminateSessionCommand.d.ts +52 -0
  39. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  40. package/dist-types/ts3.4/models/enums.d.ts +11 -0
  41. package/dist-types/ts3.4/models/models_0.d.ts +108 -0
  42. package/dist-types/ts3.4/pagination/ListSessionsPaginator.d.ts +11 -0
  43. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  44. package/dist-types/ts3.4/schemas/schemas_0.d.ts +21 -0
  45. package/package.json +2 -2
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetSession$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetSessionCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ElasticMapReduce", "GetSession", {})
13
+ .n("EMRClient", "GetSessionCommand")
14
+ .sc(GetSession$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetSessionEndpoint$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetSessionEndpointCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ElasticMapReduce", "GetSessionEndpoint", {})
13
+ .n("EMRClient", "GetSessionEndpointCommand")
14
+ .sc(GetSessionEndpoint$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListSessions$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListSessionsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ElasticMapReduce", "ListSessions", {})
13
+ .n("EMRClient", "ListSessionsCommand")
14
+ .sc(ListSessions$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { StartSession$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class StartSessionCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ElasticMapReduce", "StartSession", {})
13
+ .n("EMRClient", "StartSessionCommand")
14
+ .sc(StartSession$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { TerminateSession$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class TerminateSessionCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ElasticMapReduce", "TerminateSession", {})
13
+ .n("EMRClient", "TerminateSessionCommand")
14
+ .sc(TerminateSession$)
15
+ .build() {
16
+ }
@@ -24,6 +24,8 @@ export * from "./GetClusterSessionCredentialsCommand";
24
24
  export * from "./GetManagedScalingPolicyCommand";
25
25
  export * from "./GetOnClusterAppUIPresignedURLCommand";
26
26
  export * from "./GetPersistentAppUIPresignedURLCommand";
27
+ export * from "./GetSessionCommand";
28
+ export * from "./GetSessionEndpointCommand";
27
29
  export * from "./GetStudioSessionMappingCommand";
28
30
  export * from "./ListBootstrapActionsCommand";
29
31
  export * from "./ListClustersCommand";
@@ -33,6 +35,7 @@ export * from "./ListInstancesCommand";
33
35
  export * from "./ListNotebookExecutionsCommand";
34
36
  export * from "./ListReleaseLabelsCommand";
35
37
  export * from "./ListSecurityConfigurationsCommand";
38
+ export * from "./ListSessionsCommand";
36
39
  export * from "./ListStepsCommand";
37
40
  export * from "./ListStudioSessionMappingsCommand";
38
41
  export * from "./ListStudiosCommand";
@@ -54,7 +57,9 @@ export * from "./SetTerminationProtectionCommand";
54
57
  export * from "./SetUnhealthyNodeReplacementCommand";
55
58
  export * from "./SetVisibleToAllUsersCommand";
56
59
  export * from "./StartNotebookExecutionCommand";
60
+ export * from "./StartSessionCommand";
57
61
  export * from "./StopNotebookExecutionCommand";
58
62
  export * from "./TerminateJobFlowsCommand";
63
+ export * from "./TerminateSessionCommand";
59
64
  export * from "./UpdateStudioCommand";
60
65
  export * from "./UpdateStudioSessionMappingCommand";
@@ -256,6 +256,16 @@ export const OnClusterAppUIType = {
256
256
  TezUI: "TezUI",
257
257
  YarnTimelineService: "YarnTimelineService",
258
258
  };
259
+ export const SessionState = {
260
+ BUSY: "BUSY",
261
+ FAILED: "FAILED",
262
+ IDLE: "IDLE",
263
+ STARTED: "STARTED",
264
+ STARTING: "STARTING",
265
+ SUBMITTED: "SUBMITTED",
266
+ TERMINATED: "TERMINATED",
267
+ TERMINATING: "TERMINATING",
268
+ };
259
269
  export const InstanceFleetState = {
260
270
  BOOTSTRAPPING: "BOOTSTRAPPING",
261
271
  PROVISIONING: "PROVISIONING",
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListSessionsCommand, } from "../commands/ListSessionsCommand";
3
+ import { EMRClient } from "../EMRClient";
4
+ export const paginateListSessions = createPaginator(EMRClient, ListSessionsCommand, "NextToken", "NextToken", "");
@@ -7,6 +7,7 @@ export * from "./ListInstancesPaginator";
7
7
  export * from "./ListNotebookExecutionsPaginator";
8
8
  export * from "./ListReleaseLabelsPaginator";
9
9
  export * from "./ListSecurityConfigurationsPaginator";
10
+ export * from "./ListSessionsPaginator";
10
11
  export * from "./ListStepsPaginator";
11
12
  export * from "./ListStudiosPaginator";
12
13
  export * from "./ListStudioSessionMappingsPaginator";
@@ -8,6 +8,7 @@ const _AIFO = "AddInstanceFleetOutput";
8
8
  const _AIG = "AddInstanceGroups";
9
9
  const _AIGI = "AddInstanceGroupsInput";
10
10
  const _AIGO = "AddInstanceGroupsOutput";
11
+ const _AIc = "AccountId";
11
12
  const _AIp = "ApplicationId";
12
13
  const _AIu = "AuthorId";
13
14
  const _AJFS = "AddJobFlowSteps";
@@ -27,11 +28,13 @@ const _ASPSCR = "AutoScalingPolicyStateChangeReason";
27
28
  const _ASR = "AutoScalingRole";
28
29
  const _ASSG = "AdditionalSlaveSecurityGroups";
29
30
  const _AT = "AutoTerminate";
31
+ const _ATET = "AuthTokenExpirationTime";
30
32
  const _ATI = "AddTagsInput";
31
33
  const _ATO = "AddTagsOutput";
32
34
  const _ATP = "AutoTerminationPolicy";
33
35
  const _ATd = "AdjustmentType";
34
36
  const _ATdd = "AddTags";
37
+ const _ATu = "AuthToken";
35
38
  const _AV = "AmiVersion";
36
39
  const _AZ = "AvailabilityZone";
37
40
  const _AZv = "AvailabilityZones";
@@ -55,11 +58,15 @@ const _BPSGR = "BlockPublicSecurityGroupRules";
55
58
  const _C = "Constraints";
56
59
  const _CA = "ClusterArn";
57
60
  const _CAI = "CustomAmiId";
61
+ const _CAe = "CertificateAuthority";
62
+ const _CAer = "CertificateArn";
58
63
  const _CAr = "CreatedAfter";
64
+ const _CAre = "CreatedAt";
59
65
  const _CB = "CreatedBefore";
60
66
  const _CBA = "CreatedByArn";
61
- const _CD = "CoolDown";
67
+ const _CD = "CertificateData";
62
68
  const _CDT = "CreationDateTime";
69
+ const _CDo = "CoolDown";
63
70
  const _CI = "ClusterId";
64
71
  const _CL = "ComputeLimits";
65
72
  const _CLo = "CommandList";
@@ -71,6 +78,7 @@ const _CPAUIO = "CreatePersistentAppUIOutput";
71
78
  const _CRO = "CapacityReservationOptions";
72
79
  const _CRP = "CapacityReservationPreference";
73
80
  const _CRRGA = "CapacityReservationResourceGroupArn";
81
+ const _CRT = "ClientRequestToken";
74
82
  const _CRTPP = "CrossRealmTrustPrincipalPassword";
75
83
  const _CS = "ClusterStatus";
76
84
  const _CSC = "CreateSecurityConfiguration";
@@ -95,6 +103,7 @@ const _CTr = "CreationTime";
95
103
  const _CV = "ConfigurationsVersion";
96
104
  const _CWAD = "CloudWatchAlarmDefinition";
97
105
  const _CWLC = "CloudWatchLogConfiguration";
106
+ const _CWLCl = "CloudWatchLoggingConfiguration";
98
107
  const _Cl = "Classification";
99
108
  const _Clu = "Cluster";
100
109
  const _Clus = "Clusters";
@@ -145,6 +154,7 @@ const _Dev = "Device";
145
154
  const _E = "Enabled";
146
155
  const _EA = "ExpiresAt";
147
156
  const _EAZ = "Ec2AvailabilityZone";
157
+ const _EAn = "EndedAt";
148
158
  const _EBD = "EbsBlockDevice";
149
159
  const _EBDC = "EbsBlockDeviceConfig";
150
160
  const _EBDCL = "EbsBlockDeviceConfigList";
@@ -154,6 +164,7 @@ const _EBDb = "EbsBlockDevices";
154
164
  const _EC = "ErrorCode";
155
165
  const _ECIITT = "EC2InstanceIdsToTerminate";
156
166
  const _ECb = "EbsConfiguration";
167
+ const _ECn = "EngineConfigurations";
157
168
  const _ED = "ErrorDetails";
158
169
  const _EDL = "ErrorDetailList";
159
170
  const _EDT = "EndDateTime";
@@ -190,6 +201,7 @@ const _EV = "EbsVolume";
190
201
  const _EVL = "EbsVolumeList";
191
202
  const _EVb = "EbsVolumes";
192
203
  const _EVn = "EnvironmentVariables";
204
+ const _En = "Endpoint";
193
205
  const _F = "From";
194
206
  const _FD = "FailureDetails";
195
207
  const _Fi = "Filters";
@@ -211,6 +223,12 @@ const _GOCAUIPURLO = "GetOnClusterAppUIPresignedURLOutput";
211
223
  const _GPAUIPURL = "GetPersistentAppUIPresignedURL";
212
224
  const _GPAUIPURLI = "GetPersistentAppUIPresignedURLInput";
213
225
  const _GPAUIPURLO = "GetPersistentAppUIPresignedURLOutput";
226
+ const _GS = "GetSession";
227
+ const _GSE = "GetSessionEndpoint";
228
+ const _GSEI = "GetSessionEndpointInput";
229
+ const _GSEO = "GetSessionEndpointOutput";
230
+ const _GSI = "GetSessionInput";
231
+ const _GSO = "GetSessionOutput";
214
232
  const _GSSM = "GetStudioSessionMapping";
215
233
  const _GSSMI = "GetStudioSessionMappingInput";
216
234
  const _GSSMO = "GetStudioSessionMappingOutput";
@@ -268,6 +286,7 @@ const _IS = "InstanceStatus";
268
286
  const _ISCR = "InstanceStateChangeReason";
269
287
  const _ISE = "InternalServerError";
270
288
  const _ISEn = "InternalServerException";
289
+ const _ISd = "IdleSince";
271
290
  const _ISn = "InstanceStates";
272
291
  const _IT = "IdleTimeout";
273
292
  const _ITC = "InstanceTypeConfigs";
@@ -313,6 +332,7 @@ const _LCI = "ListClustersInput";
313
332
  const _LCO = "ListClustersOutput";
314
333
  const _LEKKI = "LogEncryptionKmsKeyId";
315
334
  const _LF = "LogFile";
335
+ const _LG = "LogGroup";
316
336
  const _LGN = "LogGroupName";
317
337
  const _LI = "ListInstances";
318
338
  const _LIF = "ListInstanceFleets";
@@ -337,19 +357,22 @@ const _LSC = "ListSecurityConfigurations";
337
357
  const _LSCI = "ListSecurityConfigurationsInput";
338
358
  const _LSCO = "ListSecurityConfigurationsOutput";
339
359
  const _LSCR = "LastStateChangeReason";
340
- const _LSI = "ListStepsInput";
360
+ const _LSI = "ListSessionsInput";
341
361
  const _LSIT = "ListSupportedInstanceTypes";
342
362
  const _LSITI = "ListSupportedInstanceTypesInput";
343
363
  const _LSITO = "ListSupportedInstanceTypesOutput";
344
- const _LSIi = "ListStudiosInput";
364
+ const _LSIi = "ListStepsInput";
365
+ const _LSIis = "ListStudiosInput";
345
366
  const _LSNP = "LogStreamNamePrefix";
346
- const _LSO = "ListStepsOutput";
347
- const _LSOi = "ListStudiosOutput";
367
+ const _LSO = "ListSessionsOutput";
368
+ const _LSOi = "ListStepsOutput";
369
+ const _LSOis = "ListStudiosOutput";
348
370
  const _LSSM = "ListStudioSessionMappings";
349
371
  const _LSSMI = "ListStudioSessionMappingsInput";
350
372
  const _LSSMO = "ListStudioSessionMappingsOutput";
351
- const _LSi = "ListSteps";
352
- const _LSis = "ListStudios";
373
+ const _LSi = "ListSessions";
374
+ const _LSis = "ListSteps";
375
+ const _LSist = "ListStudios";
353
376
  const _LT = "LogTypes";
354
377
  const _LTM = "LogTypesMap";
355
378
  const _LTUP = "LogTypeUploadPolicy";
@@ -375,6 +398,7 @@ const _MIGI = "ModifyInstanceGroupsInput";
375
398
  const _MII = "MasterInstanceId";
376
399
  const _MISGI = "MasterInstanceSecurityGroupId";
377
400
  const _MIT = "MasterInstanceType";
401
+ const _MLC = "ManagedLoggingConfiguration";
378
402
  const _MN = "MetricName";
379
403
  const _MODCU = "MaximumOnDemandCapacityUnits";
380
404
  const _MPDN = "MasterPublicDnsName";
@@ -499,7 +523,8 @@ const _SAL = "SimplifiedApplicationList";
499
523
  const _SASG = "ServiceAccessSecurityGroup";
500
524
  const _SAc = "ScalingAdjustment";
501
525
  const _SAi = "SimplifiedApplication";
502
- const _SAt = "StudioArn";
526
+ const _SAt = "StartedAt";
527
+ const _SAtu = "StudioArn";
503
528
  const _SBA = "ScriptBootstrapAction";
504
529
  const _SBAC = "ScriptBootstrapActionConfig";
505
530
  const _SC = "SecurityConfiguration";
@@ -509,6 +534,7 @@ const _SCLt = "StepConfigList";
509
534
  const _SCO = "StepCancellationOption";
510
535
  const _SCR = "StateChangeReason";
511
536
  const _SCS = "SecurityConfigurationSummary";
537
+ const _SCWLC = "SessionCloudWatchLoggingConfiguration";
512
538
  const _SCc = "ScalingConstraints";
513
539
  const _SCe = "SecurityConfigurations";
514
540
  const _SCt = "StepConfig";
@@ -516,25 +542,31 @@ const _SD = "StepDetail";
516
542
  const _SDB = "ScaleDownBehavior";
517
543
  const _SDL = "StepDetailList";
518
544
  const _SDT = "StartDateTime";
545
+ const _SE = "SessionEnabled";
519
546
  const _SERA = "StepExecutionRoleArn";
520
547
  const _SESD = "StepExecutionStatusDetail";
521
548
  const _SGB = "StorageGB";
522
549
  const _SI = "StepIds";
523
550
  const _SIGB = "SizeInGB";
524
551
  const _SIT = "SlaveInstanceType";
552
+ const _SITIM = "SessionIdleTimeoutInMinutes";
525
553
  const _SITL = "SupportedInstanceTypesList";
526
554
  const _SITu = "SupportedInstanceTypes";
527
555
  const _SITup = "SupportedInstanceType";
556
+ const _SIe = "SessionId";
528
557
  const _SIt = "StepId";
529
558
  const _SItu = "StudioId";
530
559
  const _SIu = "SubnetIds";
531
560
  const _SKJFAWNS = "SetKeepJobFlowAliveWhenNoSteps";
532
561
  const _SKJFAWNSI = "SetKeepJobFlowAliveWhenNoStepsInput";
562
+ const _SL = "SessionList";
533
563
  const _SLC = "S3LoggingConfiguration";
534
564
  const _SM = "SessionMapping";
535
565
  const _SMC = "S3MonitoringConfiguration";
566
+ const _SMCe = "SessionMonitoringConfiguration";
536
567
  const _SMCt = "StepMonitoringConfiguration";
537
568
  const _SMD = "SessionMappingDetail";
569
+ const _SMLC = "SessionManagedLoggingConfiguration";
538
570
  const _SMS = "SessionMappingSummary";
539
571
  const _SMSL = "SessionMappingSummaryList";
540
572
  const _SMe = "SessionMappings";
@@ -554,13 +586,19 @@ const _SRL = "ScalingRuleList";
554
586
  const _SRS = "SpotResizeSpecification";
555
587
  const _SRSp = "SpotResizingSpecification";
556
588
  const _SRc = "ScalingRule";
557
- const _SS = "SpotSpecification";
589
+ const _SS = "SensitiveString";
558
590
  const _SSCR = "StepStateChangeReason";
591
+ const _SSI = "StartSessionInput";
559
592
  const _SSL = "StepSummaryList";
593
+ const _SSLC = "SessionS3LoggingConfiguration";
560
594
  const _SSLt = "StudioSummaryList";
595
+ const _SSO = "StartSessionOutput";
561
596
  const _SSPC = "SimpleScalingPolicyConfiguration";
562
597
  const _SSc = "ScalingStrategy";
598
+ const _SSe = "SessionStates";
599
+ const _SSp = "SpotSpecification";
563
600
  const _SSt = "StepStates";
601
+ const _SSta = "StartSession";
564
602
  const _SSte = "StepStatus";
565
603
  const _SStep = "StepSummary";
566
604
  const _SStu = "StudioSummary";
@@ -569,10 +607,13 @@ const _STP = "SetTerminationProtection";
569
607
  const _STPI = "SetTerminationProtectionInput";
570
608
  const _STc = "ScalingTrigger";
571
609
  const _STt = "StepTimeline";
610
+ const _SU = "ServerUrl";
572
611
  const _SUNR = "SetUnhealthyNodeReplacement";
573
612
  const _SUNRI = "SetUnhealthyNodeReplacementInput";
574
613
  const _SVTAU = "SetVisibleToAllUsers";
575
614
  const _SVTAUI = "SetVisibleToAllUsersInput";
615
+ const _Se = "Session";
616
+ const _Ses = "Sessions";
576
617
  const _St = "Status";
577
618
  const _Sta = "State";
578
619
  const _Stat = "Statistic";
@@ -590,7 +631,10 @@ const _TL = "TagList";
590
631
  const _TODC = "TargetOnDemandCapacity";
591
632
  const _TP = "TerminationProtected";
592
633
  const _TRA = "TargetResourceArn";
634
+ const _TS = "TerminateSession";
593
635
  const _TSC = "TargetSpotCapacity";
636
+ const _TSI = "TerminateSessionInput";
637
+ const _TSO = "TerminateSessionOutput";
594
638
  const _Ta = "Tag";
595
639
  const _Th = "Threshold";
596
640
  const _Thr = "Throughput";
@@ -599,6 +643,7 @@ const _To = "To";
599
643
  const _Tr = "Trigger";
600
644
  const _Ty = "Type";
601
645
  const _U = "Unit";
646
+ const _UA = "UpdatedAt";
602
647
  const _UNR = "UnhealthyNodeReplacement";
603
648
  const _UP = "UsernamePassword";
604
649
  const _UPI = "UtilizationPerformanceIndex";
@@ -659,6 +704,7 @@ export const errorTypeRegistries = [
659
704
  _s_registry,
660
705
  n0_registry,
661
706
  ];
707
+ var SensitiveString = [0, n0, _SS, 8, 0];
662
708
  export var AddInstanceFleetInput$ = [3, n0, _AIFI,
663
709
  0,
664
710
  [_CI, _IF],
@@ -691,8 +737,8 @@ export var AddJobFlowStepsOutput$ = [3, n0, _AJFSO,
691
737
  ];
692
738
  export var AddTagsInput$ = [3, n0, _ATI,
693
739
  0,
694
- [_RI, _T],
695
- [0, () => TagList], 2
740
+ [_RI, _T, _CI],
741
+ [0, () => TagList, 0], 2
696
742
  ];
697
743
  export var AddTagsOutput$ = [3, n0, _ATO,
698
744
  0,
@@ -764,6 +810,11 @@ export var CancelStepsOutput$ = [3, n0, _CSO,
764
810
  [_CSIL],
765
811
  [() => CancelStepsInfoList]
766
812
  ];
813
+ export var CertificateAuthority$ = [3, n0, _CAe,
814
+ 0,
815
+ [_CAer, _CD],
816
+ [0, 0]
817
+ ];
767
818
  export var CloudWatchAlarmDefinition$ = [3, n0, _CWAD,
768
819
  0,
769
820
  [_CO, _MN, _Pe, _Th, _EP, _Na, _Stat, _U, _D],
@@ -776,8 +827,8 @@ export var CloudWatchLogConfiguration$ = [3, n0, _CWLC,
776
827
  ];
777
828
  export var Cluster$ = [3, n0, _Clu,
778
829
  0,
779
- [_I, _N, _St, _EIA, _ICT, _LU, _LEKKI, _RAV, _RAVu, _RL, _AT, _TP, _UNR, _VTAU, _Ap, _T, _SR, _NIH, _MPDN, _Con, _SC, _ASR, _SDB, _CAI, _ERVS, _RUOB, _KA, _CA, _OA, _SCL, _PG, _OSRL, _ERVI, _ERVT, _ES, _MC],
780
- [0, 0, () => ClusterStatus$, () => Ec2InstanceAttributes$, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, () => ApplicationList, () => TagList, 0, 1, 0, () => ConfigurationList, 0, 0, 0, 0, 1, 0, () => KerberosAttributes$, 0, 0, 1, () => PlacementGroupConfigList, 0, 1, 1, 2, () => MonitoringConfiguration$]
830
+ [_I, _N, _St, _EIA, _ICT, _LU, _LEKKI, _RAV, _RAVu, _RL, _AT, _TP, _UNR, _VTAU, _Ap, _T, _SR, _NIH, _MPDN, _Con, _SC, _ASR, _SDB, _CAI, _ERVS, _RUOB, _KA, _CA, _OA, _SCL, _PG, _OSRL, _ERVI, _ERVT, _ES, _MC, _SE],
831
+ [0, 0, () => ClusterStatus$, () => Ec2InstanceAttributes$, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, () => ApplicationList, () => TagList, 0, 1, 0, () => ConfigurationList, 0, 0, 0, 0, 1, 0, () => KerberosAttributes$, 0, 0, 1, () => PlacementGroupConfigList, 0, 1, 1, 2, () => MonitoringConfiguration$, 2]
781
832
  ];
782
833
  export var ClusterStateChangeReason$ = [3, n0, _CSCR,
783
834
  0,
@@ -1054,6 +1105,26 @@ export var GetPersistentAppUIPresignedURLOutput$ = [3, n0, _GPAUIPURLO,
1054
1105
  [_PURLR, _PURL],
1055
1106
  [2, 0]
1056
1107
  ];
1108
+ export var GetSessionEndpointInput$ = [3, n0, _GSEI,
1109
+ 0,
1110
+ [_CI, _SIe],
1111
+ [0, 0], 2
1112
+ ];
1113
+ export var GetSessionEndpointOutput$ = [3, n0, _GSEO,
1114
+ 0,
1115
+ [_En, _ATu, _ATET, _Cr],
1116
+ [0, [() => SensitiveString, 0], 4, [() => Credentials$, 0]], 1
1117
+ ];
1118
+ export var GetSessionInput$ = [3, n0, _GSI,
1119
+ 0,
1120
+ [_CI, _SIe],
1121
+ [0, 0], 2
1122
+ ];
1123
+ export var GetSessionOutput$ = [3, n0, _GSO,
1124
+ 0,
1125
+ [_Se],
1126
+ [() => Session$], 1
1127
+ ];
1057
1128
  export var GetStudioSessionMappingInput$ = [3, n0, _GSSMI,
1058
1129
  0,
1059
1130
  [_SItu, _ITd, _II, _IN],
@@ -1096,7 +1167,7 @@ export var InstanceFleetModifyConfig$ = [3, n0, _IFMC,
1096
1167
  ];
1097
1168
  export var InstanceFleetProvisioningSpecifications$ = [3, n0, _IFPS,
1098
1169
  0,
1099
- [_SS, _ODS],
1170
+ [_SSp, _ODS],
1100
1171
  [() => SpotProvisioningSpecification$, () => OnDemandProvisioningSpecification$]
1101
1172
  ];
1102
1173
  export var InstanceFleetResizingSpecifications$ = [3, n0, _IFRS,
@@ -1294,12 +1365,22 @@ export var ListSecurityConfigurationsOutput$ = [3, n0, _LSCO,
1294
1365
  [_SCe, _Mar],
1295
1366
  [() => SecurityConfigurationList, 0]
1296
1367
  ];
1297
- export var ListStepsInput$ = [3, n0, _LSI,
1368
+ export var ListSessionsInput$ = [3, n0, _LSI,
1369
+ 0,
1370
+ [_CI, _SSe, _NT, _MR],
1371
+ [0, 64 | 0, 0, 1], 1
1372
+ ];
1373
+ export var ListSessionsOutput$ = [3, n0, _LSO,
1374
+ 0,
1375
+ [_Ses, _NT],
1376
+ [() => SessionList, 0]
1377
+ ];
1378
+ export var ListStepsInput$ = [3, n0, _LSIi,
1298
1379
  0,
1299
1380
  [_CI, _SSt, _SI, _Mar],
1300
1381
  [0, 64 | 0, 64 | 0, 0], 1
1301
1382
  ];
1302
- export var ListStepsOutput$ = [3, n0, _LSO,
1383
+ export var ListStepsOutput$ = [3, n0, _LSOi,
1303
1384
  0,
1304
1385
  [_S, _Mar],
1305
1386
  [() => StepSummaryList, 0]
@@ -1314,12 +1395,12 @@ export var ListStudioSessionMappingsOutput$ = [3, n0, _LSSMO,
1314
1395
  [_SMe, _Mar],
1315
1396
  [() => SessionMappingSummaryList, 0]
1316
1397
  ];
1317
- export var ListStudiosInput$ = [3, n0, _LSIi,
1398
+ export var ListStudiosInput$ = [3, n0, _LSIis,
1318
1399
  0,
1319
1400
  [_Mar],
1320
1401
  [0]
1321
1402
  ];
1322
- export var ListStudiosOutput$ = [3, n0, _LSOi,
1403
+ export var ListStudiosOutput$ = [3, n0, _LSOis,
1323
1404
  0,
1324
1405
  [_Stud, _Mar],
1325
1406
  [() => StudioSummaryList, 0]
@@ -1516,8 +1597,8 @@ export var RemoveManagedScalingPolicyOutput$ = [3, n0, _RMSPO,
1516
1597
  ];
1517
1598
  export var RemoveTagsInput$ = [3, n0, _RTI,
1518
1599
  0,
1519
- [_RI, _TK],
1520
- [0, 64 | 0], 2
1600
+ [_RI, _TK, _CI],
1601
+ [0, 64 | 0, 0], 2
1521
1602
  ];
1522
1603
  export var RemoveTagsOutput$ = [3, n0, _RTO,
1523
1604
  0,
@@ -1526,8 +1607,8 @@ export var RemoveTagsOutput$ = [3, n0, _RTO,
1526
1607
  ];
1527
1608
  export var RunJobFlowInput$ = [3, n0, _RJFI,
1528
1609
  0,
1529
- [_N, _Ins, _LU, _LEKKI, _AI, _AV, _RL, _S, _SERA, _BA, _SPu, _NSP, _Ap, _Con, _VTAU, _JFR, _SR, _T, _SC, _ASR, _SDB, _CAI, _ERVS, _RUOB, _KA, _SCL, _MSP, _PGCl, _ATP, _OSRL, _ERVI, _ERVT, _ES, _MC],
1530
- [0, () => JobFlowInstancesConfig$, 0, 0, 0, 0, 0, () => StepConfigList, 0, () => BootstrapActionConfigList, 64 | 0, () => NewSupportedProductsList, () => ApplicationList, () => ConfigurationList, 2, 0, 0, () => TagList, 0, 0, 0, 0, 1, 0, () => KerberosAttributes$, 1, () => ManagedScalingPolicy$, () => PlacementGroupConfigList, () => AutoTerminationPolicy$, 0, 1, 1, 2, () => MonitoringConfiguration$], 2
1610
+ [_N, _Ins, _LU, _LEKKI, _AI, _AV, _RL, _S, _SERA, _BA, _SPu, _NSP, _Ap, _Con, _VTAU, _JFR, _SR, _T, _SC, _ASR, _SDB, _CAI, _ERVS, _RUOB, _KA, _SCL, _MSP, _PGCl, _ATP, _OSRL, _ERVI, _ERVT, _ES, _MC, _SE],
1611
+ [0, () => JobFlowInstancesConfig$, 0, 0, 0, 0, 0, () => StepConfigList, 0, () => BootstrapActionConfigList, 64 | 0, () => NewSupportedProductsList, () => ApplicationList, () => ConfigurationList, 2, 0, 0, () => TagList, 0, 0, 0, 0, 1, 0, () => KerberosAttributes$, 1, () => ManagedScalingPolicy$, () => PlacementGroupConfigList, () => AutoTerminationPolicy$, 0, 1, 1, 2, () => MonitoringConfiguration$, 2], 2
1531
1612
  ];
1532
1613
  export var RunJobFlowOutput$ = [3, n0, _RJFO,
1533
1614
  0,
@@ -1574,6 +1655,21 @@ export var SecurityConfigurationSummary$ = [3, n0, _SCS,
1574
1655
  [_N, _CDT],
1575
1656
  [0, 4]
1576
1657
  ];
1658
+ export var Session$ = [3, n0, _Se,
1659
+ 0,
1660
+ [_I, _CI, _Arn, _Sta, _N, _SCR, _RL, _ERA, _AIc, _CAre, _UA, _SAt, _EAn, _ISd, _ECn, _MC, _SITIM, _CAe, _SU, _T],
1661
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, () => ConfigurationList, () => SessionMonitoringConfiguration$, 1, () => CertificateAuthority$, 0, () => TagList], 4
1662
+ ];
1663
+ export var SessionCloudWatchLoggingConfiguration$ = [3, n0, _SCWLC,
1664
+ 0,
1665
+ [_E, _LG, _LSNP, _EKA, _LT],
1666
+ [2, 0, 0, 0, [2, n0, _LTM, 0, 0, 64 | 0]]
1667
+ ];
1668
+ export var SessionManagedLoggingConfiguration$ = [3, n0, _SMLC,
1669
+ 0,
1670
+ [_E, _EKA],
1671
+ [2, 0]
1672
+ ];
1577
1673
  export var SessionMappingDetail$ = [3, n0, _SMD,
1578
1674
  0,
1579
1675
  [_SItu, _II, _IN, _ITd, _SPA, _CTr, _LMT],
@@ -1584,6 +1680,16 @@ export var SessionMappingSummary$ = [3, n0, _SMS,
1584
1680
  [_SItu, _II, _IN, _ITd, _SPA, _CTr],
1585
1681
  [0, 0, 0, 0, 0, 4]
1586
1682
  ];
1683
+ export var SessionMonitoringConfiguration$ = [3, n0, _SMCe,
1684
+ 0,
1685
+ [_CWLCl, _MLC, _SLC],
1686
+ [() => SessionCloudWatchLoggingConfiguration$, () => SessionManagedLoggingConfiguration$, () => SessionS3LoggingConfiguration$]
1687
+ ];
1688
+ export var SessionS3LoggingConfiguration$ = [3, n0, _SSLC,
1689
+ 0,
1690
+ [_E, _LU, _EKA, _LT],
1691
+ [2, 0, 0, [2, n0, _LTM, 0, 0, 64 | 0]]
1692
+ ];
1587
1693
  export var SetKeepJobFlowAliveWhenNoStepsInput$ = [3, n0, _SKJFAWNSI,
1588
1694
  0,
1589
1695
  [_JFIo, _KJFAWNS],
@@ -1611,7 +1717,7 @@ export var ShrinkPolicy$ = [3, n0, _SPh,
1611
1717
  ];
1612
1718
  export var SimpleScalingPolicyConfiguration$ = [3, n0, _SSPC,
1613
1719
  0,
1614
- [_SAc, _ATd, _CD],
1720
+ [_SAc, _ATd, _CDo],
1615
1721
  [1, 0, 1], 1
1616
1722
  ];
1617
1723
  export var SimplifiedApplication$ = [3, n0, _SAi,
@@ -1639,6 +1745,16 @@ export var StartNotebookExecutionOutput$ = [3, n0, _SNEO,
1639
1745
  [_NEI],
1640
1746
  [0]
1641
1747
  ];
1748
+ export var StartSessionInput$ = [3, n0, _SSI,
1749
+ 0,
1750
+ [_CI, _N, _ERA, _ECn, _MC, _SITIM, _CRT, _T],
1751
+ [0, 0, 0, () => ConfigurationList, () => SessionMonitoringConfiguration$, 1, 0, () => TagList], 1
1752
+ ];
1753
+ export var StartSessionOutput$ = [3, n0, _SSO,
1754
+ 0,
1755
+ [_I, _CI, _Arn, _AIc, _Sta],
1756
+ [0, 0, 0, 0, 0], 1
1757
+ ];
1642
1758
  export var Step$ = [3, n0, _Ste,
1643
1759
  0,
1644
1760
  [_I, _N, _Confi, _AOF, _St, _ERA, _LU, _EKA],
@@ -1691,7 +1807,7 @@ export var StopNotebookExecutionInput$ = [3, n0, _SNEIt,
1691
1807
  ];
1692
1808
  export var Studio$ = [3, n0, _Stu,
1693
1809
  0,
1694
- [_SItu, _SAt, _N, _De, _AM, _VI, _SIu, _SR, _UR, _WSGI, _ESGI, _Ur, _CTr, _DSL, _IAU, _IRSPN, _T, _IIA, _TIPE, _IUA, _EKA],
1810
+ [_SItu, _SAtu, _N, _De, _AM, _VI, _SIu, _SR, _UR, _WSGI, _ESGI, _Ur, _CTr, _DSL, _IAU, _IRSPN, _T, _IIA, _TIPE, _IUA, _EKA],
1695
1811
  [0, 0, 0, 0, 0, 0, 64 | 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, () => TagList, 0, 2, 0, 0]
1696
1812
  ];
1697
1813
  export var StudioSummary$ = [3, n0, _SStu,
@@ -1719,6 +1835,16 @@ export var TerminateJobFlowsInput$ = [3, n0, _TJFI,
1719
1835
  [_JFIo],
1720
1836
  [64 | 0], 1
1721
1837
  ];
1838
+ export var TerminateSessionInput$ = [3, n0, _TSI,
1839
+ 0,
1840
+ [_CI, _SIe],
1841
+ [0, 0], 2
1842
+ ];
1843
+ export var TerminateSessionOutput$ = [3, n0, _TSO,
1844
+ 0,
1845
+ [_CI, _SIe, _Sta],
1846
+ [0, 0, 0], 3
1847
+ ];
1722
1848
  export var UpdateStudioInput$ = [3, n0, _USI,
1723
1849
  0,
1724
1850
  [_SItu, _N, _De, _SIu, _DSL, _EKA],
@@ -1842,9 +1968,13 @@ var SecurityConfigurationList = [1, n0, _SCLe,
1842
1968
  0, () => SecurityConfigurationSummary$
1843
1969
  ];
1844
1970
  var SecurityGroupsList = 64 | 0;
1971
+ var SessionList = [1, n0, _SL,
1972
+ 0, () => Session$
1973
+ ];
1845
1974
  var SessionMappingSummaryList = [1, n0, _SMSL,
1846
1975
  0, () => SessionMappingSummary$
1847
1976
  ];
1977
+ var SessionStateList = 64 | 0;
1848
1978
  var SimplifiedApplicationList = [1, n0, _SAL,
1849
1979
  0, () => SimplifiedApplication$
1850
1980
  ];
@@ -1962,6 +2092,12 @@ export var GetOnClusterAppUIPresignedURL$ = [9, n0, _GOCAUIPURL,
1962
2092
  export var GetPersistentAppUIPresignedURL$ = [9, n0, _GPAUIPURL,
1963
2093
  0, () => GetPersistentAppUIPresignedURLInput$, () => GetPersistentAppUIPresignedURLOutput$
1964
2094
  ];
2095
+ export var GetSession$ = [9, n0, _GS,
2096
+ 0, () => GetSessionInput$, () => GetSessionOutput$
2097
+ ];
2098
+ export var GetSessionEndpoint$ = [9, n0, _GSE,
2099
+ 0, () => GetSessionEndpointInput$, () => GetSessionEndpointOutput$
2100
+ ];
1965
2101
  export var GetStudioSessionMapping$ = [9, n0, _GSSM,
1966
2102
  0, () => GetStudioSessionMappingInput$, () => GetStudioSessionMappingOutput$
1967
2103
  ];
@@ -1989,10 +2125,13 @@ export var ListReleaseLabels$ = [9, n0, _LRL,
1989
2125
  export var ListSecurityConfigurations$ = [9, n0, _LSC,
1990
2126
  0, () => ListSecurityConfigurationsInput$, () => ListSecurityConfigurationsOutput$
1991
2127
  ];
1992
- export var ListSteps$ = [9, n0, _LSi,
2128
+ export var ListSessions$ = [9, n0, _LSi,
2129
+ 0, () => ListSessionsInput$, () => ListSessionsOutput$
2130
+ ];
2131
+ export var ListSteps$ = [9, n0, _LSis,
1993
2132
  0, () => ListStepsInput$, () => ListStepsOutput$
1994
2133
  ];
1995
- export var ListStudios$ = [9, n0, _LSis,
2134
+ export var ListStudios$ = [9, n0, _LSist,
1996
2135
  0, () => ListStudiosInput$, () => ListStudiosOutput$
1997
2136
  ];
1998
2137
  export var ListStudioSessionMappings$ = [9, n0, _LSSM,
@@ -2052,12 +2191,18 @@ export var SetVisibleToAllUsers$ = [9, n0, _SVTAU,
2052
2191
  export var StartNotebookExecution$ = [9, n0, _SNE,
2053
2192
  0, () => StartNotebookExecutionInput$, () => StartNotebookExecutionOutput$
2054
2193
  ];
2194
+ export var StartSession$ = [9, n0, _SSta,
2195
+ 0, () => StartSessionInput$, () => StartSessionOutput$
2196
+ ];
2055
2197
  export var StopNotebookExecution$ = [9, n0, _SNEt,
2056
2198
  0, () => StopNotebookExecutionInput$, () => __Unit
2057
2199
  ];
2058
2200
  export var TerminateJobFlows$ = [9, n0, _TJF,
2059
2201
  0, () => TerminateJobFlowsInput$, () => __Unit
2060
2202
  ];
2203
+ export var TerminateSession$ = [9, n0, _TS,
2204
+ 0, () => TerminateSessionInput$, () => TerminateSessionOutput$
2205
+ ];
2061
2206
  export var UpdateStudio$ = [9, n0, _USp,
2062
2207
  0, () => UpdateStudioInput$, () => __Unit
2063
2208
  ];