@aws-sdk/client-applicationcostprofiler 3.321.1 → 3.326.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.
@@ -32,6 +32,10 @@ export interface DeleteReportDefinitionCommandOutput extends DeleteReportDefinit
32
32
  * };
33
33
  * const command = new DeleteReportDefinitionCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DeleteReportDefinitionResult
36
+ * // reportId: "STRING_VALUE",
37
+ * // };
38
+ *
35
39
  * ```
36
40
  *
37
41
  * @param DeleteReportDefinitionCommandInput - {@link DeleteReportDefinitionCommandInput}
@@ -52,6 +56,8 @@ export interface DeleteReportDefinitionCommandOutput extends DeleteReportDefinit
52
56
  * @throws {@link ValidationException} (client fault)
53
57
  * <p>The input fails to satisfy the constraints for the API.</p>
54
58
  *
59
+ * @throws {@link ApplicationCostProfilerServiceException}
60
+ * <p>Base exception class for all service exceptions from ApplicationCostProfiler service.</p>
55
61
  *
56
62
  */
57
63
  export declare class DeleteReportDefinitionCommand extends $Command<DeleteReportDefinitionCommandInput, DeleteReportDefinitionCommandOutput, ApplicationCostProfilerClientResolvedConfig> {
@@ -31,6 +31,19 @@ export interface GetReportDefinitionCommandOutput extends GetReportDefinitionRes
31
31
  * };
32
32
  * const command = new GetReportDefinitionCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetReportDefinitionResult
35
+ * // reportId: "STRING_VALUE", // required
36
+ * // reportDescription: "STRING_VALUE", // required
37
+ * // reportFrequency: "STRING_VALUE", // required
38
+ * // format: "STRING_VALUE", // required
39
+ * // destinationS3Location: { // S3Location
40
+ * // bucket: "STRING_VALUE", // required
41
+ * // prefix: "STRING_VALUE", // required
42
+ * // },
43
+ * // createdAt: new Date("TIMESTAMP"), // required
44
+ * // lastUpdated: new Date("TIMESTAMP"), // required
45
+ * // };
46
+ *
34
47
  * ```
35
48
  *
36
49
  * @param GetReportDefinitionCommandInput - {@link GetReportDefinitionCommandInput}
@@ -51,6 +64,8 @@ export interface GetReportDefinitionCommandOutput extends GetReportDefinitionRes
51
64
  * @throws {@link ValidationException} (client fault)
52
65
  * <p>The input fails to satisfy the constraints for the API.</p>
53
66
  *
67
+ * @throws {@link ApplicationCostProfilerServiceException}
68
+ * <p>Base exception class for all service exceptions from ApplicationCostProfiler service.</p>
54
69
  *
55
70
  */
56
71
  export declare class GetReportDefinitionCommand extends $Command<GetReportDefinitionCommandInput, GetReportDefinitionCommandOutput, ApplicationCostProfilerClientResolvedConfig> {
@@ -38,6 +38,10 @@ export interface ImportApplicationUsageCommandOutput extends ImportApplicationUs
38
38
  * };
39
39
  * const command = new ImportApplicationUsageCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // ImportApplicationUsageResult
42
+ * // importId: "STRING_VALUE", // required
43
+ * // };
44
+ *
41
45
  * ```
42
46
  *
43
47
  * @param ImportApplicationUsageCommandInput - {@link ImportApplicationUsageCommandInput}
@@ -58,6 +62,8 @@ export interface ImportApplicationUsageCommandOutput extends ImportApplicationUs
58
62
  * @throws {@link ValidationException} (client fault)
59
63
  * <p>The input fails to satisfy the constraints for the API.</p>
60
64
  *
65
+ * @throws {@link ApplicationCostProfilerServiceException}
66
+ * <p>Base exception class for all service exceptions from ApplicationCostProfiler service.</p>
61
67
  *
62
68
  */
63
69
  export declare class ImportApplicationUsageCommand extends $Command<ImportApplicationUsageCommandInput, ImportApplicationUsageCommandOutput, ApplicationCostProfilerClientResolvedConfig> {
@@ -33,6 +33,24 @@ export interface ListReportDefinitionsCommandOutput extends ListReportDefinition
33
33
  * };
34
34
  * const command = new ListReportDefinitionsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListReportDefinitionsResult
37
+ * // reportDefinitions: [ // ReportDefinitionList
38
+ * // { // ReportDefinition
39
+ * // reportId: "STRING_VALUE",
40
+ * // reportDescription: "STRING_VALUE",
41
+ * // reportFrequency: "STRING_VALUE",
42
+ * // format: "STRING_VALUE",
43
+ * // destinationS3Location: { // S3Location
44
+ * // bucket: "STRING_VALUE", // required
45
+ * // prefix: "STRING_VALUE", // required
46
+ * // },
47
+ * // createdAt: new Date("TIMESTAMP"),
48
+ * // lastUpdatedAt: new Date("TIMESTAMP"),
49
+ * // },
50
+ * // ],
51
+ * // nextToken: "STRING_VALUE",
52
+ * // };
53
+ *
36
54
  * ```
