@aws-sdk/client-pricing 3.337.0 → 3.341.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/dist-cjs/PricingClient.js +2 -1
- package/dist-cjs/commands/DescribeServicesCommand.js +2 -1
- package/dist-cjs/commands/GetAttributeValuesCommand.js +2 -1
- package/dist-cjs/commands/GetPriceListFileUrlCommand.js +2 -1
- package/dist-cjs/commands/GetProductsCommand.js +2 -1
- package/dist-cjs/commands/ListPriceListsCommand.js +2 -1
- package/dist-cjs/index.js +2 -2
- package/dist-cjs/models/PricingServiceException.js +2 -1
- package/dist-es/PricingClient.js +1 -0
- package/dist-es/commands/DescribeServicesCommand.js +1 -0
- package/dist-es/commands/GetAttributeValuesCommand.js +1 -0
- package/dist-es/commands/GetPriceListFileUrlCommand.js +1 -0
- package/dist-es/commands/GetProductsCommand.js +1 -0
- package/dist-es/commands/ListPriceListsCommand.js +1 -0
- package/dist-es/index.js +2 -2
- package/dist-es/models/PricingServiceException.js +1 -0
- package/dist-types/PricingClient.d.ts +3 -3
- package/dist-types/commands/DescribeServicesCommand.d.ts +4 -0
- package/dist-types/commands/GetAttributeValuesCommand.d.ts +4 -0
- package/dist-types/commands/GetPriceListFileUrlCommand.d.ts +4 -0
- package/dist-types/commands/GetProductsCommand.d.ts +4 -0
- package/dist-types/commands/ListPriceListsCommand.d.ts +4 -0
- package/dist-types/index.d.ts +30 -2
- package/dist-types/models/PricingServiceException.d.ts +1 -0
- package/dist-types/ts3.4/PricingClient.d.ts +3 -3
- package/dist-types/ts3.4/commands/DescribeServicesCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/GetAttributeValuesCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/GetPriceListFileUrlCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/GetProductsCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/ListPriceListsCommand.d.ts +1 -0
- package/dist-types/ts3.4/index.d.ts +2 -2
- package/dist-types/ts3.4/models/PricingServiceException.d.ts +1 -0
- package/package.json +28 -28
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PricingClient = void 0;
|
|
3
|
+
exports.PricingClient = exports.__Client = void 0;
|
|
4
4
|
const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
@@ -11,6 +11,7 @@ const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
|
11
11
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
12
12
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
13
13
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
14
|
+
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
14
15
|
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
15
16
|
const runtimeConfig_1 = require("./runtimeConfig");
|
|
16
17
|
class PricingClient extends smithy_client_1.Client {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeServicesCommand = void 0;
|
|
3
|
+
exports.DescribeServicesCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
9
|
class DescribeServicesCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetAttributeValuesCommand = void 0;
|
|
3
|
+
exports.GetAttributeValuesCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
9
|
class GetAttributeValuesCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetPriceListFileUrlCommand = void 0;
|
|
3
|
+
exports.GetPriceListFileUrlCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
9
|
class GetPriceListFileUrlCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetProductsCommand = void 0;
|
|
3
|
+
exports.GetProductsCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
9
|
class GetProductsCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListPriceListsCommand = void 0;
|
|
3
|
+
exports.ListPriceListsCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
9
|
class ListPriceListsCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
package/dist-cjs/index.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PricingServiceException = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
|
-
tslib_1.__exportStar(require("./Pricing"), exports);
|
|
6
5
|
tslib_1.__exportStar(require("./PricingClient"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./Pricing"), exports);
|
|
7
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./models"), exports);
|
|
9
8
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./models"), exports);
|
|
10
10
|
var PricingServiceException_1 = require("./models/PricingServiceException");
|
|
11
11
|
Object.defineProperty(exports, "PricingServiceException", { enumerable: true, get: function () { return PricingServiceException_1.PricingServiceException; } });
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PricingServiceException = void 0;
|
|
3
|
+
exports.PricingServiceException = exports.__ServiceException = void 0;
|
|
4
4
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
5
6
|
class PricingServiceException extends smithy_client_1.ServiceException {
|
|
6
7
|
constructor(options) {
|
|
7
8
|
super(options);
|
package/dist-es/PricingClient.js
CHANGED
|
@@ -10,6 +10,7 @@ import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware
|
|
|
10
10
|
import { Client as __Client, } from "@aws-sdk/smithy-client";
|
|
11
11
|
import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters";
|
|
12
12
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
13
|
+
export { __Client };
|
|
13
14
|
export class PricingClient extends __Client {
|
|
14
15
|
constructor(configuration) {
|
|
15
16
|
const _config_0 = __getRuntimeConfig(configuration);
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_DescribeServicesCommand, se_DescribeServicesCommand } from "../protocols/Aws_json1_1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class DescribeServicesCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_GetAttributeValuesCommand, se_GetAttributeValuesCommand } from "../protocols/Aws_json1_1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class GetAttributeValuesCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_GetPriceListFileUrlCommand, se_GetPriceListFileUrlCommand } from "../protocols/Aws_json1_1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class GetPriceListFileUrlCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_GetProductsCommand, se_GetProductsCommand } from "../protocols/Aws_json1_1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class GetProductsCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_ListPriceListsCommand, se_ListPriceListsCommand } from "../protocols/Aws_json1_1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class ListPriceListsCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./Pricing";
|
|
2
1
|
export * from "./PricingClient";
|
|
2
|
+
export * from "./Pricing";
|
|
3
3
|
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
4
|
export * from "./pagination";
|
|
5
|
+
export * from "./models";
|
|
6
6
|
export { PricingServiceException } from "./models/PricingServiceException";
|
|
@@ -14,6 +14,7 @@ import { GetPriceListFileUrlCommandInput, GetPriceListFileUrlCommandOutput } fro
|
|
|
14
14
|
import { GetProductsCommandInput, GetProductsCommandOutput } from "./commands/GetProductsCommand";
|
|
15
15
|
import { ListPriceListsCommandInput, ListPriceListsCommandOutput } from "./commands/ListPriceListsCommand";
|
|
16
16
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
17
|
+
export { __Client };
|
|
17
18
|
/**
|
|
18
19
|
* @public
|
|
19
20
|
*/
|
|
@@ -128,7 +129,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
128
129
|
/**
|
|
129
130
|
* @public
|
|
130
131
|
*/
|
|
131
|
-
type PricingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
132
|
+
export type PricingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
132
133
|
/**
|
|
133
134
|
* @public
|
|
134
135
|
*
|
|
@@ -139,7 +140,7 @@ export interface PricingClientConfig extends PricingClientConfigType {
|
|
|
139
140
|
/**
|
|
140
141
|
* @public
|
|
141
142
|
*/
|
|
142
|
-
type PricingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
143
|
+
export type PricingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
143
144
|
/**
|
|
144
145
|
* @public
|
|
145
146
|
*
|
|
@@ -187,4 +188,3 @@ export declare class PricingClient extends __Client<__HttpHandlerOptions, Servic
|
|
|
187
188
|
*/
|
|
188
189
|
destroy(): void;
|
|
189
190
|
}
|
|
190
|
-
export {};
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DescribeServicesRequest, DescribeServicesResponse } from "../models/models_0";
|
|
5
5
|
import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GetAttributeValuesRequest, GetAttributeValuesResponse } from "../models/models_0";
|
|
5
5
|
import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GetPriceListFileUrlRequest, GetPriceListFileUrlResponse } from "../models/models_0";
|
|
5
5
|
import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GetProductsRequest, GetProductsResponse } from "../models/models_0";
|
|
5
5
|
import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListPriceListsRequest, ListPriceListsResponse } from "../models/models_0";
|
|
5
5
|
import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,6 +1,34 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* <p>Amazon Web Services Price List API is a centralized and convenient way to
|
|
3
|
+
* programmatically query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List
|
|
4
|
+
* uses standardized product attributes such as <code>Location</code>, <code>Storage
|
|
5
|
+
* Class</code>, and <code>Operating System</code>, and provides prices at the SKU
|
|
6
|
+
* level. You can use the Amazon Web Services Price List to build cost control and scenario planning tools, reconcile
|
|
7
|
+
* billing data, forecast future spend for budgeting purposes, and provide cost benefit
|
|
8
|
+
* analysis that compare your internal workloads with Amazon Web Services.</p>
|
|
9
|
+
* <p>Use <code>GetServices</code> without a service code to retrieve the service codes for all AWS services, then
|
|
10
|
+
* <code>GetServices</code> with a service code to retrieve the attribute names for
|
|
11
|
+
* that service. After you have the service code and attribute names, you can use <code>GetAttributeValues</code>
|
|
12
|
+
* to see what values are available for an attribute. With the service code and an attribute name and value,
|
|
13
|
+
* you can use <code>GetProducts</code> to find specific products that you're interested in, such as
|
|
14
|
+
* an <code>AmazonEC2</code> instance, with a <code>Provisioned IOPS</code>
|
|
15
|
+
* <code>volumeType</code>.</p>
|
|
16
|
+
* <p>Service Endpoint</p>
|
|
17
|
+
* <p>Amazon Web Services Price List service API provides the following two endpoints:</p>
|
|
18
|
+
* <ul>
|
|
19
|
+
* <li>
|
|
20
|
+
* <p>https://api.pricing.us-east-1.amazonaws.com</p>
|
|
21
|
+
* </li>
|
|
22
|
+
* <li>
|
|
23
|
+
* <p>https://api.pricing.ap-south-1.amazonaws.com</p>
|
|
24
|
+
* </li>
|
|
25
|
+
* </ul>
|
|
26
|
+
*
|
|
27
|
+
* @packageDocumentation
|
|
28
|
+
*/
|
|
2
29
|
export * from "./PricingClient";
|
|
30
|
+
export * from "./Pricing";
|
|
3
31
|
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
32
|
export * from "./pagination";
|
|
33
|
+
export * from "./models";
|
|
6
34
|
export { PricingServiceException } from "./models/PricingServiceException";
|
|
@@ -71,6 +71,7 @@ import {
|
|
|
71
71
|
ClientResolvedEndpointParameters,
|
|
72
72
|
EndpointParameters,
|
|
73
73
|
} from "./endpoint/EndpointParameters";
|
|
74
|
+
export { __Client };
|
|
74
75
|
export type ServiceInputTypes =
|
|
75
76
|
| DescribeServicesCommandInput
|
|
76
77
|
| GetAttributeValuesCommandInput
|
|
@@ -107,7 +108,7 @@ export interface ClientDefaults
|
|
|
107
108
|
logger?: __Logger;
|
|
108
109
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
109
110
|
}
|
|
110
|
-
type PricingClientConfigType = Partial<
|
|
111
|
+
export type PricingClientConfigType = Partial<
|
|
111
112
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
112
113
|
> &
|
|
113
114
|
ClientDefaults &
|
|
@@ -119,7 +120,7 @@ type PricingClientConfigType = Partial<
|
|
|
119
120
|
UserAgentInputConfig &
|
|
120
121
|
ClientInputEndpointParameters;
|
|
121
122
|
export interface PricingClientConfig extends PricingClientConfigType {}
|
|
122
|
-
type PricingClientResolvedConfigType =
|
|
123
|
+
export type PricingClientResolvedConfigType =
|
|
123
124
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
124
125
|
Required<ClientDefaults> &
|
|
125
126
|
RegionResolvedConfig &
|
|
@@ -141,4 +142,3 @@ export declare class PricingClient extends __Client<
|
|
|
141
142
|
constructor(configuration: PricingClientConfig);
|
|
142
143
|
destroy(): void;
|
|
143
144
|
}
|
|
144
|
-
export {};
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../PricingClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface DescribeServicesCommandInput extends DescribeServicesRequest {}
|
|
19
20
|
export interface DescribeServicesCommandOutput
|
|
20
21
|
extends DescribeServicesResponse,
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../PricingClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface GetAttributeValuesCommandInput
|
|
19
20
|
extends GetAttributeValuesRequest {}
|
|
20
21
|
export interface GetAttributeValuesCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../PricingClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface GetPriceListFileUrlCommandInput
|
|
19
20
|
extends GetPriceListFileUrlRequest {}
|
|
20
21
|
export interface GetPriceListFileUrlCommandOutput
|
|
@@ -12,6 +12,7 @@ import {
|
|
|
12
12
|
ServiceInputTypes,
|
|
13
13
|
ServiceOutputTypes,
|
|
14
14
|
} from "../PricingClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
15
16
|
export interface GetProductsCommandInput extends GetProductsRequest {}
|
|
16
17
|
export interface GetProductsCommandOutput
|
|
17
18
|
extends GetProductsResponse,
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../PricingClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface ListPriceListsCommandInput extends ListPriceListsRequest {}
|
|
19
20
|
export interface ListPriceListsCommandOutput
|
|
20
21
|
extends ListPriceListsResponse,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./Pricing";
|
|
2
1
|
export * from "./PricingClient";
|
|
2
|
+
export * from "./Pricing";
|
|
3
3
|
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
4
|
export * from "./pagination";
|
|
5
|
+
export * from "./models";
|
|
6
6
|
export { PricingServiceException } from "./models/PricingServiceException";
|
|
@@ -2,6 +2,7 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export { __ServiceException, __ServiceExceptionOptions };
|
|
5
6
|
export declare class PricingServiceException extends __ServiceException {
|
|
6
7
|
constructor(options: __ServiceExceptionOptions);
|
|
7
8
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pricing",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pricing Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.341.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,36 +21,36 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.341.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.341.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.341.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.341.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.341.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.341.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.341.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.341.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.341.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.341.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.341.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.341.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.341.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.341.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.341.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.341.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.341.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.341.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.341.0",
|
|
43
|
+
"@aws-sdk/types": "3.341.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.341.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.341.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.341.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.341.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.341.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.341.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.341.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
55
55
|
"@smithy/protocol-http": "^1.0.1",
|
|
56
56
|
"@smithy/types": "^1.0.0",
|