@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/CloudSearch.d.ts +472 -135
- package/dist-types/ts3.4/CloudSearchClient.d.ts +285 -99
- package/dist-types/ts3.4/commands/BuildSuggestersCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DefineAnalysisSchemeCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DefineExpressionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DefineIndexFieldCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DefineSuggesterCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteAnalysisSchemeCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteExpressionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteIndexFieldCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteSuggesterCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeAnalysisSchemesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeAvailabilityOptionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeDomainEndpointOptionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeDomainsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeExpressionsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeIndexFieldsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeScalingParametersCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeServiceAccessPoliciesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeSuggestersCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/IndexDocumentsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListDomainNamesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateAvailabilityOptionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateDomainEndpointOptionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateScalingParametersCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateServiceAccessPoliciesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +26 -26
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/CloudSearchServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1060 -916
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +317 -80
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|