@aws-sdk/client-emr-serverless 3.321.1 → 3.326.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.
- package/dist-types/commands/CancelJobRunCommand.d.ts +7 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +8 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +62 -0
- package/dist-types/commands/GetDashboardForJobRunCommand.d.ts +6 -0
- package/dist-types/commands/GetJobRunCommand.d.ts +84 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +20 -0
- package/dist-types/commands/ListJobRunsCommand.d.ts +22 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/StartApplicationCommand.d.ts +4 -0
- package/dist-types/commands/StartJobRunCommand.d.ts +8 -0
- package/dist-types/commands/StopApplicationCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +62 -0
- package/package.json +16 -16
|
@@ -32,6 +32,11 @@ export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __Metad
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new CancelJobRunCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // CancelJobRunResponse
|
|
36
|
+
* // applicationId: "STRING_VALUE", // required
|
|
37
|
+
* // jobRunId: "STRING_VALUE", // required
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param CancelJobRunCommandInput - {@link CancelJobRunCommandInput}
|
|
@@ -50,6 +55,8 @@ export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __Metad
|
|
|
50
55
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
51
56
|
* service.</p>
|
|
52
57
|
*
|
|
58
|
+
* @throws {@link EMRServerlessServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from EMRServerless service.</p>
|
|
53
60
|
*
|
|
54
61
|
*/
|
|
55
62
|
export declare class CancelJobRunCommand extends $Command<CancelJobRunCommandInput, CancelJobRunCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
@@ -78,6 +78,12 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
78
78
|
* };
|
|
79
79
|
* const command = new CreateApplicationCommand(input);
|
|
80
80
|
* const response = await client.send(command);
|
|
81
|
+
* // { // CreateApplicationResponse
|
|
82
|
+
* // applicationId: "STRING_VALUE", // required
|
|
83
|
+
* // name: "STRING_VALUE",
|
|
84
|
+
* // arn: "STRING_VALUE", // required
|
|
85
|
+
* // };
|
|
86
|
+
*
|
|
81
87
|
* ```
|
|
82
88
|
*
|
|
83
89
|
* @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
|
|
@@ -100,6 +106,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
100
106
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
101
107
|
* service.</p>
|
|
102
108
|
*
|
|
109
|
+
* @throws {@link EMRServerlessServiceException}
|
|
110
|
+
* <p>Base exception class for all service exceptions from EMRServerless service.</p>
|
|
103
111
|
*
|
|
104
112
|
*/
|
|
105
113
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteApplicationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteApplicationCommandInput - {@link DeleteApplicationCommandInput}
|
|
@@ -50,6 +52,8 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
50
52
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
51
53
|
* service.</p>
|
|
52
54
|
*
|
|
55
|
+
* @throws {@link EMRServerlessServiceException}
|
|
56
|
+
* <p>Base exception class for all service exceptions from EMRServerless service.</p>
|
|
53
57
|
*
|
|
54
58
|
*/
|
|
55
59
|
export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
@@ -31,6 +31,66 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetApplicationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetApplicationResponse
|
|
35
|
+
* // application: { // Application
|
|
36
|
+
* // applicationId: "STRING_VALUE", // required
|
|
37
|
+
* // name: "STRING_VALUE",
|
|
38
|
+
* // arn: "STRING_VALUE", // required
|
|
39
|
+
* // releaseLabel: "STRING_VALUE", // required
|
|
40
|
+
* // type: "STRING_VALUE", // required
|
|
41
|
+
* // state: "STRING_VALUE", // required
|
|
42
|
+
* // stateDetails: "STRING_VALUE",
|
|
43
|
+
* // initialCapacity: { // InitialCapacityConfigMap
|
|
44
|
+
* // "<keys>": { // InitialCapacityConfig
|
|
45
|
+
* // workerCount: Number("long"), // required
|
|
46
|
+
* // workerConfiguration: { // WorkerResourceConfig
|
|
47
|
+
* // cpu: "STRING_VALUE", // required
|
|
48
|
+
* // memory: "STRING_VALUE", // required
|
|
49
|
+
* // disk: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // },
|
|
52
|
+
* // },
|
|
53
|
+
* // maximumCapacity: { // MaximumAllowedResources
|
|
54
|
+
* // cpu: "STRING_VALUE", // required
|
|
55
|
+
* // memory: "STRING_VALUE", // required
|
|
56
|
+
* // disk: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
59
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
60
|
+
* // tags: { // TagMap
|
|
61
|
+
* // "<keys>": "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // autoStartConfiguration: { // AutoStartConfig
|
|
64
|
+
* // enabled: true || false,
|
|
65
|
+
* // },
|
|
66
|
+
* // autoStopConfiguration: { // AutoStopConfig
|
|
67
|
+
* // enabled: true || false,
|
|
68
|
+
* // idleTimeoutMinutes: Number("int"),
|
|
69
|
+
* // },
|
|
70
|
+
* // networkConfiguration: { // NetworkConfiguration
|
|
71
|
+
* // subnetIds: [ // SubnetIds
|
|
72
|
+
* // "STRING_VALUE",
|
|
73
|
+
* // ],
|
|
74
|
+
* // securityGroupIds: [ // SecurityGroupIds
|
|
75
|
+
* // "STRING_VALUE",
|
|
76
|
+
* // ],
|
|
77
|
+
* // },
|
|
78
|
+
* // architecture: "STRING_VALUE",
|
|
79
|
+
* // imageConfiguration: { // ImageConfiguration
|
|
80
|
+
* // imageUri: "STRING_VALUE", // required
|
|
81
|
+
* // resolvedImageDigest: "STRING_VALUE",
|
|
82
|
+
* // },
|
|
83
|
+
* // workerTypeSpecifications: { // WorkerTypeSpecificationMap
|
|
84
|
+
* // "<keys>": { // WorkerTypeSpecification
|
|
85
|
+
* // imageConfiguration: {
|
|
86
|
+
* // imageUri: "STRING_VALUE", // required
|
|
87
|
+
* // resolvedImageDigest: "STRING_VALUE",
|
|
88
|
+
* // },
|
|
89
|
+
* // },
|
|
90
|
+
* // },
|
|
91
|
+
* // },
|
|
92
|
+
* // };
|
|
93
|
+
*
|
|
34
94
|
* ```
|
|
35
95
|
*
|
|
36
96
|
* @param GetApplicationCommandInput - {@link GetApplicationCommandInput}
|
|
@@ -49,6 +109,8 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
49
109
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
50
110
|
* service.</p>
|
|
51
111
|
*
|
|
112
|
+
* @throws {@link EMRServerlessServiceException}
|
|
113
|
+
* <p>Base exception class for all service exceptions from EMRServerless service.</p>
|
|
52
114
|
*
|
|
53
115
|
*/
|
|
54
116
|
export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
@@ -33,6 +33,10 @@ export interface GetDashboardForJobRunCommandOutput extends GetDashboardForJobRu
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetDashboardForJobRunCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetDashboardForJobRunResponse
|
|
37
|
+
* // url: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
36
40
|
* ```
|
|
37
41
|
*
|
|
38
42
|
* @param GetDashboardForJobRunCommandInput - {@link GetDashboardForJobRunCommandInput}
|
|
@@ -51,6 +55,8 @@ export interface GetDashboardForJobRunCommandOutput extends GetDashboardForJobRu
|
|
|
51
55
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
52
56
|
* service.</p>
|
|
53
57
|
*
|
|
58
|
+
* @throws {@link EMRServerlessServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from EMRServerless service.</p>
|
|
54
60
|
*
|
|
55
61
|
*/
|
|
56
62
|
export declare class GetDashboardForJobRunCommand extends $Command<GetDashboardForJobRunCommandInput, GetDashboardForJobRunCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
@@ -32,6 +32,88 @@ export interface GetJobRunCommandOutput extends GetJobRunResponse, __MetadataBea
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetJobRunCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetJobRunResponse
|
|
36
|
+
* // jobRun: { // JobRun
|
|
37
|
+
* // applicationId: "STRING_VALUE", // required
|
|
38
|
+
* // jobRunId: "STRING_VALUE", // required
|
|
39
|
+
* // name: "STRING_VALUE",
|
|
40
|
+
* // arn: "STRING_VALUE", // required
|
|
41
|
+
* // createdBy: "STRING_VALUE", // required
|
|
42
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // executionRole: "STRING_VALUE", // required
|
|
45
|
+
* // state: "STRING_VALUE", // required
|
|
46
|
+
* // stateDetails: "STRING_VALUE", // required
|
|
47
|
+
* // releaseLabel: "STRING_VALUE", // required
|
|
48
|
+
* // configurationOverrides: { // ConfigurationOverrides
|
|
49
|
+
* // applicationConfiguration: [ // ConfigurationList
|
|
50
|
+
* // { // Configuration
|
|
51
|
+
* // classification: "STRING_VALUE", // required
|
|
52
|
+
* // properties: { // SensitivePropertiesMap
|
|
53
|
+
* // "<keys>": "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // configurations: [
|
|
56
|
+
* // {
|
|
57
|
+
* // classification: "STRING_VALUE", // required
|
|
58
|
+
* // properties: {
|
|
59
|
+
* // "<keys>": "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // configurations: "<ConfigurationList>",
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // monitoringConfiguration: { // MonitoringConfiguration
|
|
67
|
+
* // s3MonitoringConfiguration: { // S3MonitoringConfiguration
|
|
68
|
+
* // logUri: "STRING_VALUE",
|
|
69
|
+
* // encryptionKeyArn: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // managedPersistenceMonitoringConfiguration: { // ManagedPersistenceMonitoringConfiguration
|
|
72
|
+
* // enabled: true || false,
|
|
73
|
+
* // encryptionKeyArn: "STRING_VALUE",
|
|
74
|
+
* // },
|
|
75
|
+
* // },
|
|
76
|
+
* // },
|
|
77
|
+
* // jobDriver: { // JobDriver Union: only one key present
|
|
78
|
+
* // sparkSubmit: { // SparkSubmit
|
|
79
|
+
* // entryPoint: "STRING_VALUE", // required
|
|
80
|
+
* // entryPointArguments: [ // EntryPointArguments
|
|
81
|
+
* // "STRING_VALUE",
|
|
82
|
+
* // ],
|
|
83
|
+
* // sparkSubmitParameters: "STRING_VALUE",
|
|
84
|
+
* // },
|
|
85
|
+
* // hive: { // Hive
|
|
86
|
+
* // query: "STRING_VALUE", // required
|
|
87
|
+
* // initQueryFile: "STRING_VALUE",
|
|
88
|
+
* // parameters: "STRING_VALUE",
|
|
89
|
+
* // },
|
|
90
|
+
* // },
|
|
91
|
+
* // tags: { // TagMap
|
|
92
|
+
* // "<keys>": "STRING_VALUE",
|
|
93
|
+
* // },
|
|
94
|
+
* // totalResourceUtilization: { // TotalResourceUtilization
|
|
95
|
+
* // vCPUHour: Number("double"),
|
|
96
|
+
* // memoryGBHour: Number("double"),
|
|
97
|
+
* // storageGBHour: Number("double"),
|
|
98
|
+
* // },
|
|
99
|
+
* // networkConfiguration: { // NetworkConfiguration
|
|
100
|
+
* // subnetIds: [ // SubnetIds
|
|
101
|
+
* // "STRING_VALUE",
|
|
102
|
+
* // ],
|
|
103
|
+
* // securityGroupIds: [ // SecurityGroupIds
|
|
104
|
+
* // "STRING_VALUE",
|
|
105
|
+
* // ],
|
|
106
|
+
* // },
|
|
107
|
+
* // totalExecutionDurationSeconds: Number("int"),
|
|
108
|
+
* // executionTimeoutMinutes: Number("long"),
|
|
109
|
+
* // billedResourceUtilization: { // ResourceUtilization
|
|
110
|
+
* // vCPUHour: Number("double"),
|
|
111
|
+
* // memoryGBHour: Number("double"),
|
|
112
|
+
* // storageGBHour: Number("double"),
|
|
113
|
+
* // },
|
|
114
|
+
* // },
|
|
115
|
+
* // };
|
|
116
|
+
*
|
|
35
117
|
* ```
|
|
36
118
|
*
|
|
37
119
|
* @param GetJobRunCommandInput - {@link GetJobRunCommandInput}
|
|
@@ -50,6 +132,8 @@ export interface GetJobRunCommandOutput extends GetJobRunResponse, __MetadataBea
|
|
|
50
132
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
51
133
|
* service.</p>
|
|
52
134
|
*
|
|
135
|
+
* @throws {@link EMRServerlessServiceException}
|
|
136
|
+
* <p>Base exception class for all service exceptions from EMRServerless service.</p>
|
|
53
137
|
*
|
|
54
138
|
*/
|
|
55
139
|
export declare class GetJobRunCommand extends $Command<GetJobRunCommandInput, GetJobRunCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
@@ -35,6 +35,24 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListApplicationsCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListApplicationsResponse
|
|
39
|
+
* // applications: [ // ApplicationList // required
|
|
40
|
+
* // { // ApplicationSummary
|
|
41
|
+
* // id: "STRING_VALUE", // required
|
|
42
|
+
* // name: "STRING_VALUE",
|
|
43
|
+
* // arn: "STRING_VALUE", // required
|
|
44
|
+
* // releaseLabel: "STRING_VALUE", // required
|
|
45
|
+
* // type: "STRING_VALUE", // required
|
|
46
|
+
* // state: "STRING_VALUE", // required
|
|
47
|
+
* // stateDetails: "STRING_VALUE",
|
|
48
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
49
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // architecture: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // nextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
38
56
|
* ```
|
|
39
57
|
*
|
|
40
58
|
* @param ListApplicationsCommandInput - {@link ListApplicationsCommandInput}
|
|
@@ -50,6 +68,8 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
50
68
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
51
69
|
* service.</p>
|
|
52
70
|
*
|
|
71
|
+
* @throws {@link EMRServerlessServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from EMRServerless service.</p>
|
|
53
73
|
*
|
|
54
74
|
*/
|
|
55
75
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
@@ -38,6 +38,26 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ListJobRunsCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ListJobRunsResponse
|
|
42
|
+
* // jobRuns: [ // JobRuns // required
|
|
43
|
+
* // { // JobRunSummary
|
|
44
|
+
* // applicationId: "STRING_VALUE", // required
|
|
45
|
+
* // id: "STRING_VALUE", // required
|
|
46
|
+
* // name: "STRING_VALUE",
|
|
47
|
+
* // arn: "STRING_VALUE", // required
|
|
48
|
+
* // createdBy: "STRING_VALUE", // required
|
|
49
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // executionRole: "STRING_VALUE", // required
|
|
52
|
+
* // state: "STRING_VALUE", // required
|
|
53
|
+
* // stateDetails: "STRING_VALUE", // required
|
|
54
|
+
* // releaseLabel: "STRING_VALUE", // required
|
|
55
|
+
* // type: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // nextToken: "STRING_VALUE",
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
41
61
|
* ```
|
|
42
62
|
*
|
|
43
63
|
* @param ListJobRunsCommandInput - {@link ListJobRunsCommandInput}
|
|
@@ -53,6 +73,8 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat
|
|
|
53
73
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
54
74
|
* service.</p>
|
|
55
75
|
*
|
|
76
|
+
* @throws {@link EMRServerlessServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from EMRServerless service.</p>
|
|
56
78
|
*
|
|
57
79
|
*/
|
|
58
80
|
export declare class ListJobRunsCommand extends $Command<ListJobRunsCommandInput, ListJobRunsCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -49,6 +55,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
49
55
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
50
56
|
* service.</p>
|
|
51
57
|
*
|
|
58
|
+
* @throws {@link EMRServerlessServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from EMRServerless service.</p>
|
|
52
60
|
*
|
|
53
61
|
*/
|
|
54
62
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface StartApplicationCommandOutput extends StartApplicationResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartApplicationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param StartApplicationCommandInput - {@link StartApplicationCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface StartApplicationCommandOutput extends StartApplicationResponse,
|
|
|
52
54
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
53
55
|
* service.</p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link EMRServerlessServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from EMRServerless service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class StartApplicationCommand extends $Command<StartApplicationCommandInput, StartApplicationCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
@@ -81,6 +81,12 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
|
|
|
81
81
|
* };
|
|
82
82
|
* const command = new StartJobRunCommand(input);
|
|
83
83
|
* const response = await client.send(command);
|
|
84
|
+
* // { // StartJobRunResponse
|
|
85
|
+
* // applicationId: "STRING_VALUE", // required
|
|
86
|
+
* // jobRunId: "STRING_VALUE", // required
|
|
87
|
+
* // arn: "STRING_VALUE", // required
|
|
88
|
+
* // };
|
|
89
|
+
*
|
|
84
90
|
* ```
|
|
85
91
|
*
|
|
86
92
|
* @param StartJobRunCommandInput - {@link StartJobRunCommandInput}
|
|
@@ -103,6 +109,8 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
|
|
|
103
109
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
104
110
|
* service.</p>
|
|
105
111
|
*
|
|
112
|
+
* @throws {@link EMRServerlessServiceException}
|
|
113
|
+
* <p>Base exception class for all service exceptions from EMRServerless service.</p>
|
|
106
114
|
*
|
|
107
115
|
*/
|
|
108
116
|
export declare class StartJobRunCommand extends $Command<StartJobRunCommandInput, StartJobRunCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface StopApplicationCommandOutput extends StopApplicationResponse, _
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new StopApplicationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param StopApplicationCommandInput - {@link StopApplicationCommandInput}
|
|
@@ -50,6 +52,8 @@ export interface StopApplicationCommandOutput extends StopApplicationResponse, _
|
|
|
50
52
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
51
53
|
* service.</p>
|
|
52
54
|
*
|
|
55
|
+
* @throws {@link EMRServerlessServiceException}
|
|
56
|
+
* <p>Base exception class for all service exceptions from EMRServerless service.</p>
|
|
53
57
|
*
|
|
54
58
|
*/
|
|
55
59
|
export declare class StopApplicationCommand extends $Command<StopApplicationCommandInput, StopApplicationCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new TagResourceCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -56,6 +58,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
56
58
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
57
59
|
* service.</p>
|
|
58
60
|
*
|
|
61
|
+
* @throws {@link EMRServerlessServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from EMRServerless service.</p>
|
|
59
63
|
*
|
|
60
64
|
*/
|
|
61
65
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
52
54
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
53
55
|
* service.</p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link EMRServerlessServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from EMRServerless service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
@@ -74,6 +74,66 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
74
74
|
* };
|
|
75
75
|
* const command = new UpdateApplicationCommand(input);
|
|
76
76
|
* const response = await client.send(command);
|
|
77
|
+
* // { // UpdateApplicationResponse
|
|
78
|
+
* // application: { // Application
|
|
79
|
+
* // applicationId: "STRING_VALUE", // required
|
|
80
|
+
* // name: "STRING_VALUE",
|
|
81
|
+
* // arn: "STRING_VALUE", // required
|
|
82
|
+
* // releaseLabel: "STRING_VALUE", // required
|
|
83
|
+
* // type: "STRING_VALUE", // required
|
|
84
|
+
* // state: "STRING_VALUE", // required
|
|
85
|
+
* // stateDetails: "STRING_VALUE",
|
|
86
|
+
* // initialCapacity: { // InitialCapacityConfigMap
|
|
87
|
+
* // "<keys>": { // InitialCapacityConfig
|
|
88
|
+
* // workerCount: Number("long"), // required
|
|
89
|
+
* // workerConfiguration: { // WorkerResourceConfig
|
|
90
|
+
* // cpu: "STRING_VALUE", // required
|
|
91
|
+
* // memory: "STRING_VALUE", // required
|
|
92
|
+
* // disk: "STRING_VALUE",
|
|
93
|
+
* // },
|
|
94
|
+
* // },
|
|
95
|
+
* // },
|
|
96
|
+
* // maximumCapacity: { // MaximumAllowedResources
|
|
97
|
+
* // cpu: "STRING_VALUE", // required
|
|
98
|
+
* // memory: "STRING_VALUE", // required
|
|
99
|
+
* // disk: "STRING_VALUE",
|
|
100
|
+
* // },
|
|
101
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
102
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
103
|
+
* // tags: { // TagMap
|
|
104
|
+
* // "<keys>": "STRING_VALUE",
|
|
105
|
+
* // },
|
|
106
|
+
* // autoStartConfiguration: { // AutoStartConfig
|
|
107
|
+
* // enabled: true || false,
|
|
108
|
+
* // },
|
|
109
|
+
* // autoStopConfiguration: { // AutoStopConfig
|
|
110
|
+
* // enabled: true || false,
|
|
111
|
+
* // idleTimeoutMinutes: Number("int"),
|
|
112
|
+
* // },
|
|
113
|
+
* // networkConfiguration: { // NetworkConfiguration
|
|
114
|
+
* // subnetIds: [ // SubnetIds
|
|
115
|
+
* // "STRING_VALUE",
|
|
116
|
+
* // ],
|
|
117
|
+
* // securityGroupIds: [ // SecurityGroupIds
|
|
118
|
+
* // "STRING_VALUE",
|
|
119
|
+
* // ],
|
|
120
|
+
* // },
|
|
121
|
+
* // architecture: "STRING_VALUE",
|
|
122
|
+
* // imageConfiguration: { // ImageConfiguration
|
|
123
|
+
* // imageUri: "STRING_VALUE", // required
|
|
124
|
+
* // resolvedImageDigest: "STRING_VALUE",
|
|
125
|
+
* // },
|
|
126
|
+
* // workerTypeSpecifications: { // WorkerTypeSpecificationMap
|
|
127
|
+
* // "<keys>": { // WorkerTypeSpecification
|
|
128
|
+
* // imageConfiguration: {
|
|
129
|
+
* // imageUri: "STRING_VALUE", // required
|
|
130
|
+
* // resolvedImageDigest: "STRING_VALUE",
|
|
131
|
+
* // },
|
|
132
|
+
* // },
|
|
133
|
+
* // },
|
|
134
|
+
* // },
|
|
135
|
+
* // };
|
|
136
|
+
*
|
|
77
137
|
* ```
|
|
78
138
|
*
|
|
79
139
|
* @param UpdateApplicationCommandInput - {@link UpdateApplicationCommandInput}
|
|
@@ -92,6 +152,8 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
92
152
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
93
153
|
* service.</p>
|
|
94
154
|
*
|
|
155
|
+
* @throws {@link EMRServerlessServiceException}
|
|
156
|
+
* <p>Base exception class for all service exceptions from EMRServerless service.</p>
|
|
95
157
|
*
|
|
96
158
|
*/
|
|
97
159
|
export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, EMRServerlessClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-emr-serverless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Emr Serverless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,33 +21,33 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|