@aws-sdk/client-forecastquery 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_json1_1.js +2 -2
- package/dist-es/Forecastquery.js +17 -10
- package/dist-es/ForecastqueryClient.js +28 -22
- package/dist-es/commands/QueryForecastCommand.js +28 -21
- package/dist-es/commands/QueryWhatIfForecastCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ForecastqueryServiceException.js +10 -5
- package/dist-es/models/models_0.js +67 -78
- package/dist-es/protocols/Aws_json1_1.js +287 -229
- 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-forecastquery
|
|
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-forecastquery
|
|
@@ -260,10 +260,10 @@ const deserializeAws_json1_1TimeSeries = (output, context) => {
|
|
|
260
260
|
return retVal;
|
|
261
261
|
};
|
|
262
262
|
const deserializeMetadata = (output) => {
|
|
263
|
-
var _a;
|
|
263
|
+
var _a, _b;
|
|
264
264
|
return ({
|
|
265
265
|
httpStatusCode: output.statusCode,
|
|
266
|
-
requestId: (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"],
|
|
266
|
+
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"],
|
|
267
267
|
extendedRequestId: output.headers["x-amz-id-2"],
|
|
268
268
|
cfId: output.headers["x-amz-cf-id"],
|
|
269
269
|
});
|
package/dist-es/Forecastquery.js
CHANGED
|
@@ -1,33 +1,40 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { QueryForecastCommand, } from "./commands/QueryForecastCommand";
|
|
2
3
|
import { QueryWhatIfForecastCommand, } from "./commands/QueryWhatIfForecastCommand";
|
|
3
4
|
import { ForecastqueryClient } from "./ForecastqueryClient";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
var Forecastquery = (function (_super) {
|
|
6
|
+
__extends(Forecastquery, _super);
|
|
7
|
+
function Forecastquery() {
|
|
8
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
9
|
+
}
|
|
10
|
+
Forecastquery.prototype.queryForecast = function (args, optionsOrCb, cb) {
|
|
11
|
+
var command = new QueryForecastCommand(args);
|
|
7
12
|
if (typeof optionsOrCb === "function") {
|
|
8
13
|
this.send(command, optionsOrCb);
|
|
9
14
|
}
|
|
10
15
|
else if (typeof cb === "function") {
|
|
11
16
|
if (typeof optionsOrCb !== "object")
|
|
12
|
-
throw new Error(
|
|
17
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
13
18
|
this.send(command, optionsOrCb || {}, cb);
|
|
14
19
|
}
|
|
15
20
|
else {
|
|
16
21
|
return this.send(command, optionsOrCb);
|
|
17
22
|
}
|
|
18
|
-
}
|
|
19
|
-
queryWhatIfForecast(args, optionsOrCb, cb) {
|
|
20
|
-
|
|
23
|
+
};
|
|
24
|
+
Forecastquery.prototype.queryWhatIfForecast = function (args, optionsOrCb, cb) {
|
|
25
|
+
var command = new QueryWhatIfForecastCommand(args);
|
|
21
26
|
if (typeof optionsOrCb === "function") {
|
|
22
27
|
this.send(command, optionsOrCb);
|
|
23
28
|
}
|
|
24
29
|
else if (typeof cb === "function") {
|
|
25
30
|
if (typeof optionsOrCb !== "object")
|
|
26
|
-
throw new Error(
|
|
31
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
27
32
|
this.send(command, optionsOrCb || {}, cb);
|
|
28
33
|
}
|
|
29
34
|
else {
|
|
30
35
|
return this.send(command, optionsOrCb);
|
|
31
36
|
}
|
|
32
|
-
}
|
|
33
|
-
|
|
37
|
+
};
|
|
38
|
+
return Forecastquery;
|
|
39
|
+
}(ForecastqueryClient));
|
|
40
|
+
export { Forecastquery };
|
|
@@ -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 ForecastqueryClient = (function (_super) {
|
|
13
|
+
__extends(ForecastqueryClient, _super);
|
|
14
|
+
function ForecastqueryClient(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
|
+
ForecastqueryClient.prototype.destroy = function () {
|
|
35
|
+
_super.prototype.destroy.call(this);
|
|
36
|
+
};
|
|
37
|
+
return ForecastqueryClient;
|
|
38
|
+
}(__Client));
|
|
39
|
+
export { ForecastqueryClient };
|
|
@@ -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 { QueryForecastRequestFilterSensitiveLog, QueryForecastResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1QueryForecastCommand, serializeAws_json1_1QueryForecastCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var QueryForecastCommand = (function (_super) {
|
|
7
|
+
__extends(QueryForecastCommand, _super);
|
|
8
|
+
function QueryForecastCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
QueryForecastCommand.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 = "ForecastqueryClient";
|
|
18
|
+
var commandName = "QueryForecastCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: QueryForecastRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: QueryForecastResponseFilterSensitiveLog,
|
|
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
|
+
QueryForecastCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1QueryForecastCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
QueryForecastCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1QueryForecastCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return QueryForecastCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { QueryForecastCommand };
|
|
@@ -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 { QueryWhatIfForecastRequestFilterSensitiveLog, QueryWhatIfForecastResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1QueryWhatIfForecastCommand, serializeAws_json1_1QueryWhatIfForecastCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var QueryWhatIfForecastCommand = (function (_super) {
|
|
7
|
+
__extends(QueryWhatIfForecastCommand, _super);
|
|
8
|
+
function QueryWhatIfForecastCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
QueryWhatIfForecastCommand.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 = "ForecastqueryClient";
|
|
18
|
+
var commandName = "QueryWhatIfForecastCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: QueryWhatIfForecastRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: QueryWhatIfForecastResponseFilterSensitiveLog,
|
|
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
|
+
QueryWhatIfForecastCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1QueryWhatIfForecastCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
QueryWhatIfForecastCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1QueryWhatIfForecastCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return QueryWhatIfForecastCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { QueryWhatIfForecastCommand };
|
package/dist-es/endpoints.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { __assign, __awaiter, __generator } from "tslib";
|
|
1
2
|
import { getRegionInfo } from "@aws-sdk/config-resolver";
|
|
2
|
-
|
|
3
|
+
var regionHash = {
|
|
3
4
|
"us-east-1": {
|
|
4
5
|
variants: [
|
|
5
6
|
{
|
|
@@ -25,7 +26,7 @@ const regionHash = {
|
|
|
25
26
|
],
|
|
26
27
|
},
|
|
27
28
|
};
|
|
28
|
-
|
|
29
|
+
var partitionHash = {
|
|
29
30
|
aws: {
|
|
30
31
|
regions: [
|
|
31
32
|
"af-south-1",
|
|
@@ -148,9 +149,8 @@ const partitionHash = {
|
|
|
148
149
|
],
|
|
149
150
|
},
|
|
150
151
|
};
|
|
151
|
-
export
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
});
|
|
152
|
+
export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
|
|
153
|
+
return __generator(this, function (_a) {
|
|
154
|
+
return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "forecast", regionHash: regionHash, partitionHash: partitionHash }))];
|
|
155
|
+
});
|
|
156
|
+
}); };
|
|
@@ -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 ForecastqueryServiceException = (function (_super) {
|
|
4
|
+
__extends(ForecastqueryServiceException, _super);
|
|
5
|
+
function ForecastqueryServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, ForecastqueryServiceException.prototype);
|
|
8
|
+
return _this;
|
|
6
9
|
}
|
|
7
|
-
|
|
10
|
+
return ForecastqueryServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { ForecastqueryServiceException };
|
|
@@ -1,84 +1,73 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { ForecastqueryServiceException as __BaseException } from "./ForecastqueryServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Object.setPrototypeOf(this, InvalidInputException.prototype);
|
|
12
|
-
this.Message = opts.Message;
|
|
3
|
+
var InvalidInputException = (function (_super) {
|
|
4
|
+
__extends(InvalidInputException, _super);
|
|
5
|
+
function InvalidInputException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "InvalidInputException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "InvalidInputException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, InvalidInputException.prototype);
|
|
10
|
+
_this.Message = opts.Message;
|
|
11
|
+
return _this;
|
|
13
12
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
13
|
+
return InvalidInputException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { InvalidInputException };
|
|
16
|
+
var InvalidNextTokenException = (function (_super) {
|
|
17
|
+
__extends(InvalidNextTokenException, _super);
|
|
18
|
+
function InvalidNextTokenException(opts) {
|
|
19
|
+
var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
|
|
20
|
+
_this.name = "InvalidNextTokenException";
|
|
21
|
+
_this.$fault = "client";
|
|
22
|
+
Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
|
|
23
|
+
_this.Message = opts.Message;
|
|
24
|
+
return _this;
|
|
26
25
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
26
|
+
return InvalidNextTokenException;
|
|
27
|
+
}(__BaseException));
|
|
28
|
+
export { InvalidNextTokenException };
|
|
29
|
+
var LimitExceededException = (function (_super) {
|
|
30
|
+
__extends(LimitExceededException, _super);
|
|
31
|
+
function LimitExceededException(opts) {
|
|
32
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
33
|
+
_this.name = "LimitExceededException";
|
|
34
|
+
_this.$fault = "client";
|
|
35
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
36
|
+
_this.Message = opts.Message;
|
|
37
|
+
return _this;
|
|
39
38
|
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
39
|
+
return LimitExceededException;
|
|
40
|
+
}(__BaseException));
|
|
41
|
+
export { LimitExceededException };
|
|
42
|
+
var ResourceInUseException = (function (_super) {
|
|
43
|
+
__extends(ResourceInUseException, _super);
|
|
44
|
+
function ResourceInUseException(opts) {
|
|
45
|
+
var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
|
|
46
|
+
_this.name = "ResourceInUseException";
|
|
47
|
+
_this.$fault = "client";
|
|
48
|
+
Object.setPrototypeOf(_this, ResourceInUseException.prototype);
|
|
49
|
+
_this.Message = opts.Message;
|
|
50
|
+
return _this;
|
|
52
51
|
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
52
|
+
return ResourceInUseException;
|
|
53
|
+
}(__BaseException));
|
|
54
|
+
export { ResourceInUseException };
|
|
55
|
+
var ResourceNotFoundException = (function (_super) {
|
|
56
|
+
__extends(ResourceNotFoundException, _super);
|
|
57
|
+
function ResourceNotFoundException(opts) {
|
|
58
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
59
|
+
_this.name = "ResourceNotFoundException";
|
|
60
|
+
_this.$fault = "client";
|
|
61
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
62
|
+
_this.Message = opts.Message;
|
|
63
|
+
return _this;
|
|
65
64
|
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
});
|
|
70
|
-
export
|
|
71
|
-
|
|
72
|
-
});
|
|
73
|
-
export
|
|
74
|
-
|
|
75
|
-
});
|
|
76
|
-
export const QueryForecastResponseFilterSensitiveLog = (obj) => ({
|
|
77
|
-
...obj,
|
|
78
|
-
});
|
|
79
|
-
export const QueryWhatIfForecastRequestFilterSensitiveLog = (obj) => ({
|
|
80
|
-
...obj,
|
|
81
|
-
});
|
|
82
|
-
export const QueryWhatIfForecastResponseFilterSensitiveLog = (obj) => ({
|
|
83
|
-
...obj,
|
|
84
|
-
});
|
|
65
|
+
return ResourceNotFoundException;
|
|
66
|
+
}(__BaseException));
|
|
67
|
+
export { ResourceNotFoundException };
|
|
68
|
+
export var QueryForecastRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
69
|
+
export var DataPointFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
70
|
+
export var ForecastFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
71
|
+
export var QueryForecastResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
72
|
+
export var QueryWhatIfForecastRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
73
|
+
export var QueryWhatIfForecastResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|