@aws-sdk/client-pricing 3.281.0 → 3.287.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 +16 -0
- package/dist-cjs/Pricing.js +30 -0
- package/dist-cjs/commands/GetPriceListFileUrlCommand.js +46 -0
- package/dist-cjs/commands/ListPriceListsCommand.js +46 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +35 -1
- package/dist-cjs/pagination/DescribeServicesPaginator.js +1 -8
- package/dist-cjs/pagination/GetAttributeValuesPaginator.js +1 -8
- package/dist-cjs/pagination/GetProductsPaginator.js +1 -8
- package/dist-cjs/pagination/ListPriceListsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +184 -1
- package/dist-es/Pricing.js +30 -0
- package/dist-es/commands/GetPriceListFileUrlCommand.js +42 -0
- package/dist-es/commands/ListPriceListsCommand.js +42 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +28 -0
- package/dist-es/pagination/DescribeServicesPaginator.js +1 -8
- package/dist-es/pagination/GetAttributeValuesPaginator.js +1 -8
- package/dist-es/pagination/GetProductsPaginator.js +1 -8
- package/dist-es/pagination/ListPriceListsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +180 -1
- package/dist-types/Pricing.d.ts +34 -0
- package/dist-types/PricingClient.d.ts +4 -2
- package/dist-types/commands/GetPriceListFileUrlCommand.d.ts +51 -0
- package/dist-types/commands/ListPriceListsCommand.d.ts +55 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +146 -5
- package/dist-types/pagination/Interfaces.d.ts +1 -2
- package/dist-types/pagination/ListPriceListsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +6 -0
- package/dist-types/ts3.4/Pricing.d.ts +34 -0
- package/dist-types/ts3.4/PricingClient.d.ts +14 -2
- package/dist-types/ts3.4/commands/GetPriceListFileUrlCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListPriceListsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +46 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListPriceListsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +24 -0
- package/package.json +19 -19
|
@@ -11,10 +11,18 @@ import {
|
|
|
11
11
|
GetAttributeValuesCommandInput,
|
|
12
12
|
GetAttributeValuesCommandOutput,
|
|
13
13
|
} from "../commands/GetAttributeValuesCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetPriceListFileUrlCommandInput,
|
|
16
|
+
GetPriceListFileUrlCommandOutput,
|
|
17
|
+
} from "../commands/GetPriceListFileUrlCommand";
|
|
14
18
|
import {
|
|
15
19
|
GetProductsCommandInput,
|
|
16
20
|
GetProductsCommandOutput,
|
|
17
21
|
} from "../commands/GetProductsCommand";
|
|
22
|
+
import {
|
|
23
|
+
ListPriceListsCommandInput,
|
|
24
|
+
ListPriceListsCommandOutput,
|
|
25
|
+
} from "../commands/ListPriceListsCommand";
|
|
18
26
|
export declare const serializeAws_json1_1DescribeServicesCommand: (
|
|
19
27
|
input: DescribeServicesCommandInput,
|
|
20
28
|
context: __SerdeContext
|
|
@@ -23,10 +31,18 @@ export declare const serializeAws_json1_1GetAttributeValuesCommand: (
|
|
|
23
31
|
input: GetAttributeValuesCommandInput,
|
|
24
32
|
context: __SerdeContext
|
|
25
33
|
) => Promise<__HttpRequest>;
|
|
34
|
+
export declare const serializeAws_json1_1GetPriceListFileUrlCommand: (
|
|
35
|
+
input: GetPriceListFileUrlCommandInput,
|
|
36
|
+
context: __SerdeContext
|
|
37
|
+
) => Promise<__HttpRequest>;
|
|
26
38
|
export declare const serializeAws_json1_1GetProductsCommand: (
|
|
27
39
|
input: GetProductsCommandInput,
|
|
28
40
|
context: __SerdeContext
|
|
29
41
|
) => Promise<__HttpRequest>;
|
|
42
|
+
export declare const serializeAws_json1_1ListPriceListsCommand: (
|
|
43
|
+
input: ListPriceListsCommandInput,
|
|
44
|
+
context: __SerdeContext
|
|
45
|
+
) => Promise<__HttpRequest>;
|
|
30
46
|
export declare const deserializeAws_json1_1DescribeServicesCommand: (
|
|
31
47
|
output: __HttpResponse,
|
|
32
48
|
context: __SerdeContext
|
|
@@ -35,7 +51,15 @@ export declare const deserializeAws_json1_1GetAttributeValuesCommand: (
|
|
|
35
51
|
output: __HttpResponse,
|
|
36
52
|
context: __SerdeContext
|
|
37
53
|
) => Promise<GetAttributeValuesCommandOutput>;
|
|
54
|
+
export declare const deserializeAws_json1_1GetPriceListFileUrlCommand: (
|
|
55
|
+
output: __HttpResponse,
|
|
56
|
+
context: __SerdeContext
|
|
57
|
+
) => Promise<GetPriceListFileUrlCommandOutput>;
|
|
38
58
|
export declare const deserializeAws_json1_1GetProductsCommand: (
|
|
39
59
|
output: __HttpResponse,
|
|
40
60
|
context: __SerdeContext
|
|
41
61
|
) => Promise<GetProductsCommandOutput>;
|
|
62
|
+
export declare const deserializeAws_json1_1ListPriceListsCommand: (
|
|
63
|
+
output: __HttpResponse,
|
|
64
|
+
context: __SerdeContext
|
|
65
|
+
) => Promise<ListPriceListsCommandOutput>;
|
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.287.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",
|
|
@@ -20,25 +20,25 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.287.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.287.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.287.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.282.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.272.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.272.0",
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.282.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.282.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.282.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.287.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.282.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.287.0",
|
|
35
35
|
"@aws-sdk/middleware-serde": "3.272.0",
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.282.0",
|
|
37
37
|
"@aws-sdk/middleware-stack": "3.272.0",
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.282.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.287.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.282.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.282.0",
|
|
42
42
|
"@aws-sdk/smithy-client": "3.279.0",
|
|
43
43
|
"@aws-sdk/types": "3.272.0",
|
|
44
44
|
"@aws-sdk/url-parser": "3.272.0",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
48
|
"@aws-sdk/util-defaults-mode-browser": "3.279.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.287.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.272.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.272.0",
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.282.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.287.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|