@aws-sdk/client-cloudsearch 3.929.0 → 3.930.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/dist-cjs/index.js +748 -2576
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/CloudSearchClient.js +2 -0
- package/dist-es/commands/BuildSuggestersCommand.js +3 -9
- package/dist-es/commands/CreateDomainCommand.js +3 -9
- package/dist-es/commands/DefineAnalysisSchemeCommand.js +3 -9
- package/dist-es/commands/DefineExpressionCommand.js +3 -9
- package/dist-es/commands/DefineIndexFieldCommand.js +3 -9
- package/dist-es/commands/DefineSuggesterCommand.js +3 -9
- package/dist-es/commands/DeleteAnalysisSchemeCommand.js +3 -9
- package/dist-es/commands/DeleteDomainCommand.js +3 -9
- package/dist-es/commands/DeleteExpressionCommand.js +3 -9
- package/dist-es/commands/DeleteIndexFieldCommand.js +3 -9
- package/dist-es/commands/DeleteSuggesterCommand.js +3 -9
- package/dist-es/commands/DescribeAnalysisSchemesCommand.js +3 -9
- package/dist-es/commands/DescribeAvailabilityOptionsCommand.js +3 -9
- package/dist-es/commands/DescribeDomainEndpointOptionsCommand.js +3 -9
- package/dist-es/commands/DescribeDomainsCommand.js +3 -9
- package/dist-es/commands/DescribeExpressionsCommand.js +3 -9
- package/dist-es/commands/DescribeIndexFieldsCommand.js +3 -9
- package/dist-es/commands/DescribeScalingParametersCommand.js +3 -9
- package/dist-es/commands/DescribeServiceAccessPoliciesCommand.js +3 -9
- package/dist-es/commands/DescribeSuggestersCommand.js +3 -9
- package/dist-es/commands/IndexDocumentsCommand.js +3 -9
- package/dist-es/commands/ListDomainNamesCommand.js +3 -9
- package/dist-es/commands/UpdateAvailabilityOptionsCommand.js +3 -9
- package/dist-es/commands/UpdateDomainEndpointOptionsCommand.js +3 -9
- package/dist-es/commands/UpdateScalingParametersCommand.js +3 -9
- package/dist-es/commands/UpdateServiceAccessPoliciesCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +774 -0
- package/dist-types/CloudSearchClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +129 -0
- package/dist-types/ts3.4/CloudSearchClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +134 -0
- package/package.json +33 -33
- package/dist-es/protocols/Aws_query.js +0 -2473
- package/dist-types/protocols/Aws_query.d.ts +0 -236
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +0 -317
|
@@ -1,236 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { BuildSuggestersCommandInput, BuildSuggestersCommandOutput } from "../commands/BuildSuggestersCommand";
|
|
4
|
-
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "../commands/CreateDomainCommand";
|
|
5
|
-
import { DefineAnalysisSchemeCommandInput, DefineAnalysisSchemeCommandOutput } from "../commands/DefineAnalysisSchemeCommand";
|
|
6
|
-
import { DefineExpressionCommandInput, DefineExpressionCommandOutput } from "../commands/DefineExpressionCommand";
|
|
7
|
-
import { DefineIndexFieldCommandInput, DefineIndexFieldCommandOutput } from "../commands/DefineIndexFieldCommand";
|
|
8
|
-
import { DefineSuggesterCommandInput, DefineSuggesterCommandOutput } from "../commands/DefineSuggesterCommand";
|
|
9
|
-
import { DeleteAnalysisSchemeCommandInput, DeleteAnalysisSchemeCommandOutput } from "../commands/DeleteAnalysisSchemeCommand";
|
|
10
|
-
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "../commands/DeleteDomainCommand";
|
|
11
|
-
import { DeleteExpressionCommandInput, DeleteExpressionCommandOutput } from "../commands/DeleteExpressionCommand";
|
|
12
|
-
import { DeleteIndexFieldCommandInput, DeleteIndexFieldCommandOutput } from "../commands/DeleteIndexFieldCommand";
|
|
13
|
-
import { DeleteSuggesterCommandInput, DeleteSuggesterCommandOutput } from "../commands/DeleteSuggesterCommand";
|
|
14
|
-
import { DescribeAnalysisSchemesCommandInput, DescribeAnalysisSchemesCommandOutput } from "../commands/DescribeAnalysisSchemesCommand";
|
|
15
|
-
import { DescribeAvailabilityOptionsCommandInput, DescribeAvailabilityOptionsCommandOutput } from "../commands/DescribeAvailabilityOptionsCommand";
|
|
16
|
-
import { DescribeDomainEndpointOptionsCommandInput, DescribeDomainEndpointOptionsCommandOutput } from "../commands/DescribeDomainEndpointOptionsCommand";
|
|
17
|
-
import { DescribeDomainsCommandInput, DescribeDomainsCommandOutput } from "../commands/DescribeDomainsCommand";
|
|
18
|
-
import { DescribeExpressionsCommandInput, DescribeExpressionsCommandOutput } from "../commands/DescribeExpressionsCommand";
|
|
19
|
-
import { DescribeIndexFieldsCommandInput, DescribeIndexFieldsCommandOutput } from "../commands/DescribeIndexFieldsCommand";
|
|
20
|
-
import { DescribeScalingParametersCommandInput, DescribeScalingParametersCommandOutput } from "../commands/DescribeScalingParametersCommand";
|
|
21
|
-
import { DescribeServiceAccessPoliciesCommandInput, DescribeServiceAccessPoliciesCommandOutput } from "../commands/DescribeServiceAccessPoliciesCommand";
|
|
22
|
-
import { DescribeSuggestersCommandInput, DescribeSuggestersCommandOutput } from "../commands/DescribeSuggestersCommand";
|
|
23
|
-
import { IndexDocumentsCommandInput, IndexDocumentsCommandOutput } from "../commands/IndexDocumentsCommand";
|
|
24
|
-
import { ListDomainNamesCommandInput, ListDomainNamesCommandOutput } from "../commands/ListDomainNamesCommand";
|
|
25
|
-
import { UpdateAvailabilityOptionsCommandInput, UpdateAvailabilityOptionsCommandOutput } from "../commands/UpdateAvailabilityOptionsCommand";
|
|
26
|
-
import { UpdateDomainEndpointOptionsCommandInput, UpdateDomainEndpointOptionsCommandOutput } from "../commands/UpdateDomainEndpointOptionsCommand";
|
|
27
|
-
import { UpdateScalingParametersCommandInput, UpdateScalingParametersCommandOutput } from "../commands/UpdateScalingParametersCommand";
|
|
28
|
-
import { UpdateServiceAccessPoliciesCommandInput, UpdateServiceAccessPoliciesCommandOutput } from "../commands/UpdateServiceAccessPoliciesCommand";
|
|
29
|
-
/**
|
|
30
|
-
* serializeAws_queryBuildSuggestersCommand
|
|
31
|
-
*/
|
|
32
|
-
export declare const se_BuildSuggestersCommand: (input: BuildSuggestersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
-
/**
|
|
34
|
-
* serializeAws_queryCreateDomainCommand
|
|
35
|
-
*/
|
|
36
|
-
export declare const se_CreateDomainCommand: (input: CreateDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
|
-
/**
|
|
38
|
-
* serializeAws_queryDefineAnalysisSchemeCommand
|
|
39
|
-
*/
|
|
40
|
-
export declare const se_DefineAnalysisSchemeCommand: (input: DefineAnalysisSchemeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
-
/**
|
|
42
|
-
* serializeAws_queryDefineExpressionCommand
|
|
43
|
-
*/
|
|
44
|
-
export declare const se_DefineExpressionCommand: (input: DefineExpressionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
|
-
/**
|
|
46
|
-
* serializeAws_queryDefineIndexFieldCommand
|
|
47
|
-
*/
|
|
48
|
-
export declare const se_DefineIndexFieldCommand: (input: DefineIndexFieldCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
|
-
/**
|
|
50
|
-
* serializeAws_queryDefineSuggesterCommand
|
|
51
|
-
*/
|
|
52
|
-
export declare const se_DefineSuggesterCommand: (input: DefineSuggesterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
|
-
/**
|
|
54
|
-
* serializeAws_queryDeleteAnalysisSchemeCommand
|
|
55
|
-
*/
|
|
56
|
-
export declare const se_DeleteAnalysisSchemeCommand: (input: DeleteAnalysisSchemeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
-
/**
|
|
58
|
-
* serializeAws_queryDeleteDomainCommand
|
|
59
|
-
*/
|
|
60
|
-
export declare const se_DeleteDomainCommand: (input: DeleteDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
|
-
/**
|
|
62
|
-
* serializeAws_queryDeleteExpressionCommand
|
|
63
|
-
*/
|
|
64
|
-
export declare const se_DeleteExpressionCommand: (input: DeleteExpressionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
|
-
/**
|
|
66
|
-
* serializeAws_queryDeleteIndexFieldCommand
|
|
67
|
-
*/
|
|
68
|
-
export declare const se_DeleteIndexFieldCommand: (input: DeleteIndexFieldCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
-
/**
|
|
70
|
-
* serializeAws_queryDeleteSuggesterCommand
|
|
71
|
-
*/
|
|
72
|
-
export declare const se_DeleteSuggesterCommand: (input: DeleteSuggesterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
|
-
/**
|
|
74
|
-
* serializeAws_queryDescribeAnalysisSchemesCommand
|
|
75
|
-
*/
|
|
76
|
-
export declare const se_DescribeAnalysisSchemesCommand: (input: DescribeAnalysisSchemesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
-
/**
|
|
78
|
-
* serializeAws_queryDescribeAvailabilityOptionsCommand
|
|
79
|
-
*/
|
|
80
|
-
export declare const se_DescribeAvailabilityOptionsCommand: (input: DescribeAvailabilityOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
|
-
/**
|
|
82
|
-
* serializeAws_queryDescribeDomainEndpointOptionsCommand
|
|
83
|
-
*/
|
|
84
|
-
export declare const se_DescribeDomainEndpointOptionsCommand: (input: DescribeDomainEndpointOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
|
-
/**
|
|
86
|
-
* serializeAws_queryDescribeDomainsCommand
|
|
87
|
-
*/
|
|
88
|
-
export declare const se_DescribeDomainsCommand: (input: DescribeDomainsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
|
-
/**
|
|
90
|
-
* serializeAws_queryDescribeExpressionsCommand
|
|
91
|
-
*/
|
|
92
|
-
export declare const se_DescribeExpressionsCommand: (input: DescribeExpressionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
-
/**
|
|
94
|
-
* serializeAws_queryDescribeIndexFieldsCommand
|
|
95
|
-
*/
|
|
96
|
-
export declare const se_DescribeIndexFieldsCommand: (input: DescribeIndexFieldsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
-
/**
|
|
98
|
-
* serializeAws_queryDescribeScalingParametersCommand
|
|
99
|
-
*/
|
|
100
|
-
export declare const se_DescribeScalingParametersCommand: (input: DescribeScalingParametersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
101
|
-
/**
|
|
102
|
-
* serializeAws_queryDescribeServiceAccessPoliciesCommand
|
|
103
|
-
*/
|
|
104
|
-
export declare const se_DescribeServiceAccessPoliciesCommand: (input: DescribeServiceAccessPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
|
-
/**
|
|
106
|
-
* serializeAws_queryDescribeSuggestersCommand
|
|
107
|
-
*/
|
|
108
|
-
export declare const se_DescribeSuggestersCommand: (input: DescribeSuggestersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
|
-
/**
|
|
110
|
-
* serializeAws_queryIndexDocumentsCommand
|
|
111
|
-
*/
|
|
112
|
-
export declare const se_IndexDocumentsCommand: (input: IndexDocumentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
113
|
-
/**
|
|
114
|
-
* serializeAws_queryListDomainNamesCommand
|
|
115
|
-
*/
|
|
116
|
-
export declare const se_ListDomainNamesCommand: (input: ListDomainNamesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
|
-
/**
|
|
118
|
-
* serializeAws_queryUpdateAvailabilityOptionsCommand
|
|
119
|
-
*/
|
|
120
|
-
export declare const se_UpdateAvailabilityOptionsCommand: (input: UpdateAvailabilityOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
121
|
-
/**
|
|
122
|
-
* serializeAws_queryUpdateDomainEndpointOptionsCommand
|
|
123
|
-
*/
|
|
124
|
-
export declare const se_UpdateDomainEndpointOptionsCommand: (input: UpdateDomainEndpointOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
|
-
/**
|
|
126
|
-
* serializeAws_queryUpdateScalingParametersCommand
|
|
127
|
-
*/
|
|
128
|
-
export declare const se_UpdateScalingParametersCommand: (input: UpdateScalingParametersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
|
-
/**
|
|
130
|
-
* serializeAws_queryUpdateServiceAccessPoliciesCommand
|
|
131
|
-
*/
|
|
132
|
-
export declare const se_UpdateServiceAccessPoliciesCommand: (input: UpdateServiceAccessPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
133
|
-
/**
|
|
134
|
-
* deserializeAws_queryBuildSuggestersCommand
|
|
135
|
-
*/
|
|
136
|
-
export declare const de_BuildSuggestersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BuildSuggestersCommandOutput>;
|
|
137
|
-
/**
|
|
138
|
-
* deserializeAws_queryCreateDomainCommand
|
|
139
|
-
*/
|
|
140
|
-
export declare const de_CreateDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDomainCommandOutput>;
|
|
141
|
-
/**
|
|
142
|
-
* deserializeAws_queryDefineAnalysisSchemeCommand
|
|
143
|
-
*/
|
|
144
|
-
export declare const de_DefineAnalysisSchemeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DefineAnalysisSchemeCommandOutput>;
|
|
145
|
-
/**
|
|
146
|
-
* deserializeAws_queryDefineExpressionCommand
|
|
147
|
-
*/
|
|
148
|
-
export declare const de_DefineExpressionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DefineExpressionCommandOutput>;
|
|
149
|
-
/**
|
|
150
|
-
* deserializeAws_queryDefineIndexFieldCommand
|
|
151
|
-
*/
|
|
152
|
-
export declare const de_DefineIndexFieldCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DefineIndexFieldCommandOutput>;
|
|
153
|
-
/**
|
|
154
|
-
* deserializeAws_queryDefineSuggesterCommand
|
|
155
|
-
*/
|
|
156
|
-
export declare const de_DefineSuggesterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DefineSuggesterCommandOutput>;
|
|
157
|
-
/**
|
|
158
|
-
* deserializeAws_queryDeleteAnalysisSchemeCommand
|
|
159
|
-
*/
|
|
160
|
-
export declare const de_DeleteAnalysisSchemeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAnalysisSchemeCommandOutput>;
|
|
161
|
-
/**
|
|
162
|
-
* deserializeAws_queryDeleteDomainCommand
|
|
163
|
-
*/
|
|
164
|
-
export declare const de_DeleteDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDomainCommandOutput>;
|
|
165
|
-
/**
|
|
166
|
-
* deserializeAws_queryDeleteExpressionCommand
|
|
167
|
-
*/
|
|
168
|
-
export declare const de_DeleteExpressionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteExpressionCommandOutput>;
|
|
169
|
-
/**
|
|
170
|
-
* deserializeAws_queryDeleteIndexFieldCommand
|
|
171
|
-
*/
|
|
172
|
-
export declare const de_DeleteIndexFieldCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIndexFieldCommandOutput>;
|
|
173
|
-
/**
|
|
174
|
-
* deserializeAws_queryDeleteSuggesterCommand
|
|
175
|
-
*/
|
|
176
|
-
export declare const de_DeleteSuggesterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSuggesterCommandOutput>;
|
|
177
|
-
/**
|
|
178
|
-
* deserializeAws_queryDescribeAnalysisSchemesCommand
|
|
179
|
-
*/
|
|
180
|
-
export declare const de_DescribeAnalysisSchemesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAnalysisSchemesCommandOutput>;
|
|
181
|
-
/**
|
|
182
|
-
* deserializeAws_queryDescribeAvailabilityOptionsCommand
|
|
183
|
-
*/
|
|
184
|
-
export declare const de_DescribeAvailabilityOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAvailabilityOptionsCommandOutput>;
|
|
185
|
-
/**
|
|
186
|
-
* deserializeAws_queryDescribeDomainEndpointOptionsCommand
|
|
187
|
-
*/
|
|
188
|
-
export declare const de_DescribeDomainEndpointOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDomainEndpointOptionsCommandOutput>;
|
|
189
|
-
/**
|
|
190
|
-
* deserializeAws_queryDescribeDomainsCommand
|
|
191
|
-
*/
|
|
192
|
-
export declare const de_DescribeDomainsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDomainsCommandOutput>;
|
|
193
|
-
/**
|
|
194
|
-
* deserializeAws_queryDescribeExpressionsCommand
|
|
195
|
-
*/
|
|
196
|
-
export declare const de_DescribeExpressionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeExpressionsCommandOutput>;
|
|
197
|
-
/**
|
|
198
|
-
* deserializeAws_queryDescribeIndexFieldsCommand
|
|
199
|
-
*/
|
|
200
|
-
export declare const de_DescribeIndexFieldsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeIndexFieldsCommandOutput>;
|
|
201
|
-
/**
|
|
202
|
-
* deserializeAws_queryDescribeScalingParametersCommand
|
|
203
|
-
*/
|
|
204
|
-
export declare const de_DescribeScalingParametersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeScalingParametersCommandOutput>;
|
|
205
|
-
/**
|
|
206
|
-
* deserializeAws_queryDescribeServiceAccessPoliciesCommand
|
|
207
|
-
*/
|
|
208
|
-
export declare const de_DescribeServiceAccessPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeServiceAccessPoliciesCommandOutput>;
|
|
209
|
-
/**
|
|
210
|
-
* deserializeAws_queryDescribeSuggestersCommand
|
|
211
|
-
*/
|
|
212
|
-
export declare const de_DescribeSuggestersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSuggestersCommandOutput>;
|
|
213
|
-
/**
|
|
214
|
-
* deserializeAws_queryIndexDocumentsCommand
|
|
215
|
-
*/
|
|
216
|
-
export declare const de_IndexDocumentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<IndexDocumentsCommandOutput>;
|
|
217
|
-
/**
|
|
218
|
-
* deserializeAws_queryListDomainNamesCommand
|
|
219
|
-
*/
|
|
220
|
-
export declare const de_ListDomainNamesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDomainNamesCommandOutput>;
|
|
221
|
-
/**
|
|
222
|
-
* deserializeAws_queryUpdateAvailabilityOptionsCommand
|
|
223
|
-
*/
|
|
224
|
-
export declare const de_UpdateAvailabilityOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAvailabilityOptionsCommandOutput>;
|
|
225
|
-
/**
|
|
226
|
-
* deserializeAws_queryUpdateDomainEndpointOptionsCommand
|
|
227
|
-
*/
|
|
228
|
-
export declare const de_UpdateDomainEndpointOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDomainEndpointOptionsCommandOutput>;
|
|
229
|
-
/**
|
|
230
|
-
* deserializeAws_queryUpdateScalingParametersCommand
|
|
231
|
-
*/
|
|
232
|
-
export declare const de_UpdateScalingParametersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateScalingParametersCommandOutput>;
|
|
233
|
-
/**
|
|
234
|
-
* deserializeAws_queryUpdateServiceAccessPoliciesCommand
|
|
235
|
-
*/
|
|
236
|
-
export declare const de_UpdateServiceAccessPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateServiceAccessPoliciesCommandOutput>;
|
|
@@ -1,317 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
BuildSuggestersCommandInput,
|
|
8
|
-
BuildSuggestersCommandOutput,
|
|
9
|
-
} from "../commands/BuildSuggestersCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateDomainCommandInput,
|
|
12
|
-
CreateDomainCommandOutput,
|
|
13
|
-
} from "../commands/CreateDomainCommand";
|
|
14
|
-
import {
|
|
15
|
-
DefineAnalysisSchemeCommandInput,
|
|
16
|
-
DefineAnalysisSchemeCommandOutput,
|
|
17
|
-
} from "../commands/DefineAnalysisSchemeCommand";
|
|
18
|
-
import {
|
|
19
|
-
DefineExpressionCommandInput,
|
|
20
|
-
DefineExpressionCommandOutput,
|
|
21
|
-
} from "../commands/DefineExpressionCommand";
|
|
22
|
-
import {
|
|
23
|
-
DefineIndexFieldCommandInput,
|
|
24
|
-
DefineIndexFieldCommandOutput,
|
|
25
|
-
} from "../commands/DefineIndexFieldCommand";
|
|
26
|
-
import {
|
|
27
|
-
DefineSuggesterCommandInput,
|
|
28
|
-
DefineSuggesterCommandOutput,
|
|
29
|
-
} from "../commands/DefineSuggesterCommand";
|
|
30
|
-
import {
|
|
31
|
-
DeleteAnalysisSchemeCommandInput,
|
|
32
|
-
DeleteAnalysisSchemeCommandOutput,
|
|
33
|
-
} from "../commands/DeleteAnalysisSchemeCommand";
|
|
34
|
-
import {
|
|
35
|
-
DeleteDomainCommandInput,
|
|
36
|
-
DeleteDomainCommandOutput,
|
|
37
|
-
} from "../commands/DeleteDomainCommand";
|
|
38
|
-
import {
|
|
39
|
-
DeleteExpressionCommandInput,
|
|
40
|
-
DeleteExpressionCommandOutput,
|
|
41
|
-
} from "../commands/DeleteExpressionCommand";
|
|
42
|
-
import {
|
|
43
|
-
DeleteIndexFieldCommandInput,
|
|
44
|
-
DeleteIndexFieldCommandOutput,
|
|
45
|
-
} from "../commands/DeleteIndexFieldCommand";
|
|
46
|
-
import {
|
|
47
|
-
DeleteSuggesterCommandInput,
|
|
48
|
-
DeleteSuggesterCommandOutput,
|
|
49
|
-
} from "../commands/DeleteSuggesterCommand";
|
|
50
|
-
import {
|
|
51
|
-
DescribeAnalysisSchemesCommandInput,
|
|
52
|
-
DescribeAnalysisSchemesCommandOutput,
|
|
53
|
-
} from "../commands/DescribeAnalysisSchemesCommand";
|
|
54
|
-
import {
|
|
55
|
-
DescribeAvailabilityOptionsCommandInput,
|
|
56
|
-
DescribeAvailabilityOptionsCommandOutput,
|
|
57
|
-
} from "../commands/DescribeAvailabilityOptionsCommand";
|
|
58
|
-
import {
|
|
59
|
-
DescribeDomainEndpointOptionsCommandInput,
|
|
60
|
-
DescribeDomainEndpointOptionsCommandOutput,
|
|
61
|
-
} from "../commands/DescribeDomainEndpointOptionsCommand";
|
|
62
|
-
import {
|
|
63
|
-
DescribeDomainsCommandInput,
|
|
64
|
-
DescribeDomainsCommandOutput,
|
|
65
|
-
} from "../commands/DescribeDomainsCommand";
|
|
66
|
-
import {
|
|
67
|
-
DescribeExpressionsCommandInput,
|
|
68
|
-
DescribeExpressionsCommandOutput,
|
|
69
|
-
} from "../commands/DescribeExpressionsCommand";
|
|
70
|
-
import {
|
|
71
|
-
DescribeIndexFieldsCommandInput,
|
|
72
|
-
DescribeIndexFieldsCommandOutput,
|
|
73
|
-
} from "../commands/DescribeIndexFieldsCommand";
|
|
74
|
-
import {
|
|
75
|
-
DescribeScalingParametersCommandInput,
|
|
76
|
-
DescribeScalingParametersCommandOutput,
|
|
77
|
-
} from "../commands/DescribeScalingParametersCommand";
|
|
78
|
-
import {
|
|
79
|
-
DescribeServiceAccessPoliciesCommandInput,
|
|
80
|
-
DescribeServiceAccessPoliciesCommandOutput,
|
|
81
|
-
} from "../commands/DescribeServiceAccessPoliciesCommand";
|
|
82
|
-
import {
|
|
83
|
-
DescribeSuggestersCommandInput,
|
|
84
|
-
DescribeSuggestersCommandOutput,
|
|
85
|
-
} from "../commands/DescribeSuggestersCommand";
|
|
86
|
-
import {
|
|
87
|
-
IndexDocumentsCommandInput,
|
|
88
|
-
IndexDocumentsCommandOutput,
|
|
89
|
-
} from "../commands/IndexDocumentsCommand";
|
|
90
|
-
import {
|
|
91
|
-
ListDomainNamesCommandInput,
|
|
92
|
-
ListDomainNamesCommandOutput,
|
|
93
|
-
} from "../commands/ListDomainNamesCommand";
|
|
94
|
-
import {
|
|
95
|
-
UpdateAvailabilityOptionsCommandInput,
|
|
96
|
-
UpdateAvailabilityOptionsCommandOutput,
|
|
97
|
-
} from "../commands/UpdateAvailabilityOptionsCommand";
|
|
98
|
-
import {
|
|
99
|
-
UpdateDomainEndpointOptionsCommandInput,
|
|
100
|
-
UpdateDomainEndpointOptionsCommandOutput,
|
|
101
|
-
} from "../commands/UpdateDomainEndpointOptionsCommand";
|
|
102
|
-
import {
|
|
103
|
-
UpdateScalingParametersCommandInput,
|
|
104
|
-
UpdateScalingParametersCommandOutput,
|
|
105
|
-
} from "../commands/UpdateScalingParametersCommand";
|
|
106
|
-
import {
|
|
107
|
-
UpdateServiceAccessPoliciesCommandInput,
|
|
108
|
-
UpdateServiceAccessPoliciesCommandOutput,
|
|
109
|
-
} from "../commands/UpdateServiceAccessPoliciesCommand";
|
|
110
|
-
export declare const se_BuildSuggestersCommand: (
|
|
111
|
-
input: BuildSuggestersCommandInput,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const se_CreateDomainCommand: (
|
|
115
|
-
input: CreateDomainCommandInput,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const se_DefineAnalysisSchemeCommand: (
|
|
119
|
-
input: DefineAnalysisSchemeCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_DefineExpressionCommand: (
|
|
123
|
-
input: DefineExpressionCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_DefineIndexFieldCommand: (
|
|
127
|
-
input: DefineIndexFieldCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_DefineSuggesterCommand: (
|
|
131
|
-
input: DefineSuggesterCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const se_DeleteAnalysisSchemeCommand: (
|
|
135
|
-
input: DeleteAnalysisSchemeCommandInput,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const se_DeleteDomainCommand: (
|
|
139
|
-
input: DeleteDomainCommandInput,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const se_DeleteExpressionCommand: (
|
|
143
|
-
input: DeleteExpressionCommandInput,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<__HttpRequest>;
|
|
146
|
-
export declare const se_DeleteIndexFieldCommand: (
|
|
147
|
-
input: DeleteIndexFieldCommandInput,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<__HttpRequest>;
|
|
150
|
-
export declare const se_DeleteSuggesterCommand: (
|
|
151
|
-
input: DeleteSuggesterCommandInput,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<__HttpRequest>;
|
|
154
|
-
export declare const se_DescribeAnalysisSchemesCommand: (
|
|
155
|
-
input: DescribeAnalysisSchemesCommandInput,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<__HttpRequest>;
|
|
158
|
-
export declare const se_DescribeAvailabilityOptionsCommand: (
|
|
159
|
-
input: DescribeAvailabilityOptionsCommandInput,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<__HttpRequest>;
|
|
162
|
-
export declare const se_DescribeDomainEndpointOptionsCommand: (
|
|
163
|
-
input: DescribeDomainEndpointOptionsCommandInput,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<__HttpRequest>;
|
|
166
|
-
export declare const se_DescribeDomainsCommand: (
|
|
167
|
-
input: DescribeDomainsCommandInput,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<__HttpRequest>;
|
|
170
|
-
export declare const se_DescribeExpressionsCommand: (
|
|
171
|
-
input: DescribeExpressionsCommandInput,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<__HttpRequest>;
|
|
174
|
-
export declare const se_DescribeIndexFieldsCommand: (
|
|
175
|
-
input: DescribeIndexFieldsCommandInput,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<__HttpRequest>;
|
|
178
|
-
export declare const se_DescribeScalingParametersCommand: (
|
|
179
|
-
input: DescribeScalingParametersCommandInput,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<__HttpRequest>;
|
|
182
|
-
export declare const se_DescribeServiceAccessPoliciesCommand: (
|
|
183
|
-
input: DescribeServiceAccessPoliciesCommandInput,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<__HttpRequest>;
|
|
186
|
-
export declare const se_DescribeSuggestersCommand: (
|
|
187
|
-
input: DescribeSuggestersCommandInput,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<__HttpRequest>;
|
|
190
|
-
export declare const se_IndexDocumentsCommand: (
|
|
191
|
-
input: IndexDocumentsCommandInput,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<__HttpRequest>;
|
|
194
|
-
export declare const se_ListDomainNamesCommand: (
|
|
195
|
-
input: ListDomainNamesCommandInput,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<__HttpRequest>;
|
|
198
|
-
export declare const se_UpdateAvailabilityOptionsCommand: (
|
|
199
|
-
input: UpdateAvailabilityOptionsCommandInput,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<__HttpRequest>;
|
|
202
|
-
export declare const se_UpdateDomainEndpointOptionsCommand: (
|
|
203
|
-
input: UpdateDomainEndpointOptionsCommandInput,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<__HttpRequest>;
|
|
206
|
-
export declare const se_UpdateScalingParametersCommand: (
|
|
207
|
-
input: UpdateScalingParametersCommandInput,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<__HttpRequest>;
|
|
210
|
-
export declare const se_UpdateServiceAccessPoliciesCommand: (
|
|
211
|
-
input: UpdateServiceAccessPoliciesCommandInput,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<__HttpRequest>;
|
|
214
|
-
export declare const de_BuildSuggestersCommand: (
|
|
215
|
-
output: __HttpResponse,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<BuildSuggestersCommandOutput>;
|
|
218
|
-
export declare const de_CreateDomainCommand: (
|
|
219
|
-
output: __HttpResponse,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<CreateDomainCommandOutput>;
|
|
222
|
-
export declare const de_DefineAnalysisSchemeCommand: (
|
|
223
|
-
output: __HttpResponse,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<DefineAnalysisSchemeCommandOutput>;
|
|
226
|
-
export declare const de_DefineExpressionCommand: (
|
|
227
|
-
output: __HttpResponse,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<DefineExpressionCommandOutput>;
|
|
230
|
-
export declare const de_DefineIndexFieldCommand: (
|
|
231
|
-
output: __HttpResponse,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<DefineIndexFieldCommandOutput>;
|
|
234
|
-
export declare const de_DefineSuggesterCommand: (
|
|
235
|
-
output: __HttpResponse,
|
|
236
|
-
context: __SerdeContext
|
|
237
|
-
) => Promise<DefineSuggesterCommandOutput>;
|
|
238
|
-
export declare const de_DeleteAnalysisSchemeCommand: (
|
|
239
|
-
output: __HttpResponse,
|
|
240
|
-
context: __SerdeContext
|
|
241
|
-
) => Promise<DeleteAnalysisSchemeCommandOutput>;
|
|
242
|
-
export declare const de_DeleteDomainCommand: (
|
|
243
|
-
output: __HttpResponse,
|
|
244
|
-
context: __SerdeContext
|
|
245
|
-
) => Promise<DeleteDomainCommandOutput>;
|
|
246
|
-
export declare const de_DeleteExpressionCommand: (
|
|
247
|
-
output: __HttpResponse,
|
|
248
|
-
context: __SerdeContext
|
|
249
|
-
) => Promise<DeleteExpressionCommandOutput>;
|
|
250
|
-
export declare const de_DeleteIndexFieldCommand: (
|
|
251
|
-
output: __HttpResponse,
|
|
252
|
-
context: __SerdeContext
|
|
253
|
-
) => Promise<DeleteIndexFieldCommandOutput>;
|
|
254
|
-
export declare const de_DeleteSuggesterCommand: (
|
|
255
|
-
output: __HttpResponse,
|
|
256
|
-
context: __SerdeContext
|
|
257
|
-
) => Promise<DeleteSuggesterCommandOutput>;
|
|
258
|
-
export declare const de_DescribeAnalysisSchemesCommand: (
|
|
259
|
-
output: __HttpResponse,
|
|
260
|
-
context: __SerdeContext
|
|
261
|
-
) => Promise<DescribeAnalysisSchemesCommandOutput>;
|
|
262
|
-
export declare const de_DescribeAvailabilityOptionsCommand: (
|
|
263
|
-
output: __HttpResponse,
|
|
264
|
-
context: __SerdeContext
|
|
265
|
-
) => Promise<DescribeAvailabilityOptionsCommandOutput>;
|
|
266
|
-
export declare const de_DescribeDomainEndpointOptionsCommand: (
|
|
267
|
-
output: __HttpResponse,
|
|
268
|
-
context: __SerdeContext
|
|
269
|
-
) => Promise<DescribeDomainEndpointOptionsCommandOutput>;
|
|
270
|
-
export declare const de_DescribeDomainsCommand: (
|
|
271
|
-
output: __HttpResponse,
|
|
272
|
-
context: __SerdeContext
|
|
273
|
-
) => Promise<DescribeDomainsCommandOutput>;
|
|
274
|
-
export declare const de_DescribeExpressionsCommand: (
|
|
275
|
-
output: __HttpResponse,
|
|
276
|
-
context: __SerdeContext
|
|
277
|
-
) => Promise<DescribeExpressionsCommandOutput>;
|
|
278
|
-
export declare const de_DescribeIndexFieldsCommand: (
|
|
279
|
-
output: __HttpResponse,
|
|
280
|
-
context: __SerdeContext
|
|
281
|
-
) => Promise<DescribeIndexFieldsCommandOutput>;
|
|
282
|
-
export declare const de_DescribeScalingParametersCommand: (
|
|
283
|
-
output: __HttpResponse,
|
|
284
|
-
context: __SerdeContext
|
|
285
|
-
) => Promise<DescribeScalingParametersCommandOutput>;
|
|
286
|
-
export declare const de_DescribeServiceAccessPoliciesCommand: (
|
|
287
|
-
output: __HttpResponse,
|
|
288
|
-
context: __SerdeContext
|
|
289
|
-
) => Promise<DescribeServiceAccessPoliciesCommandOutput>;
|
|
290
|
-
export declare const de_DescribeSuggestersCommand: (
|
|
291
|
-
output: __HttpResponse,
|
|
292
|
-
context: __SerdeContext
|
|
293
|
-
) => Promise<DescribeSuggestersCommandOutput>;
|
|
294
|
-
export declare const de_IndexDocumentsCommand: (
|
|
295
|
-
output: __HttpResponse,
|
|
296
|
-
context: __SerdeContext
|
|
297
|
-
) => Promise<IndexDocumentsCommandOutput>;
|
|
298
|
-
export declare const de_ListDomainNamesCommand: (
|
|
299
|
-
output: __HttpResponse,
|
|
300
|
-
context: __SerdeContext
|
|
301
|
-
) => Promise<ListDomainNamesCommandOutput>;
|
|
302
|
-
export declare const de_UpdateAvailabilityOptionsCommand: (
|
|
303
|
-
output: __HttpResponse,
|
|
304
|
-
context: __SerdeContext
|
|
305
|
-
) => Promise<UpdateAvailabilityOptionsCommandOutput>;
|
|
306
|
-
export declare const de_UpdateDomainEndpointOptionsCommand: (
|
|
307
|
-
output: __HttpResponse,
|
|
308
|
-
context: __SerdeContext
|
|
309
|
-
) => Promise<UpdateDomainEndpointOptionsCommandOutput>;
|
|
310
|
-
export declare const de_UpdateScalingParametersCommand: (
|
|
311
|
-
output: __HttpResponse,
|
|
312
|
-
context: __SerdeContext
|
|
313
|
-
) => Promise<UpdateScalingParametersCommandOutput>;
|
|
314
|
-
export declare const de_UpdateServiceAccessPoliciesCommand: (
|
|
315
|
-
output: __HttpResponse,
|
|
316
|
-
context: __SerdeContext
|
|
317
|
-
) => Promise<UpdateServiceAccessPoliciesCommandOutput>;
|