@aws-sdk/client-sagemaker-edge 3.183.0 → 3.186.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 +19 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/SagemakerEdge.js +21 -14
- package/dist-es/SagemakerEdgeClient.js +28 -22
- package/dist-es/commands/GetDeploymentsCommand.js +28 -21
- package/dist-es/commands/GetDeviceRegistrationCommand.js +28 -21
- package/dist-es/commands/SendHeartbeatCommand.js +29 -22
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/SagemakerEdgeServiceException.js +10 -5
- package/dist-es/models/models_0.js +25 -48
- package/dist-es/protocols/Aws_restJson1.js +322 -258
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.186.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.185.0...v3.186.0) (2022-10-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-sagemaker-edge
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.185.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.184.0...v3.185.0) (2022-10-05)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **codegen:** add deser check for x-amz-request-id ([#4015](https://github.com/aws/aws-sdk-js-v3/issues/4015)) ([6ff07bd](https://github.com/aws/aws-sdk-js-v3/commit/6ff07bd7e72bd56725f318013ac1d6d0fbbcdd9a))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [3.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @aws-sdk/client-sagemaker-edge
|
|
@@ -301,10 +301,10 @@ const deserializeAws_restJson1EdgeDeployments = (output, context) => {
|
|
|
301
301
|
return retVal;
|
|
302
302
|
};
|
|
303
303
|
const deserializeMetadata = (output) => {
|
|
304
|
-
var _a;
|
|
304
|
+
var _a, _b;
|
|
305
305
|
return ({
|
|
306
306
|
httpStatusCode: output.statusCode,
|
|
307
|
-
requestId: (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"],
|
|
307
|
+
requestId: (_b = (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"]) !== null && _b !== void 0 ? _b : output.headers["x-amz-request-id"],
|
|
308
308
|
extendedRequestId: output.headers["x-amz-id-2"],
|
|
309
309
|
cfId: output.headers["x-amz-cf-id"],
|
|
310
310
|
});
|
package/dist-es/SagemakerEdge.js
CHANGED
|
@@ -1,48 +1,55 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { GetDeploymentsCommand, } from "./commands/GetDeploymentsCommand";
|
|
2
3
|
import { GetDeviceRegistrationCommand, } from "./commands/GetDeviceRegistrationCommand";
|
|
3
4
|
import { SendHeartbeatCommand, } from "./commands/SendHeartbeatCommand";
|
|
4
5
|
import { SagemakerEdgeClient } from "./SagemakerEdgeClient";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
var SagemakerEdge = (function (_super) {
|
|
7
|
+
__extends(SagemakerEdge, _super);
|
|
8
|
+
function SagemakerEdge() {
|
|
9
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
10
|
+
}
|
|
11
|
+
SagemakerEdge.prototype.getDeployments = function (args, optionsOrCb, cb) {
|
|
12
|
+
var command = new GetDeploymentsCommand(args);
|
|
8
13
|
if (typeof optionsOrCb === "function") {
|
|
9
14
|
this.send(command, optionsOrCb);
|
|
10
15
|
}
|
|
11
16
|
else if (typeof cb === "function") {
|
|
12
17
|
if (typeof optionsOrCb !== "object")
|
|
13
|
-
throw new Error(
|
|
18
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
14
19
|
this.send(command, optionsOrCb || {}, cb);
|
|
15
20
|
}
|
|
16
21
|
else {
|
|
17
22
|
return this.send(command, optionsOrCb);
|
|
18
23
|
}
|
|
19
|
-
}
|
|
20
|
-
getDeviceRegistration(args, optionsOrCb, cb) {
|
|
21
|
-
|
|
24
|
+
};
|
|
25
|
+
SagemakerEdge.prototype.getDeviceRegistration = function (args, optionsOrCb, cb) {
|
|
26
|
+
var command = new GetDeviceRegistrationCommand(args);
|
|
22
27
|
if (typeof optionsOrCb === "function") {
|
|
23
28
|
this.send(command, optionsOrCb);
|
|
24
29
|
}
|
|
25
30
|
else if (typeof cb === "function") {
|
|
26
31
|
if (typeof optionsOrCb !== "object")
|
|
27
|
-
throw new Error(
|
|
32
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
28
33
|
this.send(command, optionsOrCb || {}, cb);
|
|
29
34
|
}
|
|
30
35
|
else {
|
|
31
36
|
return this.send(command, optionsOrCb);
|
|
32
37
|
}
|
|
33
|
-
}
|
|
34
|
-
sendHeartbeat(args, optionsOrCb, cb) {
|
|
35
|
-
|
|
38
|
+
};
|
|
39
|
+
SagemakerEdge.prototype.sendHeartbeat = function (args, optionsOrCb, cb) {
|
|
40
|
+
var command = new SendHeartbeatCommand(args);
|
|
36
41
|
if (typeof optionsOrCb === "function") {
|
|
37
42
|
this.send(command, optionsOrCb);
|
|
38
43
|
}
|
|
39
44
|
else if (typeof cb === "function") {
|
|
40
45
|
if (typeof optionsOrCb !== "object")
|
|
41
|
-
throw new Error(
|
|
46
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
42
47
|
this.send(command, optionsOrCb || {}, cb);
|
|
43
48
|
}
|
|
44
49
|
else {
|
|
45
50
|
return this.send(command, optionsOrCb);
|
|
46
51
|
}
|
|
47
|
-
}
|
|
48
|
-
|
|
52
|
+
};
|
|
53
|
+
return SagemakerEdge;
|
|
54
|
+
}(SagemakerEdgeClient));
|
|
55
|
+
export { SagemakerEdge };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
|
|
2
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
3
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
@@ -8,26 +9,31 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
|
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
9
10
|
import { Client as __Client, } from "@aws-sdk/smithy-client";
|
|
10
11
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
12
|
+
var SagemakerEdgeClient = (function (_super) {
|
|
13
|
+
__extends(SagemakerEdgeClient, _super);
|
|
14
|
+
function SagemakerEdgeClient(configuration) {
|
|
15
|
+
var _this = this;
|
|
16
|
+
var _config_0 = __getRuntimeConfig(configuration);
|
|
17
|
+
var _config_1 = resolveRegionConfig(_config_0);
|
|
18
|
+
var _config_2 = resolveEndpointsConfig(_config_1);
|
|
19
|
+
var _config_3 = resolveRetryConfig(_config_2);
|
|
20
|
+
var _config_4 = resolveHostHeaderConfig(_config_3);
|
|
21
|
+
var _config_5 = resolveAwsAuthConfig(_config_4);
|
|
22
|
+
var _config_6 = resolveUserAgentConfig(_config_5);
|
|
23
|
+
_this = _super.call(this, _config_6) || this;
|
|
24
|
+
_this.config = _config_6;
|
|
25
|
+
_this.middlewareStack.use(getRetryPlugin(_this.config));
|
|
26
|
+
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
27
|
+
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
28
|
+
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
30
|
+
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
31
|
+
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
32
|
+
return _this;
|
|
29
33
|
}
|
|
30
|
-
destroy() {
|
|
31
|
-
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
+
SagemakerEdgeClient.prototype.destroy = function () {
|
|
35
|
+
_super.prototype.destroy.call(this);
|
|
36
|
+
};
|
|
37
|
+
return SagemakerEdgeClient;
|
|
38
|
+
}(__Client));
|
|
39
|
+
export { SagemakerEdgeClient };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { GetDeploymentsRequestFilterSensitiveLog, GetDeploymentsResultFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1GetDeploymentsCommand, serializeAws_restJson1GetDeploymentsCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var GetDeploymentsCommand = (function (_super) {
|
|
7
|
+
__extends(GetDeploymentsCommand, _super);
|
|
8
|
+
function GetDeploymentsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
GetDeploymentsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SagemakerEdgeClient";
|
|
18
|
+
var commandName = "GetDeploymentsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: GetDeploymentsRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: GetDeploymentsResultFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
GetDeploymentsCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1GetDeploymentsCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
GetDeploymentsCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1GetDeploymentsCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return GetDeploymentsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { GetDeploymentsCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { GetDeviceRegistrationRequestFilterSensitiveLog, GetDeviceRegistrationResultFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1GetDeviceRegistrationCommand, serializeAws_restJson1GetDeviceRegistrationCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var GetDeviceRegistrationCommand = (function (_super) {
|
|
7
|
+
__extends(GetDeviceRegistrationCommand, _super);
|
|
8
|
+
function GetDeviceRegistrationCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
GetDeviceRegistrationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SagemakerEdgeClient";
|
|
18
|
+
var commandName = "GetDeviceRegistrationCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: GetDeviceRegistrationRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: GetDeviceRegistrationResultFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
GetDeviceRegistrationCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1GetDeviceRegistrationCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
GetDeviceRegistrationCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1GetDeviceRegistrationCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return GetDeviceRegistrationCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { GetDeviceRegistrationCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { SendHeartbeatRequestFilterSensitiveLog } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1SendHeartbeatCommand, serializeAws_restJson1SendHeartbeatCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var SendHeartbeatCommand = (function (_super) {
|
|
7
|
+
__extends(SendHeartbeatCommand, _super);
|
|
8
|
+
function SendHeartbeatCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
SendHeartbeatCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SagemakerEdgeClient";
|
|
18
|
+
var commandName = "SendHeartbeatCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: SendHeartbeatRequestFilterSensitiveLog,
|
|
21
|
-
outputFilterSensitiveLog: (output)
|
|
24
|
+
outputFilterSensitiveLog: function (output) { return output; },
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
SendHeartbeatCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1SendHeartbeatCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
SendHeartbeatCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1SendHeartbeatCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return SendHeartbeatCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { SendHeartbeatCommand };
|
package/dist-es/endpoints.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { __assign, __awaiter, __generator } from "tslib";
|
|
1
2
|
import { getRegionInfo } from "@aws-sdk/config-resolver";
|
|
2
|
-
|
|
3
|
-
|
|
3
|
+
var regionHash = {};
|
|
4
|
+
var partitionHash = {
|
|
4
5
|
aws: {
|
|
5
6
|
regions: [
|
|
6
7
|
"af-south-1",
|
|
@@ -120,9 +121,8 @@ const partitionHash = {
|
|
|
120
121
|
],
|
|
121
122
|
},
|
|
122
123
|
};
|
|
123
|
-
export
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
});
|
|
124
|
+
export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
|
|
125
|
+
return __generator(this, function (_a) {
|
|
126
|
+
return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "sagemaker", regionHash: regionHash, partitionHash: partitionHash }))];
|
|
127
|
+
});
|
|
128
|
+
}); };
|
|
@@ -1,7 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
var SagemakerEdgeServiceException = (function (_super) {
|
|
4
|
+
__extends(SagemakerEdgeServiceException, _super);
|
|
5
|
+
function SagemakerEdgeServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, SagemakerEdgeServiceException.prototype);
|
|
8
|
+
return _this;
|
|
6
9
|
}
|
|
7
|
-
|
|
10
|
+
return SagemakerEdgeServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { SagemakerEdgeServiceException };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { SagemakerEdgeServiceException as __BaseException } from "./SagemakerEdgeServiceException";
|
|
2
3
|
export var ChecksumType;
|
|
3
4
|
(function (ChecksumType) {
|
|
@@ -17,57 +18,33 @@ export var DeploymentType;
|
|
|
17
18
|
(function (DeploymentType) {
|
|
18
19
|
DeploymentType["Model"] = "Model";
|
|
19
20
|
})(DeploymentType || (DeploymentType = {}));
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
Object.setPrototypeOf(this, InternalServiceException.prototype);
|
|
30
|
-
this.Message = opts.Message;
|
|
21
|
+
var InternalServiceException = (function (_super) {
|
|
22
|
+
__extends(InternalServiceException, _super);
|
|
23
|
+
function InternalServiceException(opts) {
|
|
24
|
+
var _this = _super.call(this, __assign({ name: "InternalServiceException", $fault: "client" }, opts)) || this;
|
|
25
|
+
_this.name = "InternalServiceException";
|
|
26
|
+
_this.$fault = "client";
|
|
27
|
+
Object.setPrototypeOf(_this, InternalServiceException.prototype);
|
|
28
|
+
_this.Message = opts.Message;
|
|
29
|
+
return _this;
|
|
31
30
|
}
|
|
32
|
-
|
|
31
|
+
return InternalServiceException;
|
|
32
|
+
}(__BaseException));
|
|
33
|
+
export { InternalServiceException };
|
|
33
34
|
export var DeploymentStatus;
|
|
34
35
|
(function (DeploymentStatus) {
|
|
35
36
|
DeploymentStatus["Fail"] = "FAIL";
|
|
36
37
|
DeploymentStatus["Success"] = "SUCCESS";
|
|
37
38
|
})(DeploymentStatus || (DeploymentStatus = {}));
|
|
38
|
-
export
|
|
39
|
-
|
|
40
|
-
});
|
|
41
|
-
export
|
|
42
|
-
|
|
43
|
-
});
|
|
44
|
-
export
|
|
45
|
-
|
|
46
|
-
});
|
|
47
|
-
export
|
|
48
|
-
|
|
49
|
-
});
|
|
50
|
-
export const GetDeploymentsResultFilterSensitiveLog = (obj) => ({
|
|
51
|
-
...obj,
|
|
52
|
-
});
|
|
53
|
-
export const GetDeviceRegistrationRequestFilterSensitiveLog = (obj) => ({
|
|
54
|
-
...obj,
|
|
55
|
-
});
|
|
56
|
-
export const GetDeviceRegistrationResultFilterSensitiveLog = (obj) => ({
|
|
57
|
-
...obj,
|
|
58
|
-
});
|
|
59
|
-
export const EdgeMetricFilterSensitiveLog = (obj) => ({
|
|
60
|
-
...obj,
|
|
61
|
-
});
|
|
62
|
-
export const DeploymentModelFilterSensitiveLog = (obj) => ({
|
|
63
|
-
...obj,
|
|
64
|
-
});
|
|
65
|
-
export const DeploymentResultFilterSensitiveLog = (obj) => ({
|
|
66
|
-
...obj,
|
|
67
|
-
});
|
|
68
|
-
export const ModelFilterSensitiveLog = (obj) => ({
|
|
69
|
-
...obj,
|
|
70
|
-
});
|
|
71
|
-
export const SendHeartbeatRequestFilterSensitiveLog = (obj) => ({
|
|
72
|
-
...obj,
|
|
73
|
-
});
|
|
39
|
+
export var GetDeploymentsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
40
|
+
export var ChecksumFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
41
|
+
export var DefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
42
|
+
export var EdgeDeploymentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
43
|
+
export var GetDeploymentsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
44
|
+
export var GetDeviceRegistrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
45
|
+
export var GetDeviceRegistrationResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
46
|
+
export var EdgeMetricFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
47
|
+
export var DeploymentModelFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
48
|
+
export var DeploymentResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
49
|
+
export var ModelFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
50
|
+
export var SendHeartbeatRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|