@aws-sdk/client-dataexchange 3.50.0 → 3.53.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/DataExchangeServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +109 -2
- package/dist-cjs/protocols/Aws_restJson1.js +296 -1066
- package/dist-es/index.js +1 -0
- package/dist-es/models/DataExchangeServiceException.js +12 -0
- package/dist-es/models/models_0.js +100 -1
- package/dist-es/protocols/Aws_restJson1.js +615 -1165
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/DataExchangeServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- package/dist-types/ts3.4/DataExchange.d.ts +145 -0
- package/dist-types/ts3.4/DataExchangeClient.d.ts +101 -0
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEventActionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateRevisionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDataSetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEventActionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteRevisionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDataSetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEventActionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetRevisionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDataSetRevisionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEventActionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListRevisionAssetsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SendApiAssetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDataSetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEventActionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateRevisionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +28 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/DataExchangeServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1485 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDataSetRevisionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListDataSetsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListEventActionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListRevisionAssetsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +86 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var DataExchangeServiceException = (function (_super) {
|
|
4
|
+
__extends(DataExchangeServiceException, _super);
|
|
5
|
+
function DataExchangeServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, DataExchangeServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return DataExchangeServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { DataExchangeServiceException };
|
|
@@ -1,4 +1,18 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { DataExchangeServiceException as __BaseException } from "./DataExchangeServiceException";
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
_this.Message = opts.Message;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
return AccessDeniedException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { AccessDeniedException };
|
|
2
16
|
export var ServerSideEncryptionTypes;
|
|
3
17
|
(function (ServerSideEncryptionTypes) {
|
|
4
18
|
ServerSideEncryptionTypes["AES256"] = "AES256";
|
|
@@ -70,11 +84,81 @@ export var ResourceType;
|
|
|
70
84
|
ResourceType["JOB"] = "JOB";
|
|
71
85
|
ResourceType["REVISION"] = "REVISION";
|
|
72
86
|
})(ResourceType || (ResourceType = {}));
|
|
87
|
+
var ConflictException = (function (_super) {
|
|
88
|
+
__extends(ConflictException, _super);
|
|
89
|
+
function ConflictException(opts) {
|
|
90
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
91
|
+
_this.name = "ConflictException";
|
|
92
|
+
_this.$fault = "client";
|
|
93
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
94
|
+
_this.Message = opts.Message;
|
|
95
|
+
_this.ResourceId = opts.ResourceId;
|
|
96
|
+
_this.ResourceType = opts.ResourceType;
|
|
97
|
+
return _this;
|
|
98
|
+
}
|
|
99
|
+
return ConflictException;
|
|
100
|
+
}(__BaseException));
|
|
101
|
+
export { ConflictException };
|
|
102
|
+
var InternalServerException = (function (_super) {
|
|
103
|
+
__extends(InternalServerException, _super);
|
|
104
|
+
function InternalServerException(opts) {
|
|
105
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
106
|
+
_this.name = "InternalServerException";
|
|
107
|
+
_this.$fault = "server";
|
|
108
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
109
|
+
_this.Message = opts.Message;
|
|
110
|
+
return _this;
|
|
111
|
+
}
|
|
112
|
+
return InternalServerException;
|
|
113
|
+
}(__BaseException));
|
|
114
|
+
export { InternalServerException };
|
|
115
|
+
var ResourceNotFoundException = (function (_super) {
|
|
116
|
+
__extends(ResourceNotFoundException, _super);
|
|
117
|
+
function ResourceNotFoundException(opts) {
|
|
118
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
119
|
+
_this.name = "ResourceNotFoundException";
|
|
120
|
+
_this.$fault = "client";
|
|
121
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
122
|
+
_this.Message = opts.Message;
|
|
123
|
+
_this.ResourceId = opts.ResourceId;
|
|
124
|
+
_this.ResourceType = opts.ResourceType;
|
|
125
|
+
return _this;
|
|
126
|
+
}
|
|
127
|
+
return ResourceNotFoundException;
|
|
128
|
+
}(__BaseException));
|
|
129
|
+
export { ResourceNotFoundException };
|
|
130
|
+
var ThrottlingException = (function (_super) {
|
|
131
|
+
__extends(ThrottlingException, _super);
|
|
132
|
+
function ThrottlingException(opts) {
|
|
133
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
134
|
+
_this.name = "ThrottlingException";
|
|
135
|
+
_this.$fault = "client";
|
|
136
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
137
|
+
_this.Message = opts.Message;
|
|
138
|
+
return _this;
|
|
139
|
+
}
|
|
140
|
+
return ThrottlingException;
|
|
141
|
+
}(__BaseException));
|
|
142
|
+
export { ThrottlingException };
|
|
73
143
|
export var ExceptionCause;
|
|
74
144
|
(function (ExceptionCause) {
|
|
75
145
|
ExceptionCause["InsufficientS3BucketPolicy"] = "InsufficientS3BucketPolicy";
|
|
76
146
|
ExceptionCause["S3AccessDenied"] = "S3AccessDenied";
|
|
77
147
|
})(ExceptionCause || (ExceptionCause = {}));
|
|
148
|
+
var ValidationException = (function (_super) {
|
|
149
|
+
__extends(ValidationException, _super);
|
|
150
|
+
function ValidationException(opts) {
|
|
151
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
152
|
+
_this.name = "ValidationException";
|
|
153
|
+
_this.$fault = "client";
|
|
154
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
155
|
+
_this.Message = opts.Message;
|
|
156
|
+
_this.ExceptionCause = opts.ExceptionCause;
|
|
157
|
+
return _this;
|
|
158
|
+
}
|
|
159
|
+
return ValidationException;
|
|
160
|
+
}(__BaseException));
|
|
161
|
+
export { ValidationException };
|
|
78
162
|
export var Code;
|
|
79
163
|
(function (Code) {
|
|
80
164
|
Code["ACCESS_DENIED_EXCEPTION"] = "ACCESS_DENIED_EXCEPTION";
|
|
@@ -127,6 +211,21 @@ export var LimitName;
|
|
|
127
211
|
LimitName["Revisions_per_Amazon_Redshift_datashare_data_set"] = "Revisions per Amazon Redshift datashare data set";
|
|
128
212
|
LimitName["Revisions_per_data_set"] = "Revisions per data set";
|
|
129
213
|
})(LimitName || (LimitName = {}));
|
|
214
|
+
var ServiceLimitExceededException = (function (_super) {
|
|
215
|
+
__extends(ServiceLimitExceededException, _super);
|
|
216
|
+
function ServiceLimitExceededException(opts) {
|
|
217
|
+
var _this = _super.call(this, __assign({ name: "ServiceLimitExceededException", $fault: "client" }, opts)) || this;
|
|
218
|
+
_this.name = "ServiceLimitExceededException";
|
|
219
|
+
_this.$fault = "client";
|
|
220
|
+
Object.setPrototypeOf(_this, ServiceLimitExceededException.prototype);
|
|
221
|
+
_this.LimitName = opts.LimitName;
|
|
222
|
+
_this.LimitValue = opts.LimitValue;
|
|
223
|
+
_this.Message = opts.Message;
|
|
224
|
+
return _this;
|
|
225
|
+
}
|
|
226
|
+
return ServiceLimitExceededException;
|
|
227
|
+
}(__BaseException));
|
|
228
|
+
export { ServiceLimitExceededException };
|
|
130
229
|
export var RevisionPublished;
|
|
131
230
|
(function (RevisionPublished) {
|
|
132
231
|
RevisionPublished.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|