@aws-sdk/client-pricing 3.775.0 → 3.777.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-types/commands/DescribeServicesCommand.d.ts +11 -11
- package/dist-types/commands/GetAttributeValuesCommand.d.ts +10 -10
- package/dist-types/commands/GetPriceListFileUrlCommand.d.ts +1 -0
- package/dist-types/commands/GetProductsCommand.d.ts +1 -0
- package/dist-types/commands/ListPriceListsCommand.d.ts +1 -0
- package/package.json +2 -2
|
@@ -91,38 +91,38 @@ declare const DescribeServicesCommand_base: {
|
|
|
91
91
|
* @throws {@link PricingServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from Pricing service.</p>
|
|
93
93
|
*
|
|
94
|
-
*
|
|
94
|
+
*
|
|
95
95
|
* @example To retrieve a list of services and service codes
|
|
96
96
|
* ```javascript
|
|
97
97
|
* // Retrieves the service for the given Service Code.
|
|
98
98
|
* const input = {
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
99
|
+
* FormatVersion: "aws_v1",
|
|
100
|
+
* MaxResults: 1,
|
|
101
|
+
* ServiceCode: "AmazonEC2"
|
|
102
102
|
* };
|
|
103
103
|
* const command = new DescribeServicesCommand(input);
|
|
104
104
|
* const response = await client.send(command);
|
|
105
|
-
* /* response
|
|
105
|
+
* /* response is
|
|
106
106
|
* {
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
*
|
|
107
|
+
* FormatVersion: "aws_v1",
|
|
108
|
+
* NextToken: "abcdefg123",
|
|
109
|
+
* Services: [
|
|
110
110
|
* {
|
|
111
|
-
*
|
|
111
|
+
* AttributeNames: [
|
|
112
112
|
* "volumeType",
|
|
113
113
|
* "maxIopsvolume",
|
|
114
114
|
* "instanceCapacity10xlarge",
|
|
115
115
|
* "locationType",
|
|
116
116
|
* "operation"
|
|
117
117
|
* ],
|
|
118
|
-
*
|
|
118
|
+
* ServiceCode: "AmazonEC2"
|
|
119
119
|
* }
|
|
120
120
|
* ]
|
|
121
121
|
* }
|
|
122
122
|
* *\/
|
|
123
|
-
* // example id: example-1
|
|
124
123
|
* ```
|
|
125
124
|
*
|
|
125
|
+
* @public
|
|
126
126
|
*/
|
|
127
127
|
export declare class DescribeServicesCommand extends DescribeServicesCommand_base {
|
|
128
128
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -84,33 +84,33 @@ declare const GetAttributeValuesCommand_base: {
|
|
|
84
84
|
* @throws {@link PricingServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from Pricing service.</p>
|
|
86
86
|
*
|
|
87
|
-
*
|
|
87
|
+
*
|
|
88
88
|
* @example To retrieve a list of attribute values
|
|
89
89
|
* ```javascript
|
|
90
90
|
* // This operation returns a list of values available for the given attribute.
|
|
91
91
|
* const input = {
|
|
92
|
-
*
|
|
93
|
-
*
|
|
94
|
-
*
|
|
92
|
+
* AttributeName: "volumeType",
|
|
93
|
+
* MaxResults: 2,
|
|
94
|
+
* ServiceCode: "AmazonEC2"
|
|
95
95
|
* };
|
|
96
96
|
* const command = new GetAttributeValuesCommand(input);
|
|
97
97
|
* const response = await client.send(command);
|
|
98
|
-
* /* response
|
|
98
|
+
* /* response is
|
|
99
99
|
* {
|
|
100
|
-
*
|
|
100
|
+
* AttributeValues: [
|
|
101
101
|
* {
|
|
102
|
-
*
|
|
102
|
+
* Value: "Throughput Optimized HDD"
|
|
103
103
|
* },
|
|
104
104
|
* {
|
|
105
|
-
*
|
|
105
|
+
* Value: "Provisioned IOPS"
|
|
106
106
|
* }
|
|
107
107
|
* ],
|
|
108
|
-
*
|
|
108
|
+
* NextToken: "GpgauEXAMPLEezucl5LV0w==:7GzYJ0nw0DBTJ2J66EoTIIynE6O1uXwQtTRqioJzQadBnDVgHPzI1en4BUQnPCLpzeBk9RQQAWaFieA4+DapFAGLgk+Z/9/cTw9GldnPOHN98+FdmJP7wKU3QQpQ8MQr5KOeBkIsAqvAQYdL0DkL7tHwPtE5iCEByAmg9gcC/yBU1vAOsf7R3VaNN4M5jMDv3woSWqASSIlBVB6tgW78YL22KhssoItM/jWW+aP6Jqtq4mldxp/ct6DWAl+xLFwHU/CbketimPPXyqHF3/UXDw=="
|
|
109
109
|
* }
|
|
110
110
|
* *\/
|
|
111
|
-
* // example id: example-1
|
|
112
111
|
* ```
|
|
113
112
|
*
|
|
113
|
+
* @public
|
|
114
114
|
*/
|
|
115
115
|
export declare class GetAttributeValuesCommand extends GetAttributeValuesCommand_base {
|
|
116
116
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -81,6 +81,7 @@ declare const GetPriceListFileUrlCommand_base: {
|
|
|
81
81
|
* @throws {@link PricingServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from Pricing service.</p>
|
|
83
83
|
*
|
|
84
|
+
*
|
|
84
85
|
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class GetPriceListFileUrlCommand extends GetPriceListFileUrlCommand_base {
|
|
@@ -87,6 +87,7 @@ declare const GetProductsCommand_base: {
|
|
|
87
87
|
* @throws {@link PricingServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from Pricing service.</p>
|
|
89
89
|
*
|
|
90
|
+
*
|
|
90
91
|
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class GetProductsCommand extends GetProductsCommand_base {
|
|
@@ -105,6 +105,7 @@ declare const ListPriceListsCommand_base: {
|
|
|
105
105
|
* @throws {@link PricingServiceException}
|
|
106
106
|
* <p>Base exception class for all service exceptions from Pricing service.</p>
|
|
107
107
|
*
|
|
108
|
+
*
|
|
108
109
|
* @public
|
|
109
110
|
*/
|
|
110
111
|
export declare class ListPriceListsCommand extends ListPriceListsCommand_base {
|
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.777.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-pricing",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.775.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.777.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.775.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|