@aws-sdk/client-emr-containers 3.325.0 → 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.
@@ -33,6 +33,11 @@ export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __Metad
33
33
  * };
34
34
  * const command = new CancelJobRunCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // CancelJobRunResponse
37
+ * // id: "STRING_VALUE",
38
+ * // virtualClusterId: "STRING_VALUE",
39
+ * // };
40
+ *
36
41
  * ```
37
42
  *
38
43
  * @param CancelJobRunCommandInput - {@link CancelJobRunCommandInput}
@@ -47,6 +52,8 @@ export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __Metad
47
52
  * @throws {@link ValidationException} (client fault)
48
53
  * <p>There are invalid parameters in the client request.</p>
49
54
  *
55
+ * @throws {@link EMRContainersServiceException}
56
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
50
57
  *
51
58
  */
52
59
  export declare class CancelJobRunCommand extends $Command<CancelJobRunCommandInput, CancelJobRunCommandOutput, EMRContainersClientResolvedConfig> {
@@ -94,6 +94,13 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons
94
94
  * };
95
95
  * const command = new CreateJobTemplateCommand(input);
96
96
  * const response = await client.send(command);
97
+ * // { // CreateJobTemplateResponse
98
+ * // id: "STRING_VALUE",
99
+ * // name: "STRING_VALUE",
100
+ * // arn: "STRING_VALUE",
101
+ * // createdAt: new Date("TIMESTAMP"),
102
+ * // };
103
+ *
97
104
  * ```
98
105
  *
99
106
  * @param CreateJobTemplateCommandInput - {@link CreateJobTemplateCommandInput}
@@ -111,6 +118,8 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons
111
118
  * @throws {@link ValidationException} (client fault)
112
119
  * <p>There are invalid parameters in the client request.</p>
113
120
  *
121
+ * @throws {@link EMRContainersServiceException}
122
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
114
123
  *
115
124
  */
116
125
  export declare class CreateJobTemplateCommand extends $Command<CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput, EMRContainersClientResolvedConfig> {
@@ -71,6 +71,13 @@ export interface CreateManagedEndpointCommandOutput extends CreateManagedEndpoin
71
71
  * };
72
72
  * const command = new CreateManagedEndpointCommand(input);
73
73
  * const response = await client.send(command);
74
+ * // { // CreateManagedEndpointResponse
75
+ * // id: "STRING_VALUE",
76
+ * // name: "STRING_VALUE",
77
+ * // arn: "STRING_VALUE",
78
+ * // virtualClusterId: "STRING_VALUE",
79
+ * // };
80
+ *
74
81
  * ```
75
82
  *
76
83
  * @param CreateManagedEndpointCommandInput - {@link CreateManagedEndpointCommandInput}
@@ -88,6 +95,8 @@ export interface CreateManagedEndpointCommandOutput extends CreateManagedEndpoin
88
95
  * @throws {@link ValidationException} (client fault)
89
96
  * <p>There are invalid parameters in the client request.</p>
90
97
  *
98
+ * @throws {@link EMRContainersServiceException}
99
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
91
100
  *
92
101
  */
93
102
  export declare class CreateManagedEndpointCommand extends $Command<CreateManagedEndpointCommandInput, CreateManagedEndpointCommandOutput, EMRContainersClientResolvedConfig> {
@@ -47,6 +47,12 @@ export interface CreateVirtualClusterCommandOutput extends CreateVirtualClusterR
47
47
  * };
48
48
  * const command = new CreateVirtualClusterCommand(input);
49
49
  * const response = await client.send(command);
50
+ * // { // CreateVirtualClusterResponse
51
+ * // id: "STRING_VALUE",
52
+ * // name: "STRING_VALUE",
53
+ * // arn: "STRING_VALUE",
54
+ * // };
55
+ *
50
56
  * ```
51
57
  *
52
58
  * @param CreateVirtualClusterCommandInput - {@link CreateVirtualClusterCommandInput}
@@ -64,6 +70,8 @@ export interface CreateVirtualClusterCommandOutput extends CreateVirtualClusterR
64
70
  * @throws {@link ValidationException} (client fault)
65
71
  * <p>There are invalid parameters in the client request.</p>
66
72
  *
73
+ * @throws {@link EMRContainersServiceException}
74
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
67
75
  *
68
76
  */
69
77
  export declare class CreateVirtualClusterCommand extends $Command<CreateVirtualClusterCommandInput, CreateVirtualClusterCommandOutput, EMRContainersClientResolvedConfig> {
@@ -34,6 +34,10 @@ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateRespons
34
34
  * };
35
35
  * const command = new DeleteJobTemplateCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DeleteJobTemplateResponse