37
55
  *
38
56
  * @param ListReportDefinitionsCommandInput - {@link ListReportDefinitionsCommandInput}
@@ -53,6 +71,8 @@ export interface ListReportDefinitionsCommandOutput extends ListReportDefinition
53
71
  * @throws {@link ValidationException} (client fault)
54
72
  * <p>The input fails to satisfy the constraints for the API.</p>
55
73
  *
74
+ * @throws {@link ApplicationCostProfilerServiceException}
75
+ * <p>Base exception class for all service exceptions from ApplicationCostProfiler service.</p>
56
76
  *
57
77
  */
58
78
  export declare class ListReportDefinitionsCommand extends $Command<ListReportDefinitionsCommandInput, ListReportDefinitionsCommandOutput, ApplicationCostProfilerClientResolvedConfig> {
@@ -38,6 +38,10 @@ export interface PutReportDefinitionCommandOutput extends PutReportDefinitionRes
38
38
  * };
39
39
  * const command = new PutReportDefinitionCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // PutReportDefinitionResult
42
+ * // reportId: "STRING_VALUE",
43
+ * // };
44
+ *
41
45
  * ```
42
46
  *
43
47
  * @param PutReportDefinitionCommandInput - {@link PutReportDefinitionCommandInput}
@@ -61,6 +65,8 @@ export interface PutReportDefinitionCommandOutput extends PutReportDefinitionRes
61
65
  * @throws {@link ValidationException} (client fault)
62
66
  * <p>The input fails to satisfy the constraints for the API.</p>
63
67
  *
68
+ * @throws {@link ApplicationCostProfilerServiceException}
69
+ * <p>Base exception class for all service exceptions from ApplicationCostProfiler service.</p>
64
70
  *
65
71
  */
66
72
  export declare class PutReportDefinitionCommand extends $Command<PutReportDefinitionCommandInput, PutReportDefinitionCommandOutput, ApplicationCostProfilerClientResolvedConfig> {
@@ -38,6 +38,10 @@ export interface UpdateReportDefinitionCommandOutput extends UpdateReportDefinit
38
38
  * };
39
39
  * const command = new UpdateReportDefinitionCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // UpdateReportDefinitionResult
42
+ * // reportId: "STRING_VALUE",
43
+ * // };
44
+ *
41
45
  * ```
42
46
  *
43
47
  * @param UpdateReportDefinitionCommandInput - {@link UpdateReportDefinitionCommandInput}
@@ -58,6 +62,8 @@ export interface UpdateReportDefinitionCommandOutput extends UpdateReportDefinit
58
62
  * @throws {@link ValidationException} (client fault)
59
63
  * <p>The input fails to satisfy the constraints for the API.</p>
60
64
  *
65
+ * @throws {@link ApplicationCostProfilerServiceException}
66
+ * <p>Base exception class for all service exceptions from ApplicationCostProfiler service.</p>
61
67
  *
62
68
  */
63
69
  export declare class UpdateReportDefinitionCommand extends $Command<UpdateReportDefinitionCommandInput, UpdateReportDefinitionCommandOutput, ApplicationCostProfilerClientResolvedConfig> {
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.321.1",
4
+ "version": "3.326.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,33 +21,33 @@
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.321.1",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.321.1",
26
+ "@aws-sdk/credential-provider-node": "3.326.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
30
- "@aws-sdk/middleware-content-length": "3.310.0",
31
- "@aws-sdk/middleware-endpoint": "3.310.0",
32
- "@aws-sdk/middleware-host-header": "3.310.0",
33
- "@aws-sdk/middleware-logger": "3.310.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.310.0",
35
- "@aws-sdk/middleware-retry": "3.310.0",
36
- "@aws-sdk/middleware-serde": "3.310.0",
37
- "@aws-sdk/middleware-signing": "3.310.0",
38
- "@aws-sdk/middleware-stack": "3.310.0",
39
- "@aws-sdk/middleware-user-agent": "3.319.0",
30
+ "@aws-sdk/middleware-content-length": "3.325.0",
31
+ "@aws-sdk/middleware-endpoint": "3.325.0",
32
+ "@aws-sdk/middleware-host-header": "3.325.0",
33
+ "@aws-sdk/middleware-logger": "3.325.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.325.0",
36
+ "@aws-sdk/middleware-serde": "3.325.0",
37
+ "@aws-sdk/middleware-signing": "3.325.0",
38
+ "@aws-sdk/middleware-stack": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.325.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
43
- "@aws-sdk/smithy-client": "3.316.0",
43
+ "@aws-sdk/smithy-client": "3.325.0",
44
44
  "@aws-sdk/types": "3.310.0",
45
45
  "@aws-sdk/url-parser": "3.310.0",
46
46
  "@aws-sdk/util-base64": "3.310.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.310.0",
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.316.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.316.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
51
  "@aws-sdk/util-endpoints": "3.319.0",
52
52
  "@aws-sdk/util-retry": "3.310.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",