@aws-sdk/client-cloudsearch 3.169.0 → 3.171.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 +16 -0
  2. package/dist-types/ts3.4/CloudSearch.d.ts +446 -135
  3. package/dist-types/ts3.4/CloudSearchClient.d.ts +260 -99
  4. package/dist-types/ts3.4/commands/BuildSuggestersCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/DefineAnalysisSchemeCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/DefineExpressionCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/DefineIndexFieldCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DefineSuggesterCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/DeleteAnalysisSchemeCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/DeleteExpressionCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/DeleteIndexFieldCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/DeleteSuggesterCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/DescribeAnalysisSchemesCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/DescribeAvailabilityOptionsCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/DescribeDomainEndpointOptionsCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/DescribeDomainsCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/DescribeExpressionsCommand.d.ts +36 -17
  20. package/dist-types/ts3.4/commands/DescribeIndexFieldsCommand.d.ts +36 -17
  21. package/dist-types/ts3.4/commands/DescribeScalingParametersCommand.d.ts +39 -17
  22. package/dist-types/ts3.4/commands/DescribeServiceAccessPoliciesCommand.d.ts +39 -17
  23. package/dist-types/ts3.4/commands/DescribeSuggestersCommand.d.ts +36 -17
  24. package/dist-types/ts3.4/commands/IndexDocumentsCommand.d.ts +35 -17
  25. package/dist-types/ts3.4/commands/ListDomainNamesCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/UpdateAvailabilityOptionsCommand.d.ts +39 -17
  27. package/dist-types/ts3.4/commands/UpdateDomainEndpointOptionsCommand.d.ts +39 -17
  28. package/dist-types/ts3.4/commands/UpdateScalingParametersCommand.d.ts +39 -17
  29. package/dist-types/ts3.4/commands/UpdateServiceAccessPoliciesCommand.d.ts +39 -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 +7 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +744 -916
  36. package/dist-types/ts3.4/protocols/Aws_query.d.ts +317 -80
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  41. package/package.json +34 -34
@@ -1,17 +1,35 @@
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
+ export declare class DefineSuggesterCommand extends $Command<
22
+ DefineSuggesterCommandInput,
23
+ DefineSuggesterCommandOutput,
24
+ CloudSearchClientResolvedConfig
25
+ > {
26
+ readonly input: DefineSuggesterCommandInput;
27
+ constructor(input: DefineSuggesterCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: CloudSearchClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DefineSuggesterCommandInput, DefineSuggesterCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,39 @@
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
+ export declare class DeleteAnalysisSchemeCommand extends $Command<
23
+ DeleteAnalysisSchemeCommandInput,
24
+ DeleteAnalysisSchemeCommandOutput,
25
+ CloudSearchClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteAnalysisSchemeCommandInput;
28
+ constructor(input: DeleteAnalysisSchemeCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: CloudSearchClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DeleteAnalysisSchemeCommandInput,
35
+ DeleteAnalysisSchemeCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,32 @@
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
+ export declare class DeleteDomainCommand extends $Command<
19
+ DeleteDomainCommandInput,
20
+ DeleteDomainCommandOutput,
21
+ CloudSearchClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteDomainCommandInput;
24
+ constructor(input: DeleteDomainCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: CloudSearchClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteDomainCommandInput, DeleteDomainCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
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
+ export declare class DeleteExpressionCommand extends $Command<
22
+ DeleteExpressionCommandInput,
23
+ DeleteExpressionCommandOutput,
24
+ CloudSearchClientResolvedConfig
25
+ > {
26
+ readonly input: DeleteExpressionCommandInput;
27
+ constructor(input: DeleteExpressionCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: CloudSearchClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DeleteExpressionCommandInput, DeleteExpressionCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,35 @@
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
+ export declare class DeleteIndexFieldCommand extends $Command<
22
+ DeleteIndexFieldCommandInput,
23
+ DeleteIndexFieldCommandOutput,
24
+ CloudSearchClientResolvedConfig
25
+ > {
26
+ readonly input: DeleteIndexFieldCommandInput;
27
+ constructor(input: DeleteIndexFieldCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: CloudSearchClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DeleteIndexFieldCommandInput, DeleteIndexFieldCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,35 @@
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
+ export declare class DeleteSuggesterCommand extends $Command<
22
+ DeleteSuggesterCommandInput,
23
+ DeleteSuggesterCommandOutput,
24
+ CloudSearchClientResolvedConfig
25
+ > {
26
+ readonly input: DeleteSuggesterCommandInput;
27
+ constructor(input: DeleteSuggesterCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: CloudSearchClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DeleteSuggesterCommandInput, DeleteSuggesterCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,39 @@
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
+ export declare class DescribeAnalysisSchemesCommand extends $Command<
23
+ DescribeAnalysisSchemesCommandInput,
24
+ DescribeAnalysisSchemesCommandOutput,
25
+ CloudSearchClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeAnalysisSchemesCommandInput;
28
+ constructor(input: DescribeAnalysisSchemesCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: CloudSearchClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeAnalysisSchemesCommandInput,
35
+ DescribeAnalysisSchemesCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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
+ export declare class DescribeAvailabilityOptionsCommand extends $Command<
23
+ DescribeAvailabilityOptionsCommandInput,
24
+ DescribeAvailabilityOptionsCommandOutput,
25
+ CloudSearchClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeAvailabilityOptionsCommandInput;
28
+ constructor(input: DescribeAvailabilityOptionsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: CloudSearchClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeAvailabilityOptionsCommandInput,
35
+ DescribeAvailabilityOptionsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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
+ export declare class DescribeDomainEndpointOptionsCommand extends $Command<
23
+ DescribeDomainEndpointOptionsCommandInput,
24
+ DescribeDomainEndpointOptionsCommandOutput,
25
+ CloudSearchClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeDomainEndpointOptionsCommandInput;
28
+ constructor(input: DescribeDomainEndpointOptionsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: CloudSearchClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeDomainEndpointOptionsCommandInput,
35
+ DescribeDomainEndpointOptionsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
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
+ export declare class DescribeDomainsCommand extends $Command<
22
+ DescribeDomainsCommandInput,
23
+ DescribeDomainsCommandOutput,
24
+ CloudSearchClientResolvedConfig
25
+ > {
26
+ readonly input: DescribeDomainsCommandInput;
27
+ constructor(input: DescribeDomainsCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: CloudSearchClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DescribeDomainsCommandInput, DescribeDomainsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
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 { DescribeExpressionsRequest, DescribeExpressionsResponse } from "../models/models_0";
5
- export interface DescribeExpressionsCommandInput extends DescribeExpressionsRequest {
6
- }
7
- export interface DescribeExpressionsCommandOutput extends DescribeExpressionsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeExpressionsCommand extends $Command<DescribeExpressionsCommandInput, DescribeExpressionsCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DescribeExpressionsCommandInput;
12
- constructor(input: DescribeExpressionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeExpressionsCommandInput, DescribeExpressionsCommandOutput>;
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
+ DescribeExpressionsRequest,
15
+ DescribeExpressionsResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeExpressionsCommandInput
18
+ extends DescribeExpressionsRequest {}
19
+ export interface DescribeExpressionsCommandOutput
20
+ extends DescribeExpressionsResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeExpressionsCommand extends $Command<
23
+ DescribeExpressionsCommandInput,
24
+ DescribeExpressionsCommandOutput,
25
+ CloudSearchClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeExpressionsCommandInput;
28
+ constructor(input: DescribeExpressionsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: CloudSearchClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DescribeExpressionsCommandInput, DescribeExpressionsCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }