@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,38 @@
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
+
23
+ export declare class DescribeExpressionsCommand extends $Command<
24
+ DescribeExpressionsCommandInput,
25
+ DescribeExpressionsCommandOutput,
26
+ CloudSearchClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeExpressionsCommandInput;
29
+ constructor(input: DescribeExpressionsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudSearchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeExpressionsCommandInput, DescribeExpressionsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
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 { DescribeIndexFieldsRequest, DescribeIndexFieldsResponse } from "../models/models_0";
5
- export interface DescribeIndexFieldsCommandInput extends DescribeIndexFieldsRequest {
6
- }
7
- export interface DescribeIndexFieldsCommandOutput extends DescribeIndexFieldsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeIndexFieldsCommand extends $Command<DescribeIndexFieldsCommandInput, DescribeIndexFieldsCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DescribeIndexFieldsCommandInput;
12
- constructor(input: DescribeIndexFieldsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeIndexFieldsCommandInput, DescribeIndexFieldsCommandOutput>;
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
+ DescribeIndexFieldsRequest,
15
+ DescribeIndexFieldsResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeIndexFieldsCommandInput
18
+ extends DescribeIndexFieldsRequest {}
19
+ export interface DescribeIndexFieldsCommandOutput
20
+ extends DescribeIndexFieldsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeIndexFieldsCommand extends $Command<
24
+ DescribeIndexFieldsCommandInput,
25
+ DescribeIndexFieldsCommandOutput,
26
+ CloudSearchClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeIndexFieldsCommandInput;
29
+ constructor(input: DescribeIndexFieldsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudSearchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeIndexFieldsCommandInput, DescribeIndexFieldsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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 { DescribeScalingParametersRequest, DescribeScalingParametersResponse } from "../models/models_0";
5
- export interface DescribeScalingParametersCommandInput extends DescribeScalingParametersRequest {
6
- }
7
- export interface DescribeScalingParametersCommandOutput extends DescribeScalingParametersResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeScalingParametersCommand extends $Command<DescribeScalingParametersCommandInput, DescribeScalingParametersCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DescribeScalingParametersCommandInput;
12
- constructor(input: DescribeScalingParametersCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeScalingParametersCommandInput, DescribeScalingParametersCommandOutput>;
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
+ DescribeScalingParametersRequest,
15
+ DescribeScalingParametersResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeScalingParametersCommandInput
18
+ extends DescribeScalingParametersRequest {}
19
+ export interface DescribeScalingParametersCommandOutput
20
+ extends DescribeScalingParametersResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeScalingParametersCommand extends $Command<
24
+ DescribeScalingParametersCommandInput,
25
+ DescribeScalingParametersCommandOutput,
26
+ CloudSearchClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeScalingParametersCommandInput;
29
+ constructor(input: DescribeScalingParametersCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudSearchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeScalingParametersCommandInput,
37
+ DescribeScalingParametersCommandOutput
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 { DescribeServiceAccessPoliciesRequest, DescribeServiceAccessPoliciesResponse } from "../models/models_0";
5
- export interface DescribeServiceAccessPoliciesCommandInput extends DescribeServiceAccessPoliciesRequest {
6
- }
7
- export interface DescribeServiceAccessPoliciesCommandOutput extends DescribeServiceAccessPoliciesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeServiceAccessPoliciesCommand extends $Command<DescribeServiceAccessPoliciesCommandInput, DescribeServiceAccessPoliciesCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DescribeServiceAccessPoliciesCommandInput;
12
- constructor(input: DescribeServiceAccessPoliciesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeServiceAccessPoliciesCommandInput, DescribeServiceAccessPoliciesCommandOutput>;
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
+ DescribeServiceAccessPoliciesRequest,
15
+ DescribeServiceAccessPoliciesResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeServiceAccessPoliciesCommandInput
18
+ extends DescribeServiceAccessPoliciesRequest {}
19
+ export interface DescribeServiceAccessPoliciesCommandOutput
20
+ extends DescribeServiceAccessPoliciesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeServiceAccessPoliciesCommand extends $Command<
24
+ DescribeServiceAccessPoliciesCommandInput,
25
+ DescribeServiceAccessPoliciesCommandOutput,
26
+ CloudSearchClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeServiceAccessPoliciesCommandInput;
29
+ constructor(input: DescribeServiceAccessPoliciesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudSearchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeServiceAccessPoliciesCommandInput,
37
+ DescribeServiceAccessPoliciesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
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 { DescribeSuggestersRequest, DescribeSuggestersResponse } from "../models/models_0";
5
- export interface DescribeSuggestersCommandInput extends DescribeSuggestersRequest {
6
- }
7
- export interface DescribeSuggestersCommandOutput extends DescribeSuggestersResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeSuggestersCommand extends $Command<DescribeSuggestersCommandInput, DescribeSuggestersCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: DescribeSuggestersCommandInput;
12
- constructor(input: DescribeSuggestersCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSuggestersCommandInput, DescribeSuggestersCommandOutput>;
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
+ DescribeSuggestersRequest,
15
+ DescribeSuggestersResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeSuggestersCommandInput
18
+ extends DescribeSuggestersRequest {}
19
+ export interface DescribeSuggestersCommandOutput
20
+ extends DescribeSuggestersResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeSuggestersCommand extends $Command<
24
+ DescribeSuggestersCommandInput,
25
+ DescribeSuggestersCommandOutput,
26
+ CloudSearchClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeSuggestersCommandInput;
29
+ constructor(input: DescribeSuggestersCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudSearchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeSuggestersCommandInput, DescribeSuggestersCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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 { IndexDocumentsRequest, IndexDocumentsResponse } from "../models/models_0";
5
- export interface IndexDocumentsCommandInput extends IndexDocumentsRequest {
6
- }
7
- export interface IndexDocumentsCommandOutput extends IndexDocumentsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class IndexDocumentsCommand extends $Command<IndexDocumentsCommandInput, IndexDocumentsCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: IndexDocumentsCommandInput;
12
- constructor(input: IndexDocumentsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<IndexDocumentsCommandInput, IndexDocumentsCommandOutput>;
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
+ IndexDocumentsRequest,
15
+ IndexDocumentsResponse,
16
+ } from "../models/models_0";
17
+ export interface IndexDocumentsCommandInput extends IndexDocumentsRequest {}
18
+ export interface IndexDocumentsCommandOutput
19
+ extends IndexDocumentsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class IndexDocumentsCommand extends $Command<
23
+ IndexDocumentsCommandInput,
24
+ IndexDocumentsCommandOutput,
25
+ CloudSearchClientResolvedConfig
26
+ > {
27
+ readonly input: IndexDocumentsCommandInput;
28
+ constructor(input: IndexDocumentsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CloudSearchClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<IndexDocumentsCommandInput, IndexDocumentsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { ListDomainNamesResponse } from "../models/models_0";
5
- export interface ListDomainNamesCommandInput {
6
- }
7
- export interface ListDomainNamesCommandOutput extends ListDomainNamesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListDomainNamesCommand extends $Command<ListDomainNamesCommandInput, ListDomainNamesCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: ListDomainNamesCommandInput;
12
- constructor(input: ListDomainNamesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDomainNamesCommandInput, ListDomainNamesCommandOutput>;
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 { ListDomainNamesResponse } from "../models/models_0";
14
+ export interface ListDomainNamesCommandInput {}
15
+ export interface ListDomainNamesCommandOutput
16
+ extends ListDomainNamesResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListDomainNamesCommand extends $Command<
20
+ ListDomainNamesCommandInput,
21
+ ListDomainNamesCommandOutput,
22
+ CloudSearchClientResolvedConfig
23
+ > {
24
+ readonly input: ListDomainNamesCommandInput;
25
+ constructor(input: ListDomainNamesCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CloudSearchClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListDomainNamesCommandInput, ListDomainNamesCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { UpdateAvailabilityOptionsRequest, UpdateAvailabilityOptionsResponse } from "../models/models_0";
5
- export interface UpdateAvailabilityOptionsCommandInput extends UpdateAvailabilityOptionsRequest {
6
- }
7
- export interface UpdateAvailabilityOptionsCommandOutput extends UpdateAvailabilityOptionsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateAvailabilityOptionsCommand extends $Command<UpdateAvailabilityOptionsCommandInput, UpdateAvailabilityOptionsCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: UpdateAvailabilityOptionsCommandInput;
12
- constructor(input: UpdateAvailabilityOptionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAvailabilityOptionsCommandInput, UpdateAvailabilityOptionsCommandOutput>;
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
+ UpdateAvailabilityOptionsRequest,
15
+ UpdateAvailabilityOptionsResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateAvailabilityOptionsCommandInput
18
+ extends UpdateAvailabilityOptionsRequest {}
19
+ export interface UpdateAvailabilityOptionsCommandOutput
20
+ extends UpdateAvailabilityOptionsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateAvailabilityOptionsCommand extends $Command<
24
+ UpdateAvailabilityOptionsCommandInput,
25
+ UpdateAvailabilityOptionsCommandOutput,
26
+ CloudSearchClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateAvailabilityOptionsCommandInput;
29
+ constructor(input: UpdateAvailabilityOptionsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudSearchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ UpdateAvailabilityOptionsCommandInput,
37
+ UpdateAvailabilityOptionsCommandOutput
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 { UpdateDomainEndpointOptionsRequest, UpdateDomainEndpointOptionsResponse } from "../models/models_0";
5
- export interface UpdateDomainEndpointOptionsCommandInput extends UpdateDomainEndpointOptionsRequest {
6
- }
7
- export interface UpdateDomainEndpointOptionsCommandOutput extends UpdateDomainEndpointOptionsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateDomainEndpointOptionsCommand extends $Command<UpdateDomainEndpointOptionsCommandInput, UpdateDomainEndpointOptionsCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: UpdateDomainEndpointOptionsCommandInput;
12
- constructor(input: UpdateDomainEndpointOptionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDomainEndpointOptionsCommandInput, UpdateDomainEndpointOptionsCommandOutput>;
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
+ UpdateDomainEndpointOptionsRequest,
15
+ UpdateDomainEndpointOptionsResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateDomainEndpointOptionsCommandInput
18
+ extends UpdateDomainEndpointOptionsRequest {}
19
+ export interface UpdateDomainEndpointOptionsCommandOutput
20
+ extends UpdateDomainEndpointOptionsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateDomainEndpointOptionsCommand extends $Command<
24
+ UpdateDomainEndpointOptionsCommandInput,
25
+ UpdateDomainEndpointOptionsCommandOutput,
26
+ CloudSearchClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateDomainEndpointOptionsCommandInput;
29
+ constructor(input: UpdateDomainEndpointOptionsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudSearchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ UpdateDomainEndpointOptionsCommandInput,
37
+ UpdateDomainEndpointOptionsCommandOutput
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 { UpdateScalingParametersRequest, UpdateScalingParametersResponse } from "../models/models_0";
5
- export interface UpdateScalingParametersCommandInput extends UpdateScalingParametersRequest {
6
- }
7
- export interface UpdateScalingParametersCommandOutput extends UpdateScalingParametersResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateScalingParametersCommand extends $Command<UpdateScalingParametersCommandInput, UpdateScalingParametersCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: UpdateScalingParametersCommandInput;
12
- constructor(input: UpdateScalingParametersCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateScalingParametersCommandInput, UpdateScalingParametersCommandOutput>;
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
+ UpdateScalingParametersRequest,
15
+ UpdateScalingParametersResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateScalingParametersCommandInput
18
+ extends UpdateScalingParametersRequest {}
19
+ export interface UpdateScalingParametersCommandOutput
20
+ extends UpdateScalingParametersResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateScalingParametersCommand extends $Command<
24
+ UpdateScalingParametersCommandInput,
25
+ UpdateScalingParametersCommandOutput,
26
+ CloudSearchClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateScalingParametersCommandInput;
29
+ constructor(input: UpdateScalingParametersCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudSearchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ UpdateScalingParametersCommandInput,
37
+ UpdateScalingParametersCommandOutput
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 { UpdateServiceAccessPoliciesRequest, UpdateServiceAccessPoliciesResponse } from "../models/models_0";
5
- export interface UpdateServiceAccessPoliciesCommandInput extends UpdateServiceAccessPoliciesRequest {
6
- }
7
- export interface UpdateServiceAccessPoliciesCommandOutput extends UpdateServiceAccessPoliciesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateServiceAccessPoliciesCommand extends $Command<UpdateServiceAccessPoliciesCommandInput, UpdateServiceAccessPoliciesCommandOutput, CloudSearchClientResolvedConfig> {
11
- readonly input: UpdateServiceAccessPoliciesCommandInput;
12
- constructor(input: UpdateServiceAccessPoliciesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudSearchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateServiceAccessPoliciesCommandInput, UpdateServiceAccessPoliciesCommandOutput>;
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
+ UpdateServiceAccessPoliciesRequest,
15
+ UpdateServiceAccessPoliciesResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateServiceAccessPoliciesCommandInput
18
+ extends UpdateServiceAccessPoliciesRequest {}
19
+ export interface UpdateServiceAccessPoliciesCommandOutput
20
+ extends UpdateServiceAccessPoliciesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateServiceAccessPoliciesCommand extends $Command<
24
+ UpdateServiceAccessPoliciesCommandInput,
25
+ UpdateServiceAccessPoliciesCommandOutput,
26
+ CloudSearchClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateServiceAccessPoliciesCommandInput;
29
+ constructor(input: UpdateServiceAccessPoliciesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudSearchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ UpdateServiceAccessPoliciesCommandInput,
37
+ UpdateServiceAccessPoliciesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }