@aws-sdk/client-billing 3.714.0 → 3.717.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.
Files changed (66) hide show
  1. package/README.md +72 -0
  2. package/dist-cjs/Billing.js +18 -0
  3. package/dist-cjs/commands/CreateBillingViewCommand.js +27 -0
  4. package/dist-cjs/commands/DeleteBillingViewCommand.js +26 -0
  5. package/dist-cjs/commands/GetBillingViewCommand.js +27 -0
  6. package/dist-cjs/commands/GetResourcePolicyCommand.js +26 -0
  7. package/dist-cjs/commands/ListSourceViewsForBillingViewCommand.js +26 -0
  8. package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
  9. package/dist-cjs/commands/TagResourceCommand.js +26 -0
  10. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  11. package/dist-cjs/commands/UpdateBillingViewCommand.js +27 -0
  12. package/dist-cjs/commands/index.js +9 -0
  13. package/dist-cjs/models/models_0.js +80 -5
  14. package/dist-cjs/pagination/ListSourceViewsForBillingViewPaginator.js +7 -0
  15. package/dist-cjs/pagination/index.js +1 -0
  16. package/dist-cjs/protocols/Aws_json1_0.js +269 -1
  17. package/dist-es/Billing.js +18 -0
  18. package/dist-es/commands/CreateBillingViewCommand.js +23 -0
  19. package/dist-es/commands/DeleteBillingViewCommand.js +22 -0
  20. package/dist-es/commands/GetBillingViewCommand.js +23 -0
  21. package/dist-es/commands/GetResourcePolicyCommand.js +22 -0
  22. package/dist-es/commands/ListSourceViewsForBillingViewCommand.js +22 -0
  23. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  24. package/dist-es/commands/TagResourceCommand.js +22 -0
  25. package/dist-es/commands/UntagResourceCommand.js +22 -0
  26. package/dist-es/commands/UpdateBillingViewCommand.js +23 -0
  27. package/dist-es/commands/index.js +9 -0
  28. package/dist-es/models/models_0.js +72 -4
  29. package/dist-es/pagination/ListSourceViewsForBillingViewPaginator.js +4 -0
  30. package/dist-es/pagination/index.js +1 -0
  31. package/dist-es/protocols/Aws_json1_0.js +252 -2
  32. package/dist-types/Billing.d.ts +64 -0
  33. package/dist-types/BillingClient.d.ts +11 -2
  34. package/dist-types/commands/CreateBillingViewCommand.d.ts +124 -0
  35. package/dist-types/commands/DeleteBillingViewCommand.d.ts +91 -0
  36. package/dist-types/commands/GetBillingViewCommand.d.ts +114 -0
  37. package/dist-types/commands/GetResourcePolicyCommand.d.ts +93 -0
  38. package/dist-types/commands/ListBillingViewsCommand.d.ts +12 -4
  39. package/dist-types/commands/ListSourceViewsForBillingViewCommand.d.ts +97 -0
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +97 -0
  41. package/dist-types/commands/TagResourceCommand.d.ts +97 -0
  42. package/dist-types/commands/UntagResourceCommand.d.ts +94 -0
  43. package/dist-types/commands/UpdateBillingViewCommand.d.ts +119 -0
  44. package/dist-types/commands/index.d.ts +9 -0
  45. package/dist-types/models/models_0.d.ts +640 -37
  46. package/dist-types/pagination/ListSourceViewsForBillingViewPaginator.d.ts +7 -0
  47. package/dist-types/pagination/index.d.ts +1 -0
  48. package/dist-types/protocols/Aws_json1_0.d.ts +81 -0
  49. package/dist-types/ts3.4/Billing.d.ts +154 -0
  50. package/dist-types/ts3.4/BillingClient.d.ts +58 -2
  51. package/dist-types/ts3.4/commands/CreateBillingViewCommand.d.ts +51 -0
  52. package/dist-types/ts3.4/commands/DeleteBillingViewCommand.d.ts +51 -0
  53. package/dist-types/ts3.4/commands/GetBillingViewCommand.d.ts +50 -0
  54. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
  55. package/dist-types/ts3.4/commands/ListBillingViewsCommand.d.ts +10 -6
  56. package/dist-types/ts3.4/commands/ListSourceViewsForBillingViewCommand.d.ts +51 -0
  57. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  58. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  59. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  60. package/dist-types/ts3.4/commands/UpdateBillingViewCommand.d.ts +51 -0
  61. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  62. package/dist-types/ts3.4/models/models_0.d.ts +160 -20
  63. package/dist-types/ts3.4/pagination/ListSourceViewsForBillingViewPaginator.d.ts +11 -0
  64. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  65. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +108 -0
  66. package/package.json +15 -13
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListSourceViewsForBillingViewCommandInput, ListSourceViewsForBillingViewCommandOutput } from "../commands/ListSourceViewsForBillingViewCommand";
3
+ import { BillingPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListSourceViewsForBillingView: (config: BillingPaginationConfiguration, input: ListSourceViewsForBillingViewCommandInput, ...rest: any[]) => Paginator<ListSourceViewsForBillingViewCommandOutput>;
@@ -1,2 +1,3 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListBillingViewsPaginator";
3
+ export * from "./ListSourceViewsForBillingViewPaginator";
@@ -1,11 +1,92 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { CreateBillingViewCommandInput, CreateBillingViewCommandOutput } from "../commands/CreateBillingViewCommand";
4
+ import { DeleteBillingViewCommandInput, DeleteBillingViewCommandOutput } from "../commands/DeleteBillingViewCommand";
5
+ import { GetBillingViewCommandInput, GetBillingViewCommandOutput } from "../commands/GetBillingViewCommand";
6
+ import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "../commands/GetResourcePolicyCommand";
3
7
  import { ListBillingViewsCommandInput, ListBillingViewsCommandOutput } from "../commands/ListBillingViewsCommand";
8
+ import { ListSourceViewsForBillingViewCommandInput, ListSourceViewsForBillingViewCommandOutput } from "../commands/ListSourceViewsForBillingViewCommand";
9
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
10
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
11
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
12
+ import { UpdateBillingViewCommandInput, UpdateBillingViewCommandOutput } from "../commands/UpdateBillingViewCommand";
13
+ /**
14
+ * serializeAws_json1_0CreateBillingViewCommand
15
+ */
16
+ export declare const se_CreateBillingViewCommand: (input: CreateBillingViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
+ /**
18
+ * serializeAws_json1_0DeleteBillingViewCommand
19
+ */
20
+ export declare const se_DeleteBillingViewCommand: (input: DeleteBillingViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ /**
22
+ * serializeAws_json1_0GetBillingViewCommand
23
+ */
24
+ export declare const se_GetBillingViewCommand: (input: GetBillingViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ /**
26
+ * serializeAws_json1_0GetResourcePolicyCommand
27
+ */
28
+ export declare const se_GetResourcePolicyCommand: (input: GetResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
4
29
  /**
5
30
  * serializeAws_json1_0ListBillingViewsCommand
6
31
  */
7
32
  export declare const se_ListBillingViewsCommand: (input: ListBillingViewsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
+ /**
34
+ * serializeAws_json1_0ListSourceViewsForBillingViewCommand
35
+ */
36
+ export declare const se_ListSourceViewsForBillingViewCommand: (input: ListSourceViewsForBillingViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
+ /**
38
+ * serializeAws_json1_0ListTagsForResourceCommand
39
+ */
40
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
+ /**
42
+ * serializeAws_json1_0TagResourceCommand
43
+ */
44
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
+ /**
46
+ * serializeAws_json1_0UntagResourceCommand
47
+ */
48
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
+ /**
50
+ * serializeAws_json1_0UpdateBillingViewCommand
51
+ */
52
+ export declare const se_UpdateBillingViewCommand: (input: UpdateBillingViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
+ /**
54
+ * deserializeAws_json1_0CreateBillingViewCommand
55
+ */
56
+ export declare const de_CreateBillingViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateBillingViewCommandOutput>;
57
+ /**
58
+ * deserializeAws_json1_0DeleteBillingViewCommand
59
+ */
60
+ export declare const de_DeleteBillingViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteBillingViewCommandOutput>;
61
+ /**
62
+ * deserializeAws_json1_0GetBillingViewCommand
63
+ */
64
+ export declare const de_GetBillingViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetBillingViewCommandOutput>;
65
+ /**
66
+ * deserializeAws_json1_0GetResourcePolicyCommand
67
+ */
68
+ export declare const de_GetResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourcePolicyCommandOutput>;
8
69
  /**
9
70
  * deserializeAws_json1_0ListBillingViewsCommand
10
71
  */
11
72
  export declare const de_ListBillingViewsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBillingViewsCommandOutput>;
73
+ /**
74
+ * deserializeAws_json1_0ListSourceViewsForBillingViewCommand
75
+ */
76
+ export declare const de_ListSourceViewsForBillingViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSourceViewsForBillingViewCommandOutput>;
77
+ /**
78
+ * deserializeAws_json1_0ListTagsForResourceCommand
79
+ */
80
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
81
+ /**
82
+ * deserializeAws_json1_0TagResourceCommand
83
+ */
84
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
85
+ /**
86
+ * deserializeAws_json1_0UntagResourceCommand
87
+ */
88
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
89
+ /**
90
+ * deserializeAws_json1_0UpdateBillingViewCommand
91
+ */
92
+ export declare const de_UpdateBillingViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateBillingViewCommandOutput>;
@@ -1,10 +1,99 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
2
  import { BillingClient } from "./BillingClient";
3
+ import {
4
+ CreateBillingViewCommandInput,
5
+ CreateBillingViewCommandOutput,
6
+ } from "./commands/CreateBillingViewCommand";
7
+ import {
8
+ DeleteBillingViewCommandInput,
9
+ DeleteBillingViewCommandOutput,
10
+ } from "./commands/DeleteBillingViewCommand";
11
+ import {
12
+ GetBillingViewCommandInput,
13
+ GetBillingViewCommandOutput,
14
+ } from "./commands/GetBillingViewCommand";
15
+ import {
16
+ GetResourcePolicyCommandInput,
17
+ GetResourcePolicyCommandOutput,
18
+ } from "./commands/GetResourcePolicyCommand";
3
19
  import {
4
20
  ListBillingViewsCommandInput,
5
21
  ListBillingViewsCommandOutput,
6
22
  } from "./commands/ListBillingViewsCommand";
23
+ import {
24
+ ListSourceViewsForBillingViewCommandInput,
25
+ ListSourceViewsForBillingViewCommandOutput,
26
+ } from "./commands/ListSourceViewsForBillingViewCommand";
27
+ import {
28
+ ListTagsForResourceCommandInput,
29
+ ListTagsForResourceCommandOutput,
30
+ } from "./commands/ListTagsForResourceCommand";
31
+ import {
32
+ TagResourceCommandInput,
33
+ TagResourceCommandOutput,
34
+ } from "./commands/TagResourceCommand";
35
+ import {
36
+ UntagResourceCommandInput,
37
+ UntagResourceCommandOutput,
38
+ } from "./commands/UntagResourceCommand";
39
+ import {
40
+ UpdateBillingViewCommandInput,
41
+ UpdateBillingViewCommandOutput,
42
+ } from "./commands/UpdateBillingViewCommand";
7
43
  export interface Billing {
44
+ createBillingView(
45
+ args: CreateBillingViewCommandInput,
46
+ options?: __HttpHandlerOptions
47
+ ): Promise<CreateBillingViewCommandOutput>;
48
+ createBillingView(
49
+ args: CreateBillingViewCommandInput,
50
+ cb: (err: any, data?: CreateBillingViewCommandOutput) => void
51
+ ): void;
52
+ createBillingView(
53
+ args: CreateBillingViewCommandInput,
54
+ options: __HttpHandlerOptions,
55
+ cb: (err: any, data?: CreateBillingViewCommandOutput) => void
56
+ ): void;
57
+ deleteBillingView(
58
+ args: DeleteBillingViewCommandInput,
59
+ options?: __HttpHandlerOptions
60
+ ): Promise<DeleteBillingViewCommandOutput>;
61
+ deleteBillingView(
62
+ args: DeleteBillingViewCommandInput,
63
+ cb: (err: any, data?: DeleteBillingViewCommandOutput) => void
64
+ ): void;
65
+ deleteBillingView(
66
+ args: DeleteBillingViewCommandInput,
67
+ options: __HttpHandlerOptions,
68
+ cb: (err: any, data?: DeleteBillingViewCommandOutput) => void
69
+ ): void;
70
+ getBillingView(
71
+ args: GetBillingViewCommandInput,
72
+ options?: __HttpHandlerOptions
73
+ ): Promise<GetBillingViewCommandOutput>;
74
+ getBillingView(
75
+ args: GetBillingViewCommandInput,
76
+ cb: (err: any, data?: GetBillingViewCommandOutput) => void
77
+ ): void;
78
+ getBillingView(
79
+ args: GetBillingViewCommandInput,
80
+ options: __HttpHandlerOptions,
81
+ cb: (err: any, data?: GetBillingViewCommandOutput) => void
82
+ ): void;
83
+ getResourcePolicy(
84
+ args: GetResourcePolicyCommandInput,
85
+ options?: __HttpHandlerOptions
86
+ ): Promise<GetResourcePolicyCommandOutput>;
87
+ getResourcePolicy(
88
+ args: GetResourcePolicyCommandInput,
89
+ cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
90
+ ): void;
91
+ getResourcePolicy(
92
+ args: GetResourcePolicyCommandInput,
93
+ options: __HttpHandlerOptions,
94
+ cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
95
+ ): void;
96
+ listBillingViews(): Promise<ListBillingViewsCommandOutput>;
8
97
  listBillingViews(
9
98
  args: ListBillingViewsCommandInput,
10
99
  options?: __HttpHandlerOptions
@@ -18,5 +107,70 @@ export interface Billing {
18
107
  options: __HttpHandlerOptions,
19
108
  cb: (err: any, data?: ListBillingViewsCommandOutput) => void
20
109
  ): void;
110
+ listSourceViewsForBillingView(
111
+ args: ListSourceViewsForBillingViewCommandInput,
112
+ options?: __HttpHandlerOptions
113
+ ): Promise<ListSourceViewsForBillingViewCommandOutput>;
114
+ listSourceViewsForBillingView(
115
+ args: ListSourceViewsForBillingViewCommandInput,
116
+ cb: (err: any, data?: ListSourceViewsForBillingViewCommandOutput) => void
117
+ ): void;
118
+ listSourceViewsForBillingView(
119
+ args: ListSourceViewsForBillingViewCommandInput,
120
+ options: __HttpHandlerOptions,
121
+ cb: (err: any, data?: ListSourceViewsForBillingViewCommandOutput) => void
122
+ ): void;
123
+ listTagsForResource(
124
+ args: ListTagsForResourceCommandInput,
125
+ options?: __HttpHandlerOptions
126
+ ): Promise<ListTagsForResourceCommandOutput>;
127
+ listTagsForResource(
128
+ args: ListTagsForResourceCommandInput,
129
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
130
+ ): void;
131
+ listTagsForResource(
132
+ args: ListTagsForResourceCommandInput,
133
+ options: __HttpHandlerOptions,
134
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
135
+ ): void;
136
+ tagResource(
137
+ args: TagResourceCommandInput,
138
+ options?: __HttpHandlerOptions
139
+ ): Promise<TagResourceCommandOutput>;
140
+ tagResource(
141
+ args: TagResourceCommandInput,
142
+ cb: (err: any, data?: TagResourceCommandOutput) => void
143
+ ): void;
144
+ tagResource(
145
+ args: TagResourceCommandInput,
146
+ options: __HttpHandlerOptions,
147
+ cb: (err: any, data?: TagResourceCommandOutput) => void
148
+ ): void;
149
+ untagResource(
150
+ args: UntagResourceCommandInput,
151
+ options?: __HttpHandlerOptions
152
+ ): Promise<UntagResourceCommandOutput>;
153
+ untagResource(
154
+ args: UntagResourceCommandInput,
155
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
156
+ ): void;
157
+ untagResource(
158
+ args: UntagResourceCommandInput,
159
+ options: __HttpHandlerOptions,
160
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
161
+ ): void;
162
+ updateBillingView(
163
+ args: UpdateBillingViewCommandInput,
164
+ options?: __HttpHandlerOptions
165
+ ): Promise<UpdateBillingViewCommandOutput>;
166
+ updateBillingView(
167
+ args: UpdateBillingViewCommandInput,
168
+ cb: (err: any, data?: UpdateBillingViewCommandOutput) => void
169
+ ): void;
170
+ updateBillingView(
171
+ args: UpdateBillingViewCommandInput,
172
+ options: __HttpHandlerOptions,
173
+ cb: (err: any, data?: UpdateBillingViewCommandOutput) => void
174
+ ): void;
21
175
  }
22
176
  export declare class Billing extends BillingClient implements Billing {}
@@ -45,10 +45,46 @@ import {
45
45
  HttpAuthSchemeInputConfig,
46
46
  HttpAuthSchemeResolvedConfig,
47
47
  } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ CreateBillingViewCommandInput,
50
+ CreateBillingViewCommandOutput,
51
+ } from "./commands/CreateBillingViewCommand";
52
+ import {
53
+ DeleteBillingViewCommandInput,
54
+ DeleteBillingViewCommandOutput,
55
+ } from "./commands/DeleteBillingViewCommand";
56
+ import {
57
+ GetBillingViewCommandInput,
58
+ GetBillingViewCommandOutput,
59
+ } from "./commands/GetBillingViewCommand";
60
+ import {
61
+ GetResourcePolicyCommandInput,
62
+ GetResourcePolicyCommandOutput,
63
+ } from "./commands/GetResourcePolicyCommand";
48
64
  import {
49
65
  ListBillingViewsCommandInput,
50
66
  ListBillingViewsCommandOutput,
51
67
  } from "./commands/ListBillingViewsCommand";
68
+ import {
69
+ ListSourceViewsForBillingViewCommandInput,
70
+ ListSourceViewsForBillingViewCommandOutput,
71
+ } from "./commands/ListSourceViewsForBillingViewCommand";
72
+ import {
73
+ ListTagsForResourceCommandInput,
74
+ ListTagsForResourceCommandOutput,
75
+ } from "./commands/ListTagsForResourceCommand";
76
+ import {
77
+ TagResourceCommandInput,
78
+ TagResourceCommandOutput,
79
+ } from "./commands/TagResourceCommand";
80
+ import {
81
+ UntagResourceCommandInput,
82
+ UntagResourceCommandOutput,
83
+ } from "./commands/UntagResourceCommand";
84
+ import {
85
+ UpdateBillingViewCommandInput,
86
+ UpdateBillingViewCommandOutput,
87
+ } from "./commands/UpdateBillingViewCommand";
52
88
  import {
53
89
  ClientInputEndpointParameters,
54
90
  ClientResolvedEndpointParameters,
@@ -56,8 +92,28 @@ import {
56
92
  } from "./endpoint/EndpointParameters";
57
93
  import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
58
94
  export { __Client };
59
- export type ServiceInputTypes = ListBillingViewsCommandInput;
60
- export type ServiceOutputTypes = ListBillingViewsCommandOutput;
95
+ export type ServiceInputTypes =
96
+ | CreateBillingViewCommandInput
97
+ | DeleteBillingViewCommandInput
98
+ | GetBillingViewCommandInput
99
+ | GetResourcePolicyCommandInput
100
+ | ListBillingViewsCommandInput
101
+ | ListSourceViewsForBillingViewCommandInput
102
+ | ListTagsForResourceCommandInput
103
+ | TagResourceCommandInput
104
+ | UntagResourceCommandInput
105
+ | UpdateBillingViewCommandInput;
106
+ export type ServiceOutputTypes =
107
+ | CreateBillingViewCommandOutput
108
+ | DeleteBillingViewCommandOutput
109
+ | GetBillingViewCommandOutput
110
+ | GetResourcePolicyCommandOutput
111
+ | ListBillingViewsCommandOutput
112
+ | ListSourceViewsForBillingViewCommandOutput
113
+ | ListTagsForResourceCommandOutput
114
+ | TagResourceCommandOutput
115
+ | UntagResourceCommandOutput
116
+ | UpdateBillingViewCommandOutput;
61
117
  export interface ClientDefaults
62
118
  extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
63
119
  requestHandler?: __HttpHandlerUserInput;
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BillingClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BillingClient";
8
+ import {
9
+ CreateBillingViewRequest,
10
+ CreateBillingViewResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateBillingViewCommandInput
15
+ extends CreateBillingViewRequest {}
16
+ export interface CreateBillingViewCommandOutput
17
+ extends CreateBillingViewResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateBillingViewCommand_base: {
20
+ new (
21
+ input: CreateBillingViewCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateBillingViewCommandInput,
24
+ CreateBillingViewCommandOutput,
25
+ BillingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateBillingViewCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateBillingViewCommandInput,
33
+ CreateBillingViewCommandOutput,
34
+ BillingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateBillingViewCommand extends CreateBillingViewCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateBillingViewRequest;
44
+ output: CreateBillingViewResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateBillingViewCommandInput;
48
+ output: CreateBillingViewCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BillingClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BillingClient";
8
+ import {
9
+ DeleteBillingViewRequest,
10
+ DeleteBillingViewResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteBillingViewCommandInput
15
+ extends DeleteBillingViewRequest {}
16
+ export interface DeleteBillingViewCommandOutput
17
+ extends DeleteBillingViewResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteBillingViewCommand_base: {
20
+ new (
21
+ input: DeleteBillingViewCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteBillingViewCommandInput,
24
+ DeleteBillingViewCommandOutput,
25
+ BillingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DeleteBillingViewCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteBillingViewCommandInput,
33
+ DeleteBillingViewCommandOutput,
34
+ BillingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteBillingViewCommand extends DeleteBillingViewCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteBillingViewRequest;
44
+ output: DeleteBillingViewResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteBillingViewCommandInput;
48
+ output: DeleteBillingViewCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BillingClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BillingClient";
8
+ import {
9
+ GetBillingViewRequest,
10
+ GetBillingViewResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetBillingViewCommandInput extends GetBillingViewRequest {}
15
+ export interface GetBillingViewCommandOutput
16
+ extends GetBillingViewResponse,
17
+ __MetadataBearer {}
18
+ declare const GetBillingViewCommand_base: {
19
+ new (
20
+ input: GetBillingViewCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetBillingViewCommandInput,
23
+ GetBillingViewCommandOutput,
24
+ BillingClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: GetBillingViewCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetBillingViewCommandInput,
32
+ GetBillingViewCommandOutput,
33
+ BillingClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetBillingViewCommand extends GetBillingViewCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetBillingViewRequest;
43
+ output: GetBillingViewResponse;
44
+ };
45
+ sdk: {
46
+ input: GetBillingViewCommandInput;
47
+ output: GetBillingViewCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BillingClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BillingClient";
8
+ import {
9
+ GetResourcePolicyRequest,
10
+ GetResourcePolicyResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetResourcePolicyCommandInput
15
+ extends GetResourcePolicyRequest {}
16
+ export interface GetResourcePolicyCommandOutput
17
+ extends GetResourcePolicyResponse,
18
+ __MetadataBearer {}
19
+ declare const GetResourcePolicyCommand_base: {
20
+ new (
21
+ input: GetResourcePolicyCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetResourcePolicyCommandInput,
24
+ GetResourcePolicyCommandOutput,
25
+ BillingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetResourcePolicyCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetResourcePolicyCommandInput,
33
+ GetResourcePolicyCommandOutput,
34
+ BillingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetResourcePolicyCommand extends GetResourcePolicyCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetResourcePolicyRequest;
44
+ output: GetResourcePolicyResponse;
45
+ };
46
+ sdk: {
47
+ input: GetResourcePolicyCommandInput;
48
+ output: GetResourcePolicyCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -1,6 +1,10 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { BillingClientResolvedConfig } from "../BillingClient";
3
+ import {
4
+ BillingClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BillingClient";
4
8
  import {
5
9
  ListBillingViewsRequest,
6
10
  ListBillingViewsResponse,
@@ -18,17 +22,17 @@ declare const ListBillingViewsCommand_base: {
18
22
  ListBillingViewsCommandInput,
19
23
  ListBillingViewsCommandOutput,
20
24
  BillingClientResolvedConfig,
21
- ListBillingViewsCommandInput,
22
- ListBillingViewsCommandOutput
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
23
27
  >;
24
28
  new (
25
- __0_0: ListBillingViewsCommandInput
29
+ ...[input]: [] | [ListBillingViewsCommandInput]
26
30
  ): import("@smithy/smithy-client").CommandImpl<
27
31
  ListBillingViewsCommandInput,
28
32
  ListBillingViewsCommandOutput,
29
33
  BillingClientResolvedConfig,
30
- ListBillingViewsCommandInput,
31
- ListBillingViewsCommandOutput
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
32
36
  >;
33
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
38
  };
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BillingClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BillingClient";
8
+ import {
9
+ ListSourceViewsForBillingViewRequest,
10
+ ListSourceViewsForBillingViewResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListSourceViewsForBillingViewCommandInput
15
+ extends ListSourceViewsForBillingViewRequest {}
16
+ export interface ListSourceViewsForBillingViewCommandOutput
17
+ extends ListSourceViewsForBillingViewResponse,
18
+ __MetadataBearer {}
19
+ declare const ListSourceViewsForBillingViewCommand_base: {
20
+ new (
21
+ input: ListSourceViewsForBillingViewCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListSourceViewsForBillingViewCommandInput,
24
+ ListSourceViewsForBillingViewCommandOutput,
25
+ BillingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListSourceViewsForBillingViewCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListSourceViewsForBillingViewCommandInput,
33
+ ListSourceViewsForBillingViewCommandOutput,
34
+ BillingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListSourceViewsForBillingViewCommand extends ListSourceViewsForBillingViewCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListSourceViewsForBillingViewRequest;
44
+ output: ListSourceViewsForBillingViewResponse;
45
+ };
46
+ sdk: {
47
+ input: ListSourceViewsForBillingViewCommandInput;
48
+ output: ListSourceViewsForBillingViewCommandOutput;
49
+ };
50
+ };
51
+ }