38
+ * // id: "STRING_VALUE",
39
+ * // };
40
+ *
37
41
  * ```
38
42
  *
39
43
  * @param DeleteJobTemplateCommandInput - {@link DeleteJobTemplateCommandInput}
@@ -48,6 +52,8 @@ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateRespons
48
52
  * @throws {@link ValidationException} (client fault)
49
53
  * <p>There are invalid parameters in the client request.</p>
50
54
  *
55
+ * @throws {@link EMRContainersServiceException}
56
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
51
57
  *
52
58
  */
53
59
  export declare class DeleteJobTemplateCommand extends $Command<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput, EMRContainersClientResolvedConfig> {
@@ -34,6 +34,11 @@ export interface DeleteManagedEndpointCommandOutput extends DeleteManagedEndpoin
34
34
  * };
35
35
  * const command = new DeleteManagedEndpointCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DeleteManagedEndpointResponse
38
+ * // id: "STRING_VALUE",
39
+ * // virtualClusterId: "STRING_VALUE",
40
+ * // };
41
+ *
37
42
  * ```
38
43
  *
39
44
  * @param DeleteManagedEndpointCommandInput - {@link DeleteManagedEndpointCommandInput}
@@ -48,6 +53,8 @@ export interface DeleteManagedEndpointCommandOutput extends DeleteManagedEndpoin
48
53
  * @throws {@link ValidationException} (client fault)
49
54
  * <p>There are invalid parameters in the client request.</p>
50
55
  *
56
+ * @throws {@link EMRContainersServiceException}
57
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
51
58
  *
52
59
  */
53
60
  export declare class DeleteManagedEndpointCommand extends $Command<DeleteManagedEndpointCommandInput, DeleteManagedEndpointCommandOutput, EMRContainersClientResolvedConfig> {
@@ -34,6 +34,10 @@ export interface DeleteVirtualClusterCommandOutput extends DeleteVirtualClusterR
34
34
  * };
35
35
  * const command = new DeleteVirtualClusterCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DeleteVirtualClusterResponse
38
+ * // id: "STRING_VALUE",
39
+ * // };
40
+ *
37
41
  * ```
38
42
  *
39
43
  * @param DeleteVirtualClusterCommandInput - {@link DeleteVirtualClusterCommandInput}
@@ -48,6 +52,8 @@ export interface DeleteVirtualClusterCommandOutput extends DeleteVirtualClusterR
48
52
  * @throws {@link ValidationException} (client fault)
49
53
  * <p>There are invalid parameters in the client request.</p>
50
54
  *
55
+ * @throws {@link EMRContainersServiceException}
56
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
51
57
  *
52
58
  */
53
59
  export declare class DeleteVirtualClusterCommand extends $Command<DeleteVirtualClusterCommandInput, DeleteVirtualClusterCommandOutput, EMRContainersClientResolvedConfig> {
@@ -33,6 +33,75 @@ export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __M
33
33
  * };
34
34
  * const command = new DescribeJobRunCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeJobRunResponse
37
+ * // jobRun: { // JobRun
38
+ * // id: "STRING_VALUE",
39
+ * // name: "STRING_VALUE",
40
+ * // virtualClusterId: "STRING_VALUE",
41
+ * // arn: "STRING_VALUE",
42
+ * // state: "PENDING" || "SUBMITTED" || "RUNNING" || "FAILED" || "CANCELLED" || "CANCEL_PENDING" || "COMPLETED",
43
+ * // clientToken: "STRING_VALUE",
44
+ * // executionRoleArn: "STRING_VALUE",
45
+ * // releaseLabel: "STRING_VALUE",
46
+ * // configurationOverrides: { // ConfigurationOverrides
47
+ * // applicationConfiguration: [ // ConfigurationList
48
+ * // { // Configuration
49
+ * // classification: "STRING_VALUE", // required
50
+ * // properties: { // SensitivePropertiesMap
51
+ * // "<keys>": "STRING_VALUE",
52
+ * // },
53
+ * // configurations: [
54
+ * // {
55
+ * // classification: "STRING_VALUE", // required
56
+ * // properties: {
57
+ * // "<keys>": "STRING_VALUE",
58
+ * // },
59
+ * // configurations: "<ConfigurationList>",
60
+ * // },
61
+ * // ],
62
+ * // },
63
+ * // ],
64
+ * // monitoringConfiguration: { // MonitoringConfiguration
65
+ * // persistentAppUI: "ENABLED" || "DISABLED",
66
+ * // cloudWatchMonitoringConfiguration: { // CloudWatchMonitoringConfiguration
67
+ * // logGroupName: "STRING_VALUE", // required
68
+ * // logStreamNamePrefix: "STRING_VALUE",
69
+ * // },
70
+ * // s3MonitoringConfiguration: { // S3MonitoringConfiguration
71
+ * // logUri: "STRING_VALUE", // required
72
+ * // },
73
+ * // },
74
+ * // },
75
+ * // jobDriver: { // JobDriver
76
+ * // sparkSubmitJobDriver: { // SparkSubmitJobDriver
77
+ * // entryPoint: "STRING_VALUE", // required
78
+ * // entryPointArguments: [ // EntryPointArguments
79
+ * // "STRING_VALUE",
80
+ * // ],
81
+ * // sparkSubmitParameters: "STRING_VALUE",
82
+ * // },
83
+ * // sparkSqlJobDriver: { // SparkSqlJobDriver
84
+ * // entryPoint: "STRING_VALUE",
85
+ * // sparkSqlParameters: "STRING_VALUE",
86
+ * // },
87
+ * // },
88
+ * // createdAt: new Date("TIMESTAMP"),
89
+ * // createdBy: "STRING_VALUE",
90
+ * // finishedAt: new Date("TIMESTAMP"),
91
+ * // stateDetails: "STRING_VALUE",
92
+ * // failureReason: "INTERNAL_ERROR" || "USER_ERROR" || "VALIDATION_ERROR" || "CLUSTER_UNAVAILABLE",
93
+ * // tags: { // TagMap
94
+ * // "<keys>": "STRING_VALUE",
95
+ * // },
96
+ * // retryPolicyConfiguration: { // RetryPolicyConfiguration
97
+ * // maxAttempts: Number("int"), // required
98
+ * // },
99
+ * // retryPolicyExecution: { // RetryPolicyExecution
100
+ * // currentAttemptCount: Number("int"), // required
101
+ * // },
102
+ * // },
103
+ * // };
104
+ *
36
105
  * ```
