@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 +16 -0
- package/dist-types/ts3.4/ApplicationCostProfiler.d.ts +112 -35
- package/dist-types/ts3.4/ApplicationCostProfilerClient.d.ts +166 -79
- package/dist-types/ts3.4/commands/DeleteReportDefinitionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetReportDefinitionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ImportApplicationUsageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListReportDefinitionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/PutReportDefinitionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateReportDefinitionCommand.d.ts +41 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +218 -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 +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationCostProfilerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationCostProfilerClient";
|
|
13
|
+
import {
|
|
14
|
+
PutReportDefinitionRequest,
|
|
15
|
+
PutReportDefinitionResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface PutReportDefinitionCommandInput
|
|
18
|
+
extends PutReportDefinitionRequest {}
|
|
19
|
+
export interface PutReportDefinitionCommandOutput
|
|
20
|
+
extends PutReportDefinitionResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class PutReportDefinitionCommand extends $Command<
|
|
24
|
+
PutReportDefinitionCommandInput,
|
|
25
|
+
PutReportDefinitionCommandOutput,
|
|
26
|
+
ApplicationCostProfilerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: PutReportDefinitionCommandInput;
|
|
29
|
+
constructor(input: PutReportDefinitionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ApplicationCostProfilerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<PutReportDefinitionCommandInput, PutReportDefinitionCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
UpdateReportDefinitionRequest,
|
|
15
|
+
UpdateReportDefinitionResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateReportDefinitionCommandInput
|
|
18
|
+
extends UpdateReportDefinitionRequest {}
|
|
19
|
+
export interface UpdateReportDefinitionCommandOutput
|
|
20
|
+
extends UpdateReportDefinitionResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateReportDefinitionCommand extends $Command<
|
|
24
|
+
UpdateReportDefinitionCommandInput,
|
|
25
|
+
UpdateReportDefinitionCommandOutput,
|
|
26
|
+
ApplicationCostProfilerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateReportDefinitionCommandInput;
|
|
29
|
+
constructor(input: UpdateReportDefinitionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ApplicationCostProfilerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateReportDefinitionCommandInput,
|
|
37
|
+
UpdateReportDefinitionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./DeleteReportDefinitionCommand";
|
|
2
|
-
export * from "./GetReportDefinitionCommand";
|
|
3
|
-
export * from "./ImportApplicationUsageCommand";
|
|
4
|
-
export * from "./ListReportDefinitionsCommand";
|
|
5
|
-
export * from "./PutReportDefinitionCommand";
|
|
6
|
-
export * from "./UpdateReportDefinitionCommand";
|
|
1
|
+
export * from "./DeleteReportDefinitionCommand";
|
|
2
|
+
export * from "./GetReportDefinitionCommand";
|
|
3
|
+
export * from "./ImportApplicationUsageCommand";
|
|
4
|
+
export * from "./ListReportDefinitionsCommand";
|
|
5
|
+
export * from "./PutReportDefinitionCommand";
|
|
6
|
+
export * from "./UpdateReportDefinitionCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./ApplicationCostProfiler";
|
|
2
|
-
export * from "./ApplicationCostProfilerClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { ApplicationCostProfilerServiceException } from "./models/ApplicationCostProfilerServiceException";
|
|
1
|
+
export * from "./ApplicationCostProfiler";
|
|
2
|
+
export * from "./ApplicationCostProfilerClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { ApplicationCostProfilerServiceException } from "./models/ApplicationCostProfilerServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class ApplicationCostProfilerServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|
|
@@ -1,195 +1,218 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { ApplicationCostProfilerServiceException as __BaseException } from "./ApplicationCostProfilerServiceException";
|
|
3
|
-
|
|
4
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export declare class InternalServerException extends __BaseException {
|
|
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
|
-
export declare enum
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
}
|
|
98
|
-
export interface ListReportDefinitionsRequest {
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
export
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
export
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ApplicationCostProfilerServiceException as __BaseException } from "./ApplicationCostProfilerServiceException";
|
|
3
|
+
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
constructor(
|
|
9
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
|
+
);
|
|
11
|
+
}
|
|
12
|
+
export interface DeleteReportDefinitionRequest {
|
|
13
|
+
reportId: string | undefined;
|
|
14
|
+
}
|
|
15
|
+
export interface DeleteReportDefinitionResult {
|
|
16
|
+
reportId?: string;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export declare class InternalServerException extends __BaseException {
|
|
20
|
+
readonly name: "InternalServerException";
|
|
21
|
+
readonly $fault: "server";
|
|
22
|
+
|
|
23
|
+
constructor(
|
|
24
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export declare class ThrottlingException extends __BaseException {
|
|
29
|
+
readonly name: "ThrottlingException";
|
|
30
|
+
readonly $fault: "client";
|
|
31
|
+
|
|
32
|
+
constructor(
|
|
33
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
34
|
+
);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export declare class ValidationException extends __BaseException {
|
|
38
|
+
readonly name: "ValidationException";
|
|
39
|
+
readonly $fault: "client";
|
|
40
|
+
|
|
41
|
+
constructor(
|
|
42
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
export interface GetReportDefinitionRequest {
|
|
46
|
+
reportId: string | undefined;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export interface S3Location {
|
|
50
|
+
bucket: string | undefined;
|
|
51
|
+
|
|
52
|
+
prefix: string | undefined;
|
|
53
|
+
}
|
|
54
|
+
export declare enum Format {
|
|
55
|
+
CSV = "CSV",
|
|
56
|
+
PARQUET = "PARQUET",
|
|
57
|
+
}
|
|
58
|
+
export declare enum ReportFrequency {
|
|
59
|
+
ALL = "ALL",
|
|
60
|
+
DAILY = "DAILY",
|
|
61
|
+
MONTHLY = "MONTHLY",
|
|
62
|
+
}
|
|
63
|
+
export interface GetReportDefinitionResult {
|
|
64
|
+
reportId: string | undefined;
|
|
65
|
+
|
|
66
|
+
reportDescription: string | undefined;
|
|
67
|
+
|
|
68
|
+
reportFrequency: ReportFrequency | string | undefined;
|
|
69
|
+
|
|
70
|
+
format: Format | string | undefined;
|
|
71
|
+
|
|
72
|
+
destinationS3Location: S3Location | undefined;
|
|
73
|
+
|
|
74
|
+
createdAt: Date | undefined;
|
|
75
|
+
|
|
76
|
+
lastUpdated: Date | undefined;
|
|
77
|
+
}
|
|
78
|
+
export declare enum S3BucketRegion {
|
|
79
|
+
AF_SOUTH_1 = "af-south-1",
|
|
80
|
+
AP_EAST_1 = "ap-east-1",
|
|
81
|
+
EU_SOUTH_1 = "eu-south-1",
|
|
82
|
+
ME_SOUTH_1 = "me-south-1",
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export interface SourceS3Location {
|
|
86
|
+
bucket: string | undefined;
|
|
87
|
+
|
|
88
|
+
key: string | undefined;
|
|
89
|
+
|
|
90
|
+
region?: S3BucketRegion | string;
|
|
91
|
+
}
|
|
92
|
+
export interface ImportApplicationUsageRequest {
|
|
93
|
+
sourceS3Location: SourceS3Location | undefined;
|
|
94
|
+
}
|
|
95
|
+
export interface ImportApplicationUsageResult {
|
|
96
|
+
importId: string | undefined;
|
|
97
|
+
}
|
|
98
|
+
export interface ListReportDefinitionsRequest {
|
|
99
|
+
nextToken?: string;
|
|
100
|
+
|
|
101
|
+
maxResults?: number;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
export interface ReportDefinition {
|
|
105
|
+
reportId?: string;
|
|
106
|
+
|
|
107
|
+
reportDescription?: string;
|
|
108
|
+
|
|
109
|
+
reportFrequency?: ReportFrequency | string;
|
|
110
|
+
|
|
111
|
+
format?: Format | string;
|
|
112
|
+
|
|
113
|
+
destinationS3Location?: S3Location;
|
|
114
|
+
|
|
115
|
+
createdAt?: Date;
|
|
116
|
+
|
|
117
|
+
lastUpdatedAt?: Date;
|
|
118
|
+
}
|
|
119
|
+
export interface ListReportDefinitionsResult {
|
|
120
|
+
reportDefinitions?: ReportDefinition[];
|
|
121
|
+
|
|
122
|
+
nextToken?: string;
|
|
123
|
+
}
|
|
124
|
+
export interface PutReportDefinitionRequest {
|
|
125
|
+
reportId: string | undefined;
|
|
126
|
+
|
|
127
|
+
reportDescription: string | undefined;
|
|
128
|
+
|
|
129
|
+
reportFrequency: ReportFrequency | string | undefined;
|
|
130
|
+
|
|
131
|
+
format: Format | string | undefined;
|
|
132
|
+
|
|
133
|
+
destinationS3Location: S3Location | undefined;
|
|
134
|
+
}
|
|
135
|
+
export interface PutReportDefinitionResult {
|
|
136
|
+
reportId?: string;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
140
|
+
readonly name: "ServiceQuotaExceededException";
|
|
141
|
+
readonly $fault: "client";
|
|
142
|
+
|
|
143
|
+
constructor(
|
|
144
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
145
|
+
);
|
|
146
|
+
}
|
|
147
|
+
export interface UpdateReportDefinitionRequest {
|
|
148
|
+
reportId: string | undefined;
|
|
149
|
+
|
|
150
|
+
reportDescription: string | undefined;
|
|
151
|
+
|
|
152
|
+
reportFrequency: ReportFrequency | string | undefined;
|
|
153
|
+
|
|
154
|
+
format: Format | string | undefined;
|
|
155
|
+
|
|
156
|
+
destinationS3Location: S3Location | undefined;
|
|
157
|
+
}
|
|
158
|
+
export interface UpdateReportDefinitionResult {
|
|
159
|
+
reportId?: string;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export declare const DeleteReportDefinitionRequestFilterSensitiveLog: (
|
|
163
|
+
obj: DeleteReportDefinitionRequest
|
|
164
|
+
) => any;
|
|
165
|
+
|
|
166
|
+
export declare const DeleteReportDefinitionResultFilterSensitiveLog: (
|
|
167
|
+
obj: DeleteReportDefinitionResult
|
|
168
|
+
) => any;
|
|
169
|
+
|
|
170
|
+
export declare const GetReportDefinitionRequestFilterSensitiveLog: (
|
|
171
|
+
obj: GetReportDefinitionRequest
|
|
172
|
+
) => any;
|
|
173
|
+
|
|
174
|
+
export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
|
|
175
|
+
|
|
176
|
+
export declare const GetReportDefinitionResultFilterSensitiveLog: (
|
|
177
|
+
obj: GetReportDefinitionResult
|
|
178
|
+
) => any;
|
|
179
|
+
|
|
180
|
+
export declare const SourceS3LocationFilterSensitiveLog: (
|
|
181
|
+
obj: SourceS3Location
|
|
182
|
+
) => any;
|
|
183
|
+
|
|
184
|
+
export declare const ImportApplicationUsageRequestFilterSensitiveLog: (
|
|
185
|
+
obj: ImportApplicationUsageRequest
|
|
186
|
+
) => any;
|
|
187
|
+
|
|
188
|
+
export declare const ImportApplicationUsageResultFilterSensitiveLog: (
|
|
189
|
+
obj: ImportApplicationUsageResult
|
|
190
|
+
) => any;
|
|
191
|
+
|
|
192
|
+
export declare const ListReportDefinitionsRequestFilterSensitiveLog: (
|
|
193
|
+
obj: ListReportDefinitionsRequest
|
|
194
|
+
) => any;
|
|
195
|
+
|
|
196
|
+
export declare const ReportDefinitionFilterSensitiveLog: (
|
|
197
|
+
obj: ReportDefinition
|
|
198
|
+
) => any;
|
|
199
|
+
|
|
200
|
+
export declare const ListReportDefinitionsResultFilterSensitiveLog: (
|
|
201
|
+
obj: ListReportDefinitionsResult
|
|
202
|
+
) => any;
|
|
203
|
+
|
|
204
|
+
export declare const PutReportDefinitionRequestFilterSensitiveLog: (
|
|
205
|
+
obj: PutReportDefinitionRequest
|
|
206
|
+
) => any;
|
|
207
|
+
|
|
208
|
+
export declare const PutReportDefinitionResultFilterSensitiveLog: (
|
|
209
|
+
obj: PutReportDefinitionResult
|
|
210
|
+
) => any;
|
|
211
|
+
|
|
212
|
+
export declare const UpdateReportDefinitionRequestFilterSensitiveLog: (
|
|
213
|
+
obj: UpdateReportDefinitionRequest
|
|
214
|
+
) => any;
|
|
215
|
+
|
|
216
|
+
export declare const UpdateReportDefinitionResultFilterSensitiveLog: (
|
|
217
|
+
obj: UpdateReportDefinitionResult
|
|
218
|
+
) => any;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { ApplicationCostProfiler } from "../ApplicationCostProfiler";
|
|
3
|
-
import { ApplicationCostProfilerClient } from "../ApplicationCostProfilerClient";
|
|
4
|
-
export interface ApplicationCostProfilerPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { ApplicationCostProfiler } from "../ApplicationCostProfiler";
|
|
3
|
+
import { ApplicationCostProfilerClient } from "../ApplicationCostProfilerClient";
|
|
4
|
+
export interface ApplicationCostProfilerPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: ApplicationCostProfiler | ApplicationCostProfilerClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListReportDefinitionsCommandInput,
|
|
4
|
+
ListReportDefinitionsCommandOutput,
|
|
5
|
+
} from "../commands/ListReportDefinitionsCommand";
|
|
6
|
+
import { ApplicationCostProfilerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListReportDefinitions(
|
|
8
|
+
config: ApplicationCostProfilerPaginationConfiguration,
|
|
9
|
+
input: ListReportDefinitionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListReportDefinitionsCommandOutput>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListReportDefinitionsPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListReportDefinitionsPaginator";
|