@aws-sdk/client-pricing 3.354.0 → 3.357.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/README.md CHANGED
@@ -6,22 +6,33 @@
6
6
 
7
7
  AWS SDK for JavaScript Pricing Client for Node.js, Browser and React Native.
8
8
 
9
- <p>Amazon Web Services Price List API is a centralized and convenient way to
10
- programmatically query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List
11
- uses standardized product attributes such as <code>Location</code>, <code>Storage
12
- Class</code>, and <code>Operating System</code>, and provides prices at the SKU
13
- level. You can use the Amazon Web Services Price List to build cost control and scenario planning tools, reconcile
14
- billing data, forecast future spend for budgeting purposes, and provide cost benefit
15
- analysis that compare your internal workloads with Amazon Web Services.</p>
16
- <p>Use <code>GetServices</code> without a service code to retrieve the service codes for all AWS services, then
17
- <code>GetServices</code> with a service code to retrieve the attribute names for
18
- that service. After you have the service code and attribute names, you can use <code>GetAttributeValues</code>
19
- to see what values are available for an attribute. With the service code and an attribute name and value,
20
- you can use <code>GetProducts</code> to find specific products that you're interested in, such as
9
+ <p>The Amazon Web Services Price List API is a centralized and convenient way to programmatically
10
+ query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List uses standardized product attributes such as <code>Location</code>,
11
+ <code>Storage Class</code>, and <code>Operating System</code>, and provides prices at
12
+ the SKU level. You can use the Amazon Web Services Price List to do the following:</p>
13
+ <ul>
14
+ <li>
15
+ <p>Build cost control and scenario planning tools</p>
16
+ </li>
17
+ <li>
18
+ <p>Reconcile billing data</p>
19
+ </li>
20
+ <li>
21
+ <p>Forecast future spend for budgeting purposes</p>
22
+ </li>
23
+ <li>
24
+ <p>Provide cost benefit analysis that compare your internal workloads with Amazon Web Services</p>
25
+ </li>
26
+ </ul>
27
+ <p>Use <code>GetServices</code> without a service code to retrieve the service codes for
28
+ all Amazon Web Services, then <code>GetServices</code> with a service code to
29
+ retrieve the attribute names for that service. After you have the service code and
30
+ attribute names, you can use <code>GetAttributeValues</code> to see what values are
31
+ available for an attribute. With the service code and an attribute name and value, you can
32
+ use <code>GetProducts</code> to find specific products that you're interested in, such as
21
33
  an <code>AmazonEC2</code> instance, with a <code>Provisioned IOPS</code>
22
34
  <code>volumeType</code>.</p>
23
- <p>Service Endpoint</p>
24
- <p>Amazon Web Services Price List service API provides the following two endpoints:</p>
35
+ <p>You can use the following endpoints for the Amazon Web Services Price List API:</p>
25
36
  <ul>
26
37
  <li>
27
38
  <p>https://api.pricing.us-east-1.amazonaws.com</p>
@@ -350,13 +350,7 @@ const deserializeMetadata = (output) => ({
350
350
  extendedRequestId: output.headers["x-amz-id-2"],
351
351
  cfId: output.headers["x-amz-cf-id"],
352
352
  });
353
- const collectBody = (streamBody = new Uint8Array(), context) => {
354
- if (streamBody instanceof Uint8Array) {
355
- return Promise.resolve(streamBody);
356
- }
357
- return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());
358
- };
359
- const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
353
+ const collectBodyString = (streamBody, context) => (0, smithy_client_1.collectBody)(streamBody, context).then((body) => context.utf8Encoder(body));
360
354
  const throwDefaultError = (0, smithy_client_1.withBaseException)(PricingServiceException_1.PricingServiceException);
361
355
  const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
362
356
  const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
@@ -1,4 +1,4 @@
1
- import { _json, decorateServiceException as __decorateServiceException, expectString as __expectString, LazyJsonString as __LazyJsonString, take, withBaseException, } from "@aws-sdk/smithy-client";
1
+ import { _json, collectBody, decorateServiceException as __decorateServiceException, expectString as __expectString, LazyJsonString as __LazyJsonString, take, withBaseException, } from "@aws-sdk/smithy-client";
2
2
  import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
