@aws-sdk/client-bcm-data-exports 3.458.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/LICENSE +201 -0
- package/README.md +308 -0
- package/dist-cjs/BCMDataExports.js +35 -0
- package/dist-cjs/BCMDataExportsClient.js +43 -0
- package/dist-cjs/commands/CreateExportCommand.js +50 -0
- package/dist-cjs/commands/DeleteExportCommand.js +50 -0
- package/dist-cjs/commands/GetExecutionCommand.js +50 -0
- package/dist-cjs/commands/GetExportCommand.js +50 -0
- package/dist-cjs/commands/GetTableCommand.js +50 -0
- package/dist-cjs/commands/ListExecutionsCommand.js +50 -0
- package/dist-cjs/commands/ListExportsCommand.js +50 -0
- package/dist-cjs/commands/ListTablesCommand.js +50 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +50 -0
- package/dist-cjs/commands/TagResourceCommand.js +50 -0
- package/dist-cjs/commands/UntagResourceCommand.js +50 -0
- package/dist-cjs/commands/UpdateExportCommand.js +50 -0
- package/dist-cjs/commands/index.js +15 -0
- package/dist-cjs/endpoint/EndpointParameters.js +11 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/BCMDataExportsServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +126 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListExecutionsPaginator.js +29 -0
- package/dist-cjs/pagination/ListExportsPaginator.js +29 -0
- package/dist-cjs/pagination/ListTablesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_json1_1.js +775 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +24 -0
- package/dist-cjs/runtimeExtensions.js +22 -0
- package/dist-es/BCMDataExports.js +31 -0
- package/dist-es/BCMDataExportsClient.js +39 -0
- package/dist-es/commands/CreateExportCommand.js +46 -0
- package/dist-es/commands/DeleteExportCommand.js +46 -0
- package/dist-es/commands/GetExecutionCommand.js +46 -0
- package/dist-es/commands/GetExportCommand.js +46 -0
- package/dist-es/commands/GetTableCommand.js +46 -0
- package/dist-es/commands/ListExecutionsCommand.js +46 -0
- package/dist-es/commands/ListExportsCommand.js +46 -0
- package/dist-es/commands/ListTablesCommand.js +46 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-es/commands/TagResourceCommand.js +46 -0
- package/dist-es/commands/UntagResourceCommand.js +46 -0
- package/dist-es/commands/UpdateExportCommand.js +46 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/endpoint/EndpointParameters.js +7 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/BCMDataExportsServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +118 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListExecutionsPaginator.js +25 -0
- package/dist-es/pagination/ListExportsPaginator.js +25 -0
- package/dist-es/pagination/ListTablesPaginator.js +25 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +748 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +20 -0
- package/dist-es/runtimeExtensions.js +18 -0
- package/dist-types/BCMDataExports.d.ts +101 -0
- package/dist-types/BCMDataExportsClient.d.ts +188 -0
- package/dist-types/commands/CreateExportCommand.d.ts +138 -0
- package/dist-types/commands/DeleteExportCommand.d.ts +87 -0
- package/dist-types/commands/GetExecutionCommand.d.ts +124 -0
- package/dist-types/commands/GetExportCommand.d.ts +122 -0
- package/dist-types/commands/GetTableCommand.d.ts +99 -0
- package/dist-types/commands/ListExecutionsCommand.d.ts +101 -0
- package/dist-types/commands/ListExportsCommand.d.ts +98 -0
- package/dist-types/commands/ListTablesCommand.d.ts +101 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +95 -0
- package/dist-types/commands/TagResourceCommand.d.ts +91 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +88 -0
- package/dist-types/commands/UpdateExportCommand.d.ts +117 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +20 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +8 -0
- package/dist-types/index.d.ts +22 -0
- package/dist-types/models/BCMDataExportsServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +921 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListExecutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListExportsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +110 -0
- package/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/dist-types/runtimeConfig.d.ts +46 -0
- package/dist-types/runtimeConfig.native.d.ts +45 -0
- package/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/BCMDataExports.d.ts +211 -0
- package/dist-types/ts3.4/BCMDataExportsClient.d.ts +191 -0
- package/dist-types/ts3.4/commands/CreateExportCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteExportCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetExecutionCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetExportCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetTableCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListExportsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateExportCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +31 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/BCMDataExportsServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +277 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListExecutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +149 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +102 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
export interface BCMDataExportsExtensionConfiguration
|
|
5
|
+
extends HttpHandlerExtensionConfiguration,
|
|
6
|
+
DefaultExtensionConfiguration,
|
|
7
|
+
AwsRegionExtensionConfiguration {}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from "./BCMDataExportsClient";
|
|
2
|
+
export * from "./BCMDataExports";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { BCMDataExportsExtensionConfiguration } from "./extensionConfiguration";
|
|
6
|
+
export * from "./commands";
|
|
7
|
+
export * from "./pagination";
|
|
8
|
+
export * from "./models";
|
|
9
|
+
import "@aws-sdk/util-endpoints";
|
|
10
|
+
export { BCMDataExportsServiceException } from "./models/BCMDataExportsServiceException";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
5
|
+
export { __ServiceException, __ServiceExceptionOptions };
|
|
6
|
+
export declare class BCMDataExportsServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { BCMDataExportsServiceException as __BaseException } from "./BCMDataExportsServiceException";
|
|
3
|
+
export interface DataQuery {
|
|
4
|
+
QueryStatement: string | undefined;
|
|
5
|
+
TableConfigurations?: Record<string, Record<string, string>>;
|
|
6
|
+
}
|
|
7
|
+
export declare const CompressionOption: {
|
|
8
|
+
readonly GZIP: "GZIP";
|
|
9
|
+
readonly PARQUET: "PARQUET";
|
|
10
|
+
};
|
|
11
|
+
export type CompressionOption =
|
|
12
|
+
(typeof CompressionOption)[keyof typeof CompressionOption];
|
|
13
|
+
export declare const FormatOption: {
|
|
14
|
+
readonly PARQUET: "PARQUET";
|
|
15
|
+
readonly TEXT_OR_CSV: "TEXT_OR_CSV";
|
|
16
|
+
};
|
|
17
|
+
export type FormatOption = (typeof FormatOption)[keyof typeof FormatOption];
|
|
18
|
+
export declare const S3OutputType: {
|
|
19
|
+
readonly CUSTOM: "CUSTOM";
|
|
20
|
+
};
|
|
21
|
+
export type S3OutputType = (typeof S3OutputType)[keyof typeof S3OutputType];
|
|
22
|
+
export declare const OverwriteOption: {
|
|
23
|
+
readonly CREATE_NEW_REPORT: "CREATE_NEW_REPORT";
|
|
24
|
+
readonly OVERWRITE_REPORT: "OVERWRITE_REPORT";
|
|
25
|
+
};
|
|
26
|
+
export type OverwriteOption =
|
|
27
|
+
(typeof OverwriteOption)[keyof typeof OverwriteOption];
|
|
28
|
+
export interface S3OutputConfigurations {
|
|
29
|
+
OutputType: S3OutputType | undefined;
|
|
30
|
+
Format: FormatOption | undefined;
|
|
31
|
+
Compression: CompressionOption | undefined;
|
|
32
|
+
Overwrite: OverwriteOption | undefined;
|
|
33
|
+
}
|
|
34
|
+
export interface S3Destination {
|
|
35
|
+
S3Bucket: string | undefined;
|
|
36
|
+
S3Prefix: string | undefined;
|
|
37
|
+
S3Region: string | undefined;
|
|
38
|
+
S3OutputConfigurations: S3OutputConfigurations | undefined;
|
|
39
|
+
}
|
|
40
|
+
export interface DestinationConfigurations {
|
|
41
|
+
S3Destination: S3Destination | undefined;
|
|
42
|
+
}
|
|
43
|
+
export declare const FrequencyOption: {
|
|
44
|
+
readonly SYNCHRONOUS: "SYNCHRONOUS";
|
|
45
|
+
};
|
|
46
|
+
export type FrequencyOption =
|
|
47
|
+
(typeof FrequencyOption)[keyof typeof FrequencyOption];
|
|
48
|
+
export interface RefreshCadence {
|
|
49
|
+
Frequency: FrequencyOption | undefined;
|
|
50
|
+
}
|
|
51
|
+
export interface Export {
|
|
52
|
+
ExportArn?: string;
|
|
53
|
+
Name: string | undefined;
|
|
54
|
+
Description?: string;
|
|
55
|
+
DataQuery: DataQuery | undefined;
|
|
56
|
+
DestinationConfigurations: DestinationConfigurations | undefined;
|
|
57
|
+
RefreshCadence: RefreshCadence | undefined;
|
|
58
|
+
}
|
|
59
|
+
export interface ResourceTag {
|
|
60
|
+
Key: string | undefined;
|
|
61
|
+
Value: string | undefined;
|
|
62
|
+
}
|
|
63
|
+
export interface CreateExportRequest {
|
|
64
|
+
Export: Export | undefined;
|
|
65
|
+
ResourceTags?: ResourceTag[];
|
|
66
|
+
}
|
|
67
|
+
export interface CreateExportResponse {
|
|
68
|
+
ExportArn?: string;
|
|
69
|
+
}
|
|
70
|
+
export declare class InternalServerException extends __BaseException {
|
|
71
|
+
readonly name: "InternalServerException";
|
|
72
|
+
readonly $fault: "server";
|
|
73
|
+
Message: string | undefined;
|
|
74
|
+
constructor(
|
|
75
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
76
|
+
);
|
|
77
|
+
}
|
|
78
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
79
|
+
readonly name: "ServiceQuotaExceededException";
|
|
80
|
+
readonly $fault: "client";
|
|
81
|
+
Message: string | undefined;
|
|
82
|
+
ResourceId?: string;
|
|
83
|
+
ResourceType?: string;
|
|
84
|
+
QuotaCode: string | undefined;
|
|
85
|
+
ServiceCode: string | undefined;
|
|
86
|
+
constructor(
|
|
87
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
88
|
+
);
|
|
89
|
+
}
|
|
90
|
+
export declare class ThrottlingException extends __BaseException {
|
|
91
|
+
readonly name: "ThrottlingException";
|
|
92
|
+
readonly $fault: "client";
|
|
93
|
+
Message: string | undefined;
|
|
94
|
+
QuotaCode?: string;
|
|
95
|
+
ServiceCode?: string;
|
|
96
|
+
constructor(
|
|
97
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
98
|
+
);
|
|
99
|
+
}
|
|
100
|
+
export interface ValidationExceptionField {
|
|
101
|
+
Name: string | undefined;
|
|
102
|
+
Message: string | undefined;
|
|
103
|
+
}
|
|
104
|
+
export declare const ValidationExceptionReason: {
|
|
105
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
106
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
107
|
+
readonly OTHER: "other";
|
|
108
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
109
|
+
};
|
|
110
|
+
export type ValidationExceptionReason =
|
|
111
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
112
|
+
export declare class ValidationException extends __BaseException {
|
|
113
|
+
readonly name: "ValidationException";
|
|
114
|
+
readonly $fault: "client";
|
|
115
|
+
Message: string | undefined;
|
|
116
|
+
Reason?: ValidationExceptionReason;
|
|
117
|
+
Fields?: ValidationExceptionField[];
|
|
118
|
+
constructor(
|
|
119
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
120
|
+
);
|
|
121
|
+
}
|
|
122
|
+
export interface DeleteExportRequest {
|
|
123
|
+
ExportArn: string | undefined;
|
|
124
|
+
}
|
|
125
|
+
export interface DeleteExportResponse {
|
|
126
|
+
ExportArn?: string;
|
|
127
|
+
}
|
|
128
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
129
|
+
readonly name: "ResourceNotFoundException";
|
|
130
|
+
readonly $fault: "client";
|
|
131
|
+
Message: string | undefined;
|
|
132
|
+
ResourceId: string | undefined;
|
|
133
|
+
ResourceType: string | undefined;
|
|
134
|
+
constructor(
|
|
135
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
136
|
+
);
|
|
137
|
+
}
|
|
138
|
+
export interface GetExecutionRequest {
|
|
139
|
+
ExportArn: string | undefined;
|
|
140
|
+
ExecutionId: string | undefined;
|
|
141
|
+
}
|
|
142
|
+
export declare const ExecutionStatusCode: {
|
|
143
|
+
readonly DELIVERY_FAILURE: "DELIVERY_FAILURE";
|
|
144
|
+
readonly DELIVERY_IN_PROCESS: "DELIVERY_IN_PROCESS";
|
|
145
|
+
readonly DELIVERY_SUCCESS: "DELIVERY_SUCCESS";
|
|
146
|
+
readonly INITIATION_IN_PROCESS: "INITIATION_IN_PROCESS";
|
|
147
|
+
readonly QUERY_FAILURE: "QUERY_FAILURE";
|
|
148
|
+
readonly QUERY_IN_PROCESS: "QUERY_IN_PROCESS";
|
|
149
|
+
readonly QUERY_QUEUED: "QUERY_QUEUED";
|
|
150
|
+
};
|
|
151
|
+
export type ExecutionStatusCode =
|
|
152
|
+
(typeof ExecutionStatusCode)[keyof typeof ExecutionStatusCode];
|
|
153
|
+
export declare const ExecutionStatusReason: {
|
|
154
|
+
readonly BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED";
|
|
155
|
+
readonly INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION";
|
|
156
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
157
|
+
};
|
|
158
|
+
export type ExecutionStatusReason =
|
|
159
|
+
(typeof ExecutionStatusReason)[keyof typeof ExecutionStatusReason];
|
|
160
|
+
export interface ExecutionStatus {
|
|
161
|
+
StatusCode?: ExecutionStatusCode;
|
|
162
|
+
StatusReason?: ExecutionStatusReason;
|
|
163
|
+
CreatedAt?: Date;
|
|
164
|
+
CompletedAt?: Date;
|
|
165
|
+
LastUpdatedAt?: Date;
|
|
166
|
+
}
|
|
167
|
+
export interface GetExecutionResponse {
|
|
168
|
+
ExecutionId?: string;
|
|
169
|
+
Export?: Export;
|
|
170
|
+
ExecutionStatus?: ExecutionStatus;
|
|
171
|
+
}
|
|
172
|
+
export interface GetExportRequest {
|
|
173
|
+
ExportArn: string | undefined;
|
|
174
|
+
}
|
|
175
|
+
export declare const ExportStatusCode: {
|
|
176
|
+
readonly HEALTHY: "HEALTHY";
|
|
177
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
178
|
+
};
|
|
179
|
+
export type ExportStatusCode =
|
|
180
|
+
(typeof ExportStatusCode)[keyof typeof ExportStatusCode];
|
|
181
|
+
export interface ExportStatus {
|
|
182
|
+
StatusCode?: ExportStatusCode;
|
|
183
|
+
StatusReason?: ExecutionStatusReason;
|
|
184
|
+
CreatedAt?: Date;
|
|
185
|
+
LastUpdatedAt?: Date;
|
|
186
|
+
LastRefreshedAt?: Date;
|
|
187
|
+
}
|
|
188
|
+
export interface GetExportResponse {
|
|
189
|
+
Export?: Export;
|
|
190
|
+
ExportStatus?: ExportStatus;
|
|
191
|
+
}
|
|
192
|
+
export interface GetTableRequest {
|
|
193
|
+
TableName: string | undefined;
|
|
194
|
+
TableProperties?: Record<string, string>;
|
|
195
|
+
}
|
|
196
|
+
export interface Column {
|
|
197
|
+
Name?: string;
|
|
198
|
+
Type?: string;
|
|
199
|
+
Description?: string;
|
|
200
|
+
}
|
|
201
|
+
export interface GetTableResponse {
|
|
202
|
+
TableName?: string;
|
|
203
|
+
Description?: string;
|
|
204
|
+
TableProperties?: Record<string, string>;
|
|
205
|
+
Schema?: Column[];
|
|
206
|
+
}
|
|
207
|
+
export interface ListExecutionsRequest {
|
|
208
|
+
ExportArn: string | undefined;
|
|
209
|
+
MaxResults?: number;
|
|
210
|
+
NextToken?: string;
|
|
211
|
+
}
|
|
212
|
+
export interface ExecutionReference {
|
|
213
|
+
ExecutionId: string | undefined;
|
|
214
|
+
ExecutionStatus: ExecutionStatus | undefined;
|
|
215
|
+
}
|
|
216
|
+
export interface ListExecutionsResponse {
|
|
217
|
+
Executions?: ExecutionReference[];
|
|
218
|
+
NextToken?: string;
|
|
219
|
+
}
|
|
220
|
+
export interface ListExportsRequest {
|
|
221
|
+
MaxResults?: number;
|
|
222
|
+
NextToken?: string;
|
|
223
|
+
}
|
|
224
|
+
export interface ExportReference {
|
|
225
|
+
ExportArn: string | undefined;
|
|
226
|
+
ExportName: string | undefined;
|
|
227
|
+
ExportStatus: ExportStatus | undefined;
|
|
228
|
+
}
|
|
229
|
+
export interface ListExportsResponse {
|
|
230
|
+
Exports?: ExportReference[];
|
|
231
|
+
NextToken?: string;
|
|
232
|
+
}
|
|
233
|
+
export interface ListTablesRequest {
|
|
234
|
+
NextToken?: string;
|
|
235
|
+
MaxResults?: number;
|
|
236
|
+
}
|
|
237
|
+
export interface TablePropertyDescription {
|
|
238
|
+
Name?: string;
|
|
239
|
+
ValidValues?: string[];
|
|
240
|
+
DefaultValue?: string;
|
|
241
|
+
Description?: string;
|
|
242
|
+
}
|
|
243
|
+
export interface Table {
|
|
244
|
+
TableName?: string;
|
|
245
|
+
Description?: string;
|
|
246
|
+
TableProperties?: TablePropertyDescription[];
|
|
247
|
+
}
|
|
248
|
+
export interface ListTablesResponse {
|
|
249
|
+
Tables?: Table[];
|
|
250
|
+
NextToken?: string;
|
|
251
|
+
}
|
|
252
|
+
export interface ListTagsForResourceRequest {
|
|
253
|
+
ResourceArn: string | undefined;
|
|
254
|
+
MaxResults?: number;
|
|
255
|
+
NextToken?: string;
|
|
256
|
+
}
|
|
257
|
+
export interface ListTagsForResourceResponse {
|
|
258
|
+
ResourceTags?: ResourceTag[];
|
|
259
|
+
NextToken?: string;
|
|
260
|
+
}
|
|
261
|
+
export interface TagResourceRequest {
|
|
262
|
+
ResourceArn: string | undefined;
|
|
263
|
+
ResourceTags: ResourceTag[] | undefined;
|
|
264
|
+
}
|
|
265
|
+
export interface TagResourceResponse {}
|
|
266
|
+
export interface UntagResourceRequest {
|
|
267
|
+
ResourceArn: string | undefined;
|
|
268
|
+
ResourceTagKeys: string[] | undefined;
|
|
269
|
+
}
|
|
270
|
+
export interface UntagResourceResponse {}
|
|
271
|
+
export interface UpdateExportRequest {
|
|
272
|
+
ExportArn: string | undefined;
|
|
273
|
+
Export: Export | undefined;
|
|
274
|
+
}
|
|
275
|
+
export interface UpdateExportResponse {
|
|
276
|
+
ExportArn?: string;
|
|
277
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListExecutionsCommandInput,
|
|
4
|
+
ListExecutionsCommandOutput,
|
|
5
|
+
} from "../commands/ListExecutionsCommand";
|
|
6
|
+
import { BCMDataExportsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListExecutions(
|
|
8
|
+
config: BCMDataExportsPaginationConfiguration,
|
|
9
|
+
input: ListExecutionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListExecutionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListExportsCommandInput,
|
|
4
|
+
ListExportsCommandOutput,
|
|
5
|
+
} from "../commands/ListExportsCommand";
|
|
6
|
+
import { BCMDataExportsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListExports(
|
|
8
|
+
config: BCMDataExportsPaginationConfiguration,
|
|
9
|
+
input: ListExportsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListExportsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListTablesCommandInput,
|
|
4
|
+
ListTablesCommandOutput,
|
|
5
|
+
} from "../commands/ListTablesCommand";
|
|
6
|
+
import { BCMDataExportsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListTables(
|
|
8
|
+
config: BCMDataExportsPaginationConfiguration,
|
|
9
|
+
input: ListTablesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListTablesCommandOutput>;
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@smithy/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateExportCommandInput,
|
|
8
|
+
CreateExportCommandOutput,
|
|
9
|
+
} from "../commands/CreateExportCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteExportCommandInput,
|
|
12
|
+
DeleteExportCommandOutput,
|
|
13
|
+
} from "../commands/DeleteExportCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetExecutionCommandInput,
|
|
16
|
+
GetExecutionCommandOutput,
|
|
17
|
+
} from "../commands/GetExecutionCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetExportCommandInput,
|
|
20
|
+
GetExportCommandOutput,
|
|
21
|
+
} from "../commands/GetExportCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetTableCommandInput,
|
|
24
|
+
GetTableCommandOutput,
|
|
25
|
+
} from "../commands/GetTableCommand";
|
|
26
|
+
import {
|
|
27
|
+
ListExecutionsCommandInput,
|
|
28
|
+
ListExecutionsCommandOutput,
|
|
29
|
+
} from "../commands/ListExecutionsCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListExportsCommandInput,
|
|
32
|
+
ListExportsCommandOutput,
|
|
33
|
+
} from "../commands/ListExportsCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListTablesCommandInput,
|
|
36
|
+
ListTablesCommandOutput,
|
|
37
|
+
} from "../commands/ListTablesCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListTagsForResourceCommandInput,
|
|
40
|
+
ListTagsForResourceCommandOutput,
|
|
41
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
42
|
+
import {
|
|
43
|
+
TagResourceCommandInput,
|
|
44
|
+
TagResourceCommandOutput,
|
|
45
|
+
} from "../commands/TagResourceCommand";
|
|
46
|
+
import {
|
|
47
|
+
UntagResourceCommandInput,
|
|
48
|
+
UntagResourceCommandOutput,
|
|
49
|
+
} from "../commands/UntagResourceCommand";
|
|
50
|
+
import {
|
|
51
|
+
UpdateExportCommandInput,
|
|
52
|
+
UpdateExportCommandOutput,
|
|
53
|
+
} from "../commands/UpdateExportCommand";
|
|
54
|
+
export declare const se_CreateExportCommand: (
|
|
55
|
+
input: CreateExportCommandInput,
|
|
56
|
+
context: __SerdeContext
|
|
57
|
+
) => Promise<__HttpRequest>;
|
|
58
|
+
export declare const se_DeleteExportCommand: (
|
|
59
|
+
input: DeleteExportCommandInput,
|
|
60
|
+
context: __SerdeContext
|
|
61
|
+
) => Promise<__HttpRequest>;
|
|
62
|
+
export declare const se_GetExecutionCommand: (
|
|
63
|
+
input: GetExecutionCommandInput,
|
|
64
|
+
context: __SerdeContext
|
|
65
|
+
) => Promise<__HttpRequest>;
|
|
66
|
+
export declare const se_GetExportCommand: (
|
|
67
|
+
input: GetExportCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const se_GetTableCommand: (
|
|
71
|
+
input: GetTableCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const se_ListExecutionsCommand: (
|
|
75
|
+
input: ListExecutionsCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const se_ListExportsCommand: (
|
|
79
|
+
input: ListExportsCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const se_ListTablesCommand: (
|
|
83
|
+
input: ListTablesCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const se_ListTagsForResourceCommand: (
|
|
87
|
+
input: ListTagsForResourceCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const se_TagResourceCommand: (
|
|
91
|
+
input: TagResourceCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const se_UntagResourceCommand: (
|
|
95
|
+
input: UntagResourceCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const se_UpdateExportCommand: (
|
|
99
|
+
input: UpdateExportCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const de_CreateExportCommand: (
|
|
103
|
+
output: __HttpResponse,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<CreateExportCommandOutput>;
|
|
106
|
+
export declare const de_DeleteExportCommand: (
|
|
107
|
+
output: __HttpResponse,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<DeleteExportCommandOutput>;
|
|
110
|
+
export declare const de_GetExecutionCommand: (
|
|
111
|
+
output: __HttpResponse,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<GetExecutionCommandOutput>;
|
|
114
|
+
export declare const de_GetExportCommand: (
|
|
115
|
+
output: __HttpResponse,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<GetExportCommandOutput>;
|
|
118
|
+
export declare const de_GetTableCommand: (
|
|
119
|
+
output: __HttpResponse,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<GetTableCommandOutput>;
|
|
122
|
+
export declare const de_ListExecutionsCommand: (
|
|
123
|
+
output: __HttpResponse,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<ListExecutionsCommandOutput>;
|
|
126
|
+
export declare const de_ListExportsCommand: (
|
|
127
|
+
output: __HttpResponse,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<ListExportsCommandOutput>;
|
|
130
|
+
export declare const de_ListTablesCommand: (
|
|
131
|
+
output: __HttpResponse,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<ListTablesCommandOutput>;
|
|
134
|
+
export declare const de_ListTagsForResourceCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
138
|
+
export declare const de_TagResourceCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<TagResourceCommandOutput>;
|
|
142
|
+
export declare const de_UntagResourceCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
146
|
+
export declare const de_UpdateExportCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<UpdateExportCommandOutput>;
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { BCMDataExportsClientConfig } from "./BCMDataExportsClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
+
credentialDefaultProvider: (
|
|
10
|
+
input: any
|
|
11
|
+
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
13
|
+
import("@smithy/types").UserAgent
|
|
14
|
+
>;
|
|
15
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
17
|
+
requestHandler:
|
|
18
|
+
| (import("@smithy/types").RequestHandler<
|
|
19
|
+
any,
|
|
20
|
+
any,
|
|
21
|
+
import("@smithy/types").HttpHandlerOptions
|
|
22
|
+
> &
|
|
23
|
+
import("@smithy/types").RequestHandler<
|
|
24
|
+
import("@smithy/protocol-http").HttpRequest,
|
|
25
|
+
import("@smithy/protocol-http").HttpResponse,
|
|
26
|
+
import("@smithy/types").HttpHandlerOptions
|
|
27
|
+
> & {
|
|
28
|
+
updateHttpClientConfig(key: never, value: never): void;
|
|
29
|
+
httpHandlerConfigs(): {};
|
|
30
|
+
})
|
|
31
|
+
| RequestHandler;
|
|
32
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
33
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
34
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
35
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
36
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
37
|
+
apiVersion: string;
|
|
38
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
39
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
40
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
41
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
42
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
43
|
+
disableHostPrefix: boolean;
|
|
44
|
+
serviceId: string;
|
|
45
|
+
logger: import("@smithy/types").Logger;
|
|
46
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
47
|
+
endpoint?:
|
|
48
|
+
| ((
|
|
49
|
+
| string
|
|
50
|
+
| import("@smithy/types").Endpoint
|
|
51
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
52
|
+
| import("@smithy/types").EndpointV2
|
|
53
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
54
|
+
) &
|
|
55
|
+
(
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Provider<string>
|
|
58
|
+
| import("@smithy/types").Endpoint
|
|
59
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
60
|
+
| import("@smithy/types").EndpointV2
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
62
|
+
))
|
|
63
|
+
| undefined;
|
|
64
|
+
endpointProvider: (
|
|
65
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
66
|
+
context?: {
|
|
67
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
68
|
+
}
|
|
69
|
+
) => import("@smithy/types").EndpointV2;
|
|
70
|
+
tls?: boolean | undefined;
|
|
71
|
+
retryStrategy?:
|
|
72
|
+
| import("@smithy/types").RetryStrategy
|
|
73
|
+
| import("@smithy/types").RetryStrategyV2
|
|
74
|
+
| undefined;
|
|
75
|
+
credentials?:
|
|
76
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
77
|
+
| import("@smithy/types").Provider<
|
|
78
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
79
|
+
>
|
|
80
|
+
| undefined;
|
|
81
|
+
signer?:
|
|
82
|
+
| import("@smithy/types").RequestSigner
|
|
83
|
+
| ((
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
85
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
86
|
+
| undefined;
|
|
87
|
+
signingEscapePath?: boolean | undefined;
|
|
88
|
+
systemClockOffset?: number | undefined;
|
|
89
|
+
signingRegion?: string | undefined;
|
|
90
|
+
signerConstructor?:
|
|
91
|
+
| (new (
|
|
92
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
93
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
94
|
+
) => import("@smithy/types").RequestSigner)
|
|
95
|
+
| undefined;
|
|
96
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
97
|
+
};
|