37
106
  *
38
107
  * @param DescribeJobRunCommandInput - {@link DescribeJobRunCommandInput}
@@ -50,6 +119,8 @@ export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __M
50
119
  * @throws {@link ValidationException} (client fault)
51
120
  * <p>There are invalid parameters in the client request.</p>
52
121
  *
122
+ * @throws {@link EMRContainersServiceException}
123
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
53
124
  *
54
125
  */
55
126
  export declare class DescribeJobRunCommand extends $Command<DescribeJobRunCommandInput, DescribeJobRunCommandOutput, EMRContainersClientResolvedConfig> {
@@ -34,6 +34,76 @@ export interface DescribeJobTemplateCommandOutput extends DescribeJobTemplateRes
34
34
  * };
35
35
  * const command = new DescribeJobTemplateCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeJobTemplateResponse
38
+ * // jobTemplate: { // JobTemplate
39
+ * // name: "STRING_VALUE",
40
+ * // id: "STRING_VALUE",
41
+ * // arn: "STRING_VALUE",
42
+ * // createdAt: new Date("TIMESTAMP"),
43
+ * // createdBy: "STRING_VALUE",
44
+ * // tags: { // TagMap
45
+ * // "<keys>": "STRING_VALUE",
46
+ * // },
47
+ * // jobTemplateData: { // JobTemplateData
48
+ * // executionRoleArn: "STRING_VALUE", // required
49
+ * // releaseLabel: "STRING_VALUE", // required
50
+ * // configurationOverrides: { // ParametricConfigurationOverrides
51
+ * // applicationConfiguration: [ // ConfigurationList
52
+ * // { // Configuration
53
+ * // classification: "STRING_VALUE", // required
54
+ * // properties: { // SensitivePropertiesMap
55
+ * // "<keys>": "STRING_VALUE",
56
+ * // },
57
+ * // configurations: [
58
+ * // {
59
+ * // classification: "STRING_VALUE", // required
60
+ * // properties: {
61
+ * // "<keys>": "STRING_VALUE",
62
+ * // },
63
+ * // configurations: "<ConfigurationList>",
64
+ * // },
65
+ * // ],
66
+ * // },
67
+ * // ],
68
+ * // monitoringConfiguration: { // ParametricMonitoringConfiguration
69
+ * // persistentAppUI: "STRING_VALUE",
70
+ * // cloudWatchMonitoringConfiguration: { // ParametricCloudWatchMonitoringConfiguration
71
+ * // logGroupName: "STRING_VALUE",
72
+ * // logStreamNamePrefix: "STRING_VALUE",
73
+ * // },
74
+ * // s3MonitoringConfiguration: { // ParametricS3MonitoringConfiguration
75
+ * // logUri: "STRING_VALUE",
76
+ * // },
77
+ * // },
78
+ * // },
79
+ * // jobDriver: { // JobDriver
80
+ * // sparkSubmitJobDriver: { // SparkSubmitJobDriver
81
+ * // entryPoint: "STRING_VALUE", // required
82
+ * // entryPointArguments: [ // EntryPointArguments
83
+ * // "STRING_VALUE",
84
+ * // ],
85
+ * // sparkSubmitParameters: "STRING_VALUE",
86
+ * // },
87
+ * // sparkSqlJobDriver: { // SparkSqlJobDriver
88
+ * // entryPoint: "STRING_VALUE",
89
+ * // sparkSqlParameters: "STRING_VALUE",
90
+ * // },
91
+ * // },
92
+ * // parameterConfiguration: { // TemplateParameterConfigurationMap
93
+ * // "<keys>": { // TemplateParameterConfiguration
94
+ * // type: "NUMBER" || "STRING",
95
+ * // defaultValue: "STRING_VALUE",
96
+ * // },
97
+ * // },
98
+ * // jobTags: {
99
+ * // "<keys>": "STRING_VALUE",
100
+ * // },
101
+ * // },
102
+ * // kmsKeyArn: "STRING_VALUE",
103
+ * // decryptionError: "STRING_VALUE",
104
+ * // },
105
+ * // };
106
+ *
37
107
  * ```
38
108
  *
39
109
  * @param DescribeJobTemplateCommandInput - {@link DescribeJobTemplateCommandInput}
@@ -51,6 +121,8 @@ export interface DescribeJobTemplateCommandOutput extends DescribeJobTemplateRes
51
121
  * @throws {@link ValidationException} (client fault)
52
122
  * <p>There are invalid parameters in the client request.</p>
53
123
  *
124
+ * @throws {@link EMRContainersServiceException}
125
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
54
126
  *
55
127
  */
56
128
  export declare class DescribeJobTemplateCommand extends $Command<DescribeJobTemplateCommandInput, DescribeJobTemplateCommandOutput, EMRContainersClientResolvedConfig> {
@@ -34,6 +34,64 @@ export interface DescribeManagedEndpointCommandOutput extends DescribeManagedEnd
34
34
  * };
35
35
  * const command = new DescribeManagedEndpointCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeManagedEndpointResponse
38
+ * // endpoint: { // Endpoint
39
+ * // id: "STRING_VALUE",
40
+ * // name: "STRING_VALUE",
41
+ * // arn: "STRING_VALUE",
42
+ * // virtualClusterId: "STRING_VALUE",
43
+ * // type: "STRING_VALUE",
44
+ * // state: "CREATING" || "ACTIVE" || "TERMINATING" || "TERMINATED" || "TERMINATED_WITH_ERRORS",
45
+ * // releaseLabel: "STRING_VALUE",
46
+ * // executionRoleArn: "STRING_VALUE",
47
+ * // certificateArn: "STRING_VALUE",
48
+ * // certificateAuthority: { // Certificate
49
+ * // certificateArn: "STRING_VALUE",
50
+ * // certificateData: "STRING_VALUE",
51
+ * // },
52
+ * // configurationOverrides: { // ConfigurationOverrides
53
+ * // applicationConfiguration: [ // ConfigurationList
54
+ * // { // Configuration
55
+ * // classification: "STRING_VALUE", // required
56
+ * // properties: { // SensitivePropertiesMap
57
+ * // "<keys>": "STRING_VALUE",
58
+ * // },
59
+ * // configurations: [
60
+ * // {
61
+ * // classification: "STRING_VALUE", // required
62
+ * // properties: {
63
+ * // "<keys>": "STRING_VALUE",
64
+ * // },
65
+ * // configurations: "<ConfigurationList>",
66
+ * // },
67
+ * // ],
68
+ * // },
69
+ * // ],
70
+ * // monitoringConfiguration: { // MonitoringConfiguration
71
+ * // persistentAppUI: "ENABLED" || "DISABLED",
72
+ * // cloudWatchMonitoringConfiguration: { // CloudWatchMonitoringConfiguration
73
+ * // logGroupName: "STRING_VALUE", // required
74
+ * // logStreamNamePrefix: "STRING_VALUE",
75
+ * // },
76
+ * // s3MonitoringConfiguration: { // S3MonitoringConfiguration
77
+ * // logUri: "STRING_VALUE", // required
78
+ * // },
79
+ * // },
80
+ * // },
81
+ * // serverUrl: "STRING_VALUE",
82
+ * // createdAt: new Date("TIMESTAMP"),
83
+ * // securityGroup: "STRING_VALUE",
84
+ * // subnetIds: [ // SubnetIds
85
+ * // "STRING_VALUE",
86
+ * // ],
87
+ * // stateDetails: "STRING_VALUE",
88
+ * // failureReason: "INTERNAL_ERROR" || "USER_ERROR" || "VALIDATION_ERROR" || "CLUSTER_UNAVAILABLE",
89
+ * // tags: { // TagMap
90
+ * // "<keys>": "STRING_VALUE",
91
+ * // },
92
+ * // },
93
+ * // };
94
+ *
37
95
  * ```
