@aws-sdk/client-cloudsearch 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.
Files changed (38) hide show
  1. package/dist-cjs/CloudSearch.js +1 -63
  2. package/dist-cjs/CloudSearchClient.js +1 -43
  3. package/dist-cjs/commands/BuildSuggestersCommand.js +1 -28
  4. package/dist-cjs/commands/CreateDomainCommand.js +1 -28
  5. package/dist-cjs/commands/DefineAnalysisSchemeCommand.js +1 -28
  6. package/dist-cjs/commands/DefineExpressionCommand.js +1 -28
  7. package/dist-cjs/commands/DefineIndexFieldCommand.js +1 -28
  8. package/dist-cjs/commands/DefineSuggesterCommand.js +1 -28
  9. package/dist-cjs/commands/DeleteAnalysisSchemeCommand.js +1 -28
  10. package/dist-cjs/commands/DeleteDomainCommand.js +1 -28
  11. package/dist-cjs/commands/DeleteExpressionCommand.js +1 -28
  12. package/dist-cjs/commands/DeleteIndexFieldCommand.js +1 -28
  13. package/dist-cjs/commands/DeleteSuggesterCommand.js +1 -28
  14. package/dist-cjs/commands/DescribeAnalysisSchemesCommand.js +1 -28
  15. package/dist-cjs/commands/DescribeAvailabilityOptionsCommand.js +1 -28
  16. package/dist-cjs/commands/DescribeDomainEndpointOptionsCommand.js +1 -28
  17. package/dist-cjs/commands/DescribeDomainsCommand.js +1 -28
  18. package/dist-cjs/commands/DescribeExpressionsCommand.js +1 -28
  19. package/dist-cjs/commands/DescribeIndexFieldsCommand.js +1 -28
  20. package/dist-cjs/commands/DescribeScalingParametersCommand.js +1 -28
  21. package/dist-cjs/commands/DescribeServiceAccessPoliciesCommand.js +1 -28
  22. package/dist-cjs/commands/DescribeSuggestersCommand.js +1 -28
  23. package/dist-cjs/commands/IndexDocumentsCommand.js +1 -28
  24. package/dist-cjs/commands/ListDomainNamesCommand.js +1 -28
  25. package/dist-cjs/commands/UpdateAvailabilityOptionsCommand.js +1 -28
  26. package/dist-cjs/commands/UpdateDomainEndpointOptionsCommand.js +1 -28
  27. package/dist-cjs/commands/UpdateScalingParametersCommand.js +1 -28
  28. package/dist-cjs/commands/UpdateServiceAccessPoliciesCommand.js +1 -28
  29. package/dist-cjs/commands/index.js +1 -29
  30. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  31. package/dist-cjs/extensionConfiguration.js +1 -2
  32. package/dist-cjs/index.js +4163 -10
  33. package/dist-cjs/models/CloudSearchServiceException.js +1 -12
  34. package/dist-cjs/models/index.js +1 -4
  35. package/dist-cjs/models/models_0.js +1 -214
  36. package/dist-cjs/protocols/Aws_query.js +1 -3288
  37. package/dist-cjs/runtimeExtensions.js +1 -22
  38. package/package.json +39 -39
