@aws-sdk/client-applicationcostprofiler 3.427.0 → 3.429.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.
|
@@ -138,12 +138,12 @@ export interface GetReportDefinitionResult {
|
|
|
138
138
|
* @public
|
|
139
139
|
* <p>Cadence used to generate the report.</p>
|
|
140
140
|
*/
|
|
141
|
-
reportFrequency: ReportFrequency |
|
|
141
|
+
reportFrequency: ReportFrequency | undefined;
|
|
142
142
|
/**
|
|
143
143
|
* @public
|
|
144
144
|
* <p>Format of the generated report.</p>
|
|
145
145
|
*/
|
|
146
|
-
format: Format |
|
|
146
|
+
format: Format | undefined;
|
|
147
147
|
/**
|
|
148
148
|
* @public
|
|
149
149
|
* <p>Amazon Simple Storage Service (Amazon S3) location where the report is uploaded.</p>
|
|
@@ -196,7 +196,7 @@ export interface SourceS3Location {
|
|
|
196
196
|
* For more infomration about Regions that are disabled by default, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande-manage.html#rande-manage-enable">
|
|
197
197
|
* Enabling a Region</a> in the <i>AWS General Reference guide</i>.</p>
|
|
198
198
|
*/
|
|
199
|
-
region?: S3BucketRegion
|
|
199
|
+
region?: S3BucketRegion;
|
|
200
200
|
}
|
|
201
201
|
/**
|
|
202
202
|
* @public
|
|
@@ -252,12 +252,12 @@ export interface ReportDefinition {
|
|
|
252
252
|
* @public
|
|
253
253
|
* <p>The cadence at which the report is generated.</p>
|
|
254
254
|
*/
|
|
255
|
-
reportFrequency?: ReportFrequency
|
|
255
|
+
reportFrequency?: ReportFrequency;
|
|
256
256
|
/**
|
|
257
257
|
* @public
|
|
258
258
|
* <p>The format used for the generated reports.</p>
|
|
259
259
|
*/
|
|
260
|
-
format?: Format
|
|
260
|
+
format?: Format;
|
|
261
261
|
/**
|
|
262
262
|
* @public
|
|
263
263
|
* <p>The location in Amazon Simple Storage Service (Amazon S3) the reports should be saved to.</p>
|
|
@@ -308,12 +308,12 @@ export interface PutReportDefinitionRequest {
|
|
|
308
308
|
* @public
|
|
309
309
|
* <p>Required. The cadence to generate the report.</p>
|
|
310
310
|
*/
|
|
311
|
-
reportFrequency: ReportFrequency |
|
|
311
|
+
reportFrequency: ReportFrequency | undefined;
|
|
312
312
|
/**
|
|
313
313
|
* @public
|
|
314
314
|
* <p>Required. The format to use for the generated report.</p>
|
|
315
315
|
*/
|
|
316
|
-
format: Format |
|
|
316
|
+
format: Format | undefined;
|
|
317
317
|
/**
|
|
318
318
|
* @public
|
|
319
319
|
* <p>Required. Amazon Simple Storage Service (Amazon S3) location where Application Cost Profiler uploads the
|
|
@@ -361,12 +361,12 @@ export interface UpdateReportDefinitionRequest {
|
|
|
361
361
|
* @public
|
|
362
362
|
* <p>Required. The cadence to generate the report.</p>
|
|
363
363
|
*/
|
|
364
|
-
reportFrequency: ReportFrequency |
|
|
364
|
+
reportFrequency: ReportFrequency | undefined;
|
|
365
365
|
/**
|
|
366
366
|
* @public
|
|
367
367
|
* <p>Required. The format to use for the generated report.</p>
|
|
368
368
|
*/
|
|
369
|
-
format: Format |
|
|
369
|
+
format: Format | undefined;
|
|
370
370
|
/**
|
|
371
371
|
* @public
|
|
372
372
|
* <p>Required. Amazon Simple Storage Service (Amazon S3) location where Application Cost Profiler uploads the
|
|
@@ -56,8 +56,8 @@ export type ReportFrequency =
|
|
|
56
56
|
export interface GetReportDefinitionResult {
|
|
57
57
|
reportId: string | undefined;
|
|
58
58
|
reportDescription: string | undefined;
|
|
59
|
-
reportFrequency: ReportFrequency |
|
|
60
|
-
format: Format |
|
|
59
|
+
reportFrequency: ReportFrequency | undefined;
|
|
60
|
+
format: Format | undefined;
|
|
61
61
|
destinationS3Location: S3Location | undefined;
|
|
62
62
|
createdAt: Date | undefined;
|
|
63
63
|
lastUpdated: Date | undefined;
|
|
@@ -73,7 +73,7 @@ export type S3BucketRegion =
|
|
|
73
73
|
export interface SourceS3Location {
|
|
74
74
|
bucket: string | undefined;
|
|
75
75
|
key: string | undefined;
|
|
76
|
-
region?: S3BucketRegion
|
|
76
|
+
region?: S3BucketRegion;
|
|
77
77
|
}
|
|
78
78
|
export interface ImportApplicationUsageRequest {
|
|
79
79
|
sourceS3Location: SourceS3Location | undefined;
|
|
@@ -88,8 +88,8 @@ export interface ListReportDefinitionsRequest {
|
|
|
88
88
|
export interface ReportDefinition {
|
|
89
89
|
reportId?: string;
|
|
90
90
|
reportDescription?: string;
|
|
91
|
-
reportFrequency?: ReportFrequency
|
|
92
|
-
format?: Format
|
|
91
|
+
reportFrequency?: ReportFrequency;
|
|
92
|
+
format?: Format;
|
|
93
93
|
destinationS3Location?: S3Location;
|
|
94
94
|
createdAt?: Date;
|
|
95
95
|
lastUpdatedAt?: Date;
|
|
@@ -101,8 +101,8 @@ export interface ListReportDefinitionsResult {
|
|
|
101
101
|
export interface PutReportDefinitionRequest {
|
|
102
102
|
reportId: string | undefined;
|
|
103
103
|
reportDescription: string | undefined;
|
|
104
|
-
reportFrequency: ReportFrequency |
|
|
105
|
-
format: Format |
|
|
104
|
+
reportFrequency: ReportFrequency | undefined;
|
|
105
|
+
format: Format | undefined;
|
|
106
106
|
destinationS3Location: S3Location | undefined;
|
|
107
107
|
}
|
|
108
108
|
export interface PutReportDefinitionResult {
|
|
@@ -118,8 +118,8 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
118
118
|
export interface UpdateReportDefinitionRequest {
|
|
119
119
|
reportId: string | undefined;
|
|
120
120
|
reportDescription: string | undefined;
|
|
121
|
-
reportFrequency: ReportFrequency |
|
|
122
|
-
format: Format |
|
|
121
|
+
reportFrequency: ReportFrequency | undefined;
|
|
122
|
+
format: Format | undefined;
|
|
123
123
|
destinationS3Location: S3Location | undefined;
|
|
124
124
|
}
|
|
125
125
|
export interface UpdateReportDefinitionResult {
|
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.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,39 +21,39 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|