38
96
  *
39
97
  * @param DescribeManagedEndpointCommandInput - {@link DescribeManagedEndpointCommandInput}
@@ -51,6 +109,8 @@ export interface DescribeManagedEndpointCommandOutput extends DescribeManagedEnd
51
109
  * @throws {@link ValidationException} (client fault)
52
110
  * <p>There are invalid parameters in the client request.</p>
53
111
  *
112
+ * @throws {@link EMRContainersServiceException}
113
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
54
114
  *
55
115
  */
56
116
  export declare class DescribeManagedEndpointCommand extends $Command<DescribeManagedEndpointCommandInput, DescribeManagedEndpointCommandOutput, EMRContainersClientResolvedConfig> {
@@ -36,6 +36,28 @@ export interface DescribeVirtualClusterCommandOutput extends DescribeVirtualClus
36
36
  * };
37
37
  * const command = new DescribeVirtualClusterCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // DescribeVirtualClusterResponse
40
+ * // virtualCluster: { // VirtualCluster
41
+ * // id: "STRING_VALUE",
42
+ * // name: "STRING_VALUE",
43
+ * // arn: "STRING_VALUE",
44
+ * // state: "RUNNING" || "TERMINATING" || "TERMINATED" || "ARRESTED",
45
+ * // containerProvider: { // ContainerProvider
46
+ * // type: "EKS", // required
47
+ * // id: "STRING_VALUE", // required
48
+ * // info: { // ContainerInfo Union: only one key present
49
+ * // eksInfo: { // EksInfo
50
+ * // namespace: "STRING_VALUE",
51
+ * // },
52
+ * // },
53
+ * // },
54
+ * // createdAt: new Date("TIMESTAMP"),
55
+ * // tags: { // TagMap
56
+ * // "<keys>": "STRING_VALUE",
57
+ * // },
58
+ * // },
59
+ * // };
60
+ *
39
61
  * ```
40
62
  *
41
63
  * @param DescribeVirtualClusterCommandInput - {@link DescribeVirtualClusterCommandInput}
@@ -53,6 +75,8 @@ export interface DescribeVirtualClusterCommandOutput extends DescribeVirtualClus
53
75
  * @throws {@link ValidationException} (client fault)
54
76
  * <p>There are invalid parameters in the client request.</p>
55
77
  *
78
+ * @throws {@link EMRContainersServiceException}
79
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
56
80
  *
57
81
  */
58
82
  export declare class DescribeVirtualClusterCommand extends $Command<DescribeVirtualClusterCommandInput, DescribeVirtualClusterCommandOutput, EMRContainersClientResolvedConfig> {
@@ -37,6 +37,14 @@ export interface GetManagedEndpointSessionCredentialsCommandOutput extends GetMa
37
37
  * };
38
38
  * const command = new GetManagedEndpointSessionCredentialsCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // GetManagedEndpointSessionCredentialsResponse
41
+ * // id: "STRING_VALUE",
42
+ * // credentials: { // Credentials Union: only one key present
43
+ * // token: "STRING_VALUE",
44
+ * // },
45
+ * // expiresAt: new Date("TIMESTAMP"),
46
+ * // };
47
+ *
40
48
  * ```