@@ -1,12 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CloudSearchServiceException = 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 CloudSearchServiceException extends smithy_client_1.ServiceException {
7
- constructor(options) {
8
- super(options);
9
- Object.setPrototypeOf(this, CloudSearchServiceException.prototype);
10
- }
11
- }
12
- exports.CloudSearchServiceException = CloudSearchServiceException;
1
+ module.exports = require("../index.js");
@@ -1,4 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./models_0"), exports);
1
+ module.exports = require("../index.js");
@@ -1,214 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PartitionInstanceType = exports.TLSSecurityPolicy = exports.DisabledOperationException = exports.SuggesterFuzzyMatching = exports.IndexFieldType = exports.InvalidTypeException = exports.OptionState = exports.AnalysisSchemeLanguage = exports.AlgorithmicStemming = exports.ResourceAlreadyExistsException = exports.LimitExceededException = exports.ValidationException = exports.ResourceNotFoundException = exports.InternalException = exports.BaseException = void 0;
4
- const CloudSearchServiceException_1 = require("./CloudSearchServiceException");
5
- class BaseException extends CloudSearchServiceException_1.CloudSearchServiceException {
6
- constructor(opts) {
7
- super({
8
- name: "BaseException",
9
- $fault: "client",
10
- ...opts,
11
- });
12
- this.name = "BaseException";
13
- this.$fault = "client";
14
- Object.setPrototypeOf(this, BaseException.prototype);
15
- this.Code = opts.Code;
16
- this.Message = opts.Message;
17
- }
18
- }
19
- exports.BaseException = BaseException;
20
- class InternalException extends CloudSearchServiceException_1.CloudSearchServiceException {
21
- constructor(opts) {
22
- super({
23
- name: "InternalException",
24
- $fault: "server",
25
- ...opts,
26
- });
27
- this.name = "InternalException";
28
- this.$fault = "server";
29
- Object.setPrototypeOf(this, InternalException.prototype);
30
- this.Code = opts.Code;
31
- this.Message = opts.Message;
32
- }
33
- }
34
- exports.InternalException = InternalException;
35
- class ResourceNotFoundException extends CloudSearchServiceException_1.CloudSearchServiceException {
36
- constructor(opts) {
37
- super({
38
- name: "ResourceNotFoundException",
39
- $fault: "client",
40
- ...opts,
41
- });
42
- this.name = "ResourceNotFoundException";
43
- this.$fault = "client";
44
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
45
- this.Code = opts.Code;
46
- this.Message = opts.Message;
47
- }
48
- }
49
- exports.ResourceNotFoundException = ResourceNotFoundException;
50
- class ValidationException extends CloudSearchServiceException_1.CloudSearchServiceException {
51
- constructor(opts) {
52
- super({
53
- name: "ValidationException",
54
- $fault: "client",
55
- ...opts,
56
- });
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
- }
63
- }
64
- exports.ValidationException = ValidationException;
65
- class LimitExceededException extends CloudSearchServiceException_1.CloudSearchServiceException {
66
- constructor(opts) {
67
- super({
68
- name: "LimitExceededException",
69
- $fault: "client",
70
- ...opts,
71
- });
72
- this.name = "LimitExceededException";
73
- this.$fault = "client";
74
- Object.setPrototypeOf(this, LimitExceededException.prototype);
75
- this.Code = opts.Code;
76
- this.Message = opts.Message;
77
- }
78
- }
79
- exports.LimitExceededException = LimitExceededException;
80
- class ResourceAlreadyExistsException extends CloudSearchServiceException_1.CloudSearchServiceException {
81
- constructor(opts) {
82
- super({
83
- name: "ResourceAlreadyExistsException",
84
- $fault: "client",
85
- ...opts,
86
- });
87
- this.name = "ResourceAlreadyExistsException";
88
- this.$fault = "client";
89
- Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
90
- this.Code = opts.Code;
91
- this.Message = opts.Message;
92
- }
93
- }
94
- exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
95
- exports.AlgorithmicStemming = {
96
- full: "full",
97
- light: "light",
98
- minimal: "minimal",
99
- none: "none",
100
- };
101
- exports.AnalysisSchemeLanguage = {
102
- ar: "ar",
103
- bg: "bg",
104
- ca: "ca",
105
- cs: "cs",
106
- da: "da",
107
- de: "de",
108
- el: "el",
109
- en: "en",
110
- es: "es",
111
- eu: "eu",
112
- fa: "fa",
113
- fi: "fi",
114
- fr: "fr",
115
- ga: "ga",
116
- gl: "gl",
117
- he: "he",
118
- hi: "hi",
119
- hu: "hu",
120
- hy: "hy",
121
- id: "id",
122
- it: "it",
123
- ja: "ja",
124
- ko: "ko",
125
- lv: "lv",
126
- mul: "mul",
127
- nl: "nl",
128
- no: "no",
129
- pt: "pt",
130
- ro: "ro",
131
- ru: "ru",
132
- sv: "sv",
133
- th: "th",
134
- tr: "tr",
135
- zh_Hans: "zh-Hans",
136
- zh_Hant: "zh-Hant",
137
- };
138
- exports.OptionState = {
139
- Active: "Active",
140
- FailedToValidate: "FailedToValidate",
141
- Processing: "Processing",
142
- RequiresIndexDocuments: "RequiresIndexDocuments",
143
- };
144
- class InvalidTypeException extends CloudSearchServiceException_1.CloudSearchServiceException {
145
- constructor(opts) {
146
- super({
147
- name: "InvalidTypeException",
148
- $fault: "client",
149
- ...opts,
150
- });
151
- this.name = "InvalidTypeException";
152
- this.$fault = "client";
153
- Object.setPrototypeOf(this, InvalidTypeException.prototype);
154
- this.Code = opts.Code;
155
- this.Message = opts.Message;
156
- }
157
- }
158
- exports.InvalidTypeException = InvalidTypeException;
159
- exports.IndexFieldType = {
160
- date: "date",
161
- date_array: "date-array",
162
- double: "double",
163
- double_array: "double-array",
164
- int: "int",
165
- int_array: "int-array",
166
- latlon: "latlon",
167
- literal: "literal",
168
- literal_array: "literal-array",
169
- text: "text",
170
- text_array: "text-array",
171
- };
172
- exports.SuggesterFuzzyMatching = {
173
- high: "high",
174
- low: "low",
175
- none: "none",
176
- };
177
- class DisabledOperationException extends CloudSearchServiceException_1.CloudSearchServiceException {
178
- constructor(opts) {
179
- super({
180
- name: "DisabledOperationException",
181
- $fault: "client",
182
- ...opts,
183
- });
184
- this.name = "DisabledOperationException";
185
- this.$fault = "client";
186
- Object.setPrototypeOf(this, DisabledOperationException.prototype);
187
- this.Code = opts.Code;
188
- this.Message = opts.Message;
189
- }
190
- }
191
- exports.DisabledOperationException = DisabledOperationException;
192
- exports.TLSSecurityPolicy = {
193
- POLICY_MIN_TLS_1_0_2019_07: "Policy-Min-TLS-1-0-2019-07",
194
- POLICY_MIN_TLS_1_2_2019_07: "Policy-Min-TLS-1-2-2019-07",
195
- };
196
- exports.PartitionInstanceType = {
197
- search_2xlarge: "search.2xlarge",
198
- search_large: "search.large",
199
- search_m1_large: "search.m1.large",
200
- search_m1_small: "search.m1.small",
201
- search_m2_2xlarge: "search.m2.2xlarge",
202
- search_m2_xlarge: "search.m2.xlarge",
203
- search_m3_2xlarge: "search.m3.2xlarge",
204
- search_m3_large: "search.m3.large",
205
- search_m3_medium: "search.m3.medium",
206
- search_m3_xlarge: "search.m3.xlarge",
207
- search_medium: "search.medium",
208
- search_previousgeneration_2xlarge: "search.previousgeneration.2xlarge",
209
- search_previousgeneration_large: "search.previousgeneration.large",
210
- search_previousgeneration_small: "search.previousgeneration.small",
211
- search_previousgeneration_xlarge: "search.previousgeneration.xlarge",
212
- search_small: "search.small",
213
- search_xlarge: "search.xlarge",
214
- };
1
+ module.exports = require("../index.js");