@aws-sdk/client-pricing 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/Pricing.js +21 -14
- package/dist-es/PricingClient.js +28 -22
- package/dist-es/commands/DescribeServicesCommand.js +28 -21
- package/dist-es/commands/GetAttributeValuesCommand.js +28 -21
- package/dist-es/commands/GetProductsCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/PricingServiceException.js +10 -5
- package/dist-es/models/models_0.js +70 -87
- package/dist-es/pagination/DescribeServicesPaginator.js +68 -25
- package/dist-es/pagination/GetAttributeValuesPaginator.js +68 -25
- package/dist-es/pagination/GetProductsPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +376 -300
- 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-pricing
|
|
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-pricing
|
|
@@ -362,10 +362,10 @@ const deserializeAws_json1_1ServiceList = (output, context) => {
|
|
|
362
362
|
return retVal;
|
|
363
363
|
};
|
|
364
364
|
const deserializeMetadata = (output) => {
|
|
365
|
-
var _a;
|
|
365
|
+
var _a, _b;
|
|
366
366
|
return ({
|
|
367
367
|
httpStatusCode: output.statusCode,
|
|
368
|
-
requestId: (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"],
|
|
368
|
+
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"],
|
|
369
369
|
extendedRequestId: output.headers["x-amz-id-2"],
|
|
370
370
|
cfId: output.headers["x-amz-cf-id"],
|
|
371
371
|
});
|
package/dist-es/Pricing.js
CHANGED
|
@@ -1,48 +1,55 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { DescribeServicesCommand, } from "./commands/DescribeServicesCommand";
|
|
2
3
|
import { GetAttributeValuesCommand, } from "./commands/GetAttributeValuesCommand";
|
|
3
4
|
import { GetProductsCommand } from "./commands/GetProductsCommand";
|
|
4
5
|
import { PricingClient } from "./PricingClient";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
var Pricing = (function (_super) {
|
|
7
|
+
__extends(Pricing, _super);
|
|
8
|
+
function Pricing() {
|
|
9
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
10
|
+
}
|
|
11
|
+
Pricing.prototype.describeServices = function (args, optionsOrCb, cb) {
|
|
12
|
+
var command = new DescribeServicesCommand(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
|
-
getAttributeValues(args, optionsOrCb, cb) {
|
|
21
|
-
|
|
24
|
+
};
|
|
25
|
+
Pricing.prototype.getAttributeValues = function (args, optionsOrCb, cb) {
|
|
26
|
+
var command = new GetAttributeValuesCommand(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
|
-
getProducts(args, optionsOrCb, cb) {
|
|
35
|
-
|
|
38
|
+
};
|
|
39
|
+
Pricing.prototype.getProducts = function (args, optionsOrCb, cb) {
|
|
40
|
+
var command = new GetProductsCommand(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 Pricing;
|
|
54
|
+
}(PricingClient));
|
|
55
|
+
export { Pricing };
|
package/dist-es/PricingClient.js
CHANGED
|
@@ -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 PricingClient = (function (_super) {
|
|
13
|
+
__extends(PricingClient, _super);
|
|
14
|
+
function PricingClient(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
|
+
PricingClient.prototype.destroy = function () {
|
|
35
|
+
_super.prototype.destroy.call(this);
|
|
36
|
+
};
|
|
37
|
+
return PricingClient;
|
|
38
|
+
}(__Client));
|
|
39
|
+
export { PricingClient };
|
|
@@ -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 { DescribeServicesRequestFilterSensitiveLog, DescribeServicesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DescribeServicesCommand, serializeAws_json1_1DescribeServicesCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribeServicesCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeServicesCommand, _super);
|
|
8
|
+
function DescribeServicesCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribeServicesCommand.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 = "PricingClient";
|
|
18
|
+
var commandName = "DescribeServicesCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribeServicesRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribeServicesResponseFilterSensitiveLog,
|
|
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
|
+
DescribeServicesCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DescribeServicesCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribeServicesCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DescribeServicesCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribeServicesCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeServicesCommand };
|
|
@@ -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 { GetAttributeValuesRequestFilterSensitiveLog, GetAttributeValuesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1GetAttributeValuesCommand, serializeAws_json1_1GetAttributeValuesCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var GetAttributeValuesCommand = (function (_super) {
|
|
7
|
+
__extends(GetAttributeValuesCommand, _super);
|
|
8
|
+
function GetAttributeValuesCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
GetAttributeValuesCommand.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 = "PricingClient";
|
|
18
|
+
var commandName = "GetAttributeValuesCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: GetAttributeValuesRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: GetAttributeValuesResponseFilterSensitiveLog,
|
|
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
|
+
GetAttributeValuesCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1GetAttributeValuesCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
GetAttributeValuesCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1GetAttributeValuesCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return GetAttributeValuesCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { GetAttributeValuesCommand };
|
|
@@ -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 { GetProductsRequestFilterSensitiveLog, GetProductsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1GetProductsCommand, serializeAws_json1_1GetProductsCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var GetProductsCommand = (function (_super) {
|
|
7
|
+
__extends(GetProductsCommand, _super);
|
|
8
|
+
function GetProductsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
GetProductsCommand.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 = "PricingClient";
|
|
18
|
+
var commandName = "GetProductsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: GetProductsRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: GetProductsResponseFilterSensitiveLog,
|
|
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
|
+
GetProductsCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1GetProductsCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
GetProductsCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1GetProductsCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return GetProductsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { GetProductsCommand };
|
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: "pricing", 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 PricingServiceException = (function (_super) {
|
|
4
|
+
__extends(PricingServiceException, _super);
|
|
5
|
+
function PricingServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, PricingServiceException.prototype);
|
|
8
|
+
return _this;
|
|
6
9
|
}
|
|
7
|
-
|
|
10
|
+
return PricingServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { PricingServiceException };
|
|
@@ -1,97 +1,80 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { PricingServiceException as __BaseException } from "./PricingServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Object.setPrototypeOf(this, ExpiredNextTokenException.prototype);
|
|
12
|
-
this.Message = opts.Message;
|
|
3
|
+
var ExpiredNextTokenException = (function (_super) {
|
|
4
|
+
__extends(ExpiredNextTokenException, _super);
|
|
5
|
+
function ExpiredNextTokenException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "ExpiredNextTokenException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "ExpiredNextTokenException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, ExpiredNextTokenException.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 ExpiredNextTokenException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { ExpiredNextTokenException };
|
|
16
|
+
var InternalErrorException = (function (_super) {
|
|
17
|
+
__extends(InternalErrorException, _super);
|
|
18
|
+
function InternalErrorException(opts) {
|
|
19
|
+
var _this = _super.call(this, __assign({ name: "InternalErrorException", $fault: "server" }, opts)) || this;
|
|
20
|
+
_this.name = "InternalErrorException";
|
|
21
|
+
_this.$fault = "server";
|
|
22
|
+
Object.setPrototypeOf(_this, InternalErrorException.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 InternalErrorException;
|
|
27
|
+
}(__BaseException));
|
|
28
|
+
export { InternalErrorException };
|
|
29
|
+
var InvalidNextTokenException = (function (_super) {
|
|
30
|
+
__extends(InvalidNextTokenException, _super);
|
|
31
|
+
function InvalidNextTokenException(opts) {
|
|
32
|
+
var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
|
|
33
|
+
_this.name = "InvalidNextTokenException";
|
|
34
|
+
_this.$fault = "client";
|
|
35
|
+
Object.setPrototypeOf(_this, InvalidNextTokenException.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 InvalidNextTokenException;
|
|
40
|
+
}(__BaseException));
|
|
41
|
+
export { InvalidNextTokenException };
|
|
42
|
+
var InvalidParameterException = (function (_super) {
|
|
43
|
+
__extends(InvalidParameterException, _super);
|
|
44
|
+
function InvalidParameterException(opts) {
|
|
45
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
|
|
46
|
+
_this.name = "InvalidParameterException";
|
|
47
|
+
_this.$fault = "client";
|
|
48
|
+
Object.setPrototypeOf(_this, InvalidParameterException.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 InvalidParameterException;
|
|
53
|
+
}(__BaseException));
|
|
54
|
+
export { InvalidParameterException };
|
|
55
|
+
var NotFoundException = (function (_super) {
|
|
56
|
+
__extends(NotFoundException, _super);
|
|
57
|
+
function NotFoundException(opts) {
|
|
58
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
59
|
+
_this.name = "NotFoundException";
|
|
60
|
+
_this.$fault = "client";
|
|
61
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
62
|
+
_this.Message = opts.Message;
|
|
63
|
+
return _this;
|
|
65
64
|
}
|
|
66
|
-
|
|
65
|
+
return NotFoundException;
|
|
66
|
+
}(__BaseException));
|
|
67
|
+
export { NotFoundException };
|
|
67
68
|
export var FilterType;
|
|
68
69
|
(function (FilterType) {
|
|
69
70
|
FilterType["TERM_MATCH"] = "TERM_MATCH";
|
|
70
71
|
})(FilterType || (FilterType = {}));
|
|
71
|
-
export
|
|
72
|
-
|
|
73
|
-
});
|
|
74
|
-
export
|
|
75
|
-
|
|
76
|
-
});
|
|
77
|
-
export
|
|
78
|
-
|
|
79
|
-
});
|
|
80
|
-
export const DescribeServicesResponseFilterSensitiveLog = (obj) => ({
|
|
81
|
-
...obj,
|
|
82
|
-
});
|
|
83
|
-
export const GetAttributeValuesRequestFilterSensitiveLog = (obj) => ({
|
|
84
|
-
...obj,
|
|
85
|
-
});
|
|
86
|
-
export const GetAttributeValuesResponseFilterSensitiveLog = (obj) => ({
|
|
87
|
-
...obj,
|
|
88
|
-
});
|
|
89
|
-
export const FilterFilterSensitiveLog = (obj) => ({
|
|
90
|
-
...obj,
|
|
91
|
-
});
|
|
92
|
-
export const GetProductsRequestFilterSensitiveLog = (obj) => ({
|
|
93
|
-
...obj,
|
|
94
|
-
});
|
|
95
|
-
export const GetProductsResponseFilterSensitiveLog = (obj) => ({
|
|
96
|
-
...obj,
|
|
97
|
-
});
|
|
72
|
+
export var AttributeValueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
73
|
+
export var DescribeServicesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
74
|
+
export var ServiceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
75
|
+
export var DescribeServicesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
76
|
+
export var GetAttributeValuesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
77
|
+
export var GetAttributeValuesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
78
|
+
export var FilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
79
|
+
export var GetProductsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
80
|
+
export var GetProductsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|