41
49
  *
42
50
  * @param GetManagedEndpointSessionCredentialsCommandInput - {@link GetManagedEndpointSessionCredentialsCommandInput}
@@ -57,6 +65,8 @@ export interface GetManagedEndpointSessionCredentialsCommandOutput extends GetMa
57
65
  * @throws {@link ValidationException} (client fault)
58
66
  * <p>There are invalid parameters in the client request.</p>
59
67
  *
68
+ * @throws {@link EMRContainersServiceException}
69
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
60
70
  *
61
71
  */
62
72
  export declare class GetManagedEndpointSessionCredentialsCommand extends $Command<GetManagedEndpointSessionCredentialsCommandInput, GetManagedEndpointSessionCredentialsCommandOutput, EMRContainersClientResolvedConfig> {
@@ -40,6 +40,78 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat
40
40
  * };
41
41
  * const command = new ListJobRunsCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // ListJobRunsResponse
44
+ * // jobRuns: [ // JobRuns
45
+ * // { // JobRun
46
+ * // id: "STRING_VALUE",
47
+ * // name: "STRING_VALUE",
48
+ * // virtualClusterId: "STRING_VALUE",
49
+ * // arn: "STRING_VALUE",
50
+ * // state: "PENDING" || "SUBMITTED" || "RUNNING" || "FAILED" || "CANCELLED" || "CANCEL_PENDING" || "COMPLETED",
51
+ * // clientToken: "STRING_VALUE",
52
+ * // executionRoleArn: "STRING_VALUE",
53
+ * // releaseLabel: "STRING_VALUE",
54
+ * // configurationOverrides: { // ConfigurationOverrides
55
+ * // applicationConfiguration: [ // ConfigurationList
56
+ * // { // Configuration
57
+ * // classification: "STRING_VALUE", // required
58
+ * // properties: { // SensitivePropertiesMap
59
+ * // "<keys>": "STRING_VALUE",
60
+ * // },
61
+ * // configurations: [
62
+ * // {
63
+ * // classification: "STRING_VALUE", // required
64
+ * // properties: {
65
+ * // "<keys>": "STRING_VALUE",
66
+ * // },
67
+ * // configurations: "<ConfigurationList>",
68
+ * // },
69
+ * // ],
70
+ * // },
71
+ * // ],
72
+ * // monitoringConfiguration: { // MonitoringConfiguration
73
+ * // persistentAppUI: "ENABLED" || "DISABLED",
74
+ * // cloudWatchMonitoringConfiguration: { // CloudWatchMonitoringConfiguration
75
+ * // logGroupName: "STRING_VALUE", // required
76
+ * // logStreamNamePrefix: "STRING_VALUE",
77
+ * // },
78
+ * // s3MonitoringConfiguration: { // S3MonitoringConfiguration
79
+ * // logUri: "STRING_VALUE", // required
80
+ * // },
81
+ * // },
82
+ * // },
83
+ * // jobDriver: { // JobDriver
84
+ * // sparkSubmitJobDriver: { // SparkSubmitJobDriver
85
+ * // entryPoint: "STRING_VALUE", // required
86
+ * // entryPointArguments: [ // EntryPointArguments
87
+ * // "STRING_VALUE",
88
+ * // ],
89
+ * // sparkSubmitParameters: "STRING_VALUE",
90
+ * // },
91
+ * // sparkSqlJobDriver: { // SparkSqlJobDriver
92
+ * // entryPoint: "STRING_VALUE",
93
+ * // sparkSqlParameters: "STRING_VALUE",
94
+ * // },
95
+ * // },
96
+ * // createdAt: new Date("TIMESTAMP"),
97
+ * // createdBy: "STRING_VALUE",
98
+ * // finishedAt: new Date("TIMESTAMP"),
99
+ * // stateDetails: "STRING_VALUE",
100
+ * // failureReason: "INTERNAL_ERROR" || "USER_ERROR" || "VALIDATION_ERROR" || "CLUSTER_UNAVAILABLE",
101
+ * // tags: { // TagMap
102
+ * // "<keys>": "STRING_VALUE",
103
+ * // },
104
+ * // retryPolicyConfiguration: { // RetryPolicyConfiguration
105
+ * // maxAttempts: Number("int"), // required
106
+ * // },
107
+ * // retryPolicyExecution: { // RetryPolicyExecution
108
+ * // currentAttemptCount: Number("int"), // required
109
+ * // },
110
+ * // },
111
+ * // ],
112
+ * // nextToken: "STRING_VALUE",
113
+ * // };
114
+ *
43
115
  * ```
44
116
  *
45
117
  * @param ListJobRunsCommandInput - {@link ListJobRunsCommandInput}
@@ -54,6 +126,8 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat
54
126
  * @throws {@link ValidationException} (client fault)
55
127
  * <p>There are invalid parameters in the client request.</p>
56
128
  *
129
+ * @throws {@link EMRContainersServiceException}
130
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
57
131
  *
58
132
  */
59
133
  export declare class ListJobRunsCommand extends $Command<ListJobRunsCommandInput, ListJobRunsCommandOutput, EMRContainersClientResolvedConfig> {
@@ -37,6 +37,79 @@ export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse,
37
37
  * };
38
38
  * const command = new ListJobTemplatesCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListJobTemplatesResponse
41
+ * // templates: [ // JobTemplates
42
+ * // { // JobTemplate
43
+ * // name: "STRING_VALUE",
44
+ * // id: "STRING_VALUE",
45
+ * // arn: "STRING_VALUE",
46
+ * // createdAt: new Date("TIMESTAMP"),
47
+ * // createdBy: "STRING_VALUE",
48
+ * // tags: { // TagMap
49
+ * // "<keys>": "STRING_VALUE",
50
+ * // },
51
+ * // jobTemplateData: { // JobTemplateData
52
+ * // executionRoleArn: "STRING_VALUE", // required
53
+ * // releaseLabel: "STRING_VALUE", // required
54
+ * // configurationOverrides: { // ParametricConfigurationOverrides
55
+ * // applicationConfiguration: [ // ConfigurationList
56
+ * // { // Configuration
57
+ * // classification: "STRING_VALUE", // required
58
+ * // properties: { // SensitivePropertiesMap
59
+ * // "<keys>": "STRING_VALUE",
60
+ * // },
61
+ * // configurations: [
62
+ * // {
63
+ * // classification: "STRING_VALUE", // required
64
+ * // properties: {
65
+ * // "<keys>": "STRING_VALUE",
66
+ * // },
67
+ * // configurations: "<ConfigurationList>",
68
+ * // },
69
+ * // ],
70
+ * // },
71
+ * // ],
72
+ * // monitoringConfiguration: { // ParametricMonitoringConfiguration
73
+ * // persistentAppUI: "STRING_VALUE",
74
+ * // cloudWatchMonitoringConfiguration: { // ParametricCloudWatchMonitoringConfiguration
75
+ * // logGroupName: "STRING_VALUE",
76
+ * // logStreamNamePrefix: "STRING_VALUE",
77
+ * // },
78
+ * // s3MonitoringConfiguration: { // ParametricS3MonitoringConfiguration
79
+ * // logUri: "STRING_VALUE",
80
+ * // },
81
+ * // },
82
+ * // },
83
+ * // jobDriver: { // JobDriver
84
+ * // sparkSubmitJobDriver: { // SparkSubmitJobDriver
85
+ * // entryPoint: "STRING_VALUE", // required
86
+ * // entryPointArguments: [ // EntryPointArguments
87
+ * // "STRING_VALUE",
88
+ * // ],
89
+ * // sparkSubmitParameters: "STRING_VALUE",
90
+ * // },
91
+ * // sparkSqlJobDriver: { // SparkSqlJobDriver
92
+ * // entryPoint: "STRING_VALUE",
93
+ * // sparkSqlParameters: "STRING_VALUE",
94
+ * // },
95
+ * // },
96
+ * // parameterConfiguration: { // TemplateParameterConfigurationMap
97
+ * // "<keys>": { // TemplateParameterConfiguration
98
+ * // type: "NUMBER" || "STRING",
99
+ * // defaultValue: "STRING_VALUE",
100
+ * // },
101
+ * // },
102
+ * // jobTags: {
103
+ * // "<keys>": "STRING_VALUE",
104
+ * // },
105
+ * // },
106
+ * // kmsKeyArn: "STRING_VALUE",
107
+ * // decryptionError: "STRING_VALUE",
108
+ * // },
109
+ * // ],
110
+ * // nextToken: "STRING_VALUE",
111
+ * // };
112
+ *
40
113
  * ```
