@aws-sdk/client-emr-containers 3.52.0 → 3.53.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/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/EMRContainersServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +42 -1
- package/dist-cjs/protocols/Aws_restJson1.js +130 -411
- package/dist-es/index.js +1 -0
- package/dist-es/models/EMRContainersServiceException.js +12 -0
- package/dist-es/models/models_0.js +38 -1
- package/dist-es/protocols/Aws_restJson1.js +285 -476
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/EMRContainersServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +23 -13
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/EMRContainersServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -13
- package/package.json +25 -25
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-emr-containers
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EMRContainersServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./EMRContainers"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./EMRContainersClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var EMRContainersServiceException_1 = require("./models/EMRContainersServiceException");
|
|
11
|
+
Object.defineProperty(exports, "EMRContainersServiceException", { enumerable: true, get: function () { return EMRContainersServiceException_1.EMRContainersServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EMRContainersServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class EMRContainersServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, EMRContainersServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.EMRContainersServiceException = EMRContainersServiceException;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.DescribeJobRunResponse = exports.StartJobRunRequest = exports.JobRun = exports.Endpoint = exports.CreateManagedEndpointRequest = exports.ConfigurationOverrides = exports.Configuration = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.StartJobRunResponse = exports.ListVirtualClustersResponse = exports.ListVirtualClustersRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListManagedEndpointsRequest = exports.ListJobRunsRequest = exports.DescribeVirtualClusterResponse = exports.VirtualCluster = exports.VirtualClusterState = exports.DescribeVirtualClusterRequest = exports.EndpointState = exports.Certificate = exports.DescribeManagedEndpointRequest = exports.JobRunState = exports.JobDriver = exports.SparkSubmitJobDriver = exports.FailureReason = exports.DescribeJobRunRequest = exports.DeleteVirtualClusterResponse = exports.DeleteVirtualClusterRequest = exports.DeleteManagedEndpointResponse = exports.DeleteManagedEndpointRequest = exports.CreateVirtualClusterResponse = exports.CreateVirtualClusterRequest = exports.ContainerProvider = exports.ContainerProviderType = exports.ContainerInfo = exports.EksInfo = exports.ResourceNotFoundException = exports.CreateManagedEndpointResponse = exports.MonitoringConfiguration = exports.S3MonitoringConfiguration = exports.PersistentAppUI = exports.CloudWatchMonitoringConfiguration = exports.ValidationException = exports.InternalServerException = exports.CancelJobRunResponse = exports.CancelJobRunRequest = void 0;
|
|
4
|
+
exports.ListManagedEndpointsResponse = exports.ListJobRunsResponse = exports.DescribeManagedEndpointResponse = void 0;
|
|
4
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const EMRContainersServiceException_1 = require("./EMRContainersServiceException");
|
|
5
7
|
var CancelJobRunRequest;
|
|
6
8
|
(function (CancelJobRunRequest) {
|
|
7
9
|
CancelJobRunRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -14,6 +16,32 @@ var CancelJobRunResponse;
|
|
|
14
16
|
...obj,
|
|
15
17
|
});
|
|
16
18
|
})(CancelJobRunResponse = exports.CancelJobRunResponse || (exports.CancelJobRunResponse = {}));
|
|
19
|
+
class InternalServerException extends EMRContainersServiceException_1.EMRContainersServiceException {
|
|
20
|
+
constructor(opts) {
|
|
21
|
+
super({
|
|
22
|
+
name: "InternalServerException",
|
|
23
|
+
$fault: "server",
|
|
24
|
+
...opts,
|
|
25
|
+
});
|
|
26
|
+
this.name = "InternalServerException";
|
|
27
|
+
this.$fault = "server";
|
|
28
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
exports.InternalServerException = InternalServerException;
|
|
32
|
+
class ValidationException extends EMRContainersServiceException_1.EMRContainersServiceException {
|
|
33
|
+
constructor(opts) {
|
|
34
|
+
super({
|
|
35
|
+
name: "ValidationException",
|
|
36
|
+
$fault: "client",
|
|
37
|
+
...opts,
|
|
38
|
+
});
|
|
39
|
+
this.name = "ValidationException";
|
|
40
|
+
this.$fault = "client";
|
|
41
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
exports.ValidationException = ValidationException;
|
|
17
45
|
var CloudWatchMonitoringConfiguration;
|
|
18
46
|
(function (CloudWatchMonitoringConfiguration) {
|
|
19
47
|
CloudWatchMonitoringConfiguration.filterSensitiveLog = (obj) => ({
|
|
@@ -43,6 +71,19 @@ var CreateManagedEndpointResponse;
|
|
|
43
71
|
...obj,
|
|
44
72
|
});
|
|
45
73
|
})(CreateManagedEndpointResponse = exports.CreateManagedEndpointResponse || (exports.CreateManagedEndpointResponse = {}));
|
|
74
|
+
class ResourceNotFoundException extends EMRContainersServiceException_1.EMRContainersServiceException {
|
|
75
|
+
constructor(opts) {
|
|
76
|
+
super({
|
|
77
|
+
name: "ResourceNotFoundException",
|
|
78
|
+
$fault: "client",
|
|
79
|
+
...opts,
|
|
80
|
+
});
|
|
81
|
+
this.name = "ResourceNotFoundException";
|
|
82
|
+
this.$fault = "client";
|
|
83
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
46
87
|
var EksInfo;
|
|
47
88
|
(function (EksInfo) {
|
|
48
89
|
EksInfo.filterSensitiveLog = (obj) => ({
|