@aws-sdk/client-pricing 3.353.0 → 3.355.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 +25 -14
- package/dist-types/Pricing.d.ts +25 -14
- package/dist-types/PricingClient.d.ts +25 -14
- package/dist-types/index.d.ts +25 -14
- package/package.json +9 -9
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
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
<
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
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>
|
|
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>
|
package/dist-types/Pricing.d.ts
CHANGED
|
@@ -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
|
-
*
|
|
44
|
-
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
*
|
|
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>
|
|
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>
|
|
@@ -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
|
-
*
|
|
155
|
-
*
|
|
156
|
-
*
|
|
157
|
-
*
|
|
158
|
-
*
|
|
159
|
-
*
|
|
160
|
-
*
|
|
161
|
-
*
|
|
162
|
-
*
|
|
163
|
-
*
|
|
164
|
-
*
|
|
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>
|
|
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>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,20 +1,31 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* <p>Amazon Web Services Price List API is a centralized and convenient way to
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
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>
|
|
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.
|
|
4
|
+
"version": "3.355.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,9 +21,9 @@
|
|
|
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.
|
|
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
27
|
"@aws-sdk/fetch-http-handler": "3.353.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.347.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.347.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.347.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.347.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.347.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.354.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.347.0",
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.354.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.347.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.352.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.354.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.350.0",
|
|
42
42
|
"@aws-sdk/smithy-client": "3.347.0",
|
|
43
43
|
"@aws-sdk/types": "3.347.0",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-defaults-mode-browser": "3.353.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.354.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.352.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.347.0",
|
|
52
52
|
"@aws-sdk/util-user-agent-browser": "3.347.0",
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.354.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",
|