3
3
  import { AccessDeniedException, ExpiredNextTokenException, InternalErrorException, InvalidNextTokenException, InvalidParameterException, NotFoundException, } from "../models/models_0";
4
4
  import { PricingServiceException as __BaseException } from "../models/PricingServiceException";
@@ -337,12 +337,6 @@ const deserializeMetadata = (output) => ({
337
337
  extendedRequestId: output.headers["x-amz-id-2"],
338
338
  cfId: output.headers["x-amz-cf-id"],
339
339
  });
340
- const collectBody = (streamBody = new Uint8Array(), context) => {
341
- if (streamBody instanceof Uint8Array) {
342
- return Promise.resolve(streamBody);
343
- }
344
- return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());
345
- };
346
340
  const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
347
341
  const throwDefaultError = withBaseException(__BaseException);
348
342
  const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
@@ -39,22 +39,33 @@ export interface Pricing {
39
39
  }
40
40
  /**
41
41
  * @public
42
- * <p>Amazon Web Services Price List API is a centralized and convenient way to
43
- * programmatically query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List
44
- * uses standardized product attributes such as <code>Location</code>, <code>Storage
45
- * Class</code>, and <code>Operating System</code>, and provides prices at the SKU
46
- * level. You can use the Amazon Web Services Price List to build cost control and scenario planning tools, reconcile
47
- * billing data, forecast future spend for budgeting purposes, and provide cost benefit
48
- * analysis that compare your internal workloads with Amazon Web Services.</p>
49
- * <p>Use <code>GetServices</code> without a service code to retrieve the service codes for all AWS services, then
50
- * <code>GetServices</code> with a service code to retrieve the attribute names for
51
- * that service. After you have the service code and attribute names, you can use <code>GetAttributeValues</code>
52
- * to see what values are available for an attribute. With the service code and an attribute name and value,
53
- * you can use <code>GetProducts</code> to find specific products that you're interested in, such as
42
+ * <p>The Amazon Web Services Price List API is a centralized and convenient way to programmatically
43
+ * query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List uses standardized product attributes such as <code>Location</code>,
44
+ * <code>Storage Class</code>, and <code>Operating System</code>, and provides prices at
45
+ * the SKU level. You can use the Amazon Web Services Price List to do the following:</p>
46
+ * <ul>
47
+ * <li>
48
+ * <p>Build cost control and scenario planning tools</p>
49
+ * </li>
50
+ * <li>
51
+ * <p>Reconcile billing data</p>
52
+ * </li>
53
+ * <li>
54
+ * <p>Forecast future spend for budgeting purposes</p>
55
+ * </li>
56
+ * <li>
57
+ * <p>Provide cost benefit analysis that compare your internal workloads with Amazon Web Services</p>
58
+ * </li>
59
+ * </ul>
60
+ * <p>Use <code>GetServices</code> without a service code to retrieve the service codes for
61
+ * all Amazon Web Services, then <code>GetServices</code> with a service code to
62
+ * retrieve the attribute names for that service. After you have the service code and
63
+ * attribute names, you can use <code>GetAttributeValues</code> to see what values are
64
+ * available for an attribute. With the service code and an attribute name and value, you can
65
+ * use <code>GetProducts</code> to find specific products that you're interested in, such as
54
66
  * an <code>AmazonEC2</code> instance, with a <code>Provisioned IOPS</code>
55
67
  * <code>volumeType</code>.</p>
56
- * <p>Service Endpoint</p>
57
- * <p>Amazon Web Services Price List service API provides the following two endpoints:</p>
68
+ * <p>You can use the following endpoints for the Amazon Web Services Price List API:</p>
58
69
  * <ul>
59
70
  * <li>
60
71
  * <p>https://api.pricing.us-east-1.amazonaws.com</p>
@@ -78,7 +78,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
78
78
  */
79
79
  runtime?: string;
80
80
  /**
81
- * Disable dyanamically changing the endpoint of the client based on the hostPrefix
81
+ * Disable dynamically changing the endpoint of the client based on the hostPrefix
82
82
  * trait of an operation.
83
83
  */
84
84
  disableHostPrefix?: boolean;
@@ -150,22 +150,33 @@ export interface PricingClientResolvedConfig extends PricingClientResolvedConfig
150
150
  }
151
151
  /**
152
152
  * @public
153
- * <p>Amazon Web Services Price List API is a centralized and convenient way to
154
- * programmatically query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List
155
- * uses standardized product attributes such as <code>Location</code>, <code>Storage
156
- * Class</code>, and <code>Operating System</code>, and provides prices at the SKU
157
- * level. You can use the Amazon Web Services Price List to build cost control and scenario planning tools, reconcile
158
- * billing data, forecast future spend for budgeting purposes, and provide cost benefit
159
- * analysis that compare your internal workloads with Amazon Web Services.</p>
160
- * <p>Use <code>GetServices</code> without a service code to retrieve the service codes for all AWS services, then
161
- * <code>GetServices</code> with a service code to retrieve the attribute names for
162
- * that service. After you have the service code and attribute names, you can use <code>GetAttributeValues</code>
163
- * to see what values are available for an attribute. With the service code and an attribute name and value,
164
- * you can use <code>GetProducts</code> to find specific products that you're interested in, such as
153
+ * <p>The Amazon Web Services Price List API is a centralized and convenient way to programmatically
154
+ * query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List uses standardized product attributes such as <code>Location</code>,
155
+ * <code>Storage Class</code>, and <code>Operating System</code>, and provides prices at
156
+ * the SKU level. You can use the Amazon Web Services Price List to do the following:</p>
157
+ * <ul>
158
+ * <li>
159
+ * <p>Build cost control and scenario planning tools</p>
160
+ * </li>
161
+ * <li>
162
+ * <p>Reconcile billing data</p>
163
+ * </li>
164
+ * <li>
165
+ * <p>Forecast future spend for budgeting purposes</p>
166
+ * </li>
167
+ * <li>
168
+ * <p>Provide cost benefit analysis that compare your internal workloads with Amazon Web Services</p>
169
+ * </li>
170
+ * </ul>
171
+ * <p>Use <code>GetServices</code> without a service code to retrieve the service codes for
172
+ * all Amazon Web Services, then <code>GetServices</code> with a service code to
173
+ * retrieve the attribute names for that service. After you have the service code and
174
+ * attribute names, you can use <code>GetAttributeValues</code> to see what values are
175
+ * available for an attribute. With the service code and an attribute name and value, you can
176
+ * use <code>GetProducts</code> to find specific products that you're interested in, such as
165
177
  * an <code>AmazonEC2</code> instance, with a <code>Provisioned IOPS</code>
166
178
  * <code>volumeType</code>.</p>
167
- * <p>Service Endpoint</p>
168
- * <p>Amazon Web Services Price List service API provides the following two endpoints:</p>
179
+ * <p>You can use the following endpoints for the Amazon Web Services Price List API:</p>
169
180
  * <ul>
170
181
  * <li>
171
182
  * <p>https://api.pricing.us-east-1.amazonaws.com</p>
@@ -83,37 +83,6 @@ export interface DescribeServicesCommandOutput extends DescribeServicesResponse,
83
83
  * @throws {@link PricingServiceException}
84
84
  * <p>Base exception class for all service exceptions from Pricing service.</p>
85
85
  *
86
- * @example To retrieve a list of services and service codes
87
- * ```javascript
88
- * // Retrieves the service for the given Service Code.
89
- * const input = {
90
- * "FormatVersion": "aws_v1",
91
- * "MaxResults": 1,
92
- * "ServiceCode": "AmazonEC2"
93
- * };
94
- * const command = new DescribeServicesCommand(input);
95
- * const response = await client.send(command);
96
- * /* response ==
97
- * {
98
- * "FormatVersion": "aws_v1",
99
- * "NextToken": "abcdefg123",
100
- * "Services": [
101
- * {
102
- * "AttributeNames": [
103
- * "volumeType",
104
- * "maxIopsvolume",
105
- * "instanceCapacity10xlarge",
106
- * "locationType",
107
- * "operation"
108
- * ],
109
- * "ServiceCode": "AmazonEC2"
110
- * }
111
- * ]
112
- * }
113
- * *\/
114
- * // example id: to-retrieve-service-metadata
115
- * ```
116
- *
117
86
  */
