@aws-sdk/client-cloudsearch 3.36.1 → 3.37.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/endpoints.js +1 -1
- package/dist-cjs/models/models_0.js +7 -7
- package/dist-cjs/protocols/Aws_query.js +96 -0
- package/dist-es/endpoints.js +1 -1
- package/dist-es/models/models_0.js +4 -4
- package/dist-es/protocols/Aws_query.js +308 -212
- package/dist-types/models/models_0.d.ts +21 -21
- package/dist-types/ts3.4/models/models_0.d.ts +13 -13
- package/package.json +30 -30
|
@@ -93,6 +93,27 @@ export declare namespace ResourceNotFoundException {
|
|
|
93
93
|
*/
|
|
94
94
|
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
95
95
|
}
|
|
96
|
+
/**
|
|
97
|
+
* <p>The request was rejected because it has invalid parameters.</p>
|
|
98
|
+
*/
|
|
99
|
+
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
100
|
+
name: "ValidationException";
|
|
101
|
+
$fault: "client";
|
|
102
|
+
/**
|
|
103
|
+
* <p>A machine-parsable string error or warning code.</p>
|
|
104
|
+
*/
|
|
105
|
+
Code?: string;
|
|
106
|
+
/**
|
|
107
|
+
* <p>A human-readable string error or warning message.</p>
|
|
108
|
+
*/
|
|
109
|
+
Message?: string;
|
|
110
|
+
}
|
|
111
|
+
export declare namespace ValidationException {
|
|
112
|
+
/**
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
115
|
+
const filterSensitiveLog: (obj: ValidationException) => any;
|
|
116
|
+
}
|
|
96
117
|
/**
|
|
97
118
|
* <p>Container for the parameters to the <code><a>CreateDomain</a></code> operation. Specifies a name for the new search domain.</p>
|
|
98
119
|
*/
|
|
@@ -250,27 +271,6 @@ export declare namespace ResourceAlreadyExistsException {
|
|
|
250
271
|
*/
|
|
251
272
|
const filterSensitiveLog: (obj: ResourceAlreadyExistsException) => any;
|
|
252
273
|
}
|
|
253
|
-
/**
|
|
254
|
-
* <p>The request was rejected because it has invalid parameters.</p>
|
|
255
|
-
*/
|
|
256
|
-
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
257
|
-
name: "ValidationException";
|
|
258
|
-
$fault: "client";
|
|
259
|
-
/**
|
|
260
|
-
* <p>A machine-parsable string error or warning code.</p>
|
|
261
|
-
*/
|
|
262
|
-
Code?: string;
|
|
263
|
-
/**
|
|
264
|
-
* <p>A human-readable string error or warning message.</p>
|
|
265
|
-
*/
|
|
266
|
-
Message?: string;
|
|
267
|
-
}
|
|
268
|
-
export declare namespace ValidationException {
|
|
269
|
-
/**
|
|
270
|
-
* @internal
|
|
271
|
-
*/
|
|
272
|
-
const filterSensitiveLog: (obj: ValidationException) => any;
|
|
273
|
-
}
|
|
274
274
|
export declare type AlgorithmicStemming = "full" | "light" | "minimal" | "none";
|
|
275
275
|
/**
|
|
276
276
|
* <p>Synonyms, stopwords, and stemming options for an analysis scheme. Includes tokenization dictionary for Japanese.</p>
|
|
@@ -57,6 +57,19 @@ export declare namespace ResourceNotFoundException {
|
|
|
57
57
|
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
61
|
+
name: "ValidationException";
|
|
62
|
+
$fault: "client";
|
|
63
|
+
|
|
64
|
+
Code?: string;
|
|
65
|
+
|
|
66
|
+
Message?: string;
|
|
67
|
+
}
|
|
68
|
+
export declare namespace ValidationException {
|
|
69
|
+
|
|
70
|
+
const filterSensitiveLog: (obj: ValidationException) => any;
|
|
71
|
+
}
|
|
72
|
+
|
|
60
73
|
export interface CreateDomainRequest {
|
|
61
74
|
|
|
62
75
|
DomainName: string | undefined;
|
|
@@ -149,19 +162,6 @@ export declare namespace ResourceAlreadyExistsException {
|
|
|
149
162
|
|
|
150
163
|
const filterSensitiveLog: (obj: ResourceAlreadyExistsException) => any;
|
|
151
164
|
}
|
|
152
|
-
|
|
153
|
-
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
154
|
-
name: "ValidationException";
|
|
155
|
-
$fault: "client";
|
|
156
|
-
|
|
157
|
-
Code?: string;
|
|
158
|
-
|
|
159
|
-
Message?: string;
|
|
160
|
-
}
|
|
161
|
-
export declare namespace ValidationException {
|
|
162
|
-
|
|
163
|
-
const filterSensitiveLog: (obj: ValidationException) => any;
|
|
164
|
-
}
|
|
165
165
|
export declare type AlgorithmicStemming = "full" | "light" | "minimal" | "none";
|
|
166
166
|
|
|
167
167
|
export interface AnalysisOptions {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudsearch",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudsearch Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.37.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,40 +21,40 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "^1.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "^1.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
45
|
-
"@aws-sdk/util-base64-node": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
51
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.37.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.37.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.37.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.37.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.37.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.37.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.37.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.37.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.37.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.37.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.37.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.37.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.37.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.37.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.37.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.37.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.37.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.37.0",
|
|
42
|
+
"@aws-sdk/types": "3.37.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.37.0",
|
|
44
|
+
"@aws-sdk/util-base64-browser": "3.37.0",
|
|
45
|
+
"@aws-sdk/util-base64-node": "3.37.0",
|
|
46
|
+
"@aws-sdk/util-body-length-browser": "3.37.0",
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.37.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.37.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.37.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.37.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.37.0",
|
|
52
52
|
"entities": "2.2.0",
|
|
53
53
|
"fast-xml-parser": "3.19.0",
|
|
54
54
|
"tslib": "^2.3.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@aws-sdk/client-documentation-generator": "3.
|
|
57
|
+
"@aws-sdk/client-documentation-generator": "3.37.0",
|
|
58
58
|
"@types/node": "^12.7.5",
|
|
59
59
|
"downlevel-dts": "0.7.0",
|
|
60
60
|
"jest": "^26.1.0",
|