@aws-sdk/client-cloudsearch 3.169.0 → 3.170.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 (41) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/CloudSearch.d.ts +472 -135
  3. package/dist-types/ts3.4/CloudSearchClient.d.ts +285 -99
  4. package/dist-types/ts3.4/commands/BuildSuggestersCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/DefineAnalysisSchemeCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/DefineExpressionCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/DefineIndexFieldCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DefineSuggesterCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DeleteAnalysisSchemeCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/DeleteExpressionCommand.d.ts +37 -17
  13. package/dist-types/ts3.4/commands/DeleteIndexFieldCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/DeleteSuggesterCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/DescribeAnalysisSchemesCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/DescribeAvailabilityOptionsCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/DescribeDomainEndpointOptionsCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/DescribeDomainsCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/DescribeExpressionsCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/DescribeIndexFieldsCommand.d.ts +38 -17
  21. package/dist-types/ts3.4/commands/DescribeScalingParametersCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/DescribeServiceAccessPoliciesCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/DescribeSuggestersCommand.d.ts +38 -17
  24. package/dist-types/ts3.4/commands/IndexDocumentsCommand.d.ts +37 -17
  25. package/dist-types/ts3.4/commands/ListDomainNamesCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/UpdateAvailabilityOptionsCommand.d.ts +41 -17
  27. package/dist-types/ts3.4/commands/UpdateDomainEndpointOptionsCommand.d.ts +41 -17
  28. package/dist-types/ts3.4/commands/UpdateScalingParametersCommand.d.ts +41 -17
  29. package/dist-types/ts3.4/commands/UpdateServiceAccessPoliciesCommand.d.ts +41 -17
  30. package/dist-types/ts3.4/commands/index.d.ts +26 -26
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  32. package/dist-types/ts3.4/index.d.ts +5 -5
  33. package/dist-types/ts3.4/models/CloudSearchServiceException.d.ts +8 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +1060 -916
  36. package/dist-types/ts3.4/protocols/Aws_query.d.ts +317 -80
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  41. package/package.json +34 -34
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient";
4
- import { DefineIndexFieldRequest, DefineIndexFieldResponse } from "../models/models_0";
5
- export interface DefineIndexFieldCommandInput extends DefineIndexFieldRequest {
6
- }
7
- export interface DefineIndexFieldCommandOutput extends DefineIndexFieldResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DefineIndexFieldCommand extends $Command<DefineIndexFieldCommandInput, DefineIndexFieldCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DefineIndexFieldCommandInput;
12
- constructor(input: DefineIndexFieldCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DefineIndexFieldCommandInput, DefineIndexFieldCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudSearchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudSearchClient";
13
+ import {
14
+ DefineIndexFieldRequest,
15
+ DefineIndexFieldResponse,
16
+ } from "../models/models_0";
17
+ export interface DefineIndexFieldCommandInput extends DefineIndexFieldRequest {}
18
+ export interface DefineIndexFieldCommandOutput
19
+ extends DefineIndexFieldResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DefineIndexFieldCommand extends $Command<
23
+ DefineIndexFieldCommandInput,
24
+ DefineIndexFieldCommandOutput,
25
+ CloudSearchClientResolvedConfig
26
+ > {
27
+ readonly input: DefineIndexFieldCommandInput;
28
+ constructor(input: DefineIndexFieldCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CloudSearchClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DefineIndexFieldCommandInput, DefineIndexFieldCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient";
4
- import { DefineSuggesterRequest, DefineSuggesterResponse } from "../models/models_0";
5
- export interface DefineSuggesterCommandInput extends DefineSuggesterRequest {
6
- }
7
- export interface DefineSuggesterCommandOutput extends DefineSuggesterResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DefineSuggesterCommand extends $Command<DefineSuggesterCommandInput, DefineSuggesterCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DefineSuggesterCommandInput;
12
- constructor(input: DefineSuggesterCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DefineSuggesterCommandInput, DefineSuggesterCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudSearchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudSearchClient";
13
+ import {
14
+ DefineSuggesterRequest,
15
+ DefineSuggesterResponse,
16
+ } from "../models/models_0";
17
+ export interface DefineSuggesterCommandInput extends DefineSuggesterRequest {}
18
+ export interface DefineSuggesterCommandOutput
19
+ extends DefineSuggesterResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DefineSuggesterCommand extends $Command<
23
+ DefineSuggesterCommandInput,
24
+ DefineSuggesterCommandOutput,
25
+ CloudSearchClientResolvedConfig
26
+ > {
27
+ readonly input: DefineSuggesterCommandInput;
28
+ constructor(input: DefineSuggesterCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CloudSearchClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DefineSuggesterCommandInput, DefineSuggesterCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient";
4
- import { DeleteAnalysisSchemeRequest, DeleteAnalysisSchemeResponse } from "../models/models_0";
5
- export interface DeleteAnalysisSchemeCommandInput extends DeleteAnalysisSchemeRequest {
6
- }
7
- export interface DeleteAnalysisSchemeCommandOutput extends DeleteAnalysisSchemeResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteAnalysisSchemeCommand extends $Command<DeleteAnalysisSchemeCommandInput, DeleteAnalysisSchemeCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DeleteAnalysisSchemeCommandInput;
12
- constructor(input: DeleteAnalysisSchemeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAnalysisSchemeCommandInput, DeleteAnalysisSchemeCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudSearchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudSearchClient";
13
+ import {
14
+ DeleteAnalysisSchemeRequest,
15
+ DeleteAnalysisSchemeResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteAnalysisSchemeCommandInput
18
+ extends DeleteAnalysisSchemeRequest {}
19
+ export interface DeleteAnalysisSchemeCommandOutput
20
+ extends DeleteAnalysisSchemeResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteAnalysisSchemeCommand extends $Command<
24
+ DeleteAnalysisSchemeCommandInput,
25
+ DeleteAnalysisSchemeCommandOutput,
26
+ CloudSearchClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteAnalysisSchemeCommandInput;
29
+ constructor(input: DeleteAnalysisSchemeCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudSearchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteAnalysisSchemeCommandInput,
37
+ DeleteAnalysisSchemeCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient";
4
- import { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0";
5
- export interface DeleteDomainCommandInput extends DeleteDomainRequest {
6
- }
7
- export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteDomainCommand extends $Command<DeleteDomainCommandInput, DeleteDomainCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DeleteDomainCommandInput;
12
- constructor(input: DeleteDomainCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDomainCommandInput, DeleteDomainCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudSearchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudSearchClient";
13
+ import { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0";
14
+ export interface DeleteDomainCommandInput extends DeleteDomainRequest {}
15
+ export interface DeleteDomainCommandOutput
16
+ extends DeleteDomainResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DeleteDomainCommand extends $Command<
20
+ DeleteDomainCommandInput,
21
+ DeleteDomainCommandOutput,
22
+ CloudSearchClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteDomainCommandInput;
25
+ constructor(input: DeleteDomainCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CloudSearchClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeleteDomainCommandInput, DeleteDomainCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient";
4
- import { DeleteExpressionRequest, DeleteExpressionResponse } from "../models/models_0";
5
- export interface DeleteExpressionCommandInput extends DeleteExpressionRequest {
6
- }
7
- export interface DeleteExpressionCommandOutput extends DeleteExpressionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteExpressionCommand extends $Command<DeleteExpressionCommandInput, DeleteExpressionCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DeleteExpressionCommandInput;
12
- constructor(input: DeleteExpressionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteExpressionCommandInput, DeleteExpressionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudSearchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudSearchClient";
13
+ import {
14
+ DeleteExpressionRequest,
15
+ DeleteExpressionResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteExpressionCommandInput extends DeleteExpressionRequest {}
18
+ export interface DeleteExpressionCommandOutput
19
+ extends DeleteExpressionResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DeleteExpressionCommand extends $Command<
23
+ DeleteExpressionCommandInput,
24
+ DeleteExpressionCommandOutput,
25
+ CloudSearchClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteExpressionCommandInput;
28
+ constructor(input: DeleteExpressionCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CloudSearchClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteExpressionCommandInput, DeleteExpressionCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient";
4
- import { DeleteIndexFieldRequest, DeleteIndexFieldResponse } from "../models/models_0";
5
- export interface DeleteIndexFieldCommandInput extends DeleteIndexFieldRequest {
6
- }
7
- export interface DeleteIndexFieldCommandOutput extends DeleteIndexFieldResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteIndexFieldCommand extends $Command<DeleteIndexFieldCommandInput, DeleteIndexFieldCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DeleteIndexFieldCommandInput;
12
- constructor(input: DeleteIndexFieldCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteIndexFieldCommandInput, DeleteIndexFieldCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudSearchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudSearchClient";
13
+ import {
14
+ DeleteIndexFieldRequest,
15
+ DeleteIndexFieldResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteIndexFieldCommandInput extends DeleteIndexFieldRequest {}
18
+ export interface DeleteIndexFieldCommandOutput
19
+ extends DeleteIndexFieldResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DeleteIndexFieldCommand extends $Command<
23
+ DeleteIndexFieldCommandInput,
24
+ DeleteIndexFieldCommandOutput,
25
+ CloudSearchClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteIndexFieldCommandInput;
28
+ constructor(input: DeleteIndexFieldCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CloudSearchClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteIndexFieldCommandInput, DeleteIndexFieldCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient";
4
- import { DeleteSuggesterRequest, DeleteSuggesterResponse } from "../models/models_0";
5
- export interface DeleteSuggesterCommandInput extends DeleteSuggesterRequest {
6
- }
7
- export interface DeleteSuggesterCommandOutput extends DeleteSuggesterResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteSuggesterCommand extends $Command<DeleteSuggesterCommandInput, DeleteSuggesterCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DeleteSuggesterCommandInput;
12
- constructor(input: DeleteSuggesterCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSuggesterCommandInput, DeleteSuggesterCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudSearchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudSearchClient";
13
+ import {
14
+ DeleteSuggesterRequest,
15
+ DeleteSuggesterResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteSuggesterCommandInput extends DeleteSuggesterRequest {}
18
+ export interface DeleteSuggesterCommandOutput
19
+ extends DeleteSuggesterResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DeleteSuggesterCommand extends $Command<
23
+ DeleteSuggesterCommandInput,
24
+ DeleteSuggesterCommandOutput,
25
+ CloudSearchClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteSuggesterCommandInput;
28
+ constructor(input: DeleteSuggesterCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CloudSearchClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteSuggesterCommandInput, DeleteSuggesterCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient";
4
- import { DescribeAnalysisSchemesRequest, DescribeAnalysisSchemesResponse } from "../models/models_0";
5
- export interface DescribeAnalysisSchemesCommandInput extends DescribeAnalysisSchemesRequest {
6
- }
7
- export interface DescribeAnalysisSchemesCommandOutput extends DescribeAnalysisSchemesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeAnalysisSchemesCommand extends $Command<DescribeAnalysisSchemesCommandInput, DescribeAnalysisSchemesCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DescribeAnalysisSchemesCommandInput;
12
- constructor(input: DescribeAnalysisSchemesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAnalysisSchemesCommandInput, DescribeAnalysisSchemesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudSearchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudSearchClient";
13
+ import {
14
+ DescribeAnalysisSchemesRequest,
15
+ DescribeAnalysisSchemesResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeAnalysisSchemesCommandInput
18
+ extends DescribeAnalysisSchemesRequest {}
19
+ export interface DescribeAnalysisSchemesCommandOutput
20
+ extends DescribeAnalysisSchemesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeAnalysisSchemesCommand extends $Command<
24
+ DescribeAnalysisSchemesCommandInput,
25
+ DescribeAnalysisSchemesCommandOutput,
26
+ CloudSearchClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeAnalysisSchemesCommandInput;
29
+ constructor(input: DescribeAnalysisSchemesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudSearchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeAnalysisSchemesCommandInput,
37
+ DescribeAnalysisSchemesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient";
4
- import { DescribeAvailabilityOptionsRequest, DescribeAvailabilityOptionsResponse } from "../models/models_0";
5
- export interface DescribeAvailabilityOptionsCommandInput extends DescribeAvailabilityOptionsRequest {
6
- }
7
- export interface DescribeAvailabilityOptionsCommandOutput extends DescribeAvailabilityOptionsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeAvailabilityOptionsCommand extends $Command<DescribeAvailabilityOptionsCommandInput, DescribeAvailabilityOptionsCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DescribeAvailabilityOptionsCommandInput;
12
- constructor(input: DescribeAvailabilityOptionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAvailabilityOptionsCommandInput, DescribeAvailabilityOptionsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudSearchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudSearchClient";
13
+ import {
14
+ DescribeAvailabilityOptionsRequest,
15
+ DescribeAvailabilityOptionsResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeAvailabilityOptionsCommandInput
18
+ extends DescribeAvailabilityOptionsRequest {}
19
+ export interface DescribeAvailabilityOptionsCommandOutput
20
+ extends DescribeAvailabilityOptionsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeAvailabilityOptionsCommand extends $Command<
24
+ DescribeAvailabilityOptionsCommandInput,
25
+ DescribeAvailabilityOptionsCommandOutput,
26
+ CloudSearchClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeAvailabilityOptionsCommandInput;
29
+ constructor(input: DescribeAvailabilityOptionsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudSearchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeAvailabilityOptionsCommandInput,
37
+ DescribeAvailabilityOptionsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient";
4
- import { DescribeDomainEndpointOptionsRequest, DescribeDomainEndpointOptionsResponse } from "../models/models_0";
5
- export interface DescribeDomainEndpointOptionsCommandInput extends DescribeDomainEndpointOptionsRequest {
6
- }
7
- export interface DescribeDomainEndpointOptionsCommandOutput extends DescribeDomainEndpointOptionsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeDomainEndpointOptionsCommand extends $Command<DescribeDomainEndpointOptionsCommandInput, DescribeDomainEndpointOptionsCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DescribeDomainEndpointOptionsCommandInput;
12
- constructor(input: DescribeDomainEndpointOptionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDomainEndpointOptionsCommandInput, DescribeDomainEndpointOptionsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudSearchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudSearchClient";
13
+ import {
14
+ DescribeDomainEndpointOptionsRequest,
15
+ DescribeDomainEndpointOptionsResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeDomainEndpointOptionsCommandInput
18
+ extends DescribeDomainEndpointOptionsRequest {}
19
+ export interface DescribeDomainEndpointOptionsCommandOutput
20
+ extends DescribeDomainEndpointOptionsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeDomainEndpointOptionsCommand extends $Command<
24
+ DescribeDomainEndpointOptionsCommandInput,
25
+ DescribeDomainEndpointOptionsCommandOutput,
26
+ CloudSearchClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeDomainEndpointOptionsCommandInput;
29
+ constructor(input: DescribeDomainEndpointOptionsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudSearchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeDomainEndpointOptionsCommandInput,
37
+ DescribeDomainEndpointOptionsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient";
4
- import { DescribeDomainsRequest, DescribeDomainsResponse } from "../models/models_0";
5
- export interface DescribeDomainsCommandInput extends DescribeDomainsRequest {
6
- }
7
- export interface DescribeDomainsCommandOutput extends DescribeDomainsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeDomainsCommand extends $Command<DescribeDomainsCommandInput, DescribeDomainsCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DescribeDomainsCommandInput;
12
- constructor(input: DescribeDomainsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDomainsCommandInput, DescribeDomainsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudSearchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudSearchClient";
13
+ import {
14
+ DescribeDomainsRequest,
15
+ DescribeDomainsResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeDomainsCommandInput extends DescribeDomainsRequest {}
18
+ export interface DescribeDomainsCommandOutput
19
+ extends DescribeDomainsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DescribeDomainsCommand extends $Command<
23
+ DescribeDomainsCommandInput,
24
+ DescribeDomainsCommandOutput,
25
+ CloudSearchClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeDomainsCommandInput;
28
+ constructor(input: DescribeDomainsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CloudSearchClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeDomainsCommandInput, DescribeDomainsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }