@aws-sdk/client-pricing 3.355.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.
|
@@ -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
|
|
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) => {
|
|
@@ -78,7 +78,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
78
78
|
*/
|
|
79
79
|
runtime?: string;
|
|
80
80
|
/**
|
|
81
|
-
* Disable
|
|
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;
|
|
@@ -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;
|
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.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.
|
|
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.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.
|
|
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.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",
|