@aws-sdk/client-bcm-data-exports 3.948.0 → 3.953.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/index.js +210 -111
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/CreateExportCommand.js +2 -2
- package/dist-es/commands/DeleteExportCommand.js +2 -2
- package/dist-es/commands/GetExecutionCommand.js +2 -2
- package/dist-es/commands/GetExportCommand.js +2 -2
- package/dist-es/commands/GetTableCommand.js +2 -2
- package/dist-es/commands/ListExecutionsCommand.js +2 -2
- package/dist-es/commands/ListExportsCommand.js +2 -2
- package/dist-es/commands/ListTablesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateExportCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +129 -87
- package/dist-types/BCMDataExportsClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +58 -69
- package/dist-types/ts3.4/BCMDataExportsClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +57 -70
- package/package.json +34 -34
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTable } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTable$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingAndCostManagementDataExports", "GetTable", {})
|
|
13
13
|
.n("BCMDataExportsClient", "GetTableCommand")
|
|
14
|
-
.sc(GetTable)
|
|
14
|
+
.sc(GetTable$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListExecutions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListExecutions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListExecutionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListExecutionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingAndCostManagementDataExports", "ListExecutions", {})
|
|
13
13
|
.n("BCMDataExportsClient", "ListExecutionsCommand")
|
|
14
|
-
.sc(ListExecutions)
|
|
14
|
+
.sc(ListExecutions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListExports } from "../schemas/schemas_0";
|
|
4
|
+
import { ListExports$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListExportsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListExportsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingAndCostManagementDataExports", "ListExports", {})
|
|
13
13
|
.n("BCMDataExportsClient", "ListExportsCommand")
|
|
14
|
-
.sc(ListExports)
|
|
14
|
+
.sc(ListExports$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTables } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTables$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTablesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTablesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingAndCostManagementDataExports", "ListTables", {})
|
|
13
13
|
.n("BCMDataExportsClient", "ListTablesCommand")
|
|
14
|
-
.sc(ListTables)
|
|
14
|
+
.sc(ListTables$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingAndCostManagementDataExports", "ListTagsForResource", {})
|
|
13
13
|
.n("BCMDataExportsClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingAndCostManagementDataExports", "TagResource", {})
|
|
13
13
|
.n("BCMDataExportsClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingAndCostManagementDataExports", "UntagResource", {})
|
|
13
13
|
.n("BCMDataExportsClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateExport } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateExport$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateExportCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateExportCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingAndCostManagementDataExports", "UpdateExport", {})
|
|
13
13
|
.n("BCMDataExportsClient", "UpdateExportCommand")
|
|
14
|
-
.sc(UpdateExport)
|
|
14
|
+
.sc(UpdateExport$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.bcmdataexports",
|
|
29
|
+
version: "2023-11-26",
|
|
30
|
+
serviceTarget: "AWSBillingAndCostManagementDataExports",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "BCM Data Exports",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
@@ -112,54 +112,54 @@ const _s = "server";
|
|
|
112
112
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.bcmdataexports";
|
|
113
113
|
const n0 = "com.amazonaws.bcmdataexports";
|
|
114
114
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
115
|
-
import { BCMDataExportsServiceException
|
|
116
|
-
import { InternalServerException
|
|
117
|
-
export var Column = [3, n0, _C, 0, [_N, _T, _D], [0, 0, 0]];
|
|
118
|
-
export var CreateExportRequest = [
|
|
115
|
+
import { BCMDataExportsServiceException } from "../models/BCMDataExportsServiceException";
|
|
116
|
+
import { InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
117
|
+
export var Column$ = [3, n0, _C, 0, [_N, _T, _D], [0, 0, 0]];
|
|
118
|
+
export var CreateExportRequest$ = [
|
|
119
119
|
3,
|
|
120
120
|
n0,
|
|
121
121
|
_CER,
|
|
122
122
|
0,
|
|
123
123
|
[_E, _RT],
|
|
124
|
-
[() => Export
|
|
124
|
+
[() => Export$, () => ResourceTagList],
|
|
125
125
|
];
|
|
126
|
-
export var CreateExportResponse = [3, n0, _CERr, 0, [_EA], [0]];
|
|
127
|
-
export var DataQuery = [3, n0, _DQ, 0, [_QS, _TC], [0, [2, n0, _TC, 0, 0, 128 | 0]]];
|
|
128
|
-
export var DeleteExportRequest = [3, n0, _DER, 0, [_EA], [0]];
|
|
129
|
-
export var DeleteExportResponse = [3, n0, _DERe, 0, [_EA], [0]];
|
|
130
|
-
export var DestinationConfigurations = [3, n0, _DC, 0, [_SD], [() => S3Destination]];
|
|
131
|
-
export var ExecutionReference = [3, n0, _ER, 0, [_EI, _ES], [0, () => ExecutionStatus]];
|
|
132
|
-
export var ExecutionStatus = [3, n0, _ES, 0, [_SC, _SR, _CA, _CAo, _LUA], [0, 0, 5, 5, 5]];
|
|
133
|
-
export var Export = [
|
|
126
|
+
export var CreateExportResponse$ = [3, n0, _CERr, 0, [_EA], [0]];
|
|
127
|
+
export var DataQuery$ = [3, n0, _DQ, 0, [_QS, _TC], [0, [2, n0, _TC, 0, 0, 128 | 0]]];
|
|
128
|
+
export var DeleteExportRequest$ = [3, n0, _DER, 0, [_EA], [0]];
|
|
129
|
+
export var DeleteExportResponse$ = [3, n0, _DERe, 0, [_EA], [0]];
|
|
130
|
+
export var DestinationConfigurations$ = [3, n0, _DC, 0, [_SD], [() => S3Destination$]];
|
|
131
|
+
export var ExecutionReference$ = [3, n0, _ER, 0, [_EI, _ES], [0, () => ExecutionStatus$]];
|
|
132
|
+
export var ExecutionStatus$ = [3, n0, _ES, 0, [_SC, _SR, _CA, _CAo, _LUA], [0, 0, 5, 5, 5]];
|
|
133
|
+
export var Export$ = [
|
|
134
134
|
3,
|
|
135
135
|
n0,
|
|
136
136
|
_E,
|
|
137
137
|
0,
|
|
138
138
|
[_EA, _N, _D, _DQ, _DC, _RC],
|
|
139
|
-
[0, 0, 0, () => DataQuery
|
|
139
|
+
[0, 0, 0, () => DataQuery$, () => DestinationConfigurations$, () => RefreshCadence$],
|
|
140
140
|
];
|
|
141
|
-
export var ExportReference = [3, n0, _ERx, 0, [_EA, _EN, _ESx], [0, 0, () => ExportStatus]];
|
|
142
|
-
export var ExportStatus = [3, n0, _ESx, 0, [_SC, _SR, _CA, _LUA, _LRA], [0, 0, 5, 5, 5]];
|
|
143
|
-
export var GetExecutionRequest = [3, n0, _GER, 0, [_EA, _EI], [0, 0]];
|
|
144
|
-
export var GetExecutionResponse = [
|
|
141
|
+
export var ExportReference$ = [3, n0, _ERx, 0, [_EA, _EN, _ESx], [0, 0, () => ExportStatus$]];
|
|
142
|
+
export var ExportStatus$ = [3, n0, _ESx, 0, [_SC, _SR, _CA, _LUA, _LRA], [0, 0, 5, 5, 5]];
|
|
143
|
+
export var GetExecutionRequest$ = [3, n0, _GER, 0, [_EA, _EI], [0, 0]];
|
|
144
|
+
export var GetExecutionResponse$ = [
|
|
145
145
|
3,
|
|
146
146
|
n0,
|
|
147
147
|
_GERe,
|
|
148
148
|
0,
|
|
149
149
|
[_EI, _E, _ES],
|
|
150
|
-
[0, () => Export
|
|
150
|
+
[0, () => Export$, () => ExecutionStatus$],
|
|
151
151
|
];
|
|
152
|
-
export var GetExportRequest = [3, n0, _GERet, 0, [_EA], [0]];
|
|
153
|
-
export var GetExportResponse = [
|
|
152
|
+
export var GetExportRequest$ = [3, n0, _GERet, 0, [_EA], [0]];
|
|
153
|
+
export var GetExportResponse$ = [
|
|
154
154
|
3,
|
|
155
155
|
n0,
|
|
156
156
|
_GERetx,
|
|
157
157
|
0,
|
|
158
158
|
[_E, _ESx],
|
|
159
|
-
[() => Export
|
|
159
|
+
[() => Export$, () => ExportStatus$],
|
|
160
160
|
];
|
|
161
|
-
export var GetTableRequest = [3, n0, _GTR, 0, [_TN, _TP], [0, 128 | 0]];
|
|
162
|
-
export var GetTableResponse = [
|
|
161
|
+
export var GetTableRequest$ = [3, n0, _GTR, 0, [_TN, _TP], [0, 128 | 0]];
|
|
162
|
+
export var GetTableResponse$ = [
|
|
163
163
|
3,
|
|
164
164
|
n0,
|
|
165
165
|
_GTRe,
|
|
@@ -167,10 +167,10 @@ export var GetTableResponse = [
|
|
|
167
167
|
[_TN, _D, _TP, _S],
|
|
168
168
|
[0, 0, 128 | 0, () => ColumnList],
|
|
169
169
|
];
|
|
170
|
-
export var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
171
|
-
TypeRegistry.for(n0).registerError(InternalServerException
|
|
172
|
-
export var ListExecutionsRequest = [3, n0, _LER, 0, [_EA, _MR, _NT], [0, 1, 0]];
|
|
173
|
-
export var ListExecutionsResponse = [
|
|
170
|
+
export var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
171
|
+
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
172
|
+
export var ListExecutionsRequest$ = [3, n0, _LER, 0, [_EA, _MR, _NT], [0, 1, 0]];
|
|
173
|
+
export var ListExecutionsResponse$ = [
|
|
174
174
|
3,
|
|
175
175
|
n0,
|
|
176
176
|
_LERi,
|
|
@@ -178,8 +178,8 @@ export var ListExecutionsResponse = [
|
|
|
178
178
|
[_Ex, _NT],
|
|
179
179
|
[() => ExecutionReferenceList, 0],
|
|
180
180
|
];
|
|
181
|
-
export var ListExportsRequest = [3, n0, _LERis, 0, [_MR, _NT], [1, 0]];
|
|
182
|
-
export var ListExportsResponse = [
|
|
181
|
+
export var ListExportsRequest$ = [3, n0, _LERis, 0, [_MR, _NT], [1, 0]];
|
|
182
|
+
export var ListExportsResponse$ = [
|
|
183
183
|
3,
|
|
184
184
|
n0,
|
|
185
185
|
_LERist,
|
|
@@ -187,10 +187,10 @@ export var ListExportsResponse = [
|
|
|
187
187
|
[_Exp, _NT],
|
|
188
188
|
[() => ExportReferenceList, 0],
|
|
189
189
|
];
|
|
190
|
-
export var ListTablesRequest = [3, n0, _LTR, 0, [_NT, _MR], [0, 1]];
|
|
191
|
-
export var ListTablesResponse = [3, n0, _LTRi, 0, [_Ta, _NT], [() => TableList, 0]];
|
|
192
|
-
export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA, _MR, _NT], [0, 1, 0]];
|
|
193
|
-
export var ListTagsForResourceResponse = [
|
|
190
|
+
export var ListTablesRequest$ = [3, n0, _LTR, 0, [_NT, _MR], [0, 1]];
|
|
191
|
+
export var ListTablesResponse$ = [3, n0, _LTRi, 0, [_Ta, _NT], [() => TableList, 0]];
|
|
192
|
+
export var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RA, _MR, _NT], [0, 1, 0]];
|
|
193
|
+
export var ListTagsForResourceResponse$ = [
|
|
194
194
|
3,
|
|
195
195
|
n0,
|
|
196
196
|
_LTFRRi,
|
|
@@ -198,8 +198,8 @@ export var ListTagsForResourceResponse = [
|
|
|
198
198
|
[_RT, _NT],
|
|
199
199
|
[() => ResourceTagList, 0],
|
|
200
200
|
];
|
|
201
|
-
export var RefreshCadence = [3, n0, _RC, 0, [_F], [0]];
|
|
202
|
-
export var ResourceNotFoundException = [
|
|
201
|
+
export var RefreshCadence$ = [3, n0, _RC, 0, [_F], [0]];
|
|
202
|
+
export var ResourceNotFoundException$ = [
|
|
203
203
|
-3,
|
|
204
204
|
n0,
|
|
205
205
|
_RNFE,
|
|
@@ -207,18 +207,18 @@ export var ResourceNotFoundException = [
|
|
|
207
207
|
[_M, _RI, _RTe],
|
|
208
208
|
[0, 0, 0],
|
|
209
209
|
];
|
|
210
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
211
|
-
export var ResourceTag = [3, n0, _RTes, 0, [_K, _V], [0, 0]];
|
|
212
|
-
export var S3Destination = [
|
|
210
|
+
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
211
|
+
export var ResourceTag$ = [3, n0, _RTes, 0, [_K, _V], [0, 0]];
|
|
212
|
+
export var S3Destination$ = [
|
|
213
213
|
3,
|
|
214
214
|
n0,
|
|
215
215
|
_SD,
|
|
216
216
|
0,
|
|
217
217
|
[_SB, _SP, _SRe, _SOC],
|
|
218
|
-
[0, 0, 0, () => S3OutputConfigurations],
|
|
218
|
+
[0, 0, 0, () => S3OutputConfigurations$],
|
|
219
219
|
];
|
|
220
|
-
export var S3OutputConfigurations = [3, n0, _SOC, 0, [_OT, _Fo, _Co, _O], [0, 0, 0, 0]];
|
|
221
|
-
export var ServiceQuotaExceededException = [
|
|
220
|
+
export var S3OutputConfigurations$ = [3, n0, _SOC, 0, [_OT, _Fo, _Co, _O], [0, 0, 0, 0]];
|
|
221
|
+
export var ServiceQuotaExceededException$ = [
|
|
222
222
|
-3,
|
|
223
223
|
n0,
|
|
224
224
|
_SQEE,
|
|
@@ -226,18 +226,25 @@ export var ServiceQuotaExceededException = [
|
|
|
226
226
|
[_M, _RI, _RTe, _QC, _SCe],
|
|
227
227
|
[0, 0, 0, 0, 0],
|
|
228
228
|
];
|
|
229
|
-
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
230
|
-
export var Table = [3, n0, _Tab, 0, [_TN, _D, _TP], [0, 0, () => TablePropertyDescriptionList]];
|
|
231
|
-
export var TablePropertyDescription = [3, n0, _TPD, 0, [_N, _VV, _DV, _D], [0, 64 | 0, 0, 0]];
|
|
232
|
-
export var TagResourceRequest = [3, n0, _TRR, 0, [_RA, _RT], [0, () => ResourceTagList]];
|
|
233
|
-
export var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
234
|
-
export var ThrottlingException = [
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
229
|
+
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
230
|
+
export var Table$ = [3, n0, _Tab, 0, [_TN, _D, _TP], [0, 0, () => TablePropertyDescriptionList]];
|
|
231
|
+
export var TablePropertyDescription$ = [3, n0, _TPD, 0, [_N, _VV, _DV, _D], [0, 64 | 0, 0, 0]];
|
|
232
|
+
export var TagResourceRequest$ = [3, n0, _TRR, 0, [_RA, _RT], [0, () => ResourceTagList]];
|
|
233
|
+
export var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
234
|
+
export var ThrottlingException$ = [
|
|
235
|
+
-3,
|
|
236
|
+
n0,
|
|
237
|
+
_TE,
|
|
238
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
239
|
+
[_M, _QC, _SCe],
|
|
240
|
+
[0, 0, 0],
|
|
241
|
+
];
|
|
242
|
+
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
243
|
+
export var UntagResourceRequest$ = [3, n0, _URR, 0, [_RA, _RTK], [0, 64 | 0]];
|
|
244
|
+
export var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
245
|
+
export var UpdateExportRequest$ = [3, n0, _UER, 0, [_EA, _E], [0, () => Export$]];
|
|
246
|
+
export var UpdateExportResponse$ = [3, n0, _UERp, 0, [_EA], [0]];
|
|
247
|
+
export var ValidationException$ = [
|
|
241
248
|
-3,
|
|
242
249
|
n0,
|
|
243
250
|
_VE,
|
|
@@ -245,51 +252,86 @@ export var ValidationException = [
|
|
|
245
252
|
[_M, _R, _Fi],
|
|
246
253
|
[0, 0, () => ValidationExceptionFieldList],
|
|
247
254
|
];
|
|
248
|
-
TypeRegistry.for(n0).registerError(ValidationException
|
|
249
|
-
export var ValidationExceptionField = [3, n0, _VEF, 0, [_N, _M], [0, 0]];
|
|
250
|
-
export var BCMDataExportsServiceException = [-3, _sm, "BCMDataExportsServiceException", 0, [], []];
|
|
251
|
-
TypeRegistry.for(_sm).registerError(BCMDataExportsServiceException
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
export var CreateExport = [
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
255
|
+
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
256
|
+
export var ValidationExceptionField$ = [3, n0, _VEF, 0, [_N, _M], [0, 0]];
|
|
257
|
+
export var BCMDataExportsServiceException$ = [-3, _sm, "BCMDataExportsServiceException", 0, [], []];
|
|
258
|
+
TypeRegistry.for(_sm).registerError(BCMDataExportsServiceException$, BCMDataExportsServiceException);
|
|
259
|
+
var ColumnList = [1, n0, _CL, 0, () => Column$];
|
|
260
|
+
var ExecutionReferenceList = [1, n0, _ERL, 0, () => ExecutionReference$];
|
|
261
|
+
var ExportReferenceList = [1, n0, _ERLx, 0, () => ExportReference$];
|
|
262
|
+
var GenericStringList = 64 | 0;
|
|
263
|
+
var ResourceTagKeyList = 64 | 0;
|
|
264
|
+
var ResourceTagList = [1, n0, _RTL, 0, () => ResourceTag$];
|
|
265
|
+
var TableList = [1, n0, _TL, 0, () => Table$];
|
|
266
|
+
var TablePropertyDescriptionList = [1, n0, _TPDL, 0, () => TablePropertyDescription$];
|
|
267
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
|
|
268
|
+
var TableConfigurations = [2, n0, _TC, 0, 0, 128 | 0];
|
|
269
|
+
var TableProperties = 128 | 0;
|
|
270
|
+
export var CreateExport$ = [
|
|
271
|
+
9,
|
|
272
|
+
n0,
|
|
273
|
+
_CE,
|
|
274
|
+
0,
|
|
275
|
+
() => CreateExportRequest$,
|
|
276
|
+
() => CreateExportResponse$,
|
|
277
|
+
];
|
|
278
|
+
export var DeleteExport$ = [
|
|
279
|
+
9,
|
|
280
|
+
n0,
|
|
281
|
+
_DE,
|
|
282
|
+
2,
|
|
283
|
+
() => DeleteExportRequest$,
|
|
284
|
+
() => DeleteExportResponse$,
|
|
285
|
+
];
|
|
286
|
+
export var GetExecution$ = [
|
|
287
|
+
9,
|
|
288
|
+
n0,
|
|
289
|
+
_GE,
|
|
290
|
+
0,
|
|
291
|
+
() => GetExecutionRequest$,
|
|
292
|
+
() => GetExecutionResponse$,
|
|
293
|
+
];
|
|
294
|
+
export var GetExport$ = [9, n0, _GEe, 0, () => GetExportRequest$, () => GetExportResponse$];
|
|
295
|
+
export var GetTable$ = [9, n0, _GT, 0, () => GetTableRequest$, () => GetTableResponse$];
|
|
296
|
+
export var ListExecutions$ = [
|
|
269
297
|
9,
|
|
270
298
|
n0,
|
|
271
299
|
_LE,
|
|
272
300
|
0,
|
|
273
|
-
() => ListExecutionsRequest
|
|
274
|
-
() => ListExecutionsResponse
|
|
301
|
+
() => ListExecutionsRequest$,
|
|
302
|
+
() => ListExecutionsResponse$,
|
|
275
303
|
];
|
|
276
|
-
export var ListExports = [
|
|
277
|
-
|
|
278
|
-
|
|
304
|
+
export var ListExports$ = [
|
|
305
|
+
9,
|
|
306
|
+
n0,
|
|
307
|
+
_LEi,
|
|
308
|
+
0,
|
|
309
|
+
() => ListExportsRequest$,
|
|
310
|
+
() => ListExportsResponse$,
|
|
311
|
+
];
|
|
312
|
+
export var ListTables$ = [9, n0, _LT, 0, () => ListTablesRequest$, () => ListTablesResponse$];
|
|
313
|
+
export var ListTagsForResource$ = [
|
|
279
314
|
9,
|
|
280
315
|
n0,
|
|
281
316
|
_LTFR,
|
|
282
317
|
0,
|
|
283
|
-
() => ListTagsForResourceRequest
|
|
284
|
-
() => ListTagsForResourceResponse
|
|
318
|
+
() => ListTagsForResourceRequest$,
|
|
319
|
+
() => ListTagsForResourceResponse$,
|
|
285
320
|
];
|
|
286
|
-
export var TagResource = [9, n0, _TR, 0, () => TagResourceRequest
|
|
287
|
-
export var UntagResource = [
|
|
321
|
+
export var TagResource$ = [9, n0, _TR, 0, () => TagResourceRequest$, () => TagResourceResponse$];
|
|
322
|
+
export var UntagResource$ = [
|
|
288
323
|
9,
|
|
289
324
|
n0,
|
|
290
325
|
_UR,
|
|
291
326
|
0,
|
|
292
|
-
() => UntagResourceRequest
|
|
293
|
-
() => UntagResourceResponse
|
|
327
|
+
() => UntagResourceRequest$,
|
|
328
|
+
() => UntagResourceResponse$,
|
|
329
|
+
];
|
|
330
|
+
export var UpdateExport$ = [
|
|
331
|
+
9,
|
|
332
|
+
n0,
|
|
333
|
+
_UE,
|
|
334
|
+
0,
|
|
335
|
+
() => UpdateExportRequest$,
|
|
336
|
+
() => UpdateExportResponse$,
|
|
294
337
|
];
|
|
295
|
-
export var UpdateExport = [9, n0, _UE, 0, () => UpdateExportRequest, () => UpdateExportResponse];
|
|
@@ -5,7 +5,7 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type
|
|
8
|
+
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateExportCommandInput, CreateExportCommandOutput } from "./commands/CreateExportCommand";
|
|
11
11
|
import { DeleteExportCommandInput, DeleteExportCommandOutput } from "./commands/DeleteExportCommand";
|
|
@@ -153,15 +153,6 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
153
153
|
* Optional extensions
|
|
154
154
|
*/
|
|
155
155
|
extensions?: RuntimeExtension[];
|
|
156
|
-
/**
|
|
157
|
-
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
158
|
-
* may be overridden. A default will always be set by the client.
|
|
159
|
-
* Available options depend on the service's supported protocols and will not be validated by
|
|
160
|
-
* the client.
|
|
161
|
-
* @alpha
|
|
162
|
-
*
|
|
163
|
-
*/
|
|
164
|
-
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
165
156
|
/**
|
|
166
157
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
167
158
|
*/
|
package/dist-types/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
16
16
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
17
17
|
export type { BCMDataExportsExtensionConfiguration } from "./extensionConfiguration";
|
|
18
18
|
export * from "./commands";
|
|
19
|
+
export * from "./schemas/schemas_0";
|
|
19
20
|
export * from "./pagination";
|
|
20
21
|
export * from "./models/enums";
|
|
21
22
|
export * from "./models/errors";
|
|
@@ -17,8 +17,13 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
17
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
-
apiVersion: string;
|
|
21
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
22
|
+
protocolSettings: {
|
|
23
|
+
defaultNamespace?: string;
|
|
24
|
+
[setting: string]: unknown;
|
|
25
|
+
};
|
|
26
|
+
apiVersion: string;
|
|
22
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
24
29
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -29,7 +34,6 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
29
34
|
profile?: string;
|
|
30
35
|
logger: import("@smithy/types").Logger;
|
|
31
36
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
33
37
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
34
38
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
35
39
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -19,8 +19,13 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
|
-
apiVersion: string;
|
|
23
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
24
|
+
protocolSettings: {
|
|
25
|
+
defaultNamespace?: string;
|
|
26
|
+
[setting: string]: unknown;
|
|
27
|
+
};
|
|
28
|
+
apiVersion: string;
|
|
24
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
26
31
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -31,7 +36,6 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
31
36
|
profile?: string;
|
|
32
37
|
logger: import("@smithy/types").Logger;
|
|
33
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
35
39
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
36
40
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
37
41
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -6,8 +6,13 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
-
apiVersion: string;
|
|
10
9
|
cacheMiddleware?: boolean;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
11
|
+
protocolSettings: {
|
|
12
|
+
defaultNamespace?: string;
|
|
13
|
+
[setting: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
apiVersion: string;
|
|
11
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
12
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
18
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -27,7 +32,6 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
27
32
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
33
|
logger: import("@smithy/types").Logger;
|
|
29
34
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
31
35
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
32
36
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
37
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols";
|
|
1
2
|
import type { BCMDataExportsClientConfig } from "./BCMDataExportsClient";
|
|
2
3
|
/**
|
|
3
4
|
* @internal
|
|
@@ -14,7 +15,11 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
14
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BCMDataExportsHttpAuthSchemeProvider;
|
|
15
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
17
|
logger: import("@smithy/types").Logger;
|
|
17
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").
|
|
18
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsJson1_1Protocol;
|
|
19
|
+
protocolSettings: {
|
|
20
|
+
[setting: string]: unknown;
|
|
21
|
+
defaultNamespace?: string;
|
|
22
|
+
};
|
|
18
23
|
serviceId: string;
|
|
19
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
20
25
|
utf8Decoder: import("@smithy/types").Decoder;
|