@aws-sdk/client-applicationcostprofiler 3.934.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +16 -15
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +15 -0
- package/dist-es/models/errors.js +61 -0
- package/dist-es/models/models_0.js +1 -76
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +39 -0
- package/dist-types/models/errors.d.ts +62 -0
- package/dist-types/models/models_0.d.ts +1 -101
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +20 -0
- package/dist-types/ts3.4/models/errors.d.ts +37 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -57
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -165,21 +165,6 @@ let ValidationException$1 = class ValidationException extends ApplicationCostPro
|
|
|
165
165
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
166
166
|
}
|
|
167
167
|
};
|
|
168
|
-
const Format = {
|
|
169
|
-
CSV: "CSV",
|
|
170
|
-
PARQUET: "PARQUET",
|
|
171
|
-
};
|
|
172
|
-
const ReportFrequency = {
|
|
173
|
-
ALL: "ALL",
|
|
174
|
-
DAILY: "DAILY",
|
|
175
|
-
MONTHLY: "MONTHLY",
|
|
176
|
-
};
|
|
177
|
-
const S3BucketRegion = {
|
|
178
|
-
AF_SOUTH_1: "af-south-1",
|
|
179
|
-
AP_EAST_1: "ap-east-1",
|
|
180
|
-
EU_SOUTH_1: "eu-south-1",
|
|
181
|
-
ME_SOUTH_1: "me-south-1",
|
|
182
|
-
};
|
|
183
168
|
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends ApplicationCostProfilerServiceException$1 {
|
|
184
169
|
name = "ServiceQuotaExceededException";
|
|
185
170
|
$fault = "client";
|
|
@@ -533,6 +518,22 @@ smithyClient.createAggregatedClient(commands, ApplicationCostProfiler);
|
|
|
533
518
|
|
|
534
519
|
const paginateListReportDefinitions = core.createPaginator(ApplicationCostProfilerClient, ListReportDefinitionsCommand, "nextToken", "nextToken", "maxResults");
|
|
535
520
|
|
|
521
|
+
const Format = {
|
|
522
|
+
CSV: "CSV",
|
|
523
|
+
PARQUET: "PARQUET",
|
|
524
|
+
};
|
|
525
|
+
const ReportFrequency = {
|
|
526
|
+
ALL: "ALL",
|
|
527
|
+
DAILY: "DAILY",
|
|
528
|
+
MONTHLY: "MONTHLY",
|
|
529
|
+
};
|
|
530
|
+
const S3BucketRegion = {
|
|
531
|
+
AF_SOUTH_1: "af-south-1",
|
|
532
|
+
AP_EAST_1: "ap-east-1",
|
|
533
|
+
EU_SOUTH_1: "eu-south-1",
|
|
534
|
+
ME_SOUTH_1: "me-south-1",
|
|
535
|
+
};
|
|
536
|
+
|
|
536
537
|
Object.defineProperty(exports, "$Command", {
|
|
537
538
|
enumerable: true,
|
|
538
539
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./ApplicationCostProfilerClient";
|
|
|
2
2
|
export * from "./ApplicationCostProfiler";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/enums";
|
|
6
|
+
export * from "./models/errors";
|
|
6
7
|
export { ApplicationCostProfilerServiceException } from "./models/ApplicationCostProfilerServiceException";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export const Format = {
|
|
2
|
+
CSV: "CSV",
|
|
3
|
+
PARQUET: "PARQUET",
|
|
4
|
+
};
|
|
5
|
+
export const ReportFrequency = {
|
|
6
|
+
ALL: "ALL",
|
|
7
|
+
DAILY: "DAILY",
|
|
8
|
+
MONTHLY: "MONTHLY",
|
|
9
|
+
};
|
|
10
|
+
export const S3BucketRegion = {
|
|
11
|
+
AF_SOUTH_1: "af-south-1",
|
|
12
|
+
AP_EAST_1: "ap-east-1",
|
|
13
|
+
EU_SOUTH_1: "eu-south-1",
|
|
14
|
+
ME_SOUTH_1: "me-south-1",
|
|
15
|
+
};
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { ApplicationCostProfilerServiceException as __BaseException } from "./ApplicationCostProfilerServiceException";
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "AccessDeniedException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class InternalServerException extends __BaseException {
|
|
15
|
+
name = "InternalServerException";
|
|
16
|
+
$fault = "server";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "InternalServerException",
|
|
20
|
+
$fault: "server",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class ThrottlingException extends __BaseException {
|
|
27
|
+
name = "ThrottlingException";
|
|
28
|
+
$fault = "client";
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "ThrottlingException",
|
|
32
|
+
$fault: "client",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class ValidationException extends __BaseException {
|
|
39
|
+
name = "ValidationException";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "ValidationException",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
51
|
+
name = "ServiceQuotaExceededException";
|
|
52
|
+
$fault = "client";
|
|
53
|
+
constructor(opts) {
|
|
54
|
+
super({
|
|
55
|
+
name: "ServiceQuotaExceededException",
|
|
56
|
+
$fault: "client",
|
|
57
|
+
...opts,
|
|
58
|
+
});
|
|
59
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
@@ -1,76 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export class InternalServerException extends __BaseException {
|
|
15
|
-
name = "InternalServerException";
|
|
16
|
-
$fault = "server";
|
|
17
|
-
constructor(opts) {
|
|
18
|
-
super({
|
|
19
|
-
name: "InternalServerException",
|
|
20
|
-
$fault: "server",
|
|
21
|
-
...opts,
|
|
22
|
-
});
|
|
23
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
export class ThrottlingException extends __BaseException {
|
|
27
|
-
name = "ThrottlingException";
|
|
28
|
-
$fault = "client";
|
|
29
|
-
constructor(opts) {
|
|
30
|
-
super({
|
|
31
|
-
name: "ThrottlingException",
|
|
32
|
-
$fault: "client",
|
|
33
|
-
...opts,
|
|
34
|
-
});
|
|
35
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
export class ValidationException extends __BaseException {
|
|
39
|
-
name = "ValidationException";
|
|
40
|
-
$fault = "client";
|
|
41
|
-
constructor(opts) {
|
|
42
|
-
super({
|
|
43
|
-
name: "ValidationException",
|
|
44
|
-
$fault: "client",
|
|
45
|
-
...opts,
|
|
46
|
-
});
|
|
47
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
export const Format = {
|
|
51
|
-
CSV: "CSV",
|
|
52
|
-
PARQUET: "PARQUET",
|
|
53
|
-
};
|
|
54
|
-
export const ReportFrequency = {
|
|
55
|
-
ALL: "ALL",
|
|
56
|
-
DAILY: "DAILY",
|
|
57
|
-
MONTHLY: "MONTHLY",
|
|
58
|
-
};
|
|
59
|
-
export const S3BucketRegion = {
|
|
60
|
-
AF_SOUTH_1: "af-south-1",
|
|
61
|
-
AP_EAST_1: "ap-east-1",
|
|
62
|
-
EU_SOUTH_1: "eu-south-1",
|
|
63
|
-
ME_SOUTH_1: "me-south-1",
|
|
64
|
-
};
|
|
65
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
66
|
-
name = "ServiceQuotaExceededException";
|
|
67
|
-
$fault = "client";
|
|
68
|
-
constructor(opts) {
|
|
69
|
-
super({
|
|
70
|
-
name: "ServiceQuotaExceededException",
|
|
71
|
-
$fault: "client",
|
|
72
|
-
...opts,
|
|
73
|
-
});
|
|
74
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
75
|
-
}
|
|
76
|
-
}
|
|
1
|
+
export {};
|
|
@@ -53,7 +53,7 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.applicationcostprofiler";
|
|
|
53
53
|
const n0 = "com.amazonaws.applicationcostprofiler";
|
|
54
54
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
55
55
|
import { ApplicationCostProfilerServiceException as __ApplicationCostProfilerServiceException } from "../models/ApplicationCostProfilerServiceException";
|
|
56
|
-
import { AccessDeniedException as __AccessDeniedException, InternalServerException as __InternalServerException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/
|
|
56
|
+
import { AccessDeniedException as __AccessDeniedException, InternalServerException as __InternalServerException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
57
57
|
export var AccessDeniedException = [
|
|
58
58
|
-3,
|
|
59
59
|
n0,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -15,5 +15,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
15
15
|
export type { ApplicationCostProfilerExtensionConfiguration } from "./extensionConfiguration";
|
|
16
16
|
export * from "./commands";
|
|
17
17
|
export * from "./pagination";
|
|
18
|
-
export * from "./models";
|
|
18
|
+
export * from "./models/enums";
|
|
19
|
+
export * from "./models/errors";
|
|
20
|
+
export type * from "./models/models_0";
|
|
19
21
|
export { ApplicationCostProfilerServiceException } from "./models/ApplicationCostProfilerServiceException";
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const Format: {
|
|
6
|
+
readonly CSV: "CSV";
|
|
7
|
+
readonly PARQUET: "PARQUET";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type Format = (typeof Format)[keyof typeof Format];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const ReportFrequency: {
|
|
18
|
+
readonly ALL: "ALL";
|
|
19
|
+
readonly DAILY: "DAILY";
|
|
20
|
+
readonly MONTHLY: "MONTHLY";
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export type ReportFrequency = (typeof ReportFrequency)[keyof typeof ReportFrequency];
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
* @enum
|
|
29
|
+
*/
|
|
30
|
+
export declare const S3BucketRegion: {
|
|
31
|
+
readonly AF_SOUTH_1: "af-south-1";
|
|
32
|
+
readonly AP_EAST_1: "ap-east-1";
|
|
33
|
+
readonly EU_SOUTH_1: "eu-south-1";
|
|
34
|
+
readonly ME_SOUTH_1: "me-south-1";
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export type S3BucketRegion = (typeof S3BucketRegion)[keyof typeof S3BucketRegion];
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ApplicationCostProfilerServiceException as __BaseException } from "./ApplicationCostProfilerServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You do not have permission to perform this action.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>An internal server error occurred. Retry your request.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class InternalServerException extends __BaseException {
|
|
20
|
+
readonly name: "InternalServerException";
|
|
21
|
+
readonly $fault: "server";
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>The calls to AWS Application Cost Profiler API are throttled. The request was denied.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class ThrottlingException extends __BaseException {
|
|
32
|
+
readonly name: "ThrottlingException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>The input fails to satisfy the constraints for the API.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export declare class ValidationException extends __BaseException {
|
|
44
|
+
readonly name: "ValidationException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
/**
|
|
47
|
+
* @internal
|
|
48
|
+
*/
|
|
49
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* <p>Your request exceeds one or more of the service quotas.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
56
|
+
readonly name: "ServiceQuotaExceededException";
|
|
57
|
+
readonly $fault: "client";
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
62
|
+
}
|
|
@@ -1,17 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ApplicationCostProfilerServiceException as __BaseException } from "./ApplicationCostProfilerServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You do not have permission to perform this action.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
/**
|
|
11
|
-
* @internal
|
|
12
|
-
*/
|
|
13
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
-
}
|
|
1
|
+
import { Format, ReportFrequency, S3BucketRegion } from "./enums";
|
|
15
2
|
/**
|
|
16
3
|
* @public
|
|
17
4
|
*/
|
|
@@ -32,42 +19,6 @@ export interface DeleteReportDefinitionResult {
|
|
|
32
19
|
*/
|
|
33
20
|
reportId?: string | undefined;
|
|
34
21
|
}
|
|
35
|
-
/**
|
|
36
|
-
* <p>An internal server error occurred. Retry your request.</p>
|
|
37
|
-
* @public
|
|
38
|
-
*/
|
|
39
|
-
export declare class InternalServerException extends __BaseException {
|
|
40
|
-
readonly name: "InternalServerException";
|
|
41
|
-
readonly $fault: "server";
|
|
42
|
-
/**
|
|
43
|
-
* @internal
|
|
44
|
-
*/
|
|
45
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
46
|
-
}
|
|
47
|
-
/**
|
|
48
|
-
* <p>The calls to AWS Application Cost Profiler API are throttled. The request was denied.</p>
|
|
49
|
-
* @public
|
|
50
|
-
*/
|
|
51
|
-
export declare class ThrottlingException extends __BaseException {
|
|
52
|
-
readonly name: "ThrottlingException";
|
|
53
|
-
readonly $fault: "client";
|
|
54
|
-
/**
|
|
55
|
-
* @internal
|
|
56
|
-
*/
|
|
57
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
58
|
-
}
|
|
59
|
-
/**
|
|
60
|
-
* <p>The input fails to satisfy the constraints for the API.</p>
|
|
61
|
-
* @public
|
|
62
|
-
*/
|
|
63
|
-
export declare class ValidationException extends __BaseException {
|
|
64
|
-
readonly name: "ValidationException";
|
|
65
|
-
readonly $fault: "client";
|
|
66
|
-
/**
|
|
67
|
-
* @internal
|
|
68
|
-
*/
|
|
69
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
70
|
-
}
|
|
71
22
|
/**
|
|
72
23
|
* @public
|
|
73
24
|
*/
|
|
@@ -95,31 +46,6 @@ export interface S3Location {
|
|
|
95
46
|
*/
|
|
96
47
|
prefix: string | undefined;
|
|
97
48
|
}
|
|
98
|
-
/**
|
|
99
|
-
* @public
|
|
100
|
-
* @enum
|
|
101
|
-
*/
|
|
102
|
-
export declare const Format: {
|
|
103
|
-
readonly CSV: "CSV";
|
|
104
|
-
readonly PARQUET: "PARQUET";
|
|
105
|
-
};
|
|
106
|
-
/**
|
|
107
|
-
* @public
|
|
108
|
-
*/
|
|
109
|
-
export type Format = (typeof Format)[keyof typeof Format];
|
|
110
|
-
/**
|
|
111
|
-
* @public
|
|
112
|
-
* @enum
|
|
113
|
-
*/
|
|
114
|
-
export declare const ReportFrequency: {
|
|
115
|
-
readonly ALL: "ALL";
|
|
116
|
-
readonly DAILY: "DAILY";
|
|
117
|
-
readonly MONTHLY: "MONTHLY";
|
|
118
|
-
};
|
|
119
|
-
/**
|
|
120
|
-
* @public
|
|
121
|
-
*/
|
|
122
|
-
export type ReportFrequency = (typeof ReportFrequency)[keyof typeof ReportFrequency];
|
|
123
49
|
/**
|
|
124
50
|
* @public
|
|
125
51
|
*/
|
|
@@ -160,20 +86,6 @@ export interface GetReportDefinitionResult {
|
|
|
160
86
|
*/
|
|
161
87
|
lastUpdated: Date | undefined;
|
|
162
88
|
}
|
|
163
|
-
/**
|
|
164
|
-
* @public
|
|
165
|
-
* @enum
|
|
166
|
-
*/
|
|
167
|
-
export declare const S3BucketRegion: {
|
|
168
|
-
readonly AF_SOUTH_1: "af-south-1";
|
|
169
|
-
readonly AP_EAST_1: "ap-east-1";
|
|
170
|
-
readonly EU_SOUTH_1: "eu-south-1";
|
|
171
|
-
readonly ME_SOUTH_1: "me-south-1";
|
|
172
|
-
};
|
|
173
|
-
/**
|
|
174
|
-
* @public
|
|
175
|
-
*/
|
|
176
|
-
export type S3BucketRegion = (typeof S3BucketRegion)[keyof typeof S3BucketRegion];
|
|
177
89
|
/**
|
|
178
90
|
* <p>Represents the Amazon Simple Storage Service (Amazon S3) location where usage data is read
|
|
179
91
|
* from.</p>
|
|
@@ -331,18 +243,6 @@ export interface PutReportDefinitionResult {
|
|
|
331
243
|
*/
|
|
332
244
|
reportId?: string | undefined;
|
|
333
245
|
}
|
|
334
|
-
/**
|
|
335
|
-
* <p>Your request exceeds one or more of the service quotas.</p>
|
|
336
|
-
* @public
|
|
337
|
-
*/
|
|
338
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
339
|
-
readonly name: "ServiceQuotaExceededException";
|
|
340
|
-
readonly $fault: "client";
|
|
341
|
-
/**
|
|
342
|
-
* @internal
|
|
343
|
-
*/
|
|
344
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
345
|
-
}
|
|
346
246
|
/**
|
|
347
247
|
* @public
|
|
348
248
|
*/
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { ApplicationCostProfilerExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { ApplicationCostProfilerServiceException } from "./models/ApplicationCostProfilerServiceException";
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare const Format: {
|
|
2
|
+
readonly CSV: "CSV";
|
|
3
|
+
readonly PARQUET: "PARQUET";
|
|
4
|
+
};
|
|
5
|
+
export type Format = (typeof Format)[keyof typeof Format];
|
|
6
|
+
export declare const ReportFrequency: {
|
|
7
|
+
readonly ALL: "ALL";
|
|
8
|
+
readonly DAILY: "DAILY";
|
|
9
|
+
readonly MONTHLY: "MONTHLY";
|
|
10
|
+
};
|
|
11
|
+
export type ReportFrequency =
|
|
12
|
+
(typeof ReportFrequency)[keyof typeof ReportFrequency];
|
|
13
|
+
export declare const S3BucketRegion: {
|
|
14
|
+
readonly AF_SOUTH_1: "af-south-1";
|
|
15
|
+
readonly AP_EAST_1: "ap-east-1";
|
|
16
|
+
readonly EU_SOUTH_1: "eu-south-1";
|
|
17
|
+
readonly ME_SOUTH_1: "me-south-1";
|
|
18
|
+
};
|
|
19
|
+
export type S3BucketRegion =
|
|
20
|
+
(typeof S3BucketRegion)[keyof typeof S3BucketRegion];
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ApplicationCostProfilerServiceException as __BaseException } from "./ApplicationCostProfilerServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class InternalServerException extends __BaseException {
|
|
11
|
+
readonly name: "InternalServerException";
|
|
12
|
+
readonly $fault: "server";
|
|
13
|
+
constructor(
|
|
14
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
export declare class ThrottlingException extends __BaseException {
|
|
18
|
+
readonly name: "ThrottlingException";
|
|
19
|
+
readonly $fault: "client";
|
|
20
|
+
constructor(
|
|
21
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
export declare class ValidationException extends __BaseException {
|
|
25
|
+
readonly name: "ValidationException";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
32
|
+
readonly name: "ServiceQuotaExceededException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
constructor(
|
|
35
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
@@ -1,39 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ApplicationCostProfilerServiceException as __BaseException } from "./ApplicationCostProfilerServiceException";
|
|
3
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
-
readonly name: "AccessDeniedException";
|
|
5
|
-
readonly $fault: "client";
|
|
6
|
-
constructor(
|
|
7
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
-
);
|
|
9
|
-
}
|
|
1
|
+
import { Format, ReportFrequency, S3BucketRegion } from "./enums";
|
|
10
2
|
export interface DeleteReportDefinitionRequest {
|
|
11
3
|
reportId: string | undefined;
|
|
12
4
|
}
|
|
13
5
|
export interface DeleteReportDefinitionResult {
|
|
14
6
|
reportId?: string | undefined;
|
|
15
7
|
}
|
|
16
|
-
export declare class InternalServerException extends __BaseException {
|
|
17
|
-
readonly name: "InternalServerException";
|
|
18
|
-
readonly $fault: "server";
|
|
19
|
-
constructor(
|
|
20
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
21
|
-
);
|
|
22
|
-
}
|
|
23
|
-
export declare class ThrottlingException extends __BaseException {
|
|
24
|
-
readonly name: "ThrottlingException";
|
|
25
|
-
readonly $fault: "client";
|
|
26
|
-
constructor(
|
|
27
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
28
|
-
);
|
|
29
|
-
}
|
|
30
|
-
export declare class ValidationException extends __BaseException {
|
|
31
|
-
readonly name: "ValidationException";
|
|
32
|
-
readonly $fault: "client";
|
|
33
|
-
constructor(
|
|
34
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
35
|
-
);
|
|
36
|
-
}
|
|
37
8
|
export interface GetReportDefinitionRequest {
|
|
38
9
|
reportId: string | undefined;
|
|
39
10
|
}
|
|
@@ -41,18 +12,6 @@ export interface S3Location {
|
|
|
41
12
|
bucket: string | undefined;
|
|
42
13
|
prefix: string | undefined;
|
|
43
14
|
}
|
|
44
|
-
export declare const Format: {
|
|
45
|
-
readonly CSV: "CSV";
|
|
46
|
-
readonly PARQUET: "PARQUET";
|
|
47
|
-
};
|
|
48
|
-
export type Format = (typeof Format)[keyof typeof Format];
|
|
49
|
-
export declare const ReportFrequency: {
|
|
50
|
-
readonly ALL: "ALL";
|
|
51
|
-
readonly DAILY: "DAILY";
|
|
52
|
-
readonly MONTHLY: "MONTHLY";
|
|
53
|
-
};
|
|
54
|
-
export type ReportFrequency =
|
|
55
|
-
(typeof ReportFrequency)[keyof typeof ReportFrequency];
|
|
56
15
|
export interface GetReportDefinitionResult {
|
|
57
16
|
reportId: string | undefined;
|
|
58
17
|
reportDescription: string | undefined;
|
|
@@ -62,14 +21,6 @@ export interface GetReportDefinitionResult {
|
|
|
62
21
|
createdAt: Date | undefined;
|
|
63
22
|
lastUpdated: Date | undefined;
|
|
64
23
|
}
|
|
65
|
-
export declare const S3BucketRegion: {
|
|
66
|
-
readonly AF_SOUTH_1: "af-south-1";
|
|
67
|
-
readonly AP_EAST_1: "ap-east-1";
|
|
68
|
-
readonly EU_SOUTH_1: "eu-south-1";
|
|
69
|
-
readonly ME_SOUTH_1: "me-south-1";
|
|
70
|
-
};
|
|
71
|
-
export type S3BucketRegion =
|
|
72
|
-
(typeof S3BucketRegion)[keyof typeof S3BucketRegion];
|
|
73
24
|
export interface SourceS3Location {
|
|
74
25
|
bucket: string | undefined;
|
|
75
26
|
key: string | undefined;
|
|
@@ -108,13 +59,6 @@ export interface PutReportDefinitionRequest {
|
|
|
108
59
|
export interface PutReportDefinitionResult {
|
|
109
60
|
reportId?: string | undefined;
|
|
110
61
|
}
|
|
111
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
112
|
-
readonly name: "ServiceQuotaExceededException";
|
|
113
|
-
readonly $fault: "client";
|
|
114
|
-
constructor(
|
|
115
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
116
|
-
);
|
|
117
|
-
}
|
|
118
62
|
export interface UpdateReportDefinitionRequest {
|
|
119
63
|
reportId: string | undefined;
|
|
120
64
|
reportDescription: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-applicationcostprofiler",
|
|
3
3
|
"description": "AWS SDK for JavaScript Applicationcostprofiler Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-applicationcostprofiler",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|