@aws-sdk/client-clouddirectory 3.52.0 → 3.54.1
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/CloudDirectoryServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +499 -5
- package/dist-cjs/protocols/Aws_restJson1.js +1098 -4425
- package/dist-es/index.js +1 -0
- package/dist-es/models/CloudDirectoryServiceException.js +12 -0
- package/dist-es/models/models_0.js +459 -1
- package/dist-es/protocols/Aws_restJson1.js +2141 -4726
- package/dist-types/CloudDirectoryClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CloudDirectoryServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +247 -106
- 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/CloudDirectoryClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CloudDirectoryServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +177 -106
- 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 +27 -27
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 CloudDirectoryServiceException = (function (_super) {
|
|
4
|
+
__extends(CloudDirectoryServiceException, _super);
|
|
5
|
+
function CloudDirectoryServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, CloudDirectoryServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return CloudDirectoryServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { CloudDirectoryServiceException };
|
|
@@ -1,4 +1,18 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { CloudDirectoryServiceException as __BaseException } from "./CloudDirectoryServiceException";
|
|
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 AttributeKey;
|
|
3
17
|
(function (AttributeKey) {
|
|
4
18
|
AttributeKey.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -56,6 +70,110 @@ export var AddFacetToObjectResponse;
|
|
|
56
70
|
(function (AddFacetToObjectResponse) {
|
|
57
71
|
AddFacetToObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
58
72
|
})(AddFacetToObjectResponse || (AddFacetToObjectResponse = {}));
|
|
73
|
+
var DirectoryNotEnabledException = (function (_super) {
|
|
74
|
+
__extends(DirectoryNotEnabledException, _super);
|
|
75
|
+
function DirectoryNotEnabledException(opts) {
|
|
76
|
+
var _this = _super.call(this, __assign({ name: "DirectoryNotEnabledException", $fault: "client" }, opts)) || this;
|
|
77
|
+
_this.name = "DirectoryNotEnabledException";
|
|
78
|
+
_this.$fault = "client";
|
|
79
|
+
Object.setPrototypeOf(_this, DirectoryNotEnabledException.prototype);
|
|
80
|
+
_this.Message = opts.Message;
|
|
81
|
+
return _this;
|
|
82
|
+
}
|
|
83
|
+
return DirectoryNotEnabledException;
|
|
84
|
+
}(__BaseException));
|
|
85
|
+
export { DirectoryNotEnabledException };
|
|
86
|
+
var FacetValidationException = (function (_super) {
|
|
87
|
+
__extends(FacetValidationException, _super);
|
|
88
|
+
function FacetValidationException(opts) {
|
|
89
|
+
var _this = _super.call(this, __assign({ name: "FacetValidationException", $fault: "client" }, opts)) || this;
|
|
90
|
+
_this.name = "FacetValidationException";
|
|
91
|
+
_this.$fault = "client";
|
|
92
|
+
Object.setPrototypeOf(_this, FacetValidationException.prototype);
|
|
93
|
+
_this.Message = opts.Message;
|
|
94
|
+
return _this;
|
|
95
|
+
}
|
|
96
|
+
return FacetValidationException;
|
|
97
|
+
}(__BaseException));
|
|
98
|
+
export { FacetValidationException };
|
|
99
|
+
var InternalServiceException = (function (_super) {
|
|
100
|
+
__extends(InternalServiceException, _super);
|
|
101
|
+
function InternalServiceException(opts) {
|
|
102
|
+
var _this = _super.call(this, __assign({ name: "InternalServiceException", $fault: "server" }, opts)) || this;
|
|
103
|
+
_this.name = "InternalServiceException";
|
|
104
|
+
_this.$fault = "server";
|
|
105
|
+
Object.setPrototypeOf(_this, InternalServiceException.prototype);
|
|
106
|
+
_this.Message = opts.Message;
|
|
107
|
+
return _this;
|
|
108
|
+
}
|
|
109
|
+
return InternalServiceException;
|
|
110
|
+
}(__BaseException));
|
|
111
|
+
export { InternalServiceException };
|
|
112
|
+
var InvalidArnException = (function (_super) {
|
|
113
|
+
__extends(InvalidArnException, _super);
|
|
114
|
+
function InvalidArnException(opts) {
|
|
115
|
+
var _this = _super.call(this, __assign({ name: "InvalidArnException", $fault: "client" }, opts)) || this;
|
|
116
|
+
_this.name = "InvalidArnException";
|
|
117
|
+
_this.$fault = "client";
|
|
118
|
+
Object.setPrototypeOf(_this, InvalidArnException.prototype);
|
|
119
|
+
_this.Message = opts.Message;
|
|
120
|
+
return _this;
|
|
121
|
+
}
|
|
122
|
+
return InvalidArnException;
|
|
123
|
+
}(__BaseException));
|
|
124
|
+
export { InvalidArnException };
|
|
125
|
+
var LimitExceededException = (function (_super) {
|
|
126
|
+
__extends(LimitExceededException, _super);
|
|
127
|
+
function LimitExceededException(opts) {
|
|
128
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
129
|
+
_this.name = "LimitExceededException";
|
|
130
|
+
_this.$fault = "client";
|
|
131
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
132
|
+
_this.Message = opts.Message;
|
|
133
|
+
return _this;
|
|
134
|
+
}
|
|
135
|
+
return LimitExceededException;
|
|
136
|
+
}(__BaseException));
|
|
137
|
+
export { LimitExceededException };
|
|
138
|
+
var ResourceNotFoundException = (function (_super) {
|
|
139
|
+
__extends(ResourceNotFoundException, _super);
|
|
140
|
+
function ResourceNotFoundException(opts) {
|
|
141
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
142
|
+
_this.name = "ResourceNotFoundException";
|
|
143
|
+
_this.$fault = "client";
|
|
144
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
145
|
+
_this.Message = opts.Message;
|
|
146
|
+
return _this;
|
|
147
|
+
}
|
|
148
|
+
return ResourceNotFoundException;
|
|
149
|
+
}(__BaseException));
|
|
150
|
+
export { ResourceNotFoundException };
|
|
151
|
+
var RetryableConflictException = (function (_super) {
|
|
152
|
+
__extends(RetryableConflictException, _super);
|
|
153
|
+
function RetryableConflictException(opts) {
|
|
154
|
+
var _this = _super.call(this, __assign({ name: "RetryableConflictException", $fault: "client" }, opts)) || this;
|
|
155
|
+
_this.name = "RetryableConflictException";
|
|
156
|
+
_this.$fault = "client";
|
|
157
|
+
Object.setPrototypeOf(_this, RetryableConflictException.prototype);
|
|
158
|
+
_this.Message = opts.Message;
|
|
159
|
+
return _this;
|
|
160
|
+
}
|
|
161
|
+
return RetryableConflictException;
|
|
162
|
+
}(__BaseException));
|
|
163
|
+
export { RetryableConflictException };
|
|
164
|
+
var ValidationException = (function (_super) {
|
|
165
|
+
__extends(ValidationException, _super);
|
|
166
|
+
function ValidationException(opts) {
|
|
167
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
168
|
+
_this.name = "ValidationException";
|
|
169
|
+
_this.$fault = "client";
|
|
170
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
171
|
+
_this.Message = opts.Message;
|
|
172
|
+
return _this;
|
|
173
|
+
}
|
|
174
|
+
return ValidationException;
|
|
175
|
+
}(__BaseException));
|
|
176
|
+
export { ValidationException };
|
|
59
177
|
export var ApplySchemaRequest;
|
|
60
178
|
(function (ApplySchemaRequest) {
|
|
61
179
|
ApplySchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -64,6 +182,32 @@ export var ApplySchemaResponse;
|
|
|
64
182
|
(function (ApplySchemaResponse) {
|
|
65
183
|
ApplySchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
66
184
|
})(ApplySchemaResponse || (ApplySchemaResponse = {}));
|
|
185
|
+
var InvalidAttachmentException = (function (_super) {
|
|
186
|
+
__extends(InvalidAttachmentException, _super);
|
|
187
|
+
function InvalidAttachmentException(opts) {
|
|
188
|
+
var _this = _super.call(this, __assign({ name: "InvalidAttachmentException", $fault: "client" }, opts)) || this;
|
|
189
|
+
_this.name = "InvalidAttachmentException";
|
|
190
|
+
_this.$fault = "client";
|
|
191
|
+
Object.setPrototypeOf(_this, InvalidAttachmentException.prototype);
|
|
192
|
+
_this.Message = opts.Message;
|
|
193
|
+
return _this;
|
|
194
|
+
}
|
|
195
|
+
return InvalidAttachmentException;
|
|
196
|
+
}(__BaseException));
|
|
197
|
+
export { InvalidAttachmentException };
|
|
198
|
+
var SchemaAlreadyExistsException = (function (_super) {
|
|
199
|
+
__extends(SchemaAlreadyExistsException, _super);
|
|
200
|
+
function SchemaAlreadyExistsException(opts) {
|
|
201
|
+
var _this = _super.call(this, __assign({ name: "SchemaAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
202
|
+
_this.name = "SchemaAlreadyExistsException";
|
|
203
|
+
_this.$fault = "client";
|
|
204
|
+
Object.setPrototypeOf(_this, SchemaAlreadyExistsException.prototype);
|
|
205
|
+
_this.Message = opts.Message;
|
|
206
|
+
return _this;
|
|
207
|
+
}
|
|
208
|
+
return SchemaAlreadyExistsException;
|
|
209
|
+
}(__BaseException));
|
|
210
|
+
export { SchemaAlreadyExistsException };
|
|
67
211
|
export var AttachObjectRequest;
|
|
68
212
|
(function (AttachObjectRequest) {
|
|
69
213
|
AttachObjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -72,6 +216,19 @@ export var AttachObjectResponse;
|
|
|
72
216
|
(function (AttachObjectResponse) {
|
|
73
217
|
AttachObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
74
218
|
})(AttachObjectResponse || (AttachObjectResponse = {}));
|
|
219
|
+
var LinkNameAlreadyInUseException = (function (_super) {
|
|
220
|
+
__extends(LinkNameAlreadyInUseException, _super);
|
|
221
|
+
function LinkNameAlreadyInUseException(opts) {
|
|
222
|
+
var _this = _super.call(this, __assign({ name: "LinkNameAlreadyInUseException", $fault: "client" }, opts)) || this;
|
|
223
|
+
_this.name = "LinkNameAlreadyInUseException";
|
|
224
|
+
_this.$fault = "client";
|
|
225
|
+
Object.setPrototypeOf(_this, LinkNameAlreadyInUseException.prototype);
|
|
226
|
+
_this.Message = opts.Message;
|
|
227
|
+
return _this;
|
|
228
|
+
}
|
|
229
|
+
return LinkNameAlreadyInUseException;
|
|
230
|
+
}(__BaseException));
|
|
231
|
+
export { LinkNameAlreadyInUseException };
|
|
75
232
|
export var AttachPolicyRequest;
|
|
76
233
|
(function (AttachPolicyRequest) {
|
|
77
234
|
AttachPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -80,6 +237,19 @@ export var AttachPolicyResponse;
|
|
|
80
237
|
(function (AttachPolicyResponse) {
|
|
81
238
|
AttachPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
82
239
|
})(AttachPolicyResponse || (AttachPolicyResponse = {}));
|
|
240
|
+
var NotPolicyException = (function (_super) {
|
|
241
|
+
__extends(NotPolicyException, _super);
|
|
242
|
+
function NotPolicyException(opts) {
|
|
243
|
+
var _this = _super.call(this, __assign({ name: "NotPolicyException", $fault: "client" }, opts)) || this;
|
|
244
|
+
_this.name = "NotPolicyException";
|
|
245
|
+
_this.$fault = "client";
|
|
246
|
+
Object.setPrototypeOf(_this, NotPolicyException.prototype);
|
|
247
|
+
_this.Message = opts.Message;
|
|
248
|
+
return _this;
|
|
249
|
+
}
|
|
250
|
+
return NotPolicyException;
|
|
251
|
+
}(__BaseException));
|
|
252
|
+
export { NotPolicyException };
|
|
83
253
|
export var AttachToIndexRequest;
|
|
84
254
|
(function (AttachToIndexRequest) {
|
|
85
255
|
AttachToIndexRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -88,6 +258,32 @@ export var AttachToIndexResponse;
|
|
|
88
258
|
(function (AttachToIndexResponse) {
|
|
89
259
|
AttachToIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
90
260
|
})(AttachToIndexResponse || (AttachToIndexResponse = {}));
|
|
261
|
+
var IndexedAttributeMissingException = (function (_super) {
|
|
262
|
+
__extends(IndexedAttributeMissingException, _super);
|
|
263
|
+
function IndexedAttributeMissingException(opts) {
|
|
264
|
+
var _this = _super.call(this, __assign({ name: "IndexedAttributeMissingException", $fault: "client" }, opts)) || this;
|
|
265
|
+
_this.name = "IndexedAttributeMissingException";
|
|
266
|
+
_this.$fault = "client";
|
|
267
|
+
Object.setPrototypeOf(_this, IndexedAttributeMissingException.prototype);
|
|
268
|
+
_this.Message = opts.Message;
|
|
269
|
+
return _this;
|
|
270
|
+
}
|
|
271
|
+
return IndexedAttributeMissingException;
|
|
272
|
+
}(__BaseException));
|
|
273
|
+
export { IndexedAttributeMissingException };
|
|
274
|
+
var NotIndexException = (function (_super) {
|
|
275
|
+
__extends(NotIndexException, _super);
|
|
276
|
+
function NotIndexException(opts) {
|
|
277
|
+
var _this = _super.call(this, __assign({ name: "NotIndexException", $fault: "client" }, opts)) || this;
|
|
278
|
+
_this.name = "NotIndexException";
|
|
279
|
+
_this.$fault = "client";
|
|
280
|
+
Object.setPrototypeOf(_this, NotIndexException.prototype);
|
|
281
|
+
_this.Message = opts.Message;
|
|
282
|
+
return _this;
|
|
283
|
+
}
|
|
284
|
+
return NotIndexException;
|
|
285
|
+
}(__BaseException));
|
|
286
|
+
export { NotIndexException };
|
|
91
287
|
export var AttributeNameAndValue;
|
|
92
288
|
(function (AttributeNameAndValue) {
|
|
93
289
|
AttributeNameAndValue.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Value && { Value: TypedAttributeValue.filterSensitiveLog(obj.Value) }))); };
|
|
@@ -356,6 +552,21 @@ export var BatchWriteExceptionType;
|
|
|
356
552
|
BatchWriteExceptionType["UnsupportedIndexTypeException"] = "UnsupportedIndexTypeException";
|
|
357
553
|
BatchWriteExceptionType["ValidationException"] = "ValidationException";
|
|
358
554
|
})(BatchWriteExceptionType || (BatchWriteExceptionType = {}));
|
|
555
|
+
var BatchWriteException = (function (_super) {
|
|
556
|
+
__extends(BatchWriteException, _super);
|
|
557
|
+
function BatchWriteException(opts) {
|
|
558
|
+
var _this = _super.call(this, __assign({ name: "BatchWriteException", $fault: "client" }, opts)) || this;
|
|
559
|
+
_this.name = "BatchWriteException";
|
|
560
|
+
_this.$fault = "client";
|
|
561
|
+
Object.setPrototypeOf(_this, BatchWriteException.prototype);
|
|
562
|
+
_this.Index = opts.Index;
|
|
563
|
+
_this.Type = opts.Type;
|
|
564
|
+
_this.Message = opts.Message;
|
|
565
|
+
return _this;
|
|
566
|
+
}
|
|
567
|
+
return BatchWriteException;
|
|
568
|
+
}(__BaseException));
|
|
569
|
+
export { BatchWriteException };
|
|
359
570
|
export var BatchAddFacetToObject;
|
|
360
571
|
(function (BatchAddFacetToObject) {
|
|
361
572
|
BatchAddFacetToObject.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeList && {
|
|
@@ -547,6 +758,19 @@ export var CreateDirectoryResponse;
|
|
|
547
758
|
(function (CreateDirectoryResponse) {
|
|
548
759
|
CreateDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
549
760
|
})(CreateDirectoryResponse || (CreateDirectoryResponse = {}));
|
|
761
|
+
var DirectoryAlreadyExistsException = (function (_super) {
|
|
762
|
+
__extends(DirectoryAlreadyExistsException, _super);
|
|
763
|
+
function DirectoryAlreadyExistsException(opts) {
|
|
764
|
+
var _this = _super.call(this, __assign({ name: "DirectoryAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
765
|
+
_this.name = "DirectoryAlreadyExistsException";
|
|
766
|
+
_this.$fault = "client";
|
|
767
|
+
Object.setPrototypeOf(_this, DirectoryAlreadyExistsException.prototype);
|
|
768
|
+
_this.Message = opts.Message;
|
|
769
|
+
return _this;
|
|
770
|
+
}
|
|
771
|
+
return DirectoryAlreadyExistsException;
|
|
772
|
+
}(__BaseException));
|
|
773
|
+
export { DirectoryAlreadyExistsException };
|
|
550
774
|
export var RuleType;
|
|
551
775
|
(function (RuleType) {
|
|
552
776
|
RuleType["BINARY_LENGTH"] = "BINARY_LENGTH";
|
|
@@ -606,6 +830,32 @@ export var CreateFacetResponse;
|
|
|
606
830
|
(function (CreateFacetResponse) {
|
|
607
831
|
CreateFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
608
832
|
})(CreateFacetResponse || (CreateFacetResponse = {}));
|
|
833
|
+
var FacetAlreadyExistsException = (function (_super) {
|
|
834
|
+
__extends(FacetAlreadyExistsException, _super);
|
|
835
|
+
function FacetAlreadyExistsException(opts) {
|
|
836
|
+
var _this = _super.call(this, __assign({ name: "FacetAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
837
|
+
_this.name = "FacetAlreadyExistsException";
|
|
838
|
+
_this.$fault = "client";
|
|
839
|
+
Object.setPrototypeOf(_this, FacetAlreadyExistsException.prototype);
|
|
840
|
+
_this.Message = opts.Message;
|
|
841
|
+
return _this;
|
|
842
|
+
}
|
|
843
|
+
return FacetAlreadyExistsException;
|
|
844
|
+
}(__BaseException));
|
|
845
|
+
export { FacetAlreadyExistsException };
|
|
846
|
+
var InvalidRuleException = (function (_super) {
|
|
847
|
+
__extends(InvalidRuleException, _super);
|
|
848
|
+
function InvalidRuleException(opts) {
|
|
849
|
+
var _this = _super.call(this, __assign({ name: "InvalidRuleException", $fault: "client" }, opts)) || this;
|
|
850
|
+
_this.name = "InvalidRuleException";
|
|
851
|
+
_this.$fault = "client";
|
|
852
|
+
Object.setPrototypeOf(_this, InvalidRuleException.prototype);
|
|
853
|
+
_this.Message = opts.Message;
|
|
854
|
+
return _this;
|
|
855
|
+
}
|
|
856
|
+
return InvalidRuleException;
|
|
857
|
+
}(__BaseException));
|
|
858
|
+
export { InvalidRuleException };
|
|
609
859
|
export var CreateIndexRequest;
|
|
610
860
|
(function (CreateIndexRequest) {
|
|
611
861
|
CreateIndexRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -614,6 +864,19 @@ export var CreateIndexResponse;
|
|
|
614
864
|
(function (CreateIndexResponse) {
|
|
615
865
|
CreateIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
616
866
|
})(CreateIndexResponse || (CreateIndexResponse = {}));
|
|
867
|
+
var UnsupportedIndexTypeException = (function (_super) {
|
|
868
|
+
__extends(UnsupportedIndexTypeException, _super);
|
|
869
|
+
function UnsupportedIndexTypeException(opts) {
|
|
870
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedIndexTypeException", $fault: "client" }, opts)) || this;
|
|
871
|
+
_this.name = "UnsupportedIndexTypeException";
|
|
872
|
+
_this.$fault = "client";
|
|
873
|
+
Object.setPrototypeOf(_this, UnsupportedIndexTypeException.prototype);
|
|
874
|
+
_this.Message = opts.Message;
|
|
875
|
+
return _this;
|
|
876
|
+
}
|
|
877
|
+
return UnsupportedIndexTypeException;
|
|
878
|
+
}(__BaseException));
|
|
879
|
+
export { UnsupportedIndexTypeException };
|
|
617
880
|
export var CreateObjectRequest;
|
|
618
881
|
(function (CreateObjectRequest) {
|
|
619
882
|
CreateObjectRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeList && {
|
|
@@ -658,6 +921,32 @@ export var DeleteDirectoryResponse;
|
|
|
658
921
|
(function (DeleteDirectoryResponse) {
|
|
659
922
|
DeleteDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
660
923
|
})(DeleteDirectoryResponse || (DeleteDirectoryResponse = {}));
|
|
924
|
+
var DirectoryDeletedException = (function (_super) {
|
|
925
|
+
__extends(DirectoryDeletedException, _super);
|
|
926
|
+
function DirectoryDeletedException(opts) {
|
|
927
|
+
var _this = _super.call(this, __assign({ name: "DirectoryDeletedException", $fault: "client" }, opts)) || this;
|
|
928
|
+
_this.name = "DirectoryDeletedException";
|
|
929
|
+
_this.$fault = "client";
|
|
930
|
+
Object.setPrototypeOf(_this, DirectoryDeletedException.prototype);
|
|
931
|
+
_this.Message = opts.Message;
|
|
932
|
+
return _this;
|
|
933
|
+
}
|
|
934
|
+
return DirectoryDeletedException;
|
|
935
|
+
}(__BaseException));
|
|
936
|
+
export { DirectoryDeletedException };
|
|
937
|
+
var DirectoryNotDisabledException = (function (_super) {
|
|
938
|
+
__extends(DirectoryNotDisabledException, _super);
|
|
939
|
+
function DirectoryNotDisabledException(opts) {
|
|
940
|
+
var _this = _super.call(this, __assign({ name: "DirectoryNotDisabledException", $fault: "client" }, opts)) || this;
|
|
941
|
+
_this.name = "DirectoryNotDisabledException";
|
|
942
|
+
_this.$fault = "client";
|
|
943
|
+
Object.setPrototypeOf(_this, DirectoryNotDisabledException.prototype);
|
|
944
|
+
_this.Message = opts.Message;
|
|
945
|
+
return _this;
|
|
946
|
+
}
|
|
947
|
+
return DirectoryNotDisabledException;
|
|
948
|
+
}(__BaseException));
|
|
949
|
+
export { DirectoryNotDisabledException };
|
|
661
950
|
export var DeleteFacetRequest;
|
|
662
951
|
(function (DeleteFacetRequest) {
|
|
663
952
|
DeleteFacetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -666,6 +955,32 @@ export var DeleteFacetResponse;
|
|
|
666
955
|
(function (DeleteFacetResponse) {
|
|
667
956
|
DeleteFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
668
957
|
})(DeleteFacetResponse || (DeleteFacetResponse = {}));
|
|
958
|
+
var FacetInUseException = (function (_super) {
|
|
959
|
+
__extends(FacetInUseException, _super);
|
|
960
|
+
function FacetInUseException(opts) {
|
|
961
|
+
var _this = _super.call(this, __assign({ name: "FacetInUseException", $fault: "client" }, opts)) || this;
|
|
962
|
+
_this.name = "FacetInUseException";
|
|
963
|
+
_this.$fault = "client";
|
|
964
|
+
Object.setPrototypeOf(_this, FacetInUseException.prototype);
|
|
965
|
+
_this.Message = opts.Message;
|
|
966
|
+
return _this;
|
|
967
|
+
}
|
|
968
|
+
return FacetInUseException;
|
|
969
|
+
}(__BaseException));
|
|
970
|
+
export { FacetInUseException };
|
|
971
|
+
var FacetNotFoundException = (function (_super) {
|
|
972
|
+
__extends(FacetNotFoundException, _super);
|
|
973
|
+
function FacetNotFoundException(opts) {
|
|
974
|
+
var _this = _super.call(this, __assign({ name: "FacetNotFoundException", $fault: "client" }, opts)) || this;
|
|
975
|
+
_this.name = "FacetNotFoundException";
|
|
976
|
+
_this.$fault = "client";
|
|
977
|
+
Object.setPrototypeOf(_this, FacetNotFoundException.prototype);
|
|
978
|
+
_this.Message = opts.Message;
|
|
979
|
+
return _this;
|
|
980
|
+
}
|
|
981
|
+
return FacetNotFoundException;
|
|
982
|
+
}(__BaseException));
|
|
983
|
+
export { FacetNotFoundException };
|
|
669
984
|
export var DeleteObjectRequest;
|
|
670
985
|
(function (DeleteObjectRequest) {
|
|
671
986
|
DeleteObjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -674,6 +989,19 @@ export var DeleteObjectResponse;
|
|
|
674
989
|
(function (DeleteObjectResponse) {
|
|
675
990
|
DeleteObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
676
991
|
})(DeleteObjectResponse || (DeleteObjectResponse = {}));
|
|
992
|
+
var ObjectNotDetachedException = (function (_super) {
|
|
993
|
+
__extends(ObjectNotDetachedException, _super);
|
|
994
|
+
function ObjectNotDetachedException(opts) {
|
|
995
|
+
var _this = _super.call(this, __assign({ name: "ObjectNotDetachedException", $fault: "client" }, opts)) || this;
|
|
996
|
+
_this.name = "ObjectNotDetachedException";
|
|
997
|
+
_this.$fault = "client";
|
|
998
|
+
Object.setPrototypeOf(_this, ObjectNotDetachedException.prototype);
|
|
999
|
+
_this.Message = opts.Message;
|
|
1000
|
+
return _this;
|
|
1001
|
+
}
|
|
1002
|
+
return ObjectNotDetachedException;
|
|
1003
|
+
}(__BaseException));
|
|
1004
|
+
export { ObjectNotDetachedException };
|
|
677
1005
|
export var DeleteSchemaRequest;
|
|
678
1006
|
(function (DeleteSchemaRequest) {
|
|
679
1007
|
DeleteSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -682,6 +1010,19 @@ export var DeleteSchemaResponse;
|
|
|
682
1010
|
(function (DeleteSchemaResponse) {
|
|
683
1011
|
DeleteSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
684
1012
|
})(DeleteSchemaResponse || (DeleteSchemaResponse = {}));
|
|
1013
|
+
var StillContainsLinksException = (function (_super) {
|
|
1014
|
+
__extends(StillContainsLinksException, _super);
|
|
1015
|
+
function StillContainsLinksException(opts) {
|
|
1016
|
+
var _this = _super.call(this, __assign({ name: "StillContainsLinksException", $fault: "client" }, opts)) || this;
|
|
1017
|
+
_this.name = "StillContainsLinksException";
|
|
1018
|
+
_this.$fault = "client";
|
|
1019
|
+
Object.setPrototypeOf(_this, StillContainsLinksException.prototype);
|
|
1020
|
+
_this.Message = opts.Message;
|
|
1021
|
+
return _this;
|
|
1022
|
+
}
|
|
1023
|
+
return StillContainsLinksException;
|
|
1024
|
+
}(__BaseException));
|
|
1025
|
+
export { StillContainsLinksException };
|
|
685
1026
|
export var DeleteTypedLinkFacetRequest;
|
|
686
1027
|
(function (DeleteTypedLinkFacetRequest) {
|
|
687
1028
|
DeleteTypedLinkFacetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -698,6 +1039,19 @@ export var DetachFromIndexResponse;
|
|
|
698
1039
|
(function (DetachFromIndexResponse) {
|
|
699
1040
|
DetachFromIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
700
1041
|
})(DetachFromIndexResponse || (DetachFromIndexResponse = {}));
|
|
1042
|
+
var ObjectAlreadyDetachedException = (function (_super) {
|
|
1043
|
+
__extends(ObjectAlreadyDetachedException, _super);
|
|
1044
|
+
function ObjectAlreadyDetachedException(opts) {
|
|
1045
|
+
var _this = _super.call(this, __assign({ name: "ObjectAlreadyDetachedException", $fault: "client" }, opts)) || this;
|
|
1046
|
+
_this.name = "ObjectAlreadyDetachedException";
|
|
1047
|
+
_this.$fault = "client";
|
|
1048
|
+
Object.setPrototypeOf(_this, ObjectAlreadyDetachedException.prototype);
|
|
1049
|
+
_this.Message = opts.Message;
|
|
1050
|
+
return _this;
|
|
1051
|
+
}
|
|
1052
|
+
return ObjectAlreadyDetachedException;
|
|
1053
|
+
}(__BaseException));
|
|
1054
|
+
export { ObjectAlreadyDetachedException };
|
|
701
1055
|
export var DetachObjectRequest;
|
|
702
1056
|
(function (DetachObjectRequest) {
|
|
703
1057
|
DetachObjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -706,6 +1060,19 @@ export var DetachObjectResponse;
|
|
|
706
1060
|
(function (DetachObjectResponse) {
|
|
707
1061
|
DetachObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
708
1062
|
})(DetachObjectResponse || (DetachObjectResponse = {}));
|
|
1063
|
+
var NotNodeException = (function (_super) {
|
|
1064
|
+
__extends(NotNodeException, _super);
|
|
1065
|
+
function NotNodeException(opts) {
|
|
1066
|
+
var _this = _super.call(this, __assign({ name: "NotNodeException", $fault: "client" }, opts)) || this;
|
|
1067
|
+
_this.name = "NotNodeException";
|
|
1068
|
+
_this.$fault = "client";
|
|
1069
|
+
Object.setPrototypeOf(_this, NotNodeException.prototype);
|
|
1070
|
+
_this.Message = opts.Message;
|
|
1071
|
+
return _this;
|
|
1072
|
+
}
|
|
1073
|
+
return NotNodeException;
|
|
1074
|
+
}(__BaseException));
|
|
1075
|
+
export { NotNodeException };
|
|
709
1076
|
export var DetachPolicyRequest;
|
|
710
1077
|
(function (DetachPolicyRequest) {
|
|
711
1078
|
DetachPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -816,6 +1183,19 @@ export var GetTypedLinkFacetInformationResponse;
|
|
|
816
1183
|
(function (GetTypedLinkFacetInformationResponse) {
|
|
817
1184
|
GetTypedLinkFacetInformationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
818
1185
|
})(GetTypedLinkFacetInformationResponse || (GetTypedLinkFacetInformationResponse = {}));
|
|
1186
|
+
var InvalidNextTokenException = (function (_super) {
|
|
1187
|
+
__extends(InvalidNextTokenException, _super);
|
|
1188
|
+
function InvalidNextTokenException(opts) {
|
|
1189
|
+
var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
|
|
1190
|
+
_this.name = "InvalidNextTokenException";
|
|
1191
|
+
_this.$fault = "client";
|
|
1192
|
+
Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
|
|
1193
|
+
_this.Message = opts.Message;
|
|
1194
|
+
return _this;
|
|
1195
|
+
}
|
|
1196
|
+
return InvalidNextTokenException;
|
|
1197
|
+
}(__BaseException));
|
|
1198
|
+
export { InvalidNextTokenException };
|
|
819
1199
|
export var ListAppliedSchemaArnsRequest;
|
|
820
1200
|
(function (ListAppliedSchemaArnsRequest) {
|
|
821
1201
|
ListAppliedSchemaArnsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -916,6 +1296,19 @@ export var ListObjectParentPathsResponse;
|
|
|
916
1296
|
(function (ListObjectParentPathsResponse) {
|
|
917
1297
|
ListObjectParentPathsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
918
1298
|
})(ListObjectParentPathsResponse || (ListObjectParentPathsResponse = {}));
|
|
1299
|
+
var CannotListParentOfRootException = (function (_super) {
|
|
1300
|
+
__extends(CannotListParentOfRootException, _super);
|
|
1301
|
+
function CannotListParentOfRootException(opts) {
|
|
1302
|
+
var _this = _super.call(this, __assign({ name: "CannotListParentOfRootException", $fault: "client" }, opts)) || this;
|
|
1303
|
+
_this.name = "CannotListParentOfRootException";
|
|
1304
|
+
_this.$fault = "client";
|
|
1305
|
+
Object.setPrototypeOf(_this, CannotListParentOfRootException.prototype);
|
|
1306
|
+
_this.Message = opts.Message;
|
|
1307
|
+
return _this;
|
|
1308
|
+
}
|
|
1309
|
+
return CannotListParentOfRootException;
|
|
1310
|
+
}(__BaseException));
|
|
1311
|
+
export { CannotListParentOfRootException };
|
|
919
1312
|
export var ListObjectParentsRequest;
|
|
920
1313
|
(function (ListObjectParentsRequest) {
|
|
921
1314
|
ListObjectParentsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -958,6 +1351,19 @@ export var ListPublishedSchemaArnsResponse;
|
|
|
958
1351
|
(function (ListPublishedSchemaArnsResponse) {
|
|
959
1352
|
ListPublishedSchemaArnsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
960
1353
|
})(ListPublishedSchemaArnsResponse || (ListPublishedSchemaArnsResponse = {}));
|
|
1354
|
+
var InvalidTaggingRequestException = (function (_super) {
|
|
1355
|
+
__extends(InvalidTaggingRequestException, _super);
|
|
1356
|
+
function InvalidTaggingRequestException(opts) {
|
|
1357
|
+
var _this = _super.call(this, __assign({ name: "InvalidTaggingRequestException", $fault: "client" }, opts)) || this;
|
|
1358
|
+
_this.name = "InvalidTaggingRequestException";
|
|
1359
|
+
_this.$fault = "client";
|
|
1360
|
+
Object.setPrototypeOf(_this, InvalidTaggingRequestException.prototype);
|
|
1361
|
+
_this.Message = opts.Message;
|
|
1362
|
+
return _this;
|
|
1363
|
+
}
|
|
1364
|
+
return InvalidTaggingRequestException;
|
|
1365
|
+
}(__BaseException));
|
|
1366
|
+
export { InvalidTaggingRequestException };
|
|
961
1367
|
export var ListTagsForResourceRequest;
|
|
962
1368
|
(function (ListTagsForResourceRequest) {
|
|
963
1369
|
ListTagsForResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1004,6 +1410,32 @@ export var PublishSchemaResponse;
|
|
|
1004
1410
|
(function (PublishSchemaResponse) {
|
|
1005
1411
|
PublishSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1006
1412
|
})(PublishSchemaResponse || (PublishSchemaResponse = {}));
|
|
1413
|
+
var SchemaAlreadyPublishedException = (function (_super) {
|
|
1414
|
+
__extends(SchemaAlreadyPublishedException, _super);
|
|
1415
|
+
function SchemaAlreadyPublishedException(opts) {
|
|
1416
|
+
var _this = _super.call(this, __assign({ name: "SchemaAlreadyPublishedException", $fault: "client" }, opts)) || this;
|
|
1417
|
+
_this.name = "SchemaAlreadyPublishedException";
|
|
1418
|
+
_this.$fault = "client";
|
|
1419
|
+
Object.setPrototypeOf(_this, SchemaAlreadyPublishedException.prototype);
|
|
1420
|
+
_this.Message = opts.Message;
|
|
1421
|
+
return _this;
|
|
1422
|
+
}
|
|
1423
|
+
return SchemaAlreadyPublishedException;
|
|
1424
|
+
}(__BaseException));
|
|
1425
|
+
export { SchemaAlreadyPublishedException };
|
|
1426
|
+
var InvalidSchemaDocException = (function (_super) {
|
|
1427
|
+
__extends(InvalidSchemaDocException, _super);
|
|
1428
|
+
function InvalidSchemaDocException(opts) {
|
|
1429
|
+
var _this = _super.call(this, __assign({ name: "InvalidSchemaDocException", $fault: "client" }, opts)) || this;
|
|
1430
|
+
_this.name = "InvalidSchemaDocException";
|
|
1431
|
+
_this.$fault = "client";
|
|
1432
|
+
Object.setPrototypeOf(_this, InvalidSchemaDocException.prototype);
|
|
1433
|
+
_this.Message = opts.Message;
|
|
1434
|
+
return _this;
|
|
1435
|
+
}
|
|
1436
|
+
return InvalidSchemaDocException;
|
|
1437
|
+
}(__BaseException));
|
|
1438
|
+
export { InvalidSchemaDocException };
|
|
1007
1439
|
export var PutSchemaFromJsonRequest;
|
|
1008
1440
|
(function (PutSchemaFromJsonRequest) {
|
|
1009
1441
|
PutSchemaFromJsonRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1036,6 +1468,19 @@ export var UntagResourceResponse;
|
|
|
1036
1468
|
(function (UntagResourceResponse) {
|
|
1037
1469
|
UntagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1038
1470
|
})(UntagResourceResponse || (UntagResourceResponse = {}));
|
|
1471
|
+
var InvalidFacetUpdateException = (function (_super) {
|
|
1472
|
+
__extends(InvalidFacetUpdateException, _super);
|
|
1473
|
+
function InvalidFacetUpdateException(opts) {
|
|
1474
|
+
var _this = _super.call(this, __assign({ name: "InvalidFacetUpdateException", $fault: "client" }, opts)) || this;
|
|
1475
|
+
_this.name = "InvalidFacetUpdateException";
|
|
1476
|
+
_this.$fault = "client";
|
|
1477
|
+
Object.setPrototypeOf(_this, InvalidFacetUpdateException.prototype);
|
|
1478
|
+
_this.Message = opts.Message;
|
|
1479
|
+
return _this;
|
|
1480
|
+
}
|
|
1481
|
+
return InvalidFacetUpdateException;
|
|
1482
|
+
}(__BaseException));
|
|
1483
|
+
export { InvalidFacetUpdateException };
|
|
1039
1484
|
export var FacetAttributeUpdate;
|
|
1040
1485
|
(function (FacetAttributeUpdate) {
|
|
1041
1486
|
FacetAttributeUpdate.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attribute && { Attribute: FacetAttribute.filterSensitiveLog(obj.Attribute) }))); };
|
|
@@ -1094,6 +1539,19 @@ export var UpdateTypedLinkFacetResponse;
|
|
|
1094
1539
|
(function (UpdateTypedLinkFacetResponse) {
|
|
1095
1540
|
UpdateTypedLinkFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1096
1541
|
})(UpdateTypedLinkFacetResponse || (UpdateTypedLinkFacetResponse = {}));
|
|
1542
|
+
var IncompatibleSchemaException = (function (_super) {
|
|
1543
|
+
__extends(IncompatibleSchemaException, _super);
|
|
1544
|
+
function IncompatibleSchemaException(opts) {
|
|
1545
|
+
var _this = _super.call(this, __assign({ name: "IncompatibleSchemaException", $fault: "client" }, opts)) || this;
|
|
1546
|
+
_this.name = "IncompatibleSchemaException";
|
|
1547
|
+
_this.$fault = "client";
|
|
1548
|
+
Object.setPrototypeOf(_this, IncompatibleSchemaException.prototype);
|
|
1549
|
+
_this.Message = opts.Message;
|
|
1550
|
+
return _this;
|
|
1551
|
+
}
|
|
1552
|
+
return IncompatibleSchemaException;
|
|
1553
|
+
}(__BaseException));
|
|
1554
|
+
export { IncompatibleSchemaException };
|
|
1097
1555
|
export var UpgradeAppliedSchemaRequest;
|
|
1098
1556
|
(function (UpgradeAppliedSchemaRequest) {
|
|
1099
1557
|
UpgradeAppliedSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|