@aws-sdk/client-cloudsearch 3.52.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 +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/CloudSearchServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +123 -2
- package/dist-cjs/protocols/Aws_query.js +247 -1002
- package/dist-es/index.js +1 -0
- package/dist-es/models/CloudSearchServiceException.js +12 -0
- package/dist-es/models/models_0.js +114 -1
- package/dist-es/protocols/Aws_query.js +573 -1091
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CloudSearchServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +58 -25
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CloudSearchServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -25
- package/package.json +25 -25
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 CloudSearchServiceException = (function (_super) {
|
|
4
|
+
__extends(CloudSearchServiceException, _super);
|
|
5
|
+
function CloudSearchServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, CloudSearchServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return CloudSearchServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { CloudSearchServiceException };
|
|
@@ -1,4 +1,19 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { CloudSearchServiceException as __BaseException } from "./CloudSearchServiceException";
|
|
3
|
+
var BaseException = (function (_super) {
|
|
4
|
+
__extends(BaseException, _super);
|
|
5
|
+
function BaseException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "BaseException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "BaseException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, BaseException.prototype);
|
|
10
|
+
_this.Code = opts.Code;
|
|
11
|
+
_this.Message = opts.Message;
|
|
12
|
+
return _this;
|
|
13
|
+
}
|
|
14
|
+
return BaseException;
|
|
15
|
+
}(__BaseException));
|
|
16
|
+
export { BaseException };
|
|
2
17
|
export var BuildSuggestersRequest;
|
|
3
18
|
(function (BuildSuggestersRequest) {
|
|
4
19
|
BuildSuggestersRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -7,6 +22,48 @@ export var BuildSuggestersResponse;
|
|
|
7
22
|
(function (BuildSuggestersResponse) {
|
|
8
23
|
BuildSuggestersResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
9
24
|
})(BuildSuggestersResponse || (BuildSuggestersResponse = {}));
|
|
25
|
+
var InternalException = (function (_super) {
|
|
26
|
+
__extends(InternalException, _super);
|
|
27
|
+
function InternalException(opts) {
|
|
28
|
+
var _this = _super.call(this, __assign({ name: "InternalException", $fault: "server" }, opts)) || this;
|
|
29
|
+
_this.name = "InternalException";
|
|
30
|
+
_this.$fault = "server";
|
|
31
|
+
Object.setPrototypeOf(_this, InternalException.prototype);
|
|
32
|
+
_this.Code = opts.Code;
|
|
33
|
+
_this.Message = opts.Message;
|
|
34
|
+
return _this;
|
|
35
|
+
}
|
|
36
|
+
return InternalException;
|
|
37
|
+
}(__BaseException));
|
|
38
|
+
export { InternalException };
|
|
39
|
+
var ResourceNotFoundException = (function (_super) {
|
|
40
|
+
__extends(ResourceNotFoundException, _super);
|
|
41
|
+
function ResourceNotFoundException(opts) {
|
|
42
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
43
|
+
_this.name = "ResourceNotFoundException";
|
|
44
|
+
_this.$fault = "client";
|
|
45
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
46
|
+
_this.Code = opts.Code;
|
|
47
|
+
_this.Message = opts.Message;
|
|
48
|
+
return _this;
|
|
49
|
+
}
|
|
50
|
+
return ResourceNotFoundException;
|
|
51
|
+
}(__BaseException));
|
|
52
|
+
export { ResourceNotFoundException };
|
|
53
|
+
var ValidationException = (function (_super) {
|
|
54
|
+
__extends(ValidationException, _super);
|
|
55
|
+
function ValidationException(opts) {
|
|
56
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
57
|
+
_this.name = "ValidationException";
|
|
58
|
+
_this.$fault = "client";
|
|
59
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
60
|
+
_this.Code = opts.Code;
|
|
61
|
+
_this.Message = opts.Message;
|
|
62
|
+
return _this;
|
|
63
|
+
}
|
|
64
|
+
return ValidationException;
|
|
65
|
+
}(__BaseException));
|
|
66
|
+
export { ValidationException };
|
|
10
67
|
export var CreateDomainRequest;
|
|
11
68
|
(function (CreateDomainRequest) {
|
|
12
69
|
CreateDomainRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -27,6 +84,34 @@ export var CreateDomainResponse;
|
|
|
27
84
|
(function (CreateDomainResponse) {
|
|
28
85
|
CreateDomainResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
29
86
|
})(CreateDomainResponse || (CreateDomainResponse = {}));
|
|
87
|
+
var LimitExceededException = (function (_super) {
|
|
88
|
+
__extends(LimitExceededException, _super);
|
|
89
|
+
function LimitExceededException(opts) {
|
|
90
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
91
|
+
_this.name = "LimitExceededException";
|
|
92
|
+
_this.$fault = "client";
|
|
93
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
94
|
+
_this.Code = opts.Code;
|
|
95
|
+
_this.Message = opts.Message;
|
|
96
|
+
return _this;
|
|
97
|
+
}
|
|
98
|
+
return LimitExceededException;
|
|
99
|
+
}(__BaseException));
|
|
100
|
+
export { LimitExceededException };
|
|
101
|
+
var ResourceAlreadyExistsException = (function (_super) {
|
|
102
|
+
__extends(ResourceAlreadyExistsException, _super);
|
|
103
|
+
function ResourceAlreadyExistsException(opts) {
|
|
104
|
+
var _this = _super.call(this, __assign({ name: "ResourceAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
105
|
+
_this.name = "ResourceAlreadyExistsException";
|
|
106
|
+
_this.$fault = "client";
|
|
107
|
+
Object.setPrototypeOf(_this, ResourceAlreadyExistsException.prototype);
|
|
108
|
+
_this.Code = opts.Code;
|
|
109
|
+
_this.Message = opts.Message;
|
|
110
|
+
return _this;
|
|
111
|
+
}
|
|
112
|
+
return ResourceAlreadyExistsException;
|
|
113
|
+
}(__BaseException));
|
|
114
|
+
export { ResourceAlreadyExistsException };
|
|
30
115
|
export var AnalysisOptions;
|
|
31
116
|
(function (AnalysisOptions) {
|
|
32
117
|
AnalysisOptions.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -51,6 +136,20 @@ export var DefineAnalysisSchemeResponse;
|
|
|
51
136
|
(function (DefineAnalysisSchemeResponse) {
|
|
52
137
|
DefineAnalysisSchemeResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
53
138
|
})(DefineAnalysisSchemeResponse || (DefineAnalysisSchemeResponse = {}));
|
|
139
|
+
var InvalidTypeException = (function (_super) {
|
|
140
|
+
__extends(InvalidTypeException, _super);
|
|
141
|
+
function InvalidTypeException(opts) {
|
|
142
|
+
var _this = _super.call(this, __assign({ name: "InvalidTypeException", $fault: "client" }, opts)) || this;
|
|
143
|
+
_this.name = "InvalidTypeException";
|
|
144
|
+
_this.$fault = "client";
|
|
145
|
+
Object.setPrototypeOf(_this, InvalidTypeException.prototype);
|
|
146
|
+
_this.Code = opts.Code;
|
|
147
|
+
_this.Message = opts.Message;
|
|
148
|
+
return _this;
|
|
149
|
+
}
|
|
150
|
+
return InvalidTypeException;
|
|
151
|
+
}(__BaseException));
|
|
152
|
+
export { InvalidTypeException };
|
|
54
153
|
export var Expression;
|
|
55
154
|
(function (Expression) {
|
|
56
155
|
Expression.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -207,6 +306,20 @@ export var DescribeAvailabilityOptionsResponse;
|
|
|
207
306
|
(function (DescribeAvailabilityOptionsResponse) {
|
|
208
307
|
DescribeAvailabilityOptionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
209
308
|
})(DescribeAvailabilityOptionsResponse || (DescribeAvailabilityOptionsResponse = {}));
|
|
309
|
+
var DisabledOperationException = (function (_super) {
|
|
310
|
+
__extends(DisabledOperationException, _super);
|
|
311
|
+
function DisabledOperationException(opts) {
|
|
312
|
+
var _this = _super.call(this, __assign({ name: "DisabledOperationException", $fault: "client" }, opts)) || this;
|
|
313
|
+
_this.name = "DisabledOperationException";
|
|
314
|
+
_this.$fault = "client";
|
|
315
|
+
Object.setPrototypeOf(_this, DisabledOperationException.prototype);
|
|
316
|
+
_this.Code = opts.Code;
|
|
317
|
+
_this.Message = opts.Message;
|
|
318
|
+
return _this;
|
|
319
|
+
}
|
|
320
|
+
return DisabledOperationException;
|
|
321
|
+
}(__BaseException));
|
|
322
|
+
export { DisabledOperationException };
|
|
210
323
|
export var DescribeDomainEndpointOptionsRequest;
|
|
211
324
|
(function (DescribeDomainEndpointOptionsRequest) {
|
|
212
325
|
DescribeDomainEndpointOptionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|