@aws-sdk/client-emr-serverless 3.128.0 → 3.137.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 +27 -0
- package/dist-cjs/commands/CancelJobRunCommand.js +2 -2
- package/dist-cjs/commands/CreateApplicationCommand.js +2 -2
- package/dist-cjs/commands/DeleteApplicationCommand.js +2 -2
- package/dist-cjs/commands/GetApplicationCommand.js +2 -2
- package/dist-cjs/commands/GetJobRunCommand.js +2 -2
- package/dist-cjs/commands/ListApplicationsCommand.js +2 -2
- package/dist-cjs/commands/ListJobRunsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/StartApplicationCommand.js +2 -2
- package/dist-cjs/commands/StartJobRunCommand.js +2 -2
- package/dist-cjs/commands/StopApplicationCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateApplicationCommand.js +2 -2
- package/dist-cjs/models/models_0.js +217 -308
- package/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/dist-es/commands/CancelJobRunCommand.js +3 -3
- package/dist-es/commands/CreateApplicationCommand.js +3 -3
- package/dist-es/commands/DeleteApplicationCommand.js +3 -3
- package/dist-es/commands/GetApplicationCommand.js +3 -3
- package/dist-es/commands/GetJobRunCommand.js +3 -3
- package/dist-es/commands/ListApplicationsCommand.js +3 -3
- package/dist-es/commands/ListJobRunsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/StartApplicationCommand.js +3 -3
- package/dist-es/commands/StartJobRunCommand.js +3 -3
- package/dist-es/commands/StopApplicationCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateApplicationCommand.js +3 -3
- package/dist-es/models/models_0.js +63 -201
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/models/models_0.d.ts +188 -280
- package/dist-types/ts3.4/models/models_0.d.ts +94 -186
- package/package.json +9 -9
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetApplicationRequestFilterSensitiveLog, GetApplicationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetApplicationCommand, serializeAws_restJson1GetApplicationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetApplicationCommand = (function (_super) {
|
|
7
7
|
__extends(GetApplicationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetApplicationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetApplicationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetApplicationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetJobRunRequestFilterSensitiveLog, GetJobRunResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetJobRunCommand, serializeAws_restJson1GetJobRunCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetJobRunCommand = (function (_super) {
|
|
7
7
|
__extends(GetJobRunCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetJobRunCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetJobRunRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetJobRunResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListApplicationsRequestFilterSensitiveLog, ListApplicationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListApplicationsCommand, serializeAws_restJson1ListApplicationsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListApplicationsCommand = (function (_super) {
|
|
7
7
|
__extends(ListApplicationsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListApplicationsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListApplicationsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListApplicationsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListJobRunsRequestFilterSensitiveLog, ListJobRunsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListJobRunsCommand, serializeAws_restJson1ListJobRunsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListJobRunsCommand = (function (_super) {
|
|
7
7
|
__extends(ListJobRunsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListJobRunsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListJobRunsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListJobRunsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListTagsForResourceCommand = (function (_super) {
|
|
7
7
|
__extends(ListTagsForResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListTagsForResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListTagsForResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListTagsForResourceResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { StartApplicationRequestFilterSensitiveLog, StartApplicationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1StartApplicationCommand, serializeAws_restJson1StartApplicationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var StartApplicationCommand = (function (_super) {
|
|
7
7
|
__extends(StartApplicationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StartApplicationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StartApplicationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StartApplicationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { StartJobRunRequestFilterSensitiveLog, StartJobRunResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1StartJobRunCommand, serializeAws_restJson1StartJobRunCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var StartJobRunCommand = (function (_super) {
|
|
7
7
|
__extends(StartJobRunCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StartJobRunCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StartJobRunRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StartJobRunResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { StopApplicationRequestFilterSensitiveLog, StopApplicationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1StopApplicationCommand, serializeAws_restJson1StopApplicationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var StopApplicationCommand = (function (_super) {
|
|
7
7
|
__extends(StopApplicationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StopApplicationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StopApplicationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StopApplicationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var TagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(TagResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var TagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: TagResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: TagResourceResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UntagResourceRequestFilterSensitiveLog, UntagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UntagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(UntagResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UntagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UntagResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UntagResourceResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateApplicationRequestFilterSensitiveLog, UpdateApplicationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateApplicationCommand, serializeAws_restJson1UpdateApplicationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateApplicationCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateApplicationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateApplicationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateApplicationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateApplicationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,30 +1,6 @@
|
|
|
1
1
|
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { EMRServerlessServiceException as __BaseException } from "./EMRServerlessServiceException";
|
|
4
|
-
export var AutoStartConfig;
|
|
5
|
-
(function (AutoStartConfig) {
|
|
6
|
-
AutoStartConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
7
|
-
})(AutoStartConfig || (AutoStartConfig = {}));
|
|
8
|
-
export var AutoStopConfig;
|
|
9
|
-
(function (AutoStopConfig) {
|
|
10
|
-
AutoStopConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
11
|
-
})(AutoStopConfig || (AutoStopConfig = {}));
|
|
12
|
-
export var WorkerResourceConfig;
|
|
13
|
-
(function (WorkerResourceConfig) {
|
|
14
|
-
WorkerResourceConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
15
|
-
})(WorkerResourceConfig || (WorkerResourceConfig = {}));
|
|
16
|
-
export var InitialCapacityConfig;
|
|
17
|
-
(function (InitialCapacityConfig) {
|
|
18
|
-
InitialCapacityConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
19
|
-
})(InitialCapacityConfig || (InitialCapacityConfig = {}));
|
|
20
|
-
export var MaximumAllowedResources;
|
|
21
|
-
(function (MaximumAllowedResources) {
|
|
22
|
-
MaximumAllowedResources.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
23
|
-
})(MaximumAllowedResources || (MaximumAllowedResources = {}));
|
|
24
|
-
export var NetworkConfiguration;
|
|
25
|
-
(function (NetworkConfiguration) {
|
|
26
|
-
NetworkConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
27
|
-
})(NetworkConfiguration || (NetworkConfiguration = {}));
|
|
28
4
|
export var ApplicationState;
|
|
29
5
|
(function (ApplicationState) {
|
|
30
6
|
ApplicationState["CREATED"] = "CREATED";
|
|
@@ -35,14 +11,6 @@ export var ApplicationState;
|
|
|
35
11
|
ApplicationState["STOPPING"] = "STOPPING";
|
|
36
12
|
ApplicationState["TERMINATED"] = "TERMINATED";
|
|
37
13
|
})(ApplicationState || (ApplicationState = {}));
|
|
38
|
-
export var Application;
|
|
39
|
-
(function (Application) {
|
|
40
|
-
Application.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
41
|
-
})(Application || (Application = {}));
|
|
42
|
-
export var ApplicationSummary;
|
|
43
|
-
(function (ApplicationSummary) {
|
|
44
|
-
ApplicationSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
45
|
-
})(ApplicationSummary || (ApplicationSummary = {}));
|
|
46
14
|
var ConflictException = (function (_super) {
|
|
47
15
|
__extends(ConflictException, _super);
|
|
48
16
|
function ConflictException(opts) {
|
|
@@ -55,14 +23,6 @@ var ConflictException = (function (_super) {
|
|
|
55
23
|
return ConflictException;
|
|
56
24
|
}(__BaseException));
|
|
57
25
|
export { ConflictException };
|
|
58
|
-
export var CreateApplicationRequest;
|
|
59
|
-
(function (CreateApplicationRequest) {
|
|
60
|
-
CreateApplicationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
61
|
-
})(CreateApplicationRequest || (CreateApplicationRequest = {}));
|
|
62
|
-
export var CreateApplicationResponse;
|
|
63
|
-
(function (CreateApplicationResponse) {
|
|
64
|
-
CreateApplicationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
65
|
-
})(CreateApplicationResponse || (CreateApplicationResponse = {}));
|
|
66
26
|
var InternalServerException = (function (_super) {
|
|
67
27
|
__extends(InternalServerException, _super);
|
|
68
28
|
function InternalServerException(opts) {
|
|
@@ -87,14 +47,6 @@ var ValidationException = (function (_super) {
|
|
|
87
47
|
return ValidationException;
|
|
88
48
|
}(__BaseException));
|
|
89
49
|
export { ValidationException };
|
|
90
|
-
export var DeleteApplicationRequest;
|
|
91
|
-
(function (DeleteApplicationRequest) {
|
|
92
|
-
DeleteApplicationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
93
|
-
})(DeleteApplicationRequest || (DeleteApplicationRequest = {}));
|
|
94
|
-
export var DeleteApplicationResponse;
|
|
95
|
-
(function (DeleteApplicationResponse) {
|
|
96
|
-
DeleteApplicationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
97
|
-
})(DeleteApplicationResponse || (DeleteApplicationResponse = {}));
|
|
98
50
|
var ResourceNotFoundException = (function (_super) {
|
|
99
51
|
__extends(ResourceNotFoundException, _super);
|
|
100
52
|
function ResourceNotFoundException(opts) {
|
|
@@ -107,22 +59,6 @@ var ResourceNotFoundException = (function (_super) {
|
|
|
107
59
|
return ResourceNotFoundException;
|
|
108
60
|
}(__BaseException));
|
|
109
61
|
export { ResourceNotFoundException };
|
|
110
|
-
export var GetApplicationRequest;
|
|
111
|
-
(function (GetApplicationRequest) {
|
|
112
|
-
GetApplicationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
113
|
-
})(GetApplicationRequest || (GetApplicationRequest = {}));
|
|
114
|
-
export var GetApplicationResponse;
|
|
115
|
-
(function (GetApplicationResponse) {
|
|
116
|
-
GetApplicationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
117
|
-
})(GetApplicationResponse || (GetApplicationResponse = {}));
|
|
118
|
-
export var ListApplicationsRequest;
|
|
119
|
-
(function (ListApplicationsRequest) {
|
|
120
|
-
ListApplicationsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
121
|
-
})(ListApplicationsRequest || (ListApplicationsRequest = {}));
|
|
122
|
-
export var ListApplicationsResponse;
|
|
123
|
-
(function (ListApplicationsResponse) {
|
|
124
|
-
ListApplicationsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
125
|
-
})(ListApplicationsResponse || (ListApplicationsResponse = {}));
|
|
126
62
|
var ServiceQuotaExceededException = (function (_super) {
|
|
127
63
|
__extends(ServiceQuotaExceededException, _super);
|
|
128
64
|
function ServiceQuotaExceededException(opts) {
|
|
@@ -135,62 +71,6 @@ var ServiceQuotaExceededException = (function (_super) {
|
|
|
135
71
|
return ServiceQuotaExceededException;
|
|
136
72
|
}(__BaseException));
|
|
137
73
|
export { ServiceQuotaExceededException };
|
|
138
|
-
export var StartApplicationRequest;
|
|
139
|
-
(function (StartApplicationRequest) {
|
|
140
|
-
StartApplicationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
141
|
-
})(StartApplicationRequest || (StartApplicationRequest = {}));
|
|
142
|
-
export var StartApplicationResponse;
|
|
143
|
-
(function (StartApplicationResponse) {
|
|
144
|
-
StartApplicationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
145
|
-
})(StartApplicationResponse || (StartApplicationResponse = {}));
|
|
146
|
-
export var StopApplicationRequest;
|
|
147
|
-
(function (StopApplicationRequest) {
|
|
148
|
-
StopApplicationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
149
|
-
})(StopApplicationRequest || (StopApplicationRequest = {}));
|
|
150
|
-
export var StopApplicationResponse;
|
|
151
|
-
(function (StopApplicationResponse) {
|
|
152
|
-
StopApplicationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
153
|
-
})(StopApplicationResponse || (StopApplicationResponse = {}));
|
|
154
|
-
export var UpdateApplicationRequest;
|
|
155
|
-
(function (UpdateApplicationRequest) {
|
|
156
|
-
UpdateApplicationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
157
|
-
})(UpdateApplicationRequest || (UpdateApplicationRequest = {}));
|
|
158
|
-
export var UpdateApplicationResponse;
|
|
159
|
-
(function (UpdateApplicationResponse) {
|
|
160
|
-
UpdateApplicationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
161
|
-
})(UpdateApplicationResponse || (UpdateApplicationResponse = {}));
|
|
162
|
-
export var CancelJobRunRequest;
|
|
163
|
-
(function (CancelJobRunRequest) {
|
|
164
|
-
CancelJobRunRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
165
|
-
})(CancelJobRunRequest || (CancelJobRunRequest = {}));
|
|
166
|
-
export var CancelJobRunResponse;
|
|
167
|
-
(function (CancelJobRunResponse) {
|
|
168
|
-
CancelJobRunResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
169
|
-
})(CancelJobRunResponse || (CancelJobRunResponse = {}));
|
|
170
|
-
export var GetJobRunRequest;
|
|
171
|
-
(function (GetJobRunRequest) {
|
|
172
|
-
GetJobRunRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
173
|
-
})(GetJobRunRequest || (GetJobRunRequest = {}));
|
|
174
|
-
export var ManagedPersistenceMonitoringConfiguration;
|
|
175
|
-
(function (ManagedPersistenceMonitoringConfiguration) {
|
|
176
|
-
ManagedPersistenceMonitoringConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
177
|
-
})(ManagedPersistenceMonitoringConfiguration || (ManagedPersistenceMonitoringConfiguration = {}));
|
|
178
|
-
export var S3MonitoringConfiguration;
|
|
179
|
-
(function (S3MonitoringConfiguration) {
|
|
180
|
-
S3MonitoringConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
181
|
-
})(S3MonitoringConfiguration || (S3MonitoringConfiguration = {}));
|
|
182
|
-
export var MonitoringConfiguration;
|
|
183
|
-
(function (MonitoringConfiguration) {
|
|
184
|
-
MonitoringConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
185
|
-
})(MonitoringConfiguration || (MonitoringConfiguration = {}));
|
|
186
|
-
export var Hive;
|
|
187
|
-
(function (Hive) {
|
|
188
|
-
Hive.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.query && { query: SENSITIVE_STRING })), (obj.initQueryFile && { initQueryFile: SENSITIVE_STRING })), (obj.parameters && { parameters: SENSITIVE_STRING }))); };
|
|
189
|
-
})(Hive || (Hive = {}));
|
|
190
|
-
export var SparkSubmit;
|
|
191
|
-
(function (SparkSubmit) {
|
|
192
|
-
SparkSubmit.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.entryPoint && { entryPoint: SENSITIVE_STRING })), (obj.entryPointArguments && { entryPointArguments: SENSITIVE_STRING })), (obj.sparkSubmitParameters && { sparkSubmitParameters: SENSITIVE_STRING }))); };
|
|
193
|
-
})(SparkSubmit || (SparkSubmit = {}));
|
|
194
74
|
export var JobDriver;
|
|
195
75
|
(function (JobDriver) {
|
|
196
76
|
JobDriver.visit = function (value, visitor) {
|
|
@@ -200,15 +80,6 @@ export var JobDriver;
|
|
|
200
80
|
return visitor.hive(value.hive);
|
|
201
81
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
202
82
|
};
|
|
203
|
-
JobDriver.filterSensitiveLog = function (obj) {
|
|
204
|
-
var _a;
|
|
205
|
-
if (obj.sparkSubmit !== undefined)
|
|
206
|
-
return { sparkSubmit: SparkSubmit.filterSensitiveLog(obj.sparkSubmit) };
|
|
207
|
-
if (obj.hive !== undefined)
|
|
208
|
-
return { hive: Hive.filterSensitiveLog(obj.hive) };
|
|
209
|
-
if (obj.$unknown !== undefined)
|
|
210
|
-
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
211
|
-
};
|
|
212
83
|
})(JobDriver || (JobDriver = {}));
|
|
213
84
|
export var JobRunState;
|
|
214
85
|
(function (JobRunState) {
|
|
@@ -221,75 +92,66 @@ export var JobRunState;
|
|
|
221
92
|
JobRunState["SUBMITTED"] = "SUBMITTED";
|
|
222
93
|
JobRunState["SUCCESS"] = "SUCCESS";
|
|
223
94
|
})(JobRunState || (JobRunState = {}));
|
|
224
|
-
export var
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
export var
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
export var
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
export var
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
export var
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
export var
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
export var
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
export var
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
export var
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
export var
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
export var
|
|
275
|
-
(function (
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
})
|
|
280
|
-
export var
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
})
|
|
286
|
-
export var
|
|
287
|
-
(function (StartJobRunRequest) {
|
|
288
|
-
StartJobRunRequest.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.jobDriver && { jobDriver: JobDriver.filterSensitiveLog(obj.jobDriver) })), (obj.configurationOverrides && {
|
|
289
|
-
configurationOverrides: ConfigurationOverrides.filterSensitiveLog(obj.configurationOverrides),
|
|
290
|
-
}))); };
|
|
291
|
-
})(StartJobRunRequest || (StartJobRunRequest = {}));
|
|
292
|
-
export var GetJobRunResponse;
|
|
293
|
-
(function (GetJobRunResponse) {
|
|
294
|
-
GetJobRunResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.jobRun && { jobRun: JobRun.filterSensitiveLog(obj.jobRun) }))); };
|
|
295
|
-
})(GetJobRunResponse || (GetJobRunResponse = {}));
|
|
95
|
+
export var AutoStartConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
96
|
+
export var AutoStopConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
97
|
+
export var WorkerResourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
98
|
+
export var InitialCapacityConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
99
|
+
export var MaximumAllowedResourcesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
100
|
+
export var NetworkConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
101
|
+
export var ApplicationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
102
|
+
export var ApplicationSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
103
|
+
export var CreateApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
104
|
+
export var CreateApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
105
|
+
export var DeleteApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
106
|
+
export var DeleteApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
107
|
+
export var GetApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
108
|
+
export var GetApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
109
|
+
export var ListApplicationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
110
|
+
export var ListApplicationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
111
|
+
export var StartApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
112
|
+
export var StartApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
113
|
+
export var StopApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
114
|
+
export var StopApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
115
|
+
export var UpdateApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
116
|
+
export var UpdateApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
117
|
+
export var CancelJobRunRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
118
|
+
export var CancelJobRunResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
119
|
+
export var GetJobRunRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
120
|
+
export var ManagedPersistenceMonitoringConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
121
|
+
export var S3MonitoringConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
122
|
+
export var MonitoringConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
123
|
+
export var HiveFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.query && { query: SENSITIVE_STRING })), (obj.initQueryFile && { initQueryFile: SENSITIVE_STRING })), (obj.parameters && { parameters: SENSITIVE_STRING }))); };
|
|
124
|
+
export var SparkSubmitFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.entryPoint && { entryPoint: SENSITIVE_STRING })), (obj.entryPointArguments && { entryPointArguments: SENSITIVE_STRING })), (obj.sparkSubmitParameters && { sparkSubmitParameters: SENSITIVE_STRING }))); };
|
|
125
|
+
export var JobDriverFilterSensitiveLog = function (obj) {
|
|
126
|
+
var _a;
|
|
127
|
+
if (obj.sparkSubmit !== undefined)
|
|
128
|
+
return { sparkSubmit: SparkSubmitFilterSensitiveLog(obj.sparkSubmit) };
|
|
129
|
+
if (obj.hive !== undefined)
|
|
130
|
+
return { hive: HiveFilterSensitiveLog(obj.hive) };
|
|
131
|
+
if (obj.$unknown !== undefined)
|
|
132
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
133
|
+
};
|
|
134
|
+
export var TotalResourceUtilizationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
135
|
+
export var ListJobRunsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
136
|
+
export var JobRunSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
137
|
+
export var ListJobRunsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
138
|
+
export var StartJobRunResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
139
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
140
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
141
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
142
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
143
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
144
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
145
|
+
export var ConfigurationFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.properties && { properties: SENSITIVE_STRING })), (obj.configurations && {
|
|
146
|
+
configurations: obj.configurations.map(function (item) { return ConfigurationFilterSensitiveLog(item); }),
|
|
147
|
+
}))); };
|
|
148
|
+
export var ConfigurationOverridesFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.applicationConfiguration && {
|
|
149
|
+
applicationConfiguration: obj.applicationConfiguration.map(function (item) { return ConfigurationFilterSensitiveLog(item); }),
|
|
150
|
+
}))); };
|
|
151
|
+
export var JobRunFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.configurationOverrides && {
|
|
152
|
+
configurationOverrides: ConfigurationOverridesFilterSensitiveLog(obj.configurationOverrides),
|
|
153
|
+
})), (obj.jobDriver && { jobDriver: JobDriverFilterSensitiveLog(obj.jobDriver) }))); };
|
|
154
|
+
export var StartJobRunRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.jobDriver && { jobDriver: JobDriverFilterSensitiveLog(obj.jobDriver) })), (obj.configurationOverrides && {
|
|
155
|
+
configurationOverrides: ConfigurationOverridesFilterSensitiveLog(obj.configurationOverrides),
|
|
156
|
+
}))); };
|
|
157
|
+
export var GetJobRunResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.jobRun && { jobRun: JobRunFilterSensitiveLog(obj.jobRun) }))); };
|
|
@@ -1934,6 +1934,9 @@ var loadRestJsonErrorCode = function (output, data) {
|
|
|
1934
1934
|
var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };
|
|
1935
1935
|
var sanitizeErrorCode = function (rawValue) {
|
|
1936
1936
|
var cleanValue = rawValue;
|
|
1937
|
+
if (typeof cleanValue === "number") {
|
|
1938
|
+
cleanValue = cleanValue.toString();
|
|
1939
|
+
}
|
|
1937
1940
|
if (cleanValue.indexOf(":") >= 0) {
|
|
1938
1941
|
cleanValue = cleanValue.split(":")[0];
|
|
1939
1942
|
}
|