@aws-sdk/client-pricing 3.168.0 → 3.170.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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-pricing
9
+
10
+
11
+
12
+
13
+
14
+ # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-pricing
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-pricing
@@ -1,20 +1,58 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { DescribeServicesCommandInput, DescribeServicesCommandOutput } from "./commands/DescribeServicesCommand";
3
- import { GetAttributeValuesCommandInput, GetAttributeValuesCommandOutput } from "./commands/GetAttributeValuesCommand";
4
- import { GetProductsCommandInput, GetProductsCommandOutput } from "./commands/GetProductsCommand";
5
- import { PricingClient } from "./PricingClient";
6
-
7
- export declare class Pricing extends PricingClient {
8
-
9
- describeServices(args: DescribeServicesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeServicesCommandOutput>;
10
- describeServices(args: DescribeServicesCommandInput, cb: (err: any, data?: DescribeServicesCommandOutput) => void): void;
11
- describeServices(args: DescribeServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeServicesCommandOutput) => void): void;
12
-
13
- getAttributeValues(args: GetAttributeValuesCommandInput, options?: __HttpHandlerOptions): Promise<GetAttributeValuesCommandOutput>;
14
- getAttributeValues(args: GetAttributeValuesCommandInput, cb: (err: any, data?: GetAttributeValuesCommandOutput) => void): void;
15
- getAttributeValues(args: GetAttributeValuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAttributeValuesCommandOutput) => void): void;
16
-
17
- getProducts(args: GetProductsCommandInput, options?: __HttpHandlerOptions): Promise<GetProductsCommandOutput>;
18
- getProducts(args: GetProductsCommandInput, cb: (err: any, data?: GetProductsCommandOutput) => void): void;
19
- getProducts(args: GetProductsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProductsCommandOutput) => void): void;
20
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ DescribeServicesCommandInput,
4
+ DescribeServicesCommandOutput,
5
+ } from "./commands/DescribeServicesCommand";
6
+ import {
7
+ GetAttributeValuesCommandInput,
8
+ GetAttributeValuesCommandOutput,
9
+ } from "./commands/GetAttributeValuesCommand";
10
+ import {
11
+ GetProductsCommandInput,
12
+ GetProductsCommandOutput,
13
+ } from "./commands/GetProductsCommand";
14
+ import { PricingClient } from "./PricingClient";
15
+
16
+ export declare class Pricing extends PricingClient {
17
+ describeServices(
18
+ args: DescribeServicesCommandInput,
19
+ options?: __HttpHandlerOptions
20
+ ): Promise<DescribeServicesCommandOutput>;
21
+ describeServices(
22
+ args: DescribeServicesCommandInput,
23
+ cb: (err: any, data?: DescribeServicesCommandOutput) => void
24
+ ): void;
25
+ describeServices(
26
+ args: DescribeServicesCommandInput,
27
+ options: __HttpHandlerOptions,
28
+ cb: (err: any, data?: DescribeServicesCommandOutput) => void
29
+ ): void;
30
+
31
+ getAttributeValues(
32
+ args: GetAttributeValuesCommandInput,
33
+ options?: __HttpHandlerOptions
34
+ ): Promise<GetAttributeValuesCommandOutput>;
35
+ getAttributeValues(
36
+ args: GetAttributeValuesCommandInput,
37
+ cb: (err: any, data?: GetAttributeValuesCommandOutput) => void
38
+ ): void;
39
+ getAttributeValues(
40
+ args: GetAttributeValuesCommandInput,
41
+ options: __HttpHandlerOptions,
42
+ cb: (err: any, data?: GetAttributeValuesCommandOutput) => void
43
+ ): void;
44
+
45
+ getProducts(
46
+ args: GetProductsCommandInput,
47
+ options?: __HttpHandlerOptions
48
+ ): Promise<GetProductsCommandOutput>;
49
+ getProducts(
50
+ args: GetProductsCommandInput,
51
+ cb: (err: any, data?: GetProductsCommandOutput) => void
52
+ ): void;
53
+ getProducts(
54
+ args: GetProductsCommandInput,
55
+ options: __HttpHandlerOptions,
56
+ cb: (err: any, data?: GetProductsCommandOutput) => void
57
+ ): void;
58
+ }
@@ -1,76 +1,147 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { DescribeServicesCommandInput, DescribeServicesCommandOutput } from "./commands/DescribeServicesCommand";
10
- import { GetAttributeValuesCommandInput, GetAttributeValuesCommandOutput } from "./commands/GetAttributeValuesCommand";
11
- import { GetProductsCommandInput, GetProductsCommandOutput } from "./commands/GetProductsCommand";
12
- export declare type ServiceInputTypes = DescribeServicesCommandInput | GetAttributeValuesCommandInput | GetProductsCommandInput;
13
- export declare type ServiceOutputTypes = DescribeServicesCommandOutput | GetAttributeValuesCommandOutput | GetProductsCommandOutput;
14
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
15
-
16
- requestHandler?: __HttpHandler;
17
-
18
- sha256?: __HashConstructor;
19
-
20
- urlParser?: __UrlParser;
21
-
22
- bodyLengthChecker?: __BodyLengthCalculator;
23
-
24
- streamCollector?: __StreamCollector;
25
-
26
- base64Decoder?: __Decoder;
27
-
28
- base64Encoder?: __Encoder;
29
-
30
- utf8Decoder?: __Decoder;
31
-
32
- utf8Encoder?: __Encoder;
33
-
34
- runtime?: string;
35
-
36
- disableHostPrefix?: boolean;
37
-
38
- maxAttempts?: number | __Provider<number>;
39
-
40
- retryMode?: string | __Provider<string>;
41
-
42
- logger?: __Logger;
43
-
44
- useDualstackEndpoint?: boolean | __Provider<boolean>;
45
-
46
- useFipsEndpoint?: boolean | __Provider<boolean>;
47
-
48
- serviceId?: string;
49
-
50
- region?: string | __Provider<string>;
51
-
52
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
53
-
54
- regionInfoProvider?: RegionInfoProvider;
55
-
56
- defaultUserAgentProvider?: Provider<__UserAgent>;
57
-
58
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
59
- }
60
- declare type PricingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
61
-
62
- export interface PricingClientConfig extends PricingClientConfigType {
63
- }
64
- declare type PricingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
65
-
66
- export interface PricingClientResolvedConfig extends PricingClientResolvedConfigType {
67
- }
68
-
69
- export declare class PricingClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, PricingClientResolvedConfig> {
70
-
71
- readonly config: PricingClientResolvedConfig;
72
- constructor(configuration: PricingClientConfig);
73
-
74
- destroy(): void;
75
- }
76
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ DescribeServicesCommandInput,
47
+ DescribeServicesCommandOutput,
48
+ } from "./commands/DescribeServicesCommand";
49
+ import {
50
+ GetAttributeValuesCommandInput,
51
+ GetAttributeValuesCommandOutput,
52
+ } from "./commands/GetAttributeValuesCommand";
53
+ import {
54
+ GetProductsCommandInput,
55
+ GetProductsCommandOutput,
56
+ } from "./commands/GetProductsCommand";
57
+ export declare type ServiceInputTypes =
58
+ | DescribeServicesCommandInput
59
+ | GetAttributeValuesCommandInput
60
+ | GetProductsCommandInput;
61
+ export declare type ServiceOutputTypes =
62
+ | DescribeServicesCommandOutput
63
+ | GetAttributeValuesCommandOutput
64
+ | GetProductsCommandOutput;
65
+ export interface ClientDefaults
66
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
67
+ requestHandler?: __HttpHandler;
68
+
69
+ sha256?: __HashConstructor;
70
+
71
+ urlParser?: __UrlParser;
72
+
73
+ bodyLengthChecker?: __BodyLengthCalculator;
74
+
75
+ streamCollector?: __StreamCollector;
76
+
77
+ base64Decoder?: __Decoder;
78
+
79
+ base64Encoder?: __Encoder;
80
+
81
+ utf8Decoder?: __Decoder;
82
+
83
+ utf8Encoder?: __Encoder;
84
+
85
+ runtime?: string;
86
+
87
+ disableHostPrefix?: boolean;
88
+
89
+ maxAttempts?: number | __Provider<number>;
90
+
91
+ retryMode?: string | __Provider<string>;
92
+
93
+ logger?: __Logger;
94
+
95
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
96
+
97
+ useFipsEndpoint?: boolean | __Provider<boolean>;
98
+
99
+ serviceId?: string;
100
+
101
+ region?: string | __Provider<string>;
102
+
103
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
104
+
105
+ regionInfoProvider?: RegionInfoProvider;
106
+
107
+ defaultUserAgentProvider?: Provider<__UserAgent>;
108
+
109
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
110
+ }
111
+ declare type PricingClientConfigType = Partial<
112
+ __SmithyConfiguration<__HttpHandlerOptions>
113
+ > &
114
+ ClientDefaults &
115
+ RegionInputConfig &
116
+ EndpointsInputConfig &
117
+ RetryInputConfig &
118
+ HostHeaderInputConfig &
119
+ AwsAuthInputConfig &
120
+ UserAgentInputConfig;
121
+
122
+ export interface PricingClientConfig extends PricingClientConfigType {}
123
+ declare type PricingClientResolvedConfigType =
124
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
125
+ Required<ClientDefaults> &
126
+ RegionResolvedConfig &
127
+ EndpointsResolvedConfig &
128
+ RetryResolvedConfig &
129
+ HostHeaderResolvedConfig &
130
+ AwsAuthResolvedConfig &
131
+ UserAgentResolvedConfig;
132
+
133
+ export interface PricingClientResolvedConfig
134
+ extends PricingClientResolvedConfigType {}
135
+
136
+ export declare class PricingClient extends __Client<
137
+ __HttpHandlerOptions,
138
+ ServiceInputTypes,
139
+ ServiceOutputTypes,
140
+ PricingClientResolvedConfig
141
+ > {
142
+ readonly config: PricingClientResolvedConfig;
143
+ constructor(configuration: PricingClientConfig);
144
+
145
+ destroy(): void;
146
+ }
147
+ export {};
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeServicesRequest, DescribeServicesResponse } from "../models/models_0";
4
- import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient";
5
- export interface DescribeServicesCommandInput extends DescribeServicesRequest {
6
- }
7
- export interface DescribeServicesCommandOutput extends DescribeServicesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeServicesCommand extends $Command<DescribeServicesCommandInput, DescribeServicesCommandOutput, PricingClientResolvedConfig> {
11
- readonly input: DescribeServicesCommandInput;
12
- constructor(input: DescribeServicesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PricingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeServicesCommandInput, DescribeServicesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DescribeServicesRequest,
10
+ DescribeServicesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ PricingClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../PricingClient";
17
+ export interface DescribeServicesCommandInput extends DescribeServicesRequest {}
18
+ export interface DescribeServicesCommandOutput
19
+ extends DescribeServicesResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DescribeServicesCommand extends $Command<
23
+ DescribeServicesCommandInput,
24
+ DescribeServicesCommandOutput,
25
+ PricingClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeServicesCommandInput;
28
+ constructor(input: DescribeServicesCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: PricingClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeServicesCommandInput, DescribeServicesCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetAttributeValuesRequest, GetAttributeValuesResponse } from "../models/models_0";
4
- import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient";
5
- export interface GetAttributeValuesCommandInput extends GetAttributeValuesRequest {
6
- }
7
- export interface GetAttributeValuesCommandOutput extends GetAttributeValuesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetAttributeValuesCommand extends $Command<GetAttributeValuesCommandInput, GetAttributeValuesCommandOutput, PricingClientResolvedConfig> {
11
- readonly input: GetAttributeValuesCommandInput;
12
- constructor(input: GetAttributeValuesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PricingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAttributeValuesCommandInput, GetAttributeValuesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetAttributeValuesRequest,
10
+ GetAttributeValuesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ PricingClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../PricingClient";
17
+ export interface GetAttributeValuesCommandInput
18
+ extends GetAttributeValuesRequest {}
19
+ export interface GetAttributeValuesCommandOutput
20
+ extends GetAttributeValuesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetAttributeValuesCommand extends $Command<
24
+ GetAttributeValuesCommandInput,
25
+ GetAttributeValuesCommandOutput,
26
+ PricingClientResolvedConfig
27
+ > {
28
+ readonly input: GetAttributeValuesCommandInput;
29
+ constructor(input: GetAttributeValuesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: PricingClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetAttributeValuesCommandInput, GetAttributeValuesCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetProductsRequest, GetProductsResponse } from "../models/models_0";
4
- import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient";
5
- export interface GetProductsCommandInput extends GetProductsRequest {
6
- }
7
- export interface GetProductsCommandOutput extends GetProductsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetProductsCommand extends $Command<GetProductsCommandInput, GetProductsCommandOutput, PricingClientResolvedConfig> {
11
- readonly input: GetProductsCommandInput;
12
- constructor(input: GetProductsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PricingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetProductsCommandInput, GetProductsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { GetProductsRequest, GetProductsResponse } from "../models/models_0";
9
+ import {
10
+ PricingClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../PricingClient";
14
+ export interface GetProductsCommandInput extends GetProductsRequest {}
15
+ export interface GetProductsCommandOutput
16
+ extends GetProductsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetProductsCommand extends $Command<
20
+ GetProductsCommandInput,
21
+ GetProductsCommandOutput,
22
+ PricingClientResolvedConfig
23
+ > {
24
+ readonly input: GetProductsCommandInput;
25
+ constructor(input: GetProductsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: PricingClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetProductsCommandInput, GetProductsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,3 +1,3 @@
1
- export * from "./DescribeServicesCommand";
2
- export * from "./GetAttributeValuesCommand";
3
- export * from "./GetProductsCommand";
1
+ export * from "./DescribeServicesCommand";
2
+ export * from "./GetAttributeValuesCommand";
3
+ export * from "./GetProductsCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./Pricing";
2
- export * from "./PricingClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { PricingServiceException } from "./models/PricingServiceException";
1
+ export * from "./Pricing";
2
+ export * from "./PricingClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { PricingServiceException } from "./models/PricingServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class PricingServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class PricingServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";