41
114
  *
42
115
  * @param ListJobTemplatesCommandInput - {@link ListJobTemplatesCommandInput}
@@ -51,6 +124,8 @@ export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse,
51
124
  * @throws {@link ValidationException} (client fault)
52
125
  * <p>There are invalid parameters in the client request.</p>
53
126
  *
127
+ * @throws {@link EMRContainersServiceException}
128
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
54
129
  *
55
130
  */
56
131
  export declare class ListJobTemplatesCommand extends $Command<ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput, EMRContainersClientResolvedConfig> {
@@ -43,6 +43,67 @@ export interface ListManagedEndpointsCommandOutput extends ListManagedEndpointsR
43
43
  * };
44
44
  * const command = new ListManagedEndpointsCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // ListManagedEndpointsResponse
47
+ * // endpoints: [ // Endpoints
48
+ * // { // Endpoint
49
+ * // id: "STRING_VALUE",
50
+ * // name: "STRING_VALUE",
51
+ * // arn: "STRING_VALUE",
52
+ * // virtualClusterId: "STRING_VALUE",
53
+ * // type: "STRING_VALUE",
54
+ * // state: "CREATING" || "ACTIVE" || "TERMINATING" || "TERMINATED" || "TERMINATED_WITH_ERRORS",
55
+ * // releaseLabel: "STRING_VALUE",
56
+ * // executionRoleArn: "STRING_VALUE",
57
+ * // certificateArn: "STRING_VALUE",
58
+ * // certificateAuthority: { // Certificate
59
+ * // certificateArn: "STRING_VALUE",
60
+ * // certificateData: "STRING_VALUE",
61
+ * // },
62
+ * // configurationOverrides: { // ConfigurationOverrides
63
+ * // applicationConfiguration: [ // ConfigurationList
64
+ * // { // Configuration
65
+ * // classification: "STRING_VALUE", // required
66
+ * // properties: { // SensitivePropertiesMap
67
+ * // "<keys>": "STRING_VALUE",
68
+ * // },
69
+ * // configurations: [
70
+ * // {
71
+ * // classification: "STRING_VALUE", // required
72
+ * // properties: {
73
+ * // "<keys>": "STRING_VALUE",
74
+ * // },
75
+ * // configurations: "<ConfigurationList>",
76
+ * // },
77
+ * // ],
78
+ * // },
79
+ * // ],
80
+ * // monitoringConfiguration: { // MonitoringConfiguration
81
+ * // persistentAppUI: "ENABLED" || "DISABLED",
82
+ * // cloudWatchMonitoringConfiguration: { // CloudWatchMonitoringConfiguration
83
+ * // logGroupName: "STRING_VALUE", // required
84
+ * // logStreamNamePrefix: "STRING_VALUE",
85
+ * // },
86
+ * // s3MonitoringConfiguration: { // S3MonitoringConfiguration
87
+ * // logUri: "STRING_VALUE", // required
88
+ * // },
89
+ * // },
90
+ * // },
91
+ * // serverUrl: "STRING_VALUE",
92
+ * // createdAt: new Date("TIMESTAMP"),
93
+ * // securityGroup: "STRING_VALUE",
94
+ * // subnetIds: [ // SubnetIds
95
+ * // "STRING_VALUE",
96
+ * // ],
97
+ * // stateDetails: "STRING_VALUE",
98
+ * // failureReason: "INTERNAL_ERROR" || "USER_ERROR" || "VALIDATION_ERROR" || "CLUSTER_UNAVAILABLE",
99
+ * // tags: { // TagMap
100
+ * // "<keys>": "STRING_VALUE",
101
+ * // },
102
+ * // },
103
+ * // ],
104
+ * // nextToken: "STRING_VALUE",
105
+ * // };
106
+ *
46
107
  * ```
47
108
  *
48
109
  * @param ListManagedEndpointsCommandInput - {@link ListManagedEndpointsCommandInput}
@@ -57,6 +118,8 @@ export interface ListManagedEndpointsCommandOutput extends ListManagedEndpointsR
57
118
  * @throws {@link ValidationException} (client fault)
58
119
  * <p>There are invalid parameters in the client request.</p>
59
120
  *
121
+ * @throws {@link EMRContainersServiceException}
122
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
60
123
  *
61
124
  */
62
125
  export declare class ListManagedEndpointsCommand extends $Command<ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput, EMRContainersClientResolvedConfig> {
@@ -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}
@@ -48,6 +54,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
48
54
  * @throws {@link ValidationException} (client fault)
49
55
  * <p>There are invalid parameters in the client request.</p>
50
56
  *
57
+ * @throws {@link EMRContainersServiceException}
58
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
51
59
  *
52
60
  */
53
61
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EMRContainersClientResolvedConfig> {
@@ -44,6 +44,31 @@ export interface ListVirtualClustersCommandOutput extends ListVirtualClustersRes
44
44
  * };
45
45
  * const command = new ListVirtualClustersCommand(input);
46
46
  * const response = await client.send(command);
47
+ * // { // ListVirtualClustersResponse
48
+ * // virtualClusters: [ // VirtualClusters
49
+ * // { // VirtualCluster
50
+ * // id: "STRING_VALUE",
51
+ * // name: "STRING_VALUE",
52
+ * // arn: "STRING_VALUE",
53
+ * // state: "RUNNING" || "TERMINATING" || "TERMINATED" || "ARRESTED",
54
+ * // containerProvider: { // ContainerProvider
55
+ * // type: "EKS", // required
56
+ * // id: "STRING_VALUE", // required
57
+ * // info: { // ContainerInfo Union: only one key present
58
+ * // eksInfo: { // EksInfo
59
+ * // namespace: "STRING_VALUE",
60
+ * // },
61
+ * // },
62
+ * // },
63
+ * // createdAt: new Date("TIMESTAMP"),
64
+ * // tags: { // TagMap
65
+ * // "<keys>": "STRING_VALUE",
66
+ * // },
67
+ * // },
68
+ * // ],
69
+ * // nextToken: "STRING_VALUE",
70
+ * // };
71
+ *
47
72
  * ```
