@aws-sdk/client-bcm-data-exports 3.533.0 → 3.540.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/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/BCMDataExports.d.ts +3 -1
- package/dist-types/BCMDataExportsClient.d.ts +1 -1
- package/dist-types/commands/CreateExportCommand.d.ts +2 -1
- package/dist-types/commands/DeleteExportCommand.d.ts +2 -1
- package/dist-types/commands/GetExecutionCommand.d.ts +2 -1
- package/dist-types/commands/GetExportCommand.d.ts +2 -1
- package/dist-types/commands/GetTableCommand.d.ts +2 -1
- package/dist-types/commands/ListExecutionsCommand.d.ts +2 -1
- package/dist-types/commands/ListExportsCommand.d.ts +2 -1
- package/dist-types/commands/ListTablesCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateExportCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +121 -121
- package/dist-types/ts3.4/BCMDataExports.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateExportCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteExportCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetExecutionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetExportCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetTableCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListExportsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateExportCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
|
-
const util_endpoints_1 = require("@
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
5
6
|
const ruleset_1 = require("./ruleset");
|
|
6
7
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
7
|
-
return (0,
|
|
8
|
+
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
8
9
|
endpointParams: endpointParams,
|
|
9
10
|
logger: context.logger,
|
|
10
11
|
});
|
|
11
12
|
};
|
|
12
13
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1008,9 +1008,6 @@ var paginateListExports = (0, import_core.createPaginator)(BCMDataExportsClient,
|
|
|
1008
1008
|
// src/pagination/ListTablesPaginator.ts
|
|
1009
1009
|
|
|
1010
1010
|
var paginateListTables = (0, import_core.createPaginator)(BCMDataExportsClient, ListTablesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1011
|
-
|
|
1012
|
-
// src/index.ts
|
|
1013
|
-
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
1014
1011
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1015
1012
|
|
|
1016
1013
|
0 && (module.exports = {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
3
|
import { ruleSet } from "./ruleset";
|
|
3
4
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
4
5
|
return resolveEndpoint(ruleSet, {
|
|
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
|
6
7
|
logger: context.logger,
|
|
7
8
|
});
|
|
8
9
|
};
|
|
10
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-es/index.js
CHANGED
|
@@ -52,12 +52,14 @@ export interface BCMDataExports {
|
|
|
52
52
|
/**
|
|
53
53
|
* @see {@link ListExportsCommand}
|
|
54
54
|
*/
|
|
55
|
+
listExports(): Promise<ListExportsCommandOutput>;
|
|
55
56
|
listExports(args: ListExportsCommandInput, options?: __HttpHandlerOptions): Promise<ListExportsCommandOutput>;
|
|
56
57
|
listExports(args: ListExportsCommandInput, cb: (err: any, data?: ListExportsCommandOutput) => void): void;
|
|
57
58
|
listExports(args: ListExportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExportsCommandOutput) => void): void;
|
|
58
59
|
/**
|
|
59
60
|
* @see {@link ListTablesCommand}
|
|
60
61
|
*/
|
|
62
|
+
listTables(): Promise<ListTablesCommandOutput>;
|
|
61
63
|
listTables(args: ListTablesCommandInput, options?: __HttpHandlerOptions): Promise<ListTablesCommandOutput>;
|
|
62
64
|
listTables(args: ListTablesCommandInput, cb: (err: any, data?: ListTablesCommandOutput) => void): void;
|
|
63
65
|
listTables(args: ListTablesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTablesCommandOutput) => void): void;
|
|
@@ -87,7 +89,6 @@ export interface BCMDataExports {
|
|
|
87
89
|
updateExport(args: UpdateExportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateExportCommandOutput) => void): void;
|
|
88
90
|
}
|
|
89
91
|
/**
|
|
90
|
-
* @public
|
|
91
92
|
* <p>You can use the Data Exports API to create customized exports from multiple Amazon Web Services cost management and billing datasets, such as cost and usage data and cost
|
|
92
93
|
* optimization recommendations.</p>
|
|
93
94
|
* <p>The Data Exports API provides the following endpoint:</p>
|
|
@@ -96,6 +97,7 @@ export interface BCMDataExports {
|
|
|
96
97
|
* <p>https://bcm-data-exports.us-east-1.api.aws</p>
|
|
97
98
|
* </li>
|
|
98
99
|
* </ul>
|
|
100
|
+
* @public
|
|
99
101
|
*/
|
|
100
102
|
export declare class BCMDataExports extends BCMDataExportsClient implements BCMDataExports {
|
|
101
103
|
}
|
|
@@ -163,7 +163,6 @@ export type BCMDataExportsClientResolvedConfigType = __SmithyResolvedConfigurati
|
|
|
163
163
|
export interface BCMDataExportsClientResolvedConfig extends BCMDataExportsClientResolvedConfigType {
|
|
164
164
|
}
|
|
165
165
|
/**
|
|
166
|
-
* @public
|
|
167
166
|
* <p>You can use the Data Exports API to create customized exports from multiple Amazon Web Services cost management and billing datasets, such as cost and usage data and cost
|
|
168
167
|
* optimization recommendations.</p>
|
|
169
168
|
* <p>The Data Exports API provides the following endpoint:</p>
|
|
@@ -172,6 +171,7 @@ export interface BCMDataExportsClientResolvedConfig extends BCMDataExportsClient
|
|
|
172
171
|
* <p>https://bcm-data-exports.us-east-1.api.aws</p>
|
|
173
172
|
* </li>
|
|
174
173
|
* </ul>
|
|
174
|
+
* @public
|
|
175
175
|
*/
|
|
176
176
|
export declare class BCMDataExportsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, BCMDataExportsClientResolvedConfig> {
|
|
177
177
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreateExportCommandOutput extends CreateExportResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateExportCommand_base: {
|
|
24
24
|
new (input: CreateExportCommandInput): import("@smithy/smithy-client").CommandImpl<CreateExportCommandInput, CreateExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateExportCommandInput): import("@smithy/smithy-client").CommandImpl<CreateExportCommandInput, CreateExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a data export and specifies the data query, the delivery preference, and any
|
|
30
30
|
* optional resource tags.</p>
|
|
31
31
|
* <p>A <code>DataQuery</code> consists of both a <code>QueryStatement</code> and
|
|
@@ -118,6 +118,7 @@ declare const CreateExportCommand_base: {
|
|
|
118
118
|
* @throws {@link BCMDataExportsServiceException}
|
|
119
119
|
* <p>Base exception class for all service exceptions from BCMDataExports service.</p>
|
|
120
120
|
*
|
|
121
|
+
* @public
|
|
121
122
|
*/
|
|
122
123
|
export declare class CreateExportCommand extends CreateExportCommand_base {
|
|
123
124
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteExportCommandOutput extends DeleteExportResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteExportCommand_base: {
|
|
24
24
|
new (input: DeleteExportCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteExportCommandInput, DeleteExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteExportCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteExportCommandInput, DeleteExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes an existing data export.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -67,6 +67,7 @@ declare const DeleteExportCommand_base: {
|
|
|
67
67
|
* @throws {@link BCMDataExportsServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from BCMDataExports service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class DeleteExportCommand extends DeleteExportCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetExecutionCommandOutput extends GetExecutionResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetExecutionCommand_base: {
|
|
24
24
|
new (input: GetExecutionCommandInput): import("@smithy/smithy-client").CommandImpl<GetExecutionCommandInput, GetExecutionCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetExecutionCommandInput): import("@smithy/smithy-client").CommandImpl<GetExecutionCommandInput, GetExecutionCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Exports data based on the source data update.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -104,6 +104,7 @@ declare const GetExecutionCommand_base: {
|
|
|
104
104
|
* @throws {@link BCMDataExportsServiceException}
|
|
105
105
|
* <p>Base exception class for all service exceptions from BCMDataExports service.</p>
|
|
106
106
|
*
|
|
107
|
+
* @public
|
|
107
108
|
*/
|
|
108
109
|
export declare class GetExecutionCommand extends GetExecutionCommand_base {
|
|
109
110
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetExportCommandOutput extends GetExportResponse, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetExportCommand_base: {
|
|
24
24
|
new (input: GetExportCommandInput): import("@smithy/smithy-client").CommandImpl<GetExportCommandInput, GetExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetExportCommandInput): import("@smithy/smithy-client").CommandImpl<GetExportCommandInput, GetExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Views the definition of an existing data export.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -102,6 +102,7 @@ declare const GetExportCommand_base: {
|
|
|
102
102
|
* @throws {@link BCMDataExportsServiceException}
|
|
103
103
|
* <p>Base exception class for all service exceptions from BCMDataExports service.</p>
|
|
104
104
|
*
|
|
105
|
+
* @public
|
|
105
106
|
*/
|
|
106
107
|
export declare class GetExportCommand extends GetExportCommand_base {
|
|
107
108
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetTableCommandOutput extends GetTableResponse, __MetadataBeare
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetTableCommand_base: {
|
|
24
24
|
new (input: GetTableCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableCommandInput, GetTableCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetTableCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableCommandInput, GetTableCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the metadata for the specified table and table properties. This includes the list
|
|
30
30
|
* of columns in the table schema, their data types, and column descriptions.</p>
|
|
31
31
|
* @example
|
|
@@ -79,6 +79,7 @@ declare const GetTableCommand_base: {
|
|
|
79
79
|
* @throws {@link BCMDataExportsServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from BCMDataExports service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class GetTableCommand extends GetTableCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListExecutionsCommandOutput extends ListExecutionsResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListExecutionsCommand_base: {
|
|
24
24
|
new (input: ListExecutionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListExecutionsCommandInput, ListExecutionsCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListExecutionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListExecutionsCommandInput, ListExecutionsCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the historical executions for the export.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -81,6 +81,7 @@ declare const ListExecutionsCommand_base: {
|
|
|
81
81
|
* @throws {@link BCMDataExportsServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from BCMDataExports service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class ListExecutionsCommand extends ListExecutionsCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListExportsCommandOutput extends ListExportsResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListExportsCommand_base: {
|
|
24
24
|
new (input: ListExportsCommandInput): import("@smithy/smithy-client").CommandImpl<ListExportsCommandInput, ListExportsCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListExportsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListExportsCommandInput, ListExportsCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all data export definitions.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -78,6 +78,7 @@ declare const ListExportsCommand_base: {
|
|
|
78
78
|
* @throws {@link BCMDataExportsServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from BCMDataExports service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class ListExportsCommand extends ListExportsCommand_base {
|
|
83
84
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTablesCommand_base: {
|
|
24
24
|
new (input: ListTablesCommandInput): import("@smithy/smithy-client").CommandImpl<ListTablesCommandInput, ListTablesCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListTablesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListTablesCommandInput, ListTablesCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all available tables in data exports.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -81,6 +81,7 @@ declare const ListTablesCommand_base: {
|
|
|
81
81
|
* @throws {@link BCMDataExportsServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from BCMDataExports service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class ListTablesCommand extends ListTablesCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>List tags associated with an existing data export.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -75,6 +75,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
75
75
|
* @throws {@link BCMDataExportsServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from BCMDataExports service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds tags for an existing data export definition.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -71,6 +71,7 @@ declare const TagResourceCommand_base: {
|
|
|
71
71
|
* @throws {@link BCMDataExportsServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from BCMDataExports service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
76
77
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes tags associated with an existing data export definition.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -68,6 +68,7 @@ declare const UntagResourceCommand_base: {
|
|
|
68
68
|
* @throws {@link BCMDataExportsServiceException}
|
|
69
69
|
* <p>Base exception class for all service exceptions from BCMDataExports service.</p>
|
|
70
70
|
*
|
|
71
|
+
* @public
|
|
71
72
|
*/
|
|
72
73
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
73
74
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateExportCommandOutput extends UpdateExportResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateExportCommand_base: {
|
|
24
24
|
new (input: UpdateExportCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateExportCommandInput, UpdateExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateExportCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateExportCommandInput, UpdateExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates an existing data export by overwriting all export parameters. All export
|
|
30
30
|
* parameters must be provided in the UpdateExport request.</p>
|
|
31
31
|
* @example
|
|
@@ -97,6 +97,7 @@ declare const UpdateExportCommand_base: {
|
|
|
97
97
|
* @throws {@link BCMDataExportsServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from BCMDataExports service.</p>
|
|
99
99
|
*
|
|
100
|
+
* @public
|
|
100
101
|
*/
|
|
101
102
|
export declare class UpdateExportCommand extends UpdateExportCommand_base {
|
|
102
103
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -18,5 +18,4 @@ export { BCMDataExportsExtensionConfiguration } from "./extensionConfiguration";
|
|
|
18
18
|
export * from "./commands";
|
|
19
19
|
export * from "./pagination";
|
|
20
20
|
export * from "./models";
|
|
21
|
-
import "@aws-sdk/util-endpoints";
|
|
22
21
|
export { BCMDataExportsServiceException } from "./models/BCMDataExportsServiceException";
|