@aws-sdk/client-billing 3.1086.0 → 3.1088.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-cjs/index.js +1 -1
- package/dist-types/ts3.4/Billing.d.ts +56 -62
- package/dist-types/ts3.4/BillingClient.d.ts +17 -33
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AssociateSourceViewsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateBillingViewCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteBillingViewCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DisassociateSourceViewsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetBillingPreferencesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetBillingViewCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetCreditAllocationHistoryCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetCreditsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListBillingViewsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListSourceViewsForBillingViewCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RedeemCreditsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateBillingPreferencesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateBillingViewCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +6 -12
- package/dist-types/ts3.4/models/errors.d.ts +7 -24
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DisassociateSourceViewsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DisassociateSourceViewsCommandInput
|
|
8
|
-
extends DisassociateSourceViewsRequest {}
|
|
7
|
+
export interface DisassociateSourceViewsCommandInput extends DisassociateSourceViewsRequest {}
|
|
9
8
|
export interface DisassociateSourceViewsCommandOutput
|
|
10
|
-
extends DisassociateSourceViewsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DisassociateSourceViewsResponse, __MetadataBearer {}
|
|
12
10
|
declare const DisassociateSourceViewsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DisassociateSourceViewsCommandInput
|
|
12
|
+
input: DisassociateSourceViewsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DisassociateSourceViewsCommandInput,
|
|
17
15
|
DisassociateSourceViewsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DisassociateSourceViewsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DisassociateSourceViewsCommandInput
|
|
21
|
+
input: DisassociateSourceViewsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DisassociateSourceViewsCommandInput,
|
|
26
24
|
DisassociateSourceViewsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetBillingPreferencesRequest,
|
|
4
|
-
GetBillingPreferencesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetBillingPreferencesRequest, GetBillingPreferencesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetBillingPreferencesCommandInput
|
|
8
|
-
extends GetBillingPreferencesRequest {}
|
|
4
|
+
export interface GetBillingPreferencesCommandInput extends GetBillingPreferencesRequest {}
|
|
9
5
|
export interface GetBillingPreferencesCommandOutput
|
|
10
|
-
extends GetBillingPreferencesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetBillingPreferencesResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetBillingPreferencesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetBillingPreferencesCommandInput
|
|
9
|
+
input: GetBillingPreferencesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetBillingPreferencesCommandInput,
|
|
17
12
|
GetBillingPreferencesCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetBillingPreferencesCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetBillingPreferencesCommandInput
|
|
18
|
+
input: GetBillingPreferencesCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetBillingPreferencesCommandInput,
|
|
26
21
|
GetBillingPreferencesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetBillingViewRequest,
|
|
4
|
-
GetBillingViewResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetBillingViewRequest, GetBillingViewResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetBillingViewCommandInput extends GetBillingViewRequest {}
|
|
8
|
-
export interface GetBillingViewCommandOutput
|
|
9
|
-
extends GetBillingViewResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetBillingViewCommandOutput extends GetBillingViewResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetBillingViewCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetBillingViewCommandInput
|
|
8
|
+
input: GetBillingViewCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetBillingViewCommandInput,
|
|
16
11
|
GetBillingViewCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetBillingViewCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetBillingViewCommandInput
|
|
17
|
+
input: GetBillingViewCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetBillingViewCommandInput,
|
|
25
20
|
GetBillingViewCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetCreditAllocationHistoryResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetCreditAllocationHistoryCommandInput
|
|
8
|
-
extends GetCreditAllocationHistoryRequest {}
|
|
7
|
+
export interface GetCreditAllocationHistoryCommandInput extends GetCreditAllocationHistoryRequest {}
|
|
9
8
|
export interface GetCreditAllocationHistoryCommandOutput
|
|
10
|
-
extends GetCreditAllocationHistoryResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetCreditAllocationHistoryResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetCreditAllocationHistoryCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetCreditAllocationHistoryCommandInput
|
|
12
|
+
input: GetCreditAllocationHistoryCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetCreditAllocationHistoryCommandInput,
|
|
17
15
|
GetCreditAllocationHistoryCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetCreditAllocationHistoryCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetCreditAllocationHistoryCommandInput
|
|
21
|
+
input: GetCreditAllocationHistoryCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetCreditAllocationHistoryCommandInput,
|
|
26
24
|
GetCreditAllocationHistoryCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetCreditsRequest, GetCreditsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetCreditsCommandInput extends GetCreditsRequest {}
|
|
5
|
-
export interface GetCreditsCommandOutput
|
|
6
|
-
extends GetCreditsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetCreditsCommandOutput extends GetCreditsResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetCreditsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetCreditsCommandInput
|
|
8
|
+
input: GetCreditsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetCreditsCommandInput,
|
|
13
11
|
GetCreditsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetCreditsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetCreditsCommandInput
|
|
17
|
+
input: GetCreditsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetCreditsCommandInput,
|
|
22
20
|
GetCreditsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetResourcePolicyRequest,
|
|
4
|
-
GetResourcePolicyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetResourcePolicyCommandInput
|
|
8
|
-
extends GetResourcePolicyRequest {}
|
|
4
|
+
export interface GetResourcePolicyCommandInput extends GetResourcePolicyRequest {}
|
|
9
5
|
export interface GetResourcePolicyCommandOutput
|
|
10
|
-
extends GetResourcePolicyResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetResourcePolicyResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetResourcePolicyCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetResourcePolicyCommandInput
|
|
9
|
+
input: GetResourcePolicyCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetResourcePolicyCommandInput,
|
|
17
12
|
GetResourcePolicyCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetResourcePolicyCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetResourcePolicyCommandInput
|
|
18
|
+
input: GetResourcePolicyCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetResourcePolicyCommandInput,
|
|
26
21
|
GetResourcePolicyCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListBillingViewsRequest,
|
|
4
|
-
ListBillingViewsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListBillingViewsRequest, ListBillingViewsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListBillingViewsCommandInput extends ListBillingViewsRequest {}
|
|
8
|
-
export interface ListBillingViewsCommandOutput
|
|
9
|
-
extends ListBillingViewsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListBillingViewsCommandOutput extends ListBillingViewsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListBillingViewsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListBillingViewsCommandInput
|
|
8
|
+
input: ListBillingViewsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListBillingViewsCommandInput,
|
|
16
11
|
ListBillingViewsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListSourceViewsForBillingViewResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSourceViewsForBillingViewCommandInput
|
|
8
|
-
extends ListSourceViewsForBillingViewRequest {}
|
|
7
|
+
export interface ListSourceViewsForBillingViewCommandInput extends ListSourceViewsForBillingViewRequest {}
|
|
9
8
|
export interface ListSourceViewsForBillingViewCommandOutput
|
|
10
|
-
extends ListSourceViewsForBillingViewResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListSourceViewsForBillingViewResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListSourceViewsForBillingViewCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListSourceViewsForBillingViewCommandInput
|
|
12
|
+
input: ListSourceViewsForBillingViewCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListSourceViewsForBillingViewCommandInput,
|
|
17
15
|
ListSourceViewsForBillingViewCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListSourceViewsForBillingViewCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListSourceViewsForBillingViewCommandInput
|
|
21
|
+
input: ListSourceViewsForBillingViewCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListSourceViewsForBillingViewCommandInput,
|
|
26
24
|
ListSourceViewsForBillingViewCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
RedeemCreditsRequest,
|
|
4
|
-
RedeemCreditsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { RedeemCreditsRequest, RedeemCreditsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface RedeemCreditsCommandInput extends RedeemCreditsRequest {}
|
|
8
|
-
export interface RedeemCreditsCommandOutput
|
|
9
|
-
extends RedeemCreditsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface RedeemCreditsCommandOutput extends RedeemCreditsResponse, __MetadataBearer {}
|
|
11
6
|
declare const RedeemCreditsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: RedeemCreditsCommandInput
|
|
8
|
+
input: RedeemCreditsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
RedeemCreditsCommandInput,
|
|
16
11
|
RedeemCreditsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const RedeemCreditsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: RedeemCreditsCommandInput
|
|
17
|
+
input: RedeemCreditsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
RedeemCreditsCommandInput,
|
|
25
20
|
RedeemCreditsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateBillingPreferencesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateBillingPreferencesCommandInput
|
|
8
|
-
extends UpdateBillingPreferencesRequest {}
|
|
7
|
+
export interface UpdateBillingPreferencesCommandInput extends UpdateBillingPreferencesRequest {}
|
|
9
8
|
export interface UpdateBillingPreferencesCommandOutput
|
|
10
|
-
extends UpdateBillingPreferencesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateBillingPreferencesResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateBillingPreferencesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateBillingPreferencesCommandInput
|
|
12
|
+
input: UpdateBillingPreferencesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateBillingPreferencesCommandInput,
|
|
17
15
|
UpdateBillingPreferencesCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateBillingPreferencesCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateBillingPreferencesCommandInput
|
|
21
|
+
input: UpdateBillingPreferencesCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateBillingPreferencesCommandInput,
|
|
26
24
|
UpdateBillingPreferencesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateBillingViewRequest,
|
|
4
|
-
UpdateBillingViewResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateBillingViewRequest, UpdateBillingViewResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateBillingViewCommandInput
|
|
8
|
-
extends UpdateBillingViewRequest {}
|
|
4
|
+
export interface UpdateBillingViewCommandInput extends UpdateBillingViewRequest {}
|
|
9
5
|
export interface UpdateBillingViewCommandOutput
|
|
10
|
-
extends UpdateBillingViewResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateBillingViewResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateBillingViewCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateBillingViewCommandInput
|
|
9
|
+
input: UpdateBillingViewCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateBillingViewCommandInput,
|
|
17
12
|
UpdateBillingViewCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateBillingViewCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateBillingViewCommandInput
|
|
18
|
+
input: UpdateBillingViewCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateBillingViewCommandInput,
|
|
26
21
|
UpdateBillingViewCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface BillingExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -2,8 +2,7 @@ export declare const ApplicationType: {
|
|
|
2
2
|
readonly AFTER_DISCOUNTS: "AFTER_DISCOUNTS";
|
|
3
3
|
readonly BEFORE_CROSS_SERVICE_DISCOUNTS: "BEFORE_CROSS_SERVICE_DISCOUNTS";
|
|
4
4
|
};
|
|
5
|
-
export type ApplicationType =
|
|
6
|
-
(typeof ApplicationType)[keyof typeof ApplicationType];
|
|
5
|
+
export type ApplicationType = (typeof ApplicationType)[keyof typeof ApplicationType];
|
|
7
6
|
export declare const ValidationExceptionReason: {
|
|
8
7
|
readonly CANNOT_PARSE: "cannotParse";
|
|
9
8
|
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
@@ -25,8 +24,7 @@ export declare const BillingFeature: {
|
|
|
25
24
|
readonly RI_SHARING: "RI_SHARING";
|
|
26
25
|
readonly RI_SHARING_HISTORY: "RI_SHARING_HISTORY";
|
|
27
26
|
};
|
|
28
|
-
export type BillingFeature =
|
|
29
|
-
(typeof BillingFeature)[keyof typeof BillingFeature];
|
|
27
|
+
export type BillingFeature = (typeof BillingFeature)[keyof typeof BillingFeature];
|
|
30
28
|
export declare const BillingFeatureFilterName: {
|
|
31
29
|
readonly PREFERENCE_KEY: "PREFERENCE_KEY";
|
|
32
30
|
};
|
|
@@ -36,8 +34,7 @@ export declare const PreferenceValue: {
|
|
|
36
34
|
readonly DISABLED: "DISABLED";
|
|
37
35
|
readonly ENABLED: "ENABLED";
|
|
38
36
|
};
|
|
39
|
-
export type PreferenceValue =
|
|
40
|
-
(typeof PreferenceValue)[keyof typeof PreferenceValue];
|
|
37
|
+
export type PreferenceValue = (typeof PreferenceValue)[keyof typeof PreferenceValue];
|
|
41
38
|
export declare const BillingViewType: {
|
|
42
39
|
readonly BILLING_GROUP: "BILLING_GROUP";
|
|
43
40
|
readonly BILLING_TRANSFER: "BILLING_TRANSFER";
|
|
@@ -45,16 +42,14 @@ export declare const BillingViewType: {
|
|
|
45
42
|
readonly CUSTOM: "CUSTOM";
|
|
46
43
|
readonly PRIMARY: "PRIMARY";
|
|
47
44
|
};
|
|
48
|
-
export type BillingViewType =
|
|
49
|
-
(typeof BillingViewType)[keyof typeof BillingViewType];
|
|
45
|
+
export type BillingViewType = (typeof BillingViewType)[keyof typeof BillingViewType];
|
|
50
46
|
export declare const BillingViewStatus: {
|
|
51
47
|
readonly CREATING: "CREATING";
|
|
52
48
|
readonly HEALTHY: "HEALTHY";
|
|
53
49
|
readonly UNHEALTHY: "UNHEALTHY";
|
|
54
50
|
readonly UPDATING: "UPDATING";
|
|
55
51
|
};
|
|
56
|
-
export type BillingViewStatus =
|
|
57
|
-
(typeof BillingViewStatus)[keyof typeof BillingViewStatus];
|
|
52
|
+
export type BillingViewStatus = (typeof BillingViewStatus)[keyof typeof BillingViewStatus];
|
|
58
53
|
export declare const BillingViewStatusReason: {
|
|
59
54
|
readonly AGGREGATE_SOURCE: "AGGREGATE_SOURCE";
|
|
60
55
|
readonly CYCLIC_DEPENDENCY: "CYCLIC_DEPENDENCY";
|
|
@@ -73,8 +68,7 @@ export declare const CreditSharingType: {
|
|
|
73
68
|
readonly DEFAULT: "DEFAULT";
|
|
74
69
|
readonly DISABLED: "DISABLED";
|
|
75
70
|
};
|
|
76
|
-
export type CreditSharingType =
|
|
77
|
-
(typeof CreditSharingType)[keyof typeof CreditSharingType];
|
|
71
|
+
export type CreditSharingType = (typeof CreditSharingType)[keyof typeof CreditSharingType];
|
|
78
72
|
export declare const CreditStatus: {
|
|
79
73
|
readonly DISABLED: "DISABLED";
|
|
80
74
|
readonly ENABLED: "ENABLED";
|
|
@@ -5,19 +5,12 @@ import { ValidationExceptionField } from "./models_0";
|
|
|
5
5
|
export declare class AccessDeniedException extends __BaseException {
|
|
6
6
|
readonly name: "AccessDeniedException";
|
|
7
7
|
readonly $fault: "client";
|
|
8
|
-
constructor(
|
|
9
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
|
-
);
|
|
8
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
11
9
|
}
|
|
12
10
|
export declare class BillingViewHealthStatusException extends __BaseException {
|
|
13
11
|
readonly name: "BillingViewHealthStatusException";
|
|
14
12
|
readonly $fault: "client";
|
|
15
|
-
constructor(
|
|
16
|
-
opts: __ExceptionOptionType<
|
|
17
|
-
BillingViewHealthStatusException,
|
|
18
|
-
__BaseException
|
|
19
|
-
>
|
|
20
|
-
);
|
|
13
|
+
constructor(opts: __ExceptionOptionType<BillingViewHealthStatusException, __BaseException>);
|
|
21
14
|
}
|
|
22
15
|
export declare class ConflictException extends __BaseException {
|
|
23
16
|
readonly name: "ConflictException";
|
|
@@ -29,18 +22,14 @@ export declare class ConflictException extends __BaseException {
|
|
|
29
22
|
export declare class InternalServerException extends __BaseException {
|
|
30
23
|
readonly name: "InternalServerException";
|
|
31
24
|
readonly $fault: "server";
|
|
32
|
-
constructor(
|
|
33
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
34
|
-
);
|
|
25
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
35
26
|
}
|
|
36
27
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
37
28
|
readonly name: "ResourceNotFoundException";
|
|
38
29
|
readonly $fault: "client";
|
|
39
30
|
resourceId: string | undefined;
|
|
40
31
|
resourceType: string | undefined;
|
|
41
|
-
constructor(
|
|
42
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
43
|
-
);
|
|
32
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
44
33
|
}
|
|
45
34
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
46
35
|
readonly name: "ServiceQuotaExceededException";
|
|
@@ -49,23 +38,17 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
49
38
|
resourceType: string | undefined;
|
|
50
39
|
serviceCode: string | undefined;
|
|
51
40
|
quotaCode: string | undefined;
|
|
52
|
-
constructor(
|
|
53
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
54
|
-
);
|
|
41
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
55
42
|
}
|
|
56
43
|
export declare class ThrottlingException extends __BaseException {
|
|
57
44
|
readonly name: "ThrottlingException";
|
|
58
45
|
readonly $fault: "client";
|
|
59
|
-
constructor(
|
|
60
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
61
|
-
);
|
|
46
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
62
47
|
}
|
|
63
48
|
export declare class ValidationException extends __BaseException {
|
|
64
49
|
readonly name: "ValidationException";
|
|
65
50
|
readonly $fault: "client";
|
|
66
51
|
reason: ValidationExceptionReason | undefined;
|
|
67
52
|
fieldList?: ValidationExceptionField[] | undefined;
|
|
68
|
-
constructor(
|
|
69
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
70
|
-
);
|
|
53
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
71
54
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { BillingClient } from "../BillingClient";
|
|
3
|
-
export interface BillingPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface BillingPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: BillingClient;
|
|
6
5
|
}
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: BillingClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: BillingClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: BillingClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: BillingClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|