48
73
  *
49
74
  * @param ListVirtualClustersCommandInput - {@link ListVirtualClustersCommandInput}
@@ -58,6 +83,8 @@ export interface ListVirtualClustersCommandOutput extends ListVirtualClustersRes
58
83
  * @throws {@link ValidationException} (client fault)
59
84
  * <p>There are invalid parameters in the client request.</p>
60
85
  *
86
+ * @throws {@link EMRContainersServiceException}
87
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
61
88
  *
62
89
  */
63
90
  export declare class ListVirtualClustersCommand extends $Command<ListVirtualClustersCommandInput, ListVirtualClustersCommandOutput, EMRContainersClientResolvedConfig> {
@@ -88,6 +88,13 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
88
88
  * };
89
89
  * const command = new StartJobRunCommand(input);
90
90
  * const response = await client.send(command);
91
+ * // { // StartJobRunResponse
92
+ * // id: "STRING_VALUE",
93
+ * // name: "STRING_VALUE",
94
+ * // arn: "STRING_VALUE",
95
+ * // virtualClusterId: "STRING_VALUE",
96
+ * // };
97
+ *
91
98
  * ```
92
99
  *
93
100
  * @param StartJobRunCommandInput - {@link StartJobRunCommandInput}
@@ -105,6 +112,8 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
105
112
  * @throws {@link ValidationException} (client fault)
106
113
  * <p>There are invalid parameters in the client request.</p>
107
114
  *
115
+ * @throws {@link EMRContainersServiceException}
116
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
108
117
  *
109
118
  */
110
119
  export declare class StartJobRunCommand extends $Command<StartJobRunCommandInput, StartJobRunCommandOutput, EMRContainersClientResolvedConfig> {
@@ -41,6 +41,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
41
41
  * };
42
42
  * const command = new TagResourceCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // {};
45
+ *
44
46
  * ```
45
47
  *
46
48
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -58,6 +60,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
58
60
  * @throws {@link ValidationException} (client fault)
59
61
  * <p>There are invalid parameters in the client request.</p>
60
62
  *
63
+ * @throws {@link EMRContainersServiceException}
64
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
61
65
  *
62
66
  */
63
67
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, EMRContainersClientResolvedConfig> {
@@ -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}
@@ -51,6 +53,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
51
53
  * @throws {@link ValidationException} (client fault)
52
54
  * <p>There are invalid parameters in the client request.</p>
53
55
  *
56
+ * @throws {@link EMRContainersServiceException}
57
+ * <p>Base exception class for all service exceptions from EMRContainers service.</p>
54
58
  *
55
59
  */
56
60
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, EMRContainersClientResolvedConfig> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-emr-containers",
3
3
  "description": "AWS SDK for JavaScript Emr Containers Client for Node.js, Browser and React Native",
4
- "version": "3.325.0",
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,9 +21,9 @@
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.325.0",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
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",