@aws-sdk/client-applicationcostprofiler 3.379.1 → 3.385.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.
@@ -17,6 +17,7 @@ export declare class AccessDeniedException extends __BaseException {
17
17
  */
18
18
  export interface DeleteReportDefinitionRequest {
19
19
  /**
20
+ * @public
20
21
  * <p>Required. ID of the report to delete.</p>
21
22
  */
22
23
  reportId: string | undefined;
@@ -26,6 +27,7 @@ export interface DeleteReportDefinitionRequest {
26
27
  */
27
28
  export interface DeleteReportDefinitionResult {
28
29
  /**
30
+ * @public
29
31
  * <p>ID of the report that was deleted.</p>
30
32
  */
31
33
  reportId?: string;
@@ -71,6 +73,7 @@ export declare class ValidationException extends __BaseException {
71
73
  */
72
74
  export interface GetReportDefinitionRequest {
73
75
  /**
76
+ * @public
74
77
  * <p>ID of the report to retrieve.</p>
75
78
  */
76
79
  reportId: string | undefined;
@@ -82,10 +85,12 @@ export interface GetReportDefinitionRequest {
82
85
  */
83
86
  export interface S3Location {
84
87
  /**
88
+ * @public
85
89
  * <p>Name of the S3 bucket.</p>
86
90
  */
87
91
  bucket: string | undefined;
88
92
  /**
93
+ * @public
89
94
  * <p>Prefix for the location to write to.</p>
90
95
  */
91
96
  prefix: string | undefined;
@@ -120,30 +125,37 @@ export type ReportFrequency = (typeof ReportFrequency)[keyof typeof ReportFreque
120
125
  */
121
126
  export interface GetReportDefinitionResult {
122
127
  /**
128
+ * @public
123
129
  * <p>ID of the report retrieved.</p>
124
130
  */
125
131
  reportId: string | undefined;
126
132
  /**
133
+ * @public
127
134
  * <p>Description of the report.</p>
128
135
  */
129
136
  reportDescription: string | undefined;
130
137
  /**
138
+ * @public
131
139
  * <p>Cadence used to generate the report.</p>
132
140
  */
133
141
  reportFrequency: ReportFrequency | string | undefined;
134
142
  /**
143
+ * @public
135
144
  * <p>Format of the generated report.</p>
136
145
  */
137
146
  format: Format | string | undefined;
138
147
  /**
148
+ * @public
139
149
  * <p>Amazon Simple Storage Service (Amazon S3) location where the report is uploaded.</p>
140
150
  */
141
151
  destinationS3Location: S3Location | undefined;
142
152
  /**
153
+ * @public
143
154
  * <p>Timestamp (milliseconds) when this report definition was created.</p>
144
155
  */
145
156
  createdAt: Date | undefined;
146
157
  /**
158
+ * @public
147
159
  * <p>Timestamp (milliseconds) when this report definition was last updated.</p>
148
160
  */
149
161
  lastUpdated: Date | undefined;
@@ -169,14 +181,17 @@ export type S3BucketRegion = (typeof S3BucketRegion)[keyof typeof S3BucketRegion
169
181
  */
170
182
  export interface SourceS3Location {
171
183
  /**
184
+ * @public
172
185
  * <p>Name of the bucket.</p>
173
186
  */
174
187
  bucket: string | undefined;
175
188
  /**
189
+ * @public
176
190
  * <p>Key of the object.</p>
177
191
  */
178
192
  key: string | undefined;
179
193
  /**
194
+ * @public
180
195
  * <p>Region of the bucket. Only required for Regions that are disabled by default.
181
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">
182
197
  * Enabling a Region</a> in the <i>AWS General Reference guide</i>.</p>
@@ -188,6 +203,7 @@ export interface SourceS3Location {
188
203
  */
189
204
  export interface ImportApplicationUsageRequest {
190
205
  /**
206
+ * @public
191
207
  * <p>Amazon S3 location to import application usage data from.</p>
192
208
  */
193
209
  sourceS3Location: SourceS3Location | undefined;
@@ -197,6 +213,7 @@ export interface ImportApplicationUsageRequest {
197
213
  */
198
214
  export interface ImportApplicationUsageResult {
199
215
  /**
216
+ * @public
200
217
  * <p>ID of the import request.</p>
201
218
  */
202
219
  importId: string | undefined;
@@ -206,10 +223,12 @@ export interface ImportApplicationUsageResult {
206
223
  */
207
224
  export interface ListReportDefinitionsRequest {
208
225
  /**
226
+ * @public
209
227
  * <p>The token value from a previous call to access the next page of results.</p>
210
228
  */
211
229
  nextToken?: string;
212
230
  /**
231
+ * @public
213
232
  * <p>The maximum number of results to return.</p>
214
233
  */
215
234
  maxResults?: number;
@@ -220,30 +239,37 @@ export interface ListReportDefinitionsRequest {
220
239
  */
221
240
  export interface ReportDefinition {
222
241
  /**
242
+ * @public
223
243
  * <p>The ID of the report.</p>
224
244
  */
225
245
  reportId?: string;
226
246
  /**
247
+ * @public
227
248
  * <p>Description of the report</p>
228
249
  */
229
250
  reportDescription?: string;
230
251
  /**
252
+ * @public
231
253
  * <p>The cadence at which the report is generated.</p>
232
254
  */
233
255
  reportFrequency?: ReportFrequency | string;
234
256
  /**
257
+ * @public
235
258
  * <p>The format used for the generated reports.</p>
236
259
  */
237
260
  format?: Format | string;
238
261
  /**
262
+ * @public
239
263
  * <p>The location in Amazon Simple Storage Service (Amazon S3) the reports should be saved to.</p>
240
264
  */
241
265
  destinationS3Location?: S3Location;
242
266
  /**
267
+ * @public
243
268
  * <p>Timestamp (milliseconds) when this report definition was created.</p>
244
269
  */
245
270
  createdAt?: Date;
246
271
  /**
272
+ * @public
247
273
  * <p>Timestamp (milliseconds) when this report definition was last updated.</p>
248
274
  */
249
275
  lastUpdatedAt?: Date;
@@ -253,10 +279,12 @@ export interface ReportDefinition {
253
279
  */
254
280
  export interface ListReportDefinitionsResult {
255
281
  /**
282
+ * @public
256
283
  * <p>The retrieved reports.</p>
257
284
  */
258
285
  reportDefinitions?: ReportDefinition[];
259
286
  /**
287
+ * @public
260
288
  * <p>The value of the next token, if it exists. Null if there are no more results.</p>
261
289
  */
262
290
  nextToken?: string;
@@ -266,23 +294,28 @@ export interface ListReportDefinitionsResult {
266
294
  */
267
295
  export interface PutReportDefinitionRequest {
268
296
  /**
297
+ * @public
269
298
  * <p>Required. ID of the report. You can choose any valid string matching the pattern for the
270
299
  * ID.</p>
271
300
  */
272
301
  reportId: string | undefined;
273
302
  /**
303
+ * @public
274
304
  * <p>Required. Description of the report.</p>
275
305
  */
276
306
  reportDescription: string | undefined;
277
307
  /**
308
+ * @public
278
309
  * <p>Required. The cadence to generate the report.</p>
279
310
  */
280
311
  reportFrequency: ReportFrequency | string | undefined;
281
312
  /**
313
+ * @public
282
314
  * <p>Required. The format to use for the generated report.</p>
283
315
  */
284
316
  format: Format | string | undefined;
285
317
  /**
318
+ * @public
286
319
  * <p>Required. Amazon Simple Storage Service (Amazon S3) location where Application Cost Profiler uploads the
287
320
  * report.</p>
288
321
  */
@@ -293,6 +326,7 @@ export interface PutReportDefinitionRequest {
293
326
  */
294
327
  export interface PutReportDefinitionResult {
295
328
  /**
329
+ * @public
296
330
  * <p>ID of the report.</p>
297
331
  */
298
332
  reportId?: string;
@@ -314,22 +348,27 @@ export declare class ServiceQuotaExceededException extends __BaseException {
314
348
  */
315
349
  export interface UpdateReportDefinitionRequest {
316
350
  /**
351
+ * @public
317
352
  * <p>Required. ID of the report to update.</p>
318
353
  */
319
354
  reportId: string | undefined;
320
355
  /**
356
+ * @public
321
357
  * <p>Required. Description of the report.</p>
322
358
  */
323
359
  reportDescription: string | undefined;
324
360
  /**
361
+ * @public
325
362
  * <p>Required. The cadence to generate the report.</p>
326
363
  */
327
364
  reportFrequency: ReportFrequency | string | undefined;
328
365
  /**
366
+ * @public
329
367
  * <p>Required. The format to use for the generated report.</p>
330
368
  */
331
369
  format: Format | string | undefined;
332
370
  /**
371
+ * @public
333
372
  * <p>Required. Amazon Simple Storage Service (Amazon S3) location where Application Cost Profiler uploads the
334
373
  * report.</p>
335
374
  */
@@ -340,6 +379,7 @@ export interface UpdateReportDefinitionRequest {
340
379
  */
341
380
  export interface UpdateReportDefinitionResult {
342
381
  /**
382
+ * @public
343
383
  * <p>ID of the report.</p>
344
384
  */
345
385
  reportId?: string;
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.379.1",
4
+ "version": "3.385.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,15 +21,15 @@
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.379.1",
25
- "@aws-sdk/credential-provider-node": "3.379.1",
24
+ "@aws-sdk/client-sts": "3.385.0",
25
+ "@aws-sdk/credential-provider-node": "3.385.0",
26
26
  "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
29
  "@aws-sdk/middleware-signing": "3.379.1",
30
- "@aws-sdk/middleware-user-agent": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",