@aws-sdk/client-cost-and-usage-report-service 3.686.0 → 3.691.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.
|
@@ -33,7 +33,7 @@ export interface DeleteReportDefinitionResponse {
|
|
|
33
33
|
* <p>Whether the deletion was successful or not.</p>
|
|
34
34
|
* @public
|
|
35
35
|
*/
|
|
36
|
-
ResponseMessage?: string;
|
|
36
|
+
ResponseMessage?: string | undefined;
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
39
|
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
@@ -46,7 +46,7 @@ export declare class InternalErrorException extends __BaseException {
|
|
|
46
46
|
* <p>A message to show the detail of the exception.</p>
|
|
47
47
|
* @public
|
|
48
48
|
*/
|
|
49
|
-
Message?: string;
|
|
49
|
+
Message?: string | undefined;
|
|
50
50
|
/**
|
|
51
51
|
* @internal
|
|
52
52
|
*/
|
|
@@ -63,7 +63,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
63
63
|
* <p>A message to show the detail of the exception.</p>
|
|
64
64
|
* @public
|
|
65
65
|
*/
|
|
66
|
-
Message?: string;
|
|
66
|
+
Message?: string | undefined;
|
|
67
67
|
/**
|
|
68
68
|
* @internal
|
|
69
69
|
*/
|
|
@@ -78,12 +78,12 @@ export interface DescribeReportDefinitionsRequest {
|
|
|
78
78
|
* <p>The maximum number of results that Amazon Web Services returns for the operation.</p>
|
|
79
79
|
* @public
|
|
80
80
|
*/
|
|
81
|
-
MaxResults?: number;
|
|
81
|
+
MaxResults?: number | undefined;
|
|
82
82
|
/**
|
|
83
83
|
* <p>A generic string.</p>
|
|
84
84
|
* @public
|
|
85
85
|
*/
|
|
86
|
-
NextToken?: string;
|
|
86
|
+
NextToken?: string | undefined;
|
|
87
87
|
}
|
|
88
88
|
/**
|
|
89
89
|
* @public
|
|
@@ -147,12 +147,12 @@ export interface ReportStatus {
|
|
|
147
147
|
* <p>A timestamp that gives the date of a report delivery.</p>
|
|
148
148
|
* @public
|
|
149
149
|
*/
|
|
150
|
-
lastDelivery?: string;
|
|
150
|
+
lastDelivery?: string | undefined;
|
|
151
151
|
/**
|
|
152
152
|
* <p>An enum that gives the status of a report delivery.</p>
|
|
153
153
|
* @public
|
|
154
154
|
*/
|
|
155
|
-
lastStatus?: LastStatus;
|
|
155
|
+
lastStatus?: LastStatus | undefined;
|
|
156
156
|
}
|
|
157
157
|
/**
|
|
158
158
|
* @public
|
|
@@ -271,31 +271,31 @@ export interface ReportDefinition {
|
|
|
271
271
|
* <p>A list of manifests that you want Amazon Web Services to create for this report.</p>
|
|
272
272
|
* @public
|
|
273
273
|
*/
|
|
274
|
-
AdditionalArtifacts?: AdditionalArtifact[];
|
|
274
|
+
AdditionalArtifacts?: AdditionalArtifact[] | undefined;
|
|
275
275
|
/**
|
|
276
276
|
* <p>Whether you want Amazon Web Services to update your reports after they have been finalized if Amazon Web Services detects charges related to
|
|
277
277
|
* previous months. These charges can include refunds, credits, or support fees.</p>
|
|
278
278
|
* @public
|
|
279
279
|
*/
|
|
280
|
-
RefreshClosedReports?: boolean;
|
|
280
|
+
RefreshClosedReports?: boolean | undefined;
|
|
281
281
|
/**
|
|
282
282
|
* <p>Whether you want Amazon Web Services to overwrite the previous version of each report or
|
|
283
283
|
* to deliver the report in addition to the previous versions.</p>
|
|
284
284
|
* @public
|
|
285
285
|
*/
|
|
286
|
-
ReportVersioning?: ReportVersioning;
|
|
286
|
+
ReportVersioning?: ReportVersioning | undefined;
|
|
287
287
|
/**
|
|
288
288
|
* <p>
|
|
289
289
|
* The Amazon resource name of the billing view. The <code>BillingViewArn</code> is needed to create Amazon Web Services Cost and Usage Report for each billing group maintained in the Amazon Web Services Billing Conductor service. The <code>BillingViewArn</code> for a billing group can be constructed as: <code>arn:aws:billing::payer-account-id:billingview/billing-group-primary-account-id</code>
|
|
290
290
|
* </p>
|
|
291
291
|
* @public
|
|
292
292
|
*/
|
|
293
|
-
BillingViewArn?: string;
|
|
293
|
+
BillingViewArn?: string | undefined;
|
|
294
294
|
/**
|
|
295
295
|
* <p>The status of the report.</p>
|
|
296
296
|
* @public
|
|
297
297
|
*/
|
|
298
|
-
ReportStatus?: ReportStatus;
|
|
298
|
+
ReportStatus?: ReportStatus | undefined;
|
|
299
299
|
}
|
|
300
300
|
/**
|
|
301
301
|
* <p>If the action is successful, the service sends back an HTTP 200 response.</p>
|
|
@@ -306,12 +306,12 @@ export interface DescribeReportDefinitionsResponse {
|
|
|
306
306
|
* <p>An Amazon Web Services Cost and Usage Report list owned by the account.</p>
|
|
307
307
|
* @public
|
|
308
308
|
*/
|
|
309
|
-
ReportDefinitions?: ReportDefinition[];
|
|
309
|
+
ReportDefinitions?: ReportDefinition[] | undefined;
|
|
310
310
|
/**
|
|
311
311
|
* <p>A generic string.</p>
|
|
312
312
|
* @public
|
|
313
313
|
*/
|
|
314
|
-
NextToken?: string;
|
|
314
|
+
NextToken?: string | undefined;
|
|
315
315
|
}
|
|
316
316
|
/**
|
|
317
317
|
* @public
|
|
@@ -350,7 +350,7 @@ export interface ListTagsForResourceResponse {
|
|
|
350
350
|
* <p>The tags assigned to the report definition resource.</p>
|
|
351
351
|
* @public
|
|
352
352
|
*/
|
|
353
|
-
Tags?: Tag[];
|
|
353
|
+
Tags?: Tag[] | undefined;
|
|
354
354
|
}
|
|
355
355
|
/**
|
|
356
356
|
* <p>The specified report (<code>ReportName</code>) in the request doesn't exist.</p>
|
|
@@ -363,7 +363,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
363
363
|
* <p>A message to show the detail of the exception.</p>
|
|
364
364
|
* @public
|
|
365
365
|
*/
|
|
366
|
-
Message?: string;
|
|
366
|
+
Message?: string | undefined;
|
|
367
367
|
/**
|
|
368
368
|
* @internal
|
|
369
369
|
*/
|
|
@@ -404,7 +404,7 @@ export declare class DuplicateReportNameException extends __BaseException {
|
|
|
404
404
|
* <p>A message to show the detail of the exception.</p>
|
|
405
405
|
* @public
|
|
406
406
|
*/
|
|
407
|
-
Message?: string;
|
|
407
|
+
Message?: string | undefined;
|
|
408
408
|
/**
|
|
409
409
|
* @internal
|
|
410
410
|
*/
|
|
@@ -425,7 +425,7 @@ export interface PutReportDefinitionRequest {
|
|
|
425
425
|
* <p>The tags to be assigned to the report definition resource.</p>
|
|
426
426
|
* @public
|
|
427
427
|
*/
|
|
428
|
-
Tags?: Tag[];
|
|
428
|
+
Tags?: Tag[] | undefined;
|
|
429
429
|
}
|
|
430
430
|
/**
|
|
431
431
|
* <p>If the action is successful, the service sends back an HTTP 200 response with an empty HTTP body.</p>
|
|
@@ -444,7 +444,7 @@ export declare class ReportLimitReachedException extends __BaseException {
|
|
|
444
444
|
* <p>A message to show the detail of the exception.</p>
|
|
445
445
|
* @public
|
|
446
446
|
*/
|
|
447
|
-
Message?: string;
|
|
447
|
+
Message?: string | undefined;
|
|
448
448
|
/**
|
|
449
449
|
* @internal
|
|
450
450
|
*/
|
|
@@ -11,12 +11,12 @@ export interface DeleteReportDefinitionRequest {
|
|
|
11
11
|
ReportName: string | undefined;
|
|
12
12
|
}
|
|
13
13
|
export interface DeleteReportDefinitionResponse {
|
|
14
|
-
ResponseMessage?: string;
|
|
14
|
+
ResponseMessage?: string | undefined;
|
|
15
15
|
}
|
|
16
16
|
export declare class InternalErrorException extends __BaseException {
|
|
17
17
|
readonly name: "InternalErrorException";
|
|
18
18
|
readonly $fault: "server";
|
|
19
|
-
Message?: string;
|
|
19
|
+
Message?: string | undefined;
|
|
20
20
|
constructor(
|
|
21
21
|
opts: __ExceptionOptionType<InternalErrorException, __BaseException>
|
|
22
22
|
);
|
|
@@ -24,14 +24,14 @@ export declare class InternalErrorException extends __BaseException {
|
|
|
24
24
|
export declare class ValidationException extends __BaseException {
|
|
25
25
|
readonly name: "ValidationException";
|
|
26
26
|
readonly $fault: "client";
|
|
27
|
-
Message?: string;
|
|
27
|
+
Message?: string | undefined;
|
|
28
28
|
constructor(
|
|
29
29
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
30
30
|
);
|
|
31
31
|
}
|
|
32
32
|
export interface DescribeReportDefinitionsRequest {
|
|
33
|
-
MaxResults?: number;
|
|
34
|
-
NextToken?: string;
|
|
33
|
+
MaxResults?: number | undefined;
|
|
34
|
+
NextToken?: string | undefined;
|
|
35
35
|
}
|
|
36
36
|
export declare const SchemaElement: {
|
|
37
37
|
readonly MANUAL_DISCOUNT_COMPATIBILITY: "MANUAL_DISCOUNT_COMPATIBILITY";
|
|
@@ -58,8 +58,8 @@ export declare const LastStatus: {
|
|
|
58
58
|
};
|
|
59
59
|
export type LastStatus = (typeof LastStatus)[keyof typeof LastStatus];
|
|
60
60
|
export interface ReportStatus {
|
|
61
|
-
lastDelivery?: string;
|
|
62
|
-
lastStatus?: LastStatus;
|
|
61
|
+
lastDelivery?: string | undefined;
|
|
62
|
+
lastStatus?: LastStatus | undefined;
|
|
63
63
|
}
|
|
64
64
|
export declare const ReportVersioning: {
|
|
65
65
|
readonly CREATE_NEW_REPORT: "CREATE_NEW_REPORT";
|
|
@@ -113,15 +113,15 @@ export interface ReportDefinition {
|
|
|
113
113
|
S3Bucket: string | undefined;
|
|
114
114
|
S3Prefix: string | undefined;
|
|
115
115
|
S3Region: AWSRegion | undefined;
|
|
116
|
-
AdditionalArtifacts?: AdditionalArtifact[];
|
|
117
|
-
RefreshClosedReports?: boolean;
|
|
118
|
-
ReportVersioning?: ReportVersioning;
|
|
119
|
-
BillingViewArn?: string;
|
|
120
|
-
ReportStatus?: ReportStatus;
|
|
116
|
+
AdditionalArtifacts?: AdditionalArtifact[] | undefined;
|
|
117
|
+
RefreshClosedReports?: boolean | undefined;
|
|
118
|
+
ReportVersioning?: ReportVersioning | undefined;
|
|
119
|
+
BillingViewArn?: string | undefined;
|
|
120
|
+
ReportStatus?: ReportStatus | undefined;
|
|
121
121
|
}
|
|
122
122
|
export interface DescribeReportDefinitionsResponse {
|
|
123
|
-
ReportDefinitions?: ReportDefinition[];
|
|
124
|
-
NextToken?: string;
|
|
123
|
+
ReportDefinitions?: ReportDefinition[] | undefined;
|
|
124
|
+
NextToken?: string | undefined;
|
|
125
125
|
}
|
|
126
126
|
export interface ListTagsForResourceRequest {
|
|
127
127
|
ReportName: string | undefined;
|
|
@@ -131,12 +131,12 @@ export interface Tag {
|
|
|
131
131
|
Value: string | undefined;
|
|
132
132
|
}
|
|
133
133
|
export interface ListTagsForResourceResponse {
|
|
134
|
-
Tags?: Tag[];
|
|
134
|
+
Tags?: Tag[] | undefined;
|
|
135
135
|
}
|
|
136
136
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
137
137
|
readonly name: "ResourceNotFoundException";
|
|
138
138
|
readonly $fault: "client";
|
|
139
|
-
Message?: string;
|
|
139
|
+
Message?: string | undefined;
|
|
140
140
|
constructor(
|
|
141
141
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
142
142
|
);
|
|
@@ -149,20 +149,20 @@ export interface ModifyReportDefinitionResponse {}
|
|
|
149
149
|
export declare class DuplicateReportNameException extends __BaseException {
|
|
150
150
|
readonly name: "DuplicateReportNameException";
|
|
151
151
|
readonly $fault: "client";
|
|
152
|
-
Message?: string;
|
|
152
|
+
Message?: string | undefined;
|
|
153
153
|
constructor(
|
|
154
154
|
opts: __ExceptionOptionType<DuplicateReportNameException, __BaseException>
|
|
155
155
|
);
|
|
156
156
|
}
|
|
157
157
|
export interface PutReportDefinitionRequest {
|
|
158
158
|
ReportDefinition: ReportDefinition | undefined;
|
|
159
|
-
Tags?: Tag[];
|
|
159
|
+
Tags?: Tag[] | undefined;
|
|
160
160
|
}
|
|
161
161
|
export interface PutReportDefinitionResponse {}
|
|
162
162
|
export declare class ReportLimitReachedException extends __BaseException {
|
|
163
163
|
readonly name: "ReportLimitReachedException";
|
|
164
164
|
readonly $fault: "client";
|
|
165
|
-
Message?: string;
|
|
165
|
+
Message?: string | undefined;
|
|
166
166
|
constructor(
|
|
167
167
|
opts: __ExceptionOptionType<ReportLimitReachedException, __BaseException>
|
|
168
168
|
);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cost-and-usage-report-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cost And Usage Report Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.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-cost-and-usage-report-service",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|