@aws-sdk/client-cloudsearch 3.50.0 → 3.51.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/CloudSearch.d.ts +135 -0
- package/dist-types/ts3.4/CloudSearchClient.d.ts +99 -0
- package/dist-types/ts3.4/commands/BuildSuggestersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DefineAnalysisSchemeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DefineExpressionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DefineIndexFieldCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DefineSuggesterCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteAnalysisSchemeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteExpressionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteIndexFieldCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteSuggesterCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAnalysisSchemesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAvailabilityOptionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeDomainEndpointOptionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeDomainsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeExpressionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeIndexFieldsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeScalingParametersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeServiceAccessPoliciesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeSuggestersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/IndexDocumentsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDomainNamesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateAvailabilityOptionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDomainEndpointOptionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateScalingParametersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateServiceAccessPoliciesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +26 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +4 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1065 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +80 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export * from "./BuildSuggestersCommand";
|
|
2
|
+
export * from "./CreateDomainCommand";
|
|
3
|
+
export * from "./DefineAnalysisSchemeCommand";
|
|
4
|
+
export * from "./DefineExpressionCommand";
|
|
5
|
+
export * from "./DefineIndexFieldCommand";
|
|
6
|
+
export * from "./DefineSuggesterCommand";
|
|
7
|
+
export * from "./DeleteAnalysisSchemeCommand";
|
|
8
|
+
export * from "./DeleteDomainCommand";
|
|
9
|
+
export * from "./DeleteExpressionCommand";
|
|
10
|
+
export * from "./DeleteIndexFieldCommand";
|
|
11
|
+
export * from "./DeleteSuggesterCommand";
|
|
12
|
+
export * from "./DescribeAnalysisSchemesCommand";
|
|
13
|
+
export * from "./DescribeAvailabilityOptionsCommand";
|
|
14
|
+
export * from "./DescribeDomainEndpointOptionsCommand";
|
|
15
|
+
export * from "./DescribeDomainsCommand";
|
|
16
|
+
export * from "./DescribeExpressionsCommand";
|
|
17
|
+
export * from "./DescribeIndexFieldsCommand";
|
|
18
|
+
export * from "./DescribeScalingParametersCommand";
|
|
19
|
+
export * from "./DescribeServiceAccessPoliciesCommand";
|
|
20
|
+
export * from "./DescribeSuggestersCommand";
|
|
21
|
+
export * from "./IndexDocumentsCommand";
|
|
22
|
+
export * from "./ListDomainNamesCommand";
|
|
23
|
+
export * from "./UpdateAvailabilityOptionsCommand";
|
|
24
|
+
export * from "./UpdateDomainEndpointOptionsCommand";
|
|
25
|
+
export * from "./UpdateScalingParametersCommand";
|
|
26
|
+
export * from "./UpdateServiceAccessPoliciesCommand";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|