118
87
  export declare class DescribeServicesCommand extends $Command<DescribeServicesCommandInput, DescribeServicesCommandOutput, PricingClientResolvedConfig> {
119
88
  readonly input: DescribeServicesCommandInput;
@@ -76,32 +76,6 @@ export interface GetAttributeValuesCommandOutput extends GetAttributeValuesRespo
76
76
  * @throws {@link PricingServiceException}
77
77
  * <p>Base exception class for all service exceptions from Pricing service.</p>
78
78
  *
79
- * @example To retrieve a list of attribute values
80
- * ```javascript
81
- * // This operation returns a list of values available for the given attribute.
82
- * const input = {
83
- * "AttributeName": "volumeType",
84
- * "MaxResults": 2,
85
- * "ServiceCode": "AmazonEC2"
86
- * };
87
- * const command = new GetAttributeValuesCommand(input);
88
- * const response = await client.send(command);
89
- * /* response ==
90
- * {
91
- * "AttributeValues": [
92
- * {
93
- * "Value": "Throughput Optimized HDD"
94
- * },
95
- * {
96
- * "Value": "Provisioned IOPS"
97
- * }
98
- * ],
99
- * "NextToken": "GpgauEXAMPLEezucl5LV0w==:7GzYJ0nw0DBTJ2J66EoTIIynE6O1uXwQtTRqioJzQadBnDVgHPzI1en4BUQnPCLpzeBk9RQQAWaFieA4+DapFAGLgk+Z/9/cTw9GldnPOHN98+FdmJP7wKU3QQpQ8MQr5KOeBkIsAqvAQYdL0DkL7tHwPtE5iCEByAmg9gcC/yBU1vAOsf7R3VaNN4M5jMDv3woSWqASSIlBVB6tgW78YL22KhssoItM/jWW+aP6Jqtq4mldxp/ct6DWAl+xLFwHU/CbketimPPXyqHF3/UXDw=="
100
- * }
101
- * *\/
102
- * // example id: to-retreive-attribute-values
103
- * ```
104
- *
105
79
  */
106
80
  export declare class GetAttributeValuesCommand extends $Command<GetAttributeValuesCommandInput, GetAttributeValuesCommandOutput, PricingClientResolvedConfig> {
107
81
  readonly input: GetAttributeValuesCommandInput;
@@ -1,20 +1,31 @@
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
2
+ * <p>The Amazon Web Services Price List API is a centralized and convenient way to programmatically
3
+ * query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List uses standardized product attributes such as <code>Location</code>,
4
+ * <code>Storage Class</code>, and <code>Operating System</code>, and provides prices at
5
+ * the SKU level. You can use the Amazon Web Services Price List to do the following:</p>
6
+ * <ul>
7
+ * <li>
8
+ * <p>Build cost control and scenario planning tools</p>
9
+ * </li>
10
+ * <li>
11
+ * <p>Reconcile billing data</p>
12
+ * </li>
13
+ * <li>
14
+ * <p>Forecast future spend for budgeting purposes</p>
15
+ * </li>
16
+ * <li>
17
+ * <p>Provide cost benefit analysis that compare your internal workloads with Amazon Web Services</p>
18
+ * </li>
19
+ * </ul>
20
+ * <p>Use <code>GetServices</code> without a service code to retrieve the service codes for
21
+ * all Amazon Web Services, then <code>GetServices</code> with a service code to
22
+ * retrieve the attribute names for that service. After you have the service code and
23
+ * attribute names, you can use <code>GetAttributeValues</code> to see what values are
24
+ * available for an attribute. With the service code and an attribute name and value, you can
25
+ * use <code>GetProducts</code> to find specific products that you're interested in, such as
14
26
  * an <code>AmazonEC2</code> instance, with a <code>Provisioned IOPS</code>
15
27
  * <code>volumeType</code>.</p>
16
- * <p>Service Endpoint</p>
17
- * <p>Amazon Web Services Price List service API provides the following two endpoints:</p>
28
+ * <p>You can use the following endpoints for the Amazon Web Services Price List API:</p>
18
29
  * <ul>
19
30
  * <li>
20
31
  * <p>https://api.pricing.us-east-1.amazonaws.com</p>
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.354.0",
4
+ "version": "3.357.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.354.0",
25
- "@aws-sdk/config-resolver": "3.354.0",
26
- "@aws-sdk/credential-provider-node": "3.354.0",
27
- "@aws-sdk/fetch-http-handler": "3.353.0",
28
- "@aws-sdk/hash-node": "3.347.0",
29
- "@aws-sdk/invalid-dependency": "3.347.0",
30
- "@aws-sdk/middleware-content-length": "3.347.0",
31
- "@aws-sdk/middleware-endpoint": "3.347.0",
32
- "@aws-sdk/middleware-host-header": "3.347.0",
33
- "@aws-sdk/middleware-logger": "3.347.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.347.0",
35
- "@aws-sdk/middleware-retry": "3.354.0",
36
- "@aws-sdk/middleware-serde": "3.347.0",
37
- "@aws-sdk/middleware-signing": "3.354.0",
38
- "@aws-sdk/middleware-stack": "3.347.0",
39
- "@aws-sdk/middleware-user-agent": "3.352.0",
40
- "@aws-sdk/node-config-provider": "3.354.0",
41
- "@aws-sdk/node-http-handler": "3.350.0",
42
- "@aws-sdk/smithy-client": "3.347.0",
43
- "@aws-sdk/types": "3.347.0",
44
- "@aws-sdk/url-parser": "3.347.0",
24
+ "@aws-sdk/client-sts": "3.357.0",
25
+ "@aws-sdk/config-resolver": "3.357.0",
26
+ "@aws-sdk/credential-provider-node": "3.357.0",
27
+ "@aws-sdk/fetch-http-handler": "3.357.0",
28
+ "@aws-sdk/hash-node": "3.357.0",
29
+ "@aws-sdk/invalid-dependency": "3.357.0",
30
+ "@aws-sdk/middleware-content-length": "3.357.0",
31
+ "@aws-sdk/middleware-endpoint": "3.357.0",
32
+ "@aws-sdk/middleware-host-header": "3.357.0",
33
+ "@aws-sdk/middleware-logger": "3.357.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.357.0",
35
+ "@aws-sdk/middleware-retry": "3.357.0",
36
+ "@aws-sdk/middleware-serde": "3.357.0",
37
+ "@aws-sdk/middleware-signing": "3.357.0",
38
+ "@aws-sdk/middleware-stack": "3.357.0",
39
+ "@aws-sdk/middleware-user-agent": "3.357.0",
40
+ "@aws-sdk/node-config-provider": "3.357.0",
41
+ "@aws-sdk/node-http-handler": "3.357.0",
42
+ "@aws-sdk/smithy-client": "3.357.0",
43
+ "@aws-sdk/types": "3.357.0",
44
+ "@aws-sdk/url-parser": "3.357.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.353.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.354.0",
50
- "@aws-sdk/util-endpoints": "3.352.0",
51
- "@aws-sdk/util-retry": "3.347.0",
52
- "@aws-sdk/util-user-agent-browser": "3.347.0",
53
- "@aws-sdk/util-user-agent-node": "3.354.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.357.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.357.0",
50
+ "@aws-sdk/util-endpoints": "3.357.0",
51
+ "@aws-sdk/util-retry": "3.357.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.357.0",
53
+ "@aws-sdk/util-user-agent-node": "3.357.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",