@aws-sdk/client-bcm-data-exports 3.490.0 → 3.495.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/BCMDataExports.js +1 -35
- package/dist-cjs/BCMDataExportsClient.js +1 -43
- package/dist-cjs/commands/CreateExportCommand.js +1 -28
- package/dist-cjs/commands/DeleteExportCommand.js +1 -28
- package/dist-cjs/commands/GetExecutionCommand.js +1 -28
- package/dist-cjs/commands/GetExportCommand.js +1 -28
- package/dist-cjs/commands/GetTableCommand.js +1 -28
- package/dist-cjs/commands/ListExecutionsCommand.js +1 -28
- package/dist-cjs/commands/ListExportsCommand.js +1 -28
- package/dist-cjs/commands/ListTablesCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateExportCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -15
- package/dist-cjs/endpoint/EndpointParameters.js +1 -16
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +1326 -11
- package/dist-cjs/models/BCMDataExportsServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -126
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListExecutionsPaginator.js +1 -7
- package/dist-cjs/pagination/ListExportsPaginator.js +1 -7
- package/dist-cjs/pagination/ListTablesPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -7
- package/dist-cjs/protocols/Aws_json1_1.js +1 -775
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BCMDataExportsServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class BCMDataExportsServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, BCMDataExportsServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.BCMDataExportsServiceException = BCMDataExportsServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,126 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ExportStatusCode = exports.ExecutionStatusReason = exports.ExecutionStatusCode = exports.ResourceNotFoundException = exports.ValidationException = exports.ValidationExceptionReason = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.InternalServerException = exports.FrequencyOption = exports.OverwriteOption = exports.S3OutputType = exports.FormatOption = exports.CompressionOption = void 0;
|
|
4
|
-
const BCMDataExportsServiceException_1 = require("./BCMDataExportsServiceException");
|
|
5
|
-
exports.CompressionOption = {
|
|
6
|
-
GZIP: "GZIP",
|
|
7
|
-
PARQUET: "PARQUET",
|
|
8
|
-
};
|
|
9
|
-
exports.FormatOption = {
|
|
10
|
-
PARQUET: "PARQUET",
|
|
11
|
-
TEXT_OR_CSV: "TEXT_OR_CSV",
|
|
12
|
-
};
|
|
13
|
-
exports.S3OutputType = {
|
|
14
|
-
CUSTOM: "CUSTOM",
|
|
15
|
-
};
|
|
16
|
-
exports.OverwriteOption = {
|
|
17
|
-
CREATE_NEW_REPORT: "CREATE_NEW_REPORT",
|
|
18
|
-
OVERWRITE_REPORT: "OVERWRITE_REPORT",
|
|
19
|
-
};
|
|
20
|
-
exports.FrequencyOption = {
|
|
21
|
-
SYNCHRONOUS: "SYNCHRONOUS",
|
|
22
|
-
};
|
|
23
|
-
class InternalServerException extends BCMDataExportsServiceException_1.BCMDataExportsServiceException {
|
|
24
|
-
constructor(opts) {
|
|
25
|
-
super({
|
|
26
|
-
name: "InternalServerException",
|
|
27
|
-
$fault: "server",
|
|
28
|
-
...opts,
|
|
29
|
-
});
|
|
30
|
-
this.name = "InternalServerException";
|
|
31
|
-
this.$fault = "server";
|
|
32
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
33
|
-
this.Message = opts.Message;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
exports.InternalServerException = InternalServerException;
|
|
37
|
-
class ServiceQuotaExceededException extends BCMDataExportsServiceException_1.BCMDataExportsServiceException {
|
|
38
|
-
constructor(opts) {
|
|
39
|
-
super({
|
|
40
|
-
name: "ServiceQuotaExceededException",
|
|
41
|
-
$fault: "client",
|
|
42
|
-
...opts,
|
|
43
|
-
});
|
|
44
|
-
this.name = "ServiceQuotaExceededException";
|
|
45
|
-
this.$fault = "client";
|
|
46
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
47
|
-
this.Message = opts.Message;
|
|
48
|
-
this.ResourceId = opts.ResourceId;
|
|
49
|
-
this.ResourceType = opts.ResourceType;
|
|
50
|
-
this.QuotaCode = opts.QuotaCode;
|
|
51
|
-
this.ServiceCode = opts.ServiceCode;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
55
|
-
class ThrottlingException extends BCMDataExportsServiceException_1.BCMDataExportsServiceException {
|
|
56
|
-
constructor(opts) {
|
|
57
|
-
super({
|
|
58
|
-
name: "ThrottlingException",
|
|
59
|
-
$fault: "client",
|
|
60
|
-
...opts,
|
|
61
|
-
});
|
|
62
|
-
this.name = "ThrottlingException";
|
|
63
|
-
this.$fault = "client";
|
|
64
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
65
|
-
this.Message = opts.Message;
|
|
66
|
-
this.QuotaCode = opts.QuotaCode;
|
|
67
|
-
this.ServiceCode = opts.ServiceCode;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
exports.ThrottlingException = ThrottlingException;
|
|
71
|
-
exports.ValidationExceptionReason = {
|
|
72
|
-
CANNOT_PARSE: "cannotParse",
|
|
73
|
-
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
74
|
-
OTHER: "other",
|
|
75
|
-
UNKNOWN_OPERATION: "unknownOperation",
|
|
76
|
-
};
|
|
77
|
-
class ValidationException extends BCMDataExportsServiceException_1.BCMDataExportsServiceException {
|
|
78
|
-
constructor(opts) {
|
|
79
|
-
super({
|
|
80
|
-
name: "ValidationException",
|
|
81
|
-
$fault: "client",
|
|
82
|
-
...opts,
|
|
83
|
-
});
|
|
84
|
-
this.name = "ValidationException";
|
|
85
|
-
this.$fault = "client";
|
|
86
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
87
|
-
this.Message = opts.Message;
|
|
88
|
-
this.Reason = opts.Reason;
|
|
89
|
-
this.Fields = opts.Fields;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
exports.ValidationException = ValidationException;
|
|
93
|
-
class ResourceNotFoundException extends BCMDataExportsServiceException_1.BCMDataExportsServiceException {
|
|
94
|
-
constructor(opts) {
|
|
95
|
-
super({
|
|
96
|
-
name: "ResourceNotFoundException",
|
|
97
|
-
$fault: "client",
|
|
98
|
-
...opts,
|
|
99
|
-
});
|
|
100
|
-
this.name = "ResourceNotFoundException";
|
|
101
|
-
this.$fault = "client";
|
|
102
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
103
|
-
this.Message = opts.Message;
|
|
104
|
-
this.ResourceId = opts.ResourceId;
|
|
105
|
-
this.ResourceType = opts.ResourceType;
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
109
|
-
exports.ExecutionStatusCode = {
|
|
110
|
-
DELIVERY_FAILURE: "DELIVERY_FAILURE",
|
|
111
|
-
DELIVERY_IN_PROCESS: "DELIVERY_IN_PROCESS",
|
|
112
|
-
DELIVERY_SUCCESS: "DELIVERY_SUCCESS",
|
|
113
|
-
INITIATION_IN_PROCESS: "INITIATION_IN_PROCESS",
|
|
114
|
-
QUERY_FAILURE: "QUERY_FAILURE",
|
|
115
|
-
QUERY_IN_PROCESS: "QUERY_IN_PROCESS",
|
|
116
|
-
QUERY_QUEUED: "QUERY_QUEUED",
|
|
117
|
-
};
|
|
118
|
-
exports.ExecutionStatusReason = {
|
|
119
|
-
BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED",
|
|
120
|
-
INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION",
|
|
121
|
-
INTERNAL_FAILURE: "INTERNAL_FAILURE",
|
|
122
|
-
};
|
|
123
|
-
exports.ExportStatusCode = {
|
|
124
|
-
HEALTHY: "HEALTHY",
|
|
125
|
-
UNHEALTHY: "UNHEALTHY",
|
|
126
|
-
};
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListExecutions = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const BCMDataExportsClient_1 = require("../BCMDataExportsClient");
|
|
6
|
-
const ListExecutionsCommand_1 = require("../commands/ListExecutionsCommand");
|
|
7
|
-
exports.paginateListExecutions = (0, core_1.createPaginator)(BCMDataExportsClient_1.BCMDataExportsClient, ListExecutionsCommand_1.ListExecutionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListExports = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const BCMDataExportsClient_1 = require("../BCMDataExportsClient");
|
|
6
|
-
const ListExportsCommand_1 = require("../commands/ListExportsCommand");
|
|
7
|
-
exports.paginateListExports = (0, core_1.createPaginator)(BCMDataExportsClient_1.BCMDataExportsClient, ListExportsCommand_1.ListExportsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListTables = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const BCMDataExportsClient_1 = require("../BCMDataExportsClient");
|
|
6
|
-
const ListTablesCommand_1 = require("../commands/ListTablesCommand");
|
|
7
|
-
exports.paginateListTables = (0, core_1.createPaginator)(BCMDataExportsClient_1.BCMDataExportsClient, ListTablesCommand_1.ListTablesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./ListExecutionsPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListExportsPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./ListTablesPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|