@aws-sdk/client-applicationcostprofiler 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-applicationcostprofiler
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-applicationcostprofiler
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-applicationcostprofiler
@@ -1,35 +1,112 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { ApplicationCostProfilerClient } from "./ApplicationCostProfilerClient";
3
- import { DeleteReportDefinitionCommandInput, DeleteReportDefinitionCommandOutput } from "./commands/DeleteReportDefinitionCommand";
4
- import { GetReportDefinitionCommandInput, GetReportDefinitionCommandOutput } from "./commands/GetReportDefinitionCommand";
5
- import { ImportApplicationUsageCommandInput, ImportApplicationUsageCommandOutput } from "./commands/ImportApplicationUsageCommand";
6
- import { ListReportDefinitionsCommandInput, ListReportDefinitionsCommandOutput } from "./commands/ListReportDefinitionsCommand";
7
- import { PutReportDefinitionCommandInput, PutReportDefinitionCommandOutput } from "./commands/PutReportDefinitionCommand";
8
- import { UpdateReportDefinitionCommandInput, UpdateReportDefinitionCommandOutput } from "./commands/UpdateReportDefinitionCommand";
9
-
10
- export declare class ApplicationCostProfiler extends ApplicationCostProfilerClient {
11
-
12
- deleteReportDefinition(args: DeleteReportDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReportDefinitionCommandOutput>;
13
- deleteReportDefinition(args: DeleteReportDefinitionCommandInput, cb: (err: any, data?: DeleteReportDefinitionCommandOutput) => void): void;
14
- deleteReportDefinition(args: DeleteReportDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReportDefinitionCommandOutput) => void): void;
15
-
16
- getReportDefinition(args: GetReportDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<GetReportDefinitionCommandOutput>;
17
- getReportDefinition(args: GetReportDefinitionCommandInput, cb: (err: any, data?: GetReportDefinitionCommandOutput) => void): void;
18
- getReportDefinition(args: GetReportDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReportDefinitionCommandOutput) => void): void;
19
-
20
- importApplicationUsage(args: ImportApplicationUsageCommandInput, options?: __HttpHandlerOptions): Promise<ImportApplicationUsageCommandOutput>;
21
- importApplicationUsage(args: ImportApplicationUsageCommandInput, cb: (err: any, data?: ImportApplicationUsageCommandOutput) => void): void;
22
- importApplicationUsage(args: ImportApplicationUsageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportApplicationUsageCommandOutput) => void): void;
23
-
24
- listReportDefinitions(args: ListReportDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListReportDefinitionsCommandOutput>;
25
- listReportDefinitions(args: ListReportDefinitionsCommandInput, cb: (err: any, data?: ListReportDefinitionsCommandOutput) => void): void;
26
- listReportDefinitions(args: ListReportDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReportDefinitionsCommandOutput) => void): void;
27
-
28
- putReportDefinition(args: PutReportDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<PutReportDefinitionCommandOutput>;
29
- putReportDefinition(args: PutReportDefinitionCommandInput, cb: (err: any, data?: PutReportDefinitionCommandOutput) => void): void;
30
- putReportDefinition(args: PutReportDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutReportDefinitionCommandOutput) => void): void;
31
-
32
- updateReportDefinition(args: UpdateReportDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReportDefinitionCommandOutput>;
33
- updateReportDefinition(args: UpdateReportDefinitionCommandInput, cb: (err: any, data?: UpdateReportDefinitionCommandOutput) => void): void;
34
- updateReportDefinition(args: UpdateReportDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReportDefinitionCommandOutput) => void): void;
35
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { ApplicationCostProfilerClient } from "./ApplicationCostProfilerClient";
3
+ import {
4
+ DeleteReportDefinitionCommandInput,
5
+ DeleteReportDefinitionCommandOutput,
6
+ } from "./commands/DeleteReportDefinitionCommand";
7
+ import {
8
+ GetReportDefinitionCommandInput,
9
+ GetReportDefinitionCommandOutput,
10
+ } from "./commands/GetReportDefinitionCommand";
11
+ import {
12
+ ImportApplicationUsageCommandInput,
13
+ ImportApplicationUsageCommandOutput,
14
+ } from "./commands/ImportApplicationUsageCommand";
15
+ import {
16
+ ListReportDefinitionsCommandInput,
17
+ ListReportDefinitionsCommandOutput,
18
+ } from "./commands/ListReportDefinitionsCommand";
19
+ import {
20
+ PutReportDefinitionCommandInput,
21
+ PutReportDefinitionCommandOutput,
22
+ } from "./commands/PutReportDefinitionCommand";
23
+ import {
24
+ UpdateReportDefinitionCommandInput,
25
+ UpdateReportDefinitionCommandOutput,
26
+ } from "./commands/UpdateReportDefinitionCommand";
27
+
28
+ export declare class ApplicationCostProfiler extends ApplicationCostProfilerClient {
29
+ deleteReportDefinition(
30
+ args: DeleteReportDefinitionCommandInput,
31
+ options?: __HttpHandlerOptions
32
+ ): Promise<DeleteReportDefinitionCommandOutput>;
33
+ deleteReportDefinition(
34
+ args: DeleteReportDefinitionCommandInput,
35
+ cb: (err: any, data?: DeleteReportDefinitionCommandOutput) => void
36
+ ): void;
37
+ deleteReportDefinition(
38
+ args: DeleteReportDefinitionCommandInput,
39
+ options: __HttpHandlerOptions,
40
+ cb: (err: any, data?: DeleteReportDefinitionCommandOutput) => void
41
+ ): void;
42
+
43
+ getReportDefinition(
44
+ args: GetReportDefinitionCommandInput,
45
+ options?: __HttpHandlerOptions
46
+ ): Promise<GetReportDefinitionCommandOutput>;
47
+ getReportDefinition(
48
+ args: GetReportDefinitionCommandInput,
49
+ cb: (err: any, data?: GetReportDefinitionCommandOutput) => void
50
+ ): void;
51
+ getReportDefinition(
52
+ args: GetReportDefinitionCommandInput,
53
+ options: __HttpHandlerOptions,
54
+ cb: (err: any, data?: GetReportDefinitionCommandOutput) => void
55
+ ): void;
56
+
57
+ importApplicationUsage(
58
+ args: ImportApplicationUsageCommandInput,
59
+ options?: __HttpHandlerOptions
60
+ ): Promise<ImportApplicationUsageCommandOutput>;
61
+ importApplicationUsage(
62
+ args: ImportApplicationUsageCommandInput,
63
+ cb: (err: any, data?: ImportApplicationUsageCommandOutput) => void
64
+ ): void;
65
+ importApplicationUsage(
66
+ args: ImportApplicationUsageCommandInput,
67
+ options: __HttpHandlerOptions,
68
+ cb: (err: any, data?: ImportApplicationUsageCommandOutput) => void
69
+ ): void;
70
+
71
+ listReportDefinitions(
72
+ args: ListReportDefinitionsCommandInput,
73
+ options?: __HttpHandlerOptions
74
+ ): Promise<ListReportDefinitionsCommandOutput>;
75
+ listReportDefinitions(
76
+ args: ListReportDefinitionsCommandInput,
77
+ cb: (err: any, data?: ListReportDefinitionsCommandOutput) => void
78
+ ): void;
79
+ listReportDefinitions(
80
+ args: ListReportDefinitionsCommandInput,
81
+ options: __HttpHandlerOptions,
82
+ cb: (err: any, data?: ListReportDefinitionsCommandOutput) => void
83
+ ): void;
84
+
85
+ putReportDefinition(
86
+ args: PutReportDefinitionCommandInput,
87
+ options?: __HttpHandlerOptions
88
+ ): Promise<PutReportDefinitionCommandOutput>;
89
+ putReportDefinition(
90
+ args: PutReportDefinitionCommandInput,
91
+ cb: (err: any, data?: PutReportDefinitionCommandOutput) => void
92
+ ): void;
93
+ putReportDefinition(
94
+ args: PutReportDefinitionCommandInput,
95
+ options: __HttpHandlerOptions,
96
+ cb: (err: any, data?: PutReportDefinitionCommandOutput) => void
97
+ ): void;
98
+
99
+ updateReportDefinition(
100
+ args: UpdateReportDefinitionCommandInput,
101
+ options?: __HttpHandlerOptions
102
+ ): Promise<UpdateReportDefinitionCommandOutput>;
103
+ updateReportDefinition(
104
+ args: UpdateReportDefinitionCommandInput,
105
+ cb: (err: any, data?: UpdateReportDefinitionCommandOutput) => void
106
+ ): void;
107
+ updateReportDefinition(
108
+ args: UpdateReportDefinitionCommandInput,
109
+ options: __HttpHandlerOptions,
110
+ cb: (err: any, data?: UpdateReportDefinitionCommandOutput) => void
111
+ ): void;
112
+ }
@@ -1,79 +1,166 @@
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 { DeleteReportDefinitionCommandInput, DeleteReportDefinitionCommandOutput } from "./commands/DeleteReportDefinitionCommand";
10
- import { GetReportDefinitionCommandInput, GetReportDefinitionCommandOutput } from "./commands/GetReportDefinitionCommand";
11
- import { ImportApplicationUsageCommandInput, ImportApplicationUsageCommandOutput } from "./commands/ImportApplicationUsageCommand";
12
- import { ListReportDefinitionsCommandInput, ListReportDefinitionsCommandOutput } from "./commands/ListReportDefinitionsCommand";
13
- import { PutReportDefinitionCommandInput, PutReportDefinitionCommandOutput } from "./commands/PutReportDefinitionCommand";
14
- import { UpdateReportDefinitionCommandInput, UpdateReportDefinitionCommandOutput } from "./commands/UpdateReportDefinitionCommand";
15
- export declare type ServiceInputTypes = DeleteReportDefinitionCommandInput | GetReportDefinitionCommandInput | ImportApplicationUsageCommandInput | ListReportDefinitionsCommandInput | PutReportDefinitionCommandInput | UpdateReportDefinitionCommandInput;
16
- export declare type ServiceOutputTypes = DeleteReportDefinitionCommandOutput | GetReportDefinitionCommandOutput | ImportApplicationUsageCommandOutput | ListReportDefinitionsCommandOutput | PutReportDefinitionCommandOutput | UpdateReportDefinitionCommandOutput;
17
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
18
-
19
- requestHandler?: __HttpHandler;
20
-
21
- sha256?: __HashConstructor;
22
-
23
- urlParser?: __UrlParser;
24
-
25
- bodyLengthChecker?: __BodyLengthCalculator;
26
-
27
- streamCollector?: __StreamCollector;
28
-
29
- base64Decoder?: __Decoder;
30
-
31
- base64Encoder?: __Encoder;
32
-
33
- utf8Decoder?: __Decoder;
34
-
35
- utf8Encoder?: __Encoder;
36
-
37
- runtime?: string;
38
-
39
- disableHostPrefix?: boolean;
40
-
41
- maxAttempts?: number | __Provider<number>;
42
-
43
- retryMode?: string | __Provider<string>;
44
-
45
- logger?: __Logger;
46
-
47
- useDualstackEndpoint?: boolean | __Provider<boolean>;
48
-
49
- useFipsEndpoint?: boolean | __Provider<boolean>;
50
-
51
- serviceId?: string;
52
-
53
- region?: string | __Provider<string>;
54
-
55
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
56
-
57
- regionInfoProvider?: RegionInfoProvider;
58
-
59
- defaultUserAgentProvider?: Provider<__UserAgent>;
60
-
61
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
62
- }
63
- declare type ApplicationCostProfilerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
64
-
65
- export interface ApplicationCostProfilerClientConfig extends ApplicationCostProfilerClientConfigType {
66
- }
67
- declare type ApplicationCostProfilerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
68
-
69
- export interface ApplicationCostProfilerClientResolvedConfig extends ApplicationCostProfilerClientResolvedConfigType {
70
- }
71
-
72
- export declare class ApplicationCostProfilerClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ApplicationCostProfilerClientResolvedConfig> {
73
-
74
- readonly config: ApplicationCostProfilerClientResolvedConfig;
75
- constructor(configuration: ApplicationCostProfilerClientConfig);
76
-
77
- destroy(): void;
78
- }
79
- 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
+ DeleteReportDefinitionCommandInput,
47
+ DeleteReportDefinitionCommandOutput,
48
+ } from "./commands/DeleteReportDefinitionCommand";
49
+ import {
50
+ GetReportDefinitionCommandInput,
51
+ GetReportDefinitionCommandOutput,
52
+ } from "./commands/GetReportDefinitionCommand";
53
+ import {
54
+ ImportApplicationUsageCommandInput,
55
+ ImportApplicationUsageCommandOutput,
56
+ } from "./commands/ImportApplicationUsageCommand";
57
+ import {
58
+ ListReportDefinitionsCommandInput,
59
+ ListReportDefinitionsCommandOutput,
60
+ } from "./commands/ListReportDefinitionsCommand";
61
+ import {
62
+ PutReportDefinitionCommandInput,
63
+ PutReportDefinitionCommandOutput,
64
+ } from "./commands/PutReportDefinitionCommand";
65
+ import {
66
+ UpdateReportDefinitionCommandInput,
67
+ UpdateReportDefinitionCommandOutput,
68
+ } from "./commands/UpdateReportDefinitionCommand";
69
+ export declare type ServiceInputTypes =
70
+ | DeleteReportDefinitionCommandInput
71
+ | GetReportDefinitionCommandInput
72
+ | ImportApplicationUsageCommandInput
73
+ | ListReportDefinitionsCommandInput
74
+ | PutReportDefinitionCommandInput
75
+ | UpdateReportDefinitionCommandInput;
76
+ export declare type ServiceOutputTypes =
77
+ | DeleteReportDefinitionCommandOutput
78
+ | GetReportDefinitionCommandOutput
79
+ | ImportApplicationUsageCommandOutput
80
+ | ListReportDefinitionsCommandOutput
81
+ | PutReportDefinitionCommandOutput
82
+ | UpdateReportDefinitionCommandOutput;
83
+ export interface ClientDefaults
84
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
85
+ requestHandler?: __HttpHandler;
86
+
87
+ sha256?: __HashConstructor;
88
+
89
+ urlParser?: __UrlParser;
90
+
91
+ bodyLengthChecker?: __BodyLengthCalculator;
92
+
93
+ streamCollector?: __StreamCollector;
94
+
95
+ base64Decoder?: __Decoder;
96
+
97
+ base64Encoder?: __Encoder;
98
+
99
+ utf8Decoder?: __Decoder;
100
+
101
+ utf8Encoder?: __Encoder;
102
+
103
+ runtime?: string;
104
+
105
+ disableHostPrefix?: boolean;
106
+
107
+ maxAttempts?: number | __Provider<number>;
108
+
109
+ retryMode?: string | __Provider<string>;
110
+
111
+ logger?: __Logger;
112
+
113
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
114
+
115
+ useFipsEndpoint?: boolean | __Provider<boolean>;
116
+
117
+ serviceId?: string;
118
+
119
+ region?: string | __Provider<string>;
120
+
121
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
122
+
123
+ regionInfoProvider?: RegionInfoProvider;
124
+
125
+ defaultUserAgentProvider?: Provider<__UserAgent>;
126
+
127
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
128
+ }
129
+ declare type ApplicationCostProfilerClientConfigType = Partial<
130
+ __SmithyConfiguration<__HttpHandlerOptions>
131
+ > &
132
+ ClientDefaults &
133
+ RegionInputConfig &
134
+ EndpointsInputConfig &
135
+ RetryInputConfig &
136
+ HostHeaderInputConfig &
137
+ AwsAuthInputConfig &
138
+ UserAgentInputConfig;
139
+
140
+ export interface ApplicationCostProfilerClientConfig
141
+ extends ApplicationCostProfilerClientConfigType {}
142
+ declare type ApplicationCostProfilerClientResolvedConfigType =
143
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
144
+ Required<ClientDefaults> &
145
+ RegionResolvedConfig &
146
+ EndpointsResolvedConfig &
147
+ RetryResolvedConfig &
148
+ HostHeaderResolvedConfig &
149
+ AwsAuthResolvedConfig &
150
+ UserAgentResolvedConfig;
151
+
152
+ export interface ApplicationCostProfilerClientResolvedConfig
153
+ extends ApplicationCostProfilerClientResolvedConfigType {}
154
+
155
+ export declare class ApplicationCostProfilerClient extends __Client<
156
+ __HttpHandlerOptions,
157
+ ServiceInputTypes,
158
+ ServiceOutputTypes,
159
+ ApplicationCostProfilerClientResolvedConfig
160
+ > {
161
+ readonly config: ApplicationCostProfilerClientResolvedConfig;
162
+ constructor(configuration: ApplicationCostProfilerClientConfig);
163
+
164
+ destroy(): void;
165
+ }
166
+ export {};
@@ -1,17 +1,41 @@
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 { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationCostProfilerClient";
4
- import { DeleteReportDefinitionRequest, DeleteReportDefinitionResult } from "../models/models_0";
5
- export interface DeleteReportDefinitionCommandInput extends DeleteReportDefinitionRequest {
6
- }
7
- export interface DeleteReportDefinitionCommandOutput extends DeleteReportDefinitionResult, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteReportDefinitionCommand extends $Command<DeleteReportDefinitionCommandInput, DeleteReportDefinitionCommandOutput, ApplicationCostProfilerClientResolvedConfig> {
11
- readonly input: DeleteReportDefinitionCommandInput;
12
- constructor(input: DeleteReportDefinitionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationCostProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteReportDefinitionCommandInput, DeleteReportDefinitionCommandOutput>;
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
+ ApplicationCostProfilerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationCostProfilerClient";
13
+ import {
14
+ DeleteReportDefinitionRequest,
15
+ DeleteReportDefinitionResult,
16
+ } from "../models/models_0";
17
+ export interface DeleteReportDefinitionCommandInput
18
+ extends DeleteReportDefinitionRequest {}
19
+ export interface DeleteReportDefinitionCommandOutput
20
+ extends DeleteReportDefinitionResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteReportDefinitionCommand extends $Command<
24
+ DeleteReportDefinitionCommandInput,
25
+ DeleteReportDefinitionCommandOutput,
26
+ ApplicationCostProfilerClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteReportDefinitionCommandInput;
29
+ constructor(input: DeleteReportDefinitionCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationCostProfilerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteReportDefinitionCommandInput,
37
+ DeleteReportDefinitionCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationCostProfilerClient";
4
- import { GetReportDefinitionRequest, GetReportDefinitionResult } from "../models/models_0";
5
- export interface GetReportDefinitionCommandInput extends GetReportDefinitionRequest {
6
- }
7
- export interface GetReportDefinitionCommandOutput extends GetReportDefinitionResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetReportDefinitionCommand extends $Command<GetReportDefinitionCommandInput, GetReportDefinitionCommandOutput, ApplicationCostProfilerClientResolvedConfig> {
11
- readonly input: GetReportDefinitionCommandInput;
12
- constructor(input: GetReportDefinitionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationCostProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetReportDefinitionCommandInput, GetReportDefinitionCommandOutput>;
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
+ ApplicationCostProfilerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationCostProfilerClient";
13
+ import {
14
+ GetReportDefinitionRequest,
15
+ GetReportDefinitionResult,
16
+ } from "../models/models_0";
17
+ export interface GetReportDefinitionCommandInput
18
+ extends GetReportDefinitionRequest {}
19
+ export interface GetReportDefinitionCommandOutput
20
+ extends GetReportDefinitionResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetReportDefinitionCommand extends $Command<
24
+ GetReportDefinitionCommandInput,
25
+ GetReportDefinitionCommandOutput,
26
+ ApplicationCostProfilerClientResolvedConfig
27
+ > {
28
+ readonly input: GetReportDefinitionCommandInput;
29
+ constructor(input: GetReportDefinitionCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationCostProfilerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetReportDefinitionCommandInput, GetReportDefinitionCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
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 { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationCostProfilerClient";
4
- import { ImportApplicationUsageRequest, ImportApplicationUsageResult } from "../models/models_0";
5
- export interface ImportApplicationUsageCommandInput extends ImportApplicationUsageRequest {
6
- }
7
- export interface ImportApplicationUsageCommandOutput extends ImportApplicationUsageResult, __MetadataBearer {
8
- }
9
-
10
- export declare class ImportApplicationUsageCommand extends $Command<ImportApplicationUsageCommandInput, ImportApplicationUsageCommandOutput, ApplicationCostProfilerClientResolvedConfig> {
11
- readonly input: ImportApplicationUsageCommandInput;
12
- constructor(input: ImportApplicationUsageCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationCostProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportApplicationUsageCommandInput, ImportApplicationUsageCommandOutput>;
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
+ ApplicationCostProfilerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationCostProfilerClient";
13
+ import {
14
+ ImportApplicationUsageRequest,
15
+ ImportApplicationUsageResult,
16
+ } from "../models/models_0";
17
+ export interface ImportApplicationUsageCommandInput
18
+ extends ImportApplicationUsageRequest {}
19
+ export interface ImportApplicationUsageCommandOutput
20
+ extends ImportApplicationUsageResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ImportApplicationUsageCommand extends $Command<
24
+ ImportApplicationUsageCommandInput,
25
+ ImportApplicationUsageCommandOutput,
26
+ ApplicationCostProfilerClientResolvedConfig
27
+ > {
28
+ readonly input: ImportApplicationUsageCommandInput;
29
+ constructor(input: ImportApplicationUsageCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationCostProfilerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ImportApplicationUsageCommandInput,
37
+ ImportApplicationUsageCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
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 { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationCostProfilerClient";
4
- import { ListReportDefinitionsRequest, ListReportDefinitionsResult } from "../models/models_0";
5
- export interface ListReportDefinitionsCommandInput extends ListReportDefinitionsRequest {
6
- }
7
- export interface ListReportDefinitionsCommandOutput extends ListReportDefinitionsResult, __MetadataBearer {
8
- }
9
-
10
- export declare class ListReportDefinitionsCommand extends $Command<ListReportDefinitionsCommandInput, ListReportDefinitionsCommandOutput, ApplicationCostProfilerClientResolvedConfig> {
11
- readonly input: ListReportDefinitionsCommandInput;
12
- constructor(input: ListReportDefinitionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationCostProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListReportDefinitionsCommandInput, ListReportDefinitionsCommandOutput>;
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
+ ApplicationCostProfilerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationCostProfilerClient";
13
+ import {
14
+ ListReportDefinitionsRequest,
15
+ ListReportDefinitionsResult,
16
+ } from "../models/models_0";
17
+ export interface ListReportDefinitionsCommandInput
18
+ extends ListReportDefinitionsRequest {}
19
+ export interface ListReportDefinitionsCommandOutput
20
+ extends ListReportDefinitionsResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListReportDefinitionsCommand extends $Command<
24
+ ListReportDefinitionsCommandInput,
25
+ ListReportDefinitionsCommandOutput,
26
+ ApplicationCostProfilerClientResolvedConfig
27
+ > {
28
+ readonly input: ListReportDefinitionsCommandInput;
29
+ constructor(input: ListReportDefinitionsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationCostProfilerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListReportDefinitionsCommandInput,
37
+ ListReportDefinitionsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }