@aws-sdk/client-lakeformation 3.51.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/LakeFormationServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +260 -3
- package/dist-cjs/protocols/Aws_restJson1.js +548 -1877
- package/dist-es/index.js +1 -0
- package/dist-es/models/LakeFormationServiceException.js +12 -0
- package/dist-es/models/models_0.js +239 -1
- package/dist-es/protocols/Aws_restJson1.js +1079 -2072
- package/dist-types/LakeFormationClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/LakeFormationServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +129 -56
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/LakeFormationClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/LakeFormationServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +93 -56
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-lakeformation
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-lakeformation
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-lakeformation
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LakeFormationServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./LakeFormation"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./LakeFormationClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var LakeFormationServiceException_1 = require("./models/LakeFormationServiceException");
|
|
11
|
+
Object.defineProperty(exports, "LakeFormationServiceException", { enumerable: true, get: function () { return LakeFormationServiceException_1.LakeFormationServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LakeFormationServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class LakeFormationServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, LakeFormationServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.LakeFormationServiceException = LakeFormationServiceException;
|
|
@@ -1,9 +1,25 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
3
|
+
exports.CreateLFTagRequest = exports.ResourceNumberLimitExceededException = exports.CreateDataCellsFilterResponse = exports.CreateDataCellsFilterRequest = exports.DataCellsFilter = exports.RowFilter = exports.TransactionCanceledException = exports.CommitTransactionResponse = exports.TransactionStatus = exports.CommitTransactionRequest = exports.TransactionCommittedException = exports.TransactionCommitInProgressException = exports.CancelTransactionResponse = exports.CancelTransactionRequest = exports.BatchRevokePermissionsResponse = exports.BatchRevokePermissionsRequest = exports.BatchGrantPermissionsResponse = exports.BatchPermissionsFailureEntry = exports.BatchGrantPermissionsRequest = exports.BatchPermissionsRequestEntry = exports.DataLakePrincipal = exports.Permission = exports.AuditContext = exports.AlreadyExistsException = exports.AllRowsWildcard = exports.AddObjectInput = exports.OperationTimeoutException = exports.InvalidInputException = exports.InternalServiceException = exports.EntityNotFoundException = exports.ConcurrentModificationException = exports.AddLFTagsToResourceResponse = exports.LFTagError = exports.ErrorDetail = exports.AddLFTagsToResourceRequest = exports.Resource = exports.TableWithColumnsResource = exports.ColumnWildcard = exports.TableResource = exports.TableWildcard = exports.LFTagPolicyResource = exports.ResourceType = exports.LFTag = exports.LFTagKeyResource = exports.DataLocationResource = exports.DataCellsFilterResource = exports.DatabaseResource = exports.CatalogResource = exports.LFTagPair = exports.AccessDeniedException = void 0;
|
|
4
|
+
exports.GetTemporaryGluePartitionCredentialsRequest = exports.PermissionType = exports.PartitionValueList = exports.GetTableObjectsResponse = exports.PartitionObjects = exports.TableObject = exports.GetTableObjectsRequest = exports.GlueEncryptionException = exports.GetResourceLFTagsResponse = exports.ColumnLFTag = exports.GetResourceLFTagsRequest = exports.ThrottledException = exports.StatisticsNotReadyYetException = exports.GetQueryStatisticsResponse = exports.PlanningStatistics = exports.ExecutionStatistics = exports.GetQueryStatisticsRequest = exports.ExpiredException = exports.GetQueryStateResponse = exports.QueryStateString = exports.GetQueryStateRequest = exports.GetLFTagResponse = exports.GetLFTagRequest = exports.GetEffectivePermissionsForPathResponse = exports.PrincipalResourcePermissions = exports.DetailsMap = exports.GetEffectivePermissionsForPathRequest = exports.GetDataLakeSettingsResponse = exports.DataLakeSettings = exports.PrincipalPermissions = exports.GetDataLakeSettingsRequest = exports.ExtendTransactionResponse = exports.ExtendTransactionRequest = exports.DescribeTransactionResponse = exports.TransactionDescription = exports.DescribeTransactionRequest = exports.DescribeResourceResponse = exports.ResourceInfo = exports.DescribeResourceRequest = exports.DeregisterResourceResponse = exports.DeregisterResourceRequest = exports.ResourceNotReadyException = exports.DeleteObjectsOnCancelResponse = exports.DeleteObjectsOnCancelRequest = exports.VirtualObject = exports.DeleteLFTagResponse = exports.DeleteLFTagRequest = exports.DeleteDataCellsFilterResponse = exports.DeleteDataCellsFilterRequest = exports.CreateLFTagResponse = void 0;
|
|
5
|
+
exports.TransactionType = exports.StartQueryPlanningResponse = exports.StartQueryPlanningRequest = exports.QueryPlanningContext = exports.SearchTablesByLFTagsResponse = exports.TaggedTable = exports.SearchTablesByLFTagsRequest = exports.SearchDatabasesByLFTagsResponse = exports.TaggedDatabase = exports.SearchDatabasesByLFTagsRequest = exports.RevokePermissionsResponse = exports.RevokePermissionsRequest = exports.RemoveLFTagsFromResourceResponse = exports.RemoveLFTagsFromResourceRequest = exports.RegisterResourceResponse = exports.RegisterResourceRequest = exports.PutDataLakeSettingsResponse = exports.PutDataLakeSettingsRequest = exports.ListTransactionsResponse = exports.ListTransactionsRequest = exports.TransactionStatusFilter = exports.ListTableStorageOptimizersResponse = exports.StorageOptimizer = exports.ListTableStorageOptimizersRequest = exports.OptimizerType = exports.ListResourcesResponse = exports.ListResourcesRequest = exports.FilterCondition = exports.FieldNameString = exports.ComparisonOperator = exports.ListPermissionsResponse = exports.ListPermissionsRequest = exports.DataLakeResourceType = exports.ListLFTagsResponse = exports.ListLFTagsRequest = exports.ResourceShareType = exports.ListDataCellsFilterResponse = exports.ListDataCellsFilterRequest = exports.GrantPermissionsResponse = exports.GrantPermissionsRequest = exports.WorkUnitsNotReadyYetException = exports.GetWorkUnitsResponse = exports.WorkUnitRange = exports.GetWorkUnitsRequest = exports.GetWorkUnitResultsResponse = exports.GetWorkUnitResultsRequest = exports.GetTemporaryGlueTableCredentialsResponse = exports.GetTemporaryGlueTableCredentialsRequest = exports.PermissionTypeMismatchException = exports.GetTemporaryGluePartitionCredentialsResponse = void 0;
|
|
6
|
+
exports.UpdateTableStorageOptimizerResponse = exports.UpdateTableStorageOptimizerRequest = exports.UpdateTableObjectsResponse = exports.UpdateTableObjectsRequest = exports.WriteOperation = exports.DeleteObjectInput = exports.UpdateResourceResponse = exports.UpdateResourceRequest = exports.UpdateLFTagResponse = exports.UpdateLFTagRequest = exports.StartTransactionResponse = exports.StartTransactionRequest = void 0;
|
|
6
7
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
8
|
+
const LakeFormationServiceException_1 = require("./LakeFormationServiceException");
|
|
9
|
+
class AccessDeniedException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
10
|
+
constructor(opts) {
|
|
11
|
+
super({
|
|
12
|
+
name: "AccessDeniedException",
|
|
13
|
+
$fault: "client",
|
|
14
|
+
...opts,
|
|
15
|
+
});
|
|
16
|
+
this.name = "AccessDeniedException";
|
|
17
|
+
this.$fault = "client";
|
|
18
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
19
|
+
this.Message = opts.Message;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
7
23
|
var LFTagPair;
|
|
8
24
|
(function (LFTagPair) {
|
|
9
25
|
LFTagPair.filterSensitiveLog = (obj) => ({
|
|
@@ -111,6 +127,76 @@ var AddLFTagsToResourceResponse;
|
|
|
111
127
|
...obj,
|
|
112
128
|
});
|
|
113
129
|
})(AddLFTagsToResourceResponse = exports.AddLFTagsToResourceResponse || (exports.AddLFTagsToResourceResponse = {}));
|
|
130
|
+
class ConcurrentModificationException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
131
|
+
constructor(opts) {
|
|
132
|
+
super({
|
|
133
|
+
name: "ConcurrentModificationException",
|
|
134
|
+
$fault: "client",
|
|
135
|
+
...opts,
|
|
136
|
+
});
|
|
137
|
+
this.name = "ConcurrentModificationException";
|
|
138
|
+
this.$fault = "client";
|
|
139
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
140
|
+
this.Message = opts.Message;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
144
|
+
class EntityNotFoundException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
145
|
+
constructor(opts) {
|
|
146
|
+
super({
|
|
147
|
+
name: "EntityNotFoundException",
|
|
148
|
+
$fault: "client",
|
|
149
|
+
...opts,
|
|
150
|
+
});
|
|
151
|
+
this.name = "EntityNotFoundException";
|
|
152
|
+
this.$fault = "client";
|
|
153
|
+
Object.setPrototypeOf(this, EntityNotFoundException.prototype);
|
|
154
|
+
this.Message = opts.Message;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
exports.EntityNotFoundException = EntityNotFoundException;
|
|
158
|
+
class InternalServiceException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
159
|
+
constructor(opts) {
|
|
160
|
+
super({
|
|
161
|
+
name: "InternalServiceException",
|
|
162
|
+
$fault: "server",
|
|
163
|
+
...opts,
|
|
164
|
+
});
|
|
165
|
+
this.name = "InternalServiceException";
|
|
166
|
+
this.$fault = "server";
|
|
167
|
+
Object.setPrototypeOf(this, InternalServiceException.prototype);
|
|
168
|
+
this.Message = opts.Message;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
exports.InternalServiceException = InternalServiceException;
|
|
172
|
+
class InvalidInputException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
173
|
+
constructor(opts) {
|
|
174
|
+
super({
|
|
175
|
+
name: "InvalidInputException",
|
|
176
|
+
$fault: "client",
|
|
177
|
+
...opts,
|
|
178
|
+
});
|
|
179
|
+
this.name = "InvalidInputException";
|
|
180
|
+
this.$fault = "client";
|
|
181
|
+
Object.setPrototypeOf(this, InvalidInputException.prototype);
|
|
182
|
+
this.Message = opts.Message;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
exports.InvalidInputException = InvalidInputException;
|
|
186
|
+
class OperationTimeoutException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
187
|
+
constructor(opts) {
|
|
188
|
+
super({
|
|
189
|
+
name: "OperationTimeoutException",
|
|
190
|
+
$fault: "client",
|
|
191
|
+
...opts,
|
|
192
|
+
});
|
|
193
|
+
this.name = "OperationTimeoutException";
|
|
194
|
+
this.$fault = "client";
|
|
195
|
+
Object.setPrototypeOf(this, OperationTimeoutException.prototype);
|
|
196
|
+
this.Message = opts.Message;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
exports.OperationTimeoutException = OperationTimeoutException;
|
|
114
200
|
var AddObjectInput;
|
|
115
201
|
(function (AddObjectInput) {
|
|
116
202
|
AddObjectInput.filterSensitiveLog = (obj) => ({
|
|
@@ -123,6 +209,20 @@ var AllRowsWildcard;
|
|
|
123
209
|
...obj,
|
|
124
210
|
});
|
|
125
211
|
})(AllRowsWildcard = exports.AllRowsWildcard || (exports.AllRowsWildcard = {}));
|
|
212
|
+
class AlreadyExistsException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "AlreadyExistsException",
|
|
216
|
+
$fault: "client",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
this.name = "AlreadyExistsException";
|
|
220
|
+
this.$fault = "client";
|
|
221
|
+
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
222
|
+
this.Message = opts.Message;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
exports.AlreadyExistsException = AlreadyExistsException;
|
|
126
226
|
var AuditContext;
|
|
127
227
|
(function (AuditContext) {
|
|
128
228
|
AuditContext.filterSensitiveLog = (obj) => ({
|
|
@@ -201,6 +301,34 @@ var CancelTransactionResponse;
|
|
|
201
301
|
...obj,
|
|
202
302
|
});
|
|
203
303
|
})(CancelTransactionResponse = exports.CancelTransactionResponse || (exports.CancelTransactionResponse = {}));
|
|
304
|
+
class TransactionCommitInProgressException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
305
|
+
constructor(opts) {
|
|
306
|
+
super({
|
|
307
|
+
name: "TransactionCommitInProgressException",
|
|
308
|
+
$fault: "client",
|
|
309
|
+
...opts,
|
|
310
|
+
});
|
|
311
|
+
this.name = "TransactionCommitInProgressException";
|
|
312
|
+
this.$fault = "client";
|
|
313
|
+
Object.setPrototypeOf(this, TransactionCommitInProgressException.prototype);
|
|
314
|
+
this.Message = opts.Message;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
exports.TransactionCommitInProgressException = TransactionCommitInProgressException;
|
|
318
|
+
class TransactionCommittedException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
319
|
+
constructor(opts) {
|
|
320
|
+
super({
|
|
321
|
+
name: "TransactionCommittedException",
|
|
322
|
+
$fault: "client",
|
|
323
|
+
...opts,
|
|
324
|
+
});
|
|
325
|
+
this.name = "TransactionCommittedException";
|
|
326
|
+
this.$fault = "client";
|
|
327
|
+
Object.setPrototypeOf(this, TransactionCommittedException.prototype);
|
|
328
|
+
this.Message = opts.Message;
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
exports.TransactionCommittedException = TransactionCommittedException;
|
|
204
332
|
var CommitTransactionRequest;
|
|
205
333
|
(function (CommitTransactionRequest) {
|
|
206
334
|
CommitTransactionRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -220,6 +348,20 @@ var CommitTransactionResponse;
|
|
|
220
348
|
...obj,
|
|
221
349
|
});
|
|
222
350
|
})(CommitTransactionResponse = exports.CommitTransactionResponse || (exports.CommitTransactionResponse = {}));
|
|
351
|
+
class TransactionCanceledException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
352
|
+
constructor(opts) {
|
|
353
|
+
super({
|
|
354
|
+
name: "TransactionCanceledException",
|
|
355
|
+
$fault: "client",
|
|
356
|
+
...opts,
|
|
357
|
+
});
|
|
358
|
+
this.name = "TransactionCanceledException";
|
|
359
|
+
this.$fault = "client";
|
|
360
|
+
Object.setPrototypeOf(this, TransactionCanceledException.prototype);
|
|
361
|
+
this.Message = opts.Message;
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
exports.TransactionCanceledException = TransactionCanceledException;
|
|
223
365
|
var RowFilter;
|
|
224
366
|
(function (RowFilter) {
|
|
225
367
|
RowFilter.filterSensitiveLog = (obj) => ({
|
|
@@ -244,6 +386,20 @@ var CreateDataCellsFilterResponse;
|
|
|
244
386
|
...obj,
|
|
245
387
|
});
|
|
246
388
|
})(CreateDataCellsFilterResponse = exports.CreateDataCellsFilterResponse || (exports.CreateDataCellsFilterResponse = {}));
|
|
389
|
+
class ResourceNumberLimitExceededException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
390
|
+
constructor(opts) {
|
|
391
|
+
super({
|
|
392
|
+
name: "ResourceNumberLimitExceededException",
|
|
393
|
+
$fault: "client",
|
|
394
|
+
...opts,
|
|
395
|
+
});
|
|
396
|
+
this.name = "ResourceNumberLimitExceededException";
|
|
397
|
+
this.$fault = "client";
|
|
398
|
+
Object.setPrototypeOf(this, ResourceNumberLimitExceededException.prototype);
|
|
399
|
+
this.Message = opts.Message;
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
exports.ResourceNumberLimitExceededException = ResourceNumberLimitExceededException;
|
|
247
403
|
var CreateLFTagRequest;
|
|
248
404
|
(function (CreateLFTagRequest) {
|
|
249
405
|
CreateLFTagRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -298,6 +454,20 @@ var DeleteObjectsOnCancelResponse;
|
|
|
298
454
|
...obj,
|
|
299
455
|
});
|
|
300
456
|
})(DeleteObjectsOnCancelResponse = exports.DeleteObjectsOnCancelResponse || (exports.DeleteObjectsOnCancelResponse = {}));
|
|
457
|
+
class ResourceNotReadyException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
458
|
+
constructor(opts) {
|
|
459
|
+
super({
|
|
460
|
+
name: "ResourceNotReadyException",
|
|
461
|
+
$fault: "client",
|
|
462
|
+
...opts,
|
|
463
|
+
});
|
|
464
|
+
this.name = "ResourceNotReadyException";
|
|
465
|
+
this.$fault = "client";
|
|
466
|
+
Object.setPrototypeOf(this, ResourceNotReadyException.prototype);
|
|
467
|
+
this.Message = opts.Message;
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
exports.ResourceNotReadyException = ResourceNotReadyException;
|
|
301
471
|
var DeregisterResourceRequest;
|
|
302
472
|
(function (DeregisterResourceRequest) {
|
|
303
473
|
DeregisterResourceRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -438,6 +608,20 @@ var GetQueryStateResponse;
|
|
|
438
608
|
...obj,
|
|
439
609
|
});
|
|
440
610
|
})(GetQueryStateResponse = exports.GetQueryStateResponse || (exports.GetQueryStateResponse = {}));
|
|
611
|
+
class ExpiredException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
612
|
+
constructor(opts) {
|
|
613
|
+
super({
|
|
614
|
+
name: "ExpiredException",
|
|
615
|
+
$fault: "client",
|
|
616
|
+
...opts,
|
|
617
|
+
});
|
|
618
|
+
this.name = "ExpiredException";
|
|
619
|
+
this.$fault = "client";
|
|
620
|
+
Object.setPrototypeOf(this, ExpiredException.prototype);
|
|
621
|
+
this.Message = opts.Message;
|
|
622
|
+
}
|
|
623
|
+
}
|
|
624
|
+
exports.ExpiredException = ExpiredException;
|
|
441
625
|
var GetQueryStatisticsRequest;
|
|
442
626
|
(function (GetQueryStatisticsRequest) {
|
|
443
627
|
GetQueryStatisticsRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -462,6 +646,37 @@ var GetQueryStatisticsResponse;
|
|
|
462
646
|
...obj,
|
|
463
647
|
});
|
|
464
648
|
})(GetQueryStatisticsResponse = exports.GetQueryStatisticsResponse || (exports.GetQueryStatisticsResponse = {}));
|
|
649
|
+
class StatisticsNotReadyYetException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
650
|
+
constructor(opts) {
|
|
651
|
+
super({
|
|
652
|
+
name: "StatisticsNotReadyYetException",
|
|
653
|
+
$fault: "client",
|
|
654
|
+
...opts,
|
|
655
|
+
});
|
|
656
|
+
this.name = "StatisticsNotReadyYetException";
|
|
657
|
+
this.$fault = "client";
|
|
658
|
+
Object.setPrototypeOf(this, StatisticsNotReadyYetException.prototype);
|
|
659
|
+
this.Message = opts.Message;
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
exports.StatisticsNotReadyYetException = StatisticsNotReadyYetException;
|
|
663
|
+
class ThrottledException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
664
|
+
constructor(opts) {
|
|
665
|
+
super({
|
|
666
|
+
name: "ThrottledException",
|
|
667
|
+
$fault: "client",
|
|
668
|
+
...opts,
|
|
669
|
+
});
|
|
670
|
+
this.name = "ThrottledException";
|
|
671
|
+
this.$fault = "client";
|
|
672
|
+
this.$retryable = {
|
|
673
|
+
throttling: true,
|
|
674
|
+
};
|
|
675
|
+
Object.setPrototypeOf(this, ThrottledException.prototype);
|
|
676
|
+
this.Message = opts.Message;
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
exports.ThrottledException = ThrottledException;
|
|
465
680
|
var GetResourceLFTagsRequest;
|
|
466
681
|
(function (GetResourceLFTagsRequest) {
|
|
467
682
|
GetResourceLFTagsRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -480,6 +695,20 @@ var GetResourceLFTagsResponse;
|
|
|
480
695
|
...obj,
|
|
481
696
|
});
|
|
482
697
|
})(GetResourceLFTagsResponse = exports.GetResourceLFTagsResponse || (exports.GetResourceLFTagsResponse = {}));
|
|
698
|
+
class GlueEncryptionException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
699
|
+
constructor(opts) {
|
|
700
|
+
super({
|
|
701
|
+
name: "GlueEncryptionException",
|
|
702
|
+
$fault: "client",
|
|
703
|
+
...opts,
|
|
704
|
+
});
|
|
705
|
+
this.name = "GlueEncryptionException";
|
|
706
|
+
this.$fault = "client";
|
|
707
|
+
Object.setPrototypeOf(this, GlueEncryptionException.prototype);
|
|
708
|
+
this.Message = opts.Message;
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
exports.GlueEncryptionException = GlueEncryptionException;
|
|
483
712
|
var GetTableObjectsRequest;
|
|
484
713
|
(function (GetTableObjectsRequest) {
|
|
485
714
|
GetTableObjectsRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -527,6 +756,20 @@ var GetTemporaryGluePartitionCredentialsResponse;
|
|
|
527
756
|
...obj,
|
|
528
757
|
});
|
|
529
758
|
})(GetTemporaryGluePartitionCredentialsResponse = exports.GetTemporaryGluePartitionCredentialsResponse || (exports.GetTemporaryGluePartitionCredentialsResponse = {}));
|
|
759
|
+
class PermissionTypeMismatchException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
760
|
+
constructor(opts) {
|
|
761
|
+
super({
|
|
762
|
+
name: "PermissionTypeMismatchException",
|
|
763
|
+
$fault: "client",
|
|
764
|
+
...opts,
|
|
765
|
+
});
|
|
766
|
+
this.name = "PermissionTypeMismatchException";
|
|
767
|
+
this.$fault = "client";
|
|
768
|
+
Object.setPrototypeOf(this, PermissionTypeMismatchException.prototype);
|
|
769
|
+
this.Message = opts.Message;
|
|
770
|
+
}
|
|
771
|
+
}
|
|
772
|
+
exports.PermissionTypeMismatchException = PermissionTypeMismatchException;
|
|
530
773
|
var GetTemporaryGlueTableCredentialsRequest;
|
|
531
774
|
(function (GetTemporaryGlueTableCredentialsRequest) {
|
|
532
775
|
GetTemporaryGlueTableCredentialsRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -570,6 +813,20 @@ var GetWorkUnitsResponse;
|
|
|
570
813
|
...obj,
|
|
571
814
|
});
|
|
572
815
|
})(GetWorkUnitsResponse = exports.GetWorkUnitsResponse || (exports.GetWorkUnitsResponse = {}));
|
|
816
|
+
class WorkUnitsNotReadyYetException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
817
|
+
constructor(opts) {
|
|
818
|
+
super({
|
|
819
|
+
name: "WorkUnitsNotReadyYetException",
|
|
820
|
+
$fault: "client",
|
|
821
|
+
...opts,
|
|
822
|
+
});
|
|
823
|
+
this.name = "WorkUnitsNotReadyYetException";
|
|
824
|
+
this.$fault = "client";
|
|
825
|
+
Object.setPrototypeOf(this, WorkUnitsNotReadyYetException.prototype);
|
|
826
|
+
this.Message = opts.Message;
|
|
827
|
+
}
|
|
828
|
+
}
|
|
829
|
+
exports.WorkUnitsNotReadyYetException = WorkUnitsNotReadyYetException;
|
|
573
830
|
var GrantPermissionsRequest;
|
|
574
831
|
(function (GrantPermissionsRequest) {
|
|
575
832
|
GrantPermissionsRequest.filterSensitiveLog = (obj) => ({
|