@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 +16 -0
- package/dist-types/ts3.4/Pricing.d.ts +58 -20
- package/dist-types/ts3.4/PricingClient.d.ts +147 -76
- package/dist-types/ts3.4/commands/DescribeServicesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetAttributeValuesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetProductsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +3 -3
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/PricingServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +154 -138
- package/dist-types/ts3.4/pagination/DescribeServicesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetAttributeValuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetProductsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +41 -11
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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";
|