@aws-sdk/client-cloudsearch-domain 3.321.1 → 3.326.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.
|
@@ -52,6 +52,56 @@ export interface SearchCommandOutput extends SearchResponse, __MetadataBearer {
|
|
|
52
52
|
* };
|
|
53
53
|
* const command = new SearchCommand(input);
|
|
54
54
|
* const response = await client.send(command);
|
|
55
|
+
* // { // SearchResponse
|
|
56
|
+
* // status: { // SearchStatus
|
|
57
|
+
* // timems: Number("long"),
|
|
58
|
+
* // rid: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // hits: { // Hits
|
|
61
|
+
* // found: Number("long"),
|
|
62
|
+
* // start: Number("long"),
|
|
63
|
+
* // cursor: "STRING_VALUE",
|
|
64
|
+
* // hit: [ // HitList
|
|
65
|
+
* // { // Hit
|
|
66
|
+
* // id: "STRING_VALUE",
|
|
67
|
+
* // fields: { // Fields
|
|
68
|
+
* // "<keys>": [ // FieldValue
|
|
69
|
+
* // "STRING_VALUE",
|
|
70
|
+
* // ],
|
|
71
|
+
* // },
|
|
72
|
+
* // exprs: { // Exprs
|
|
73
|
+
* // "<keys>": "STRING_VALUE",
|
|
74
|
+
* // },
|
|
75
|
+
* // highlights: { // Highlights
|
|
76
|
+
* // "<keys>": "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // },
|
|
79
|
+
* // ],
|
|
80
|
+
* // },
|
|
81
|
+
* // facets: { // Facets
|
|
82
|
+
* // "<keys>": { // BucketInfo
|
|
83
|
+
* // buckets: [ // BucketList
|
|
84
|
+
* // { // Bucket
|
|
85
|
+
* // value: "STRING_VALUE",
|
|
86
|
+
* // count: Number("long"),
|
|
87
|
+
* // },
|
|
88
|
+
* // ],
|
|
89
|
+
* // },
|
|
90
|
+
* // },
|
|
91
|
+
* // stats: { // Stats
|
|
92
|
+
* // "<keys>": { // FieldStats
|
|
93
|
+
* // min: "STRING_VALUE",
|
|
94
|
+
* // max: "STRING_VALUE",
|
|
95
|
+
* // count: Number("long"),
|
|
96
|
+
* // missing: Number("long"),
|
|
97
|
+
* // sum: Number("double"),
|
|
98
|
+
* // sumOfSquares: Number("double"),
|
|
99
|
+
* // mean: "STRING_VALUE",
|
|
100
|
+
* // stddev: Number("double"),
|
|
101
|
+
* // },
|
|
102
|
+
* // },
|
|
103
|
+
* // };
|
|
104
|
+
*
|
|
55
105
|
* ```
|
|
56
106
|
*
|
|
57
107
|
* @param SearchCommandInput - {@link SearchCommandInput}
|
|
@@ -63,6 +113,8 @@ export interface SearchCommandOutput extends SearchResponse, __MetadataBearer {
|
|
|
63
113
|
* @throws {@link SearchException} (client fault)
|
|
64
114
|
* <p>Information about any problems encountered while processing a search request.</p>
|
|
65
115
|
*
|
|
116
|
+
* @throws {@link CloudSearchDomainServiceException}
|
|
117
|
+
* <p>Base exception class for all service exceptions from CloudSearchDomain service.</p>
|
|
66
118
|
*
|
|
67
119
|
*/
|
|
68
120
|
export declare class SearchCommand extends $Command<SearchCommandInput, SearchCommandOutput, CloudSearchDomainClientResolvedConfig> {
|
|
@@ -36,6 +36,24 @@ export interface SuggestCommandOutput extends SuggestResponse, __MetadataBearer
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new SuggestCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // SuggestResponse
|
|
40
|
+
* // status: { // SuggestStatus
|
|
41
|
+
* // timems: Number("long"),
|
|
42
|
+
* // rid: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // suggest: { // SuggestModel
|
|
45
|
+
* // query: "STRING_VALUE",
|
|
46
|
+
* // found: Number("long"),
|
|
47
|
+
* // suggestions: [ // Suggestions
|
|
48
|
+
* // { // SuggestionMatch
|
|
49
|
+
* // suggestion: "STRING_VALUE",
|
|
50
|
+
* // score: Number("long"),
|
|
51
|
+
* // id: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // },
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
39
57
|
* ```
|
|
40
58
|
*
|
|
41
59
|
* @param SuggestCommandInput - {@link SuggestCommandInput}
|
|
@@ -47,6 +65,8 @@ export interface SuggestCommandOutput extends SuggestResponse, __MetadataBearer
|
|
|
47
65
|
* @throws {@link SearchException} (client fault)
|
|
48
66
|
* <p>Information about any problems encountered while processing a search request.</p>
|
|
49
67
|
*
|
|
68
|
+
* @throws {@link CloudSearchDomainServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from CloudSearchDomain service.</p>
|
|
50
70
|
*
|
|
51
71
|
*/
|
|
52
72
|
export declare class SuggestCommand extends $Command<SuggestCommandInput, SuggestCommandOutput, CloudSearchDomainClientResolvedConfig> {
|
|
@@ -45,6 +45,17 @@ export interface UploadDocumentsCommandOutput extends UploadDocumentsResponse, _
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new UploadDocumentsCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // { // UploadDocumentsResponse
|
|
49
|
+
* // status: "STRING_VALUE",
|
|
50
|
+
* // adds: Number("long"),
|
|
51
|
+
* // deletes: Number("long"),
|
|
52
|
+
* // warnings: [ // DocumentServiceWarnings
|
|
53
|
+
* // { // DocumentServiceWarning
|
|
54
|
+
* // message: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
48
59
|
* ```
|
|
49
60
|
*
|
|
50
61
|
* @param UploadDocumentsCommandInput - {@link UploadDocumentsCommandInput}
|
|
@@ -56,6 +67,8 @@ export interface UploadDocumentsCommandOutput extends UploadDocumentsResponse, _
|
|
|
56
67
|
* @throws {@link DocumentServiceException} (client fault)
|
|
57
68
|
* <p>Information about any problems encountered while processing an upload request.</p>
|
|
58
69
|
*
|
|
70
|
+
* @throws {@link CloudSearchDomainServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from CloudSearchDomain service.</p>
|
|
59
72
|
*
|
|
60
73
|
*/
|
|
61
74
|
export declare class UploadDocumentsCommand extends $Command<UploadDocumentsCommandInput, UploadDocumentsCommandOutput, CloudSearchDomainClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudsearch-domain",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudsearch Domain Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,33 +21,33 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|