@aws-sdk/client-applicationcostprofiler 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/ApplicationCostProfiler.d.ts +106 -35
- package/dist-types/ts3.4/ApplicationCostProfilerClient.d.ts +141 -79
- package/dist-types/ts3.4/commands/DeleteReportDefinitionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetReportDefinitionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ImportApplicationUsageCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListReportDefinitionsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/PutReportDefinitionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateReportDefinitionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +6 -6
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ApplicationCostProfilerServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +165 -195
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListReportDefinitionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +77 -20
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-applicationcostprofiler
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-applicationcostprofiler
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-applicationcostprofiler
|
|
@@ -1,35 +1,106 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { ApplicationCostProfilerClient } from "./ApplicationCostProfilerClient";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
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
|
+
export declare class ApplicationCostProfiler extends ApplicationCostProfilerClient {
|
|
28
|
+
deleteReportDefinition(
|
|
29
|
+
args: DeleteReportDefinitionCommandInput,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Promise<DeleteReportDefinitionCommandOutput>;
|
|
32
|
+
deleteReportDefinition(
|
|
33
|
+
args: DeleteReportDefinitionCommandInput,
|
|
34
|
+
cb: (err: any, data?: DeleteReportDefinitionCommandOutput) => void
|
|
35
|
+
): void;
|
|
36
|
+
deleteReportDefinition(
|
|
37
|
+
args: DeleteReportDefinitionCommandInput,
|
|
38
|
+
options: __HttpHandlerOptions,
|
|
39
|
+
cb: (err: any, data?: DeleteReportDefinitionCommandOutput) => void
|
|
40
|
+
): void;
|
|
41
|
+
getReportDefinition(
|
|
42
|
+
args: GetReportDefinitionCommandInput,
|
|
43
|
+
options?: __HttpHandlerOptions
|
|
44
|
+
): Promise<GetReportDefinitionCommandOutput>;
|
|
45
|
+
getReportDefinition(
|
|
46
|
+
args: GetReportDefinitionCommandInput,
|
|
47
|
+
cb: (err: any, data?: GetReportDefinitionCommandOutput) => void
|
|
48
|
+
): void;
|
|
49
|
+
getReportDefinition(
|
|
50
|
+
args: GetReportDefinitionCommandInput,
|
|
51
|
+
options: __HttpHandlerOptions,
|
|
52
|
+
cb: (err: any, data?: GetReportDefinitionCommandOutput) => void
|
|
53
|
+
): void;
|
|
54
|
+
importApplicationUsage(
|
|
55
|
+
args: ImportApplicationUsageCommandInput,
|
|
56
|
+
options?: __HttpHandlerOptions
|
|
57
|
+
): Promise<ImportApplicationUsageCommandOutput>;
|
|
58
|
+
importApplicationUsage(
|
|
59
|
+
args: ImportApplicationUsageCommandInput,
|
|
60
|
+
cb: (err: any, data?: ImportApplicationUsageCommandOutput) => void
|
|
61
|
+
): void;
|
|
62
|
+
importApplicationUsage(
|
|
63
|
+
args: ImportApplicationUsageCommandInput,
|
|
64
|
+
options: __HttpHandlerOptions,
|
|
65
|
+
cb: (err: any, data?: ImportApplicationUsageCommandOutput) => void
|
|
66
|
+
): void;
|
|
67
|
+
listReportDefinitions(
|
|
68
|
+
args: ListReportDefinitionsCommandInput,
|
|
69
|
+
options?: __HttpHandlerOptions
|
|
70
|
+
): Promise<ListReportDefinitionsCommandOutput>;
|
|
71
|
+
listReportDefinitions(
|
|
72
|
+
args: ListReportDefinitionsCommandInput,
|
|
73
|
+
cb: (err: any, data?: ListReportDefinitionsCommandOutput) => void
|
|
74
|
+
): void;
|
|
75
|
+
listReportDefinitions(
|
|
76
|
+
args: ListReportDefinitionsCommandInput,
|
|
77
|
+
options: __HttpHandlerOptions,
|
|
78
|
+
cb: (err: any, data?: ListReportDefinitionsCommandOutput) => void
|
|
79
|
+
): void;
|
|
80
|
+
putReportDefinition(
|
|
81
|
+
args: PutReportDefinitionCommandInput,
|
|
82
|
+
options?: __HttpHandlerOptions
|
|
83
|
+
): Promise<PutReportDefinitionCommandOutput>;
|
|
84
|
+
putReportDefinition(
|
|
85
|
+
args: PutReportDefinitionCommandInput,
|
|
86
|
+
cb: (err: any, data?: PutReportDefinitionCommandOutput) => void
|
|
87
|
+
): void;
|
|
88
|
+
putReportDefinition(
|
|
89
|
+
args: PutReportDefinitionCommandInput,
|
|
90
|
+
options: __HttpHandlerOptions,
|
|
91
|
+
cb: (err: any, data?: PutReportDefinitionCommandOutput) => void
|
|
92
|
+
): void;
|
|
93
|
+
updateReportDefinition(
|
|
94
|
+
args: UpdateReportDefinitionCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<UpdateReportDefinitionCommandOutput>;
|
|
97
|
+
updateReportDefinition(
|
|
98
|
+
args: UpdateReportDefinitionCommandInput,
|
|
99
|
+
cb: (err: any, data?: UpdateReportDefinitionCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
updateReportDefinition(
|
|
102
|
+
args: UpdateReportDefinitionCommandInput,
|
|
103
|
+
options: __HttpHandlerOptions,
|
|
104
|
+
cb: (err: any, data?: UpdateReportDefinitionCommandOutput) => void
|
|
105
|
+
): void;
|
|
106
|
+
}
|
|
@@ -1,79 +1,141 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
export
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
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
|
+
sha256?: __HashConstructor;
|
|
87
|
+
urlParser?: __UrlParser;
|
|
88
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
89
|
+
streamCollector?: __StreamCollector;
|
|
90
|
+
base64Decoder?: __Decoder;
|
|
91
|
+
base64Encoder?: __Encoder;
|
|
92
|
+
utf8Decoder?: __Decoder;
|
|
93
|
+
utf8Encoder?: __Encoder;
|
|
94
|
+
runtime?: string;
|
|
95
|
+
disableHostPrefix?: boolean;
|
|
96
|
+
maxAttempts?: number | __Provider<number>;
|
|
97
|
+
retryMode?: string | __Provider<string>;
|
|
98
|
+
logger?: __Logger;
|
|
99
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
100
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
101
|
+
serviceId?: string;
|
|
102
|
+
region?: string | __Provider<string>;
|
|
103
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
104
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
105
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
106
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
107
|
+
}
|
|
108
|
+
declare type ApplicationCostProfilerClientConfigType = Partial<
|
|
109
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
110
|
+
> &
|
|
111
|
+
ClientDefaults &
|
|
112
|
+
RegionInputConfig &
|
|
113
|
+
EndpointsInputConfig &
|
|
114
|
+
RetryInputConfig &
|
|
115
|
+
HostHeaderInputConfig &
|
|
116
|
+
AwsAuthInputConfig &
|
|
117
|
+
UserAgentInputConfig;
|
|
118
|
+
export interface ApplicationCostProfilerClientConfig
|
|
119
|
+
extends ApplicationCostProfilerClientConfigType {}
|
|
120
|
+
declare type ApplicationCostProfilerClientResolvedConfigType =
|
|
121
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
122
|
+
Required<ClientDefaults> &
|
|
123
|
+
RegionResolvedConfig &
|
|
124
|
+
EndpointsResolvedConfig &
|
|
125
|
+
RetryResolvedConfig &
|
|
126
|
+
HostHeaderResolvedConfig &
|
|
127
|
+
AwsAuthResolvedConfig &
|
|
128
|
+
UserAgentResolvedConfig;
|
|
129
|
+
export interface ApplicationCostProfilerClientResolvedConfig
|
|
130
|
+
extends ApplicationCostProfilerClientResolvedConfigType {}
|
|
131
|
+
export declare class ApplicationCostProfilerClient extends __Client<
|
|
132
|
+
__HttpHandlerOptions,
|
|
133
|
+
ServiceInputTypes,
|
|
134
|
+
ServiceOutputTypes,
|
|
135
|
+
ApplicationCostProfilerClientResolvedConfig
|
|
136
|
+
> {
|
|
137
|
+
readonly config: ApplicationCostProfilerClientResolvedConfig;
|
|
138
|
+
constructor(configuration: ApplicationCostProfilerClientConfig);
|
|
139
|
+
destroy(): void;
|
|
140
|
+
}
|
|
141
|
+
export {};
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
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
|
+
export declare class DeleteReportDefinitionCommand extends $Command<
|
|
23
|
+
DeleteReportDefinitionCommandInput,
|
|
24
|
+
DeleteReportDefinitionCommandOutput,
|
|
25
|
+
ApplicationCostProfilerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteReportDefinitionCommandInput;
|
|
28
|
+
constructor(input: DeleteReportDefinitionCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationCostProfilerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DeleteReportDefinitionCommandInput,
|
|
35
|
+
DeleteReportDefinitionCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
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
|
+
export declare class GetReportDefinitionCommand extends $Command<
|
|
23
|
+
GetReportDefinitionCommandInput,
|
|
24
|
+
GetReportDefinitionCommandOutput,
|
|
25
|
+
ApplicationCostProfilerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetReportDefinitionCommandInput;
|
|
28
|
+
constructor(input: GetReportDefinitionCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationCostProfilerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetReportDefinitionCommandInput, GetReportDefinitionCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
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
|
+
export declare class ImportApplicationUsageCommand extends $Command<
|
|
23
|
+
ImportApplicationUsageCommandInput,
|
|
24
|
+
ImportApplicationUsageCommandOutput,
|
|
25
|
+
ApplicationCostProfilerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ImportApplicationUsageCommandInput;
|
|
28
|
+
constructor(input: ImportApplicationUsageCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationCostProfilerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ImportApplicationUsageCommandInput,
|
|
35
|
+
ImportApplicationUsageCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
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
|
+
export declare class ListReportDefinitionsCommand extends $Command<
|
|
23
|
+
ListReportDefinitionsCommandInput,
|
|
24
|
+
ListReportDefinitionsCommandOutput,
|
|
25
|
+
ApplicationCostProfilerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListReportDefinitionsCommandInput;
|
|
28
|
+
constructor(input: ListReportDefinitionsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationCostProfilerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListReportDefinitionsCommandInput,
|
|
35
|
+
ListReportDefinitionsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|