@aws-sdk/client-cloudsearch 3.1087.0 → 3.1089.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/CloudSearch.d.ts +79 -81
- package/dist-types/ts3.4/CloudSearchClient.d.ts +5 -14
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/BuildSuggestersCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DefineAnalysisSchemeCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DefineExpressionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DefineIndexFieldCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DefineSuggesterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteAnalysisSchemeCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteExpressionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteIndexFieldCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteSuggesterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeAnalysisSchemesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeAvailabilityOptionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeDomainEndpointOptionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeDomainsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/DescribeExpressionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeIndexFieldsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeScalingParametersCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeServiceAccessPoliciesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeSuggestersCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/IndexDocumentsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListDomainNamesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateAvailabilityOptionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateDomainEndpointOptionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateScalingParametersCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateServiceAccessPoliciesCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +3 -6
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DefineAnalysisSchemeRequest,
|
|
4
|
-
DefineAnalysisSchemeResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DefineAnalysisSchemeRequest, DefineAnalysisSchemeResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DefineAnalysisSchemeCommandInput
|
|
8
|
-
extends DefineAnalysisSchemeRequest {}
|
|
4
|
+
export interface DefineAnalysisSchemeCommandInput extends DefineAnalysisSchemeRequest {}
|
|
9
5
|
export interface DefineAnalysisSchemeCommandOutput
|
|
10
|
-
extends DefineAnalysisSchemeResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DefineAnalysisSchemeResponse, __MetadataBearer {}
|
|
12
7
|
declare const DefineAnalysisSchemeCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DefineAnalysisSchemeCommandInput
|
|
9
|
+
input: DefineAnalysisSchemeCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DefineAnalysisSchemeCommandInput,
|
|
17
12
|
DefineAnalysisSchemeCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DefineAnalysisSchemeCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DefineAnalysisSchemeCommandInput
|
|
18
|
+
input: DefineAnalysisSchemeCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DefineAnalysisSchemeCommandInput,
|
|
26
21
|
DefineAnalysisSchemeCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DefineExpressionRequest,
|
|
4
|
-
DefineExpressionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DefineExpressionRequest, DefineExpressionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DefineExpressionCommandInput extends DefineExpressionRequest {}
|
|
8
|
-
export interface DefineExpressionCommandOutput
|
|
9
|
-
extends DefineExpressionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DefineExpressionCommandOutput extends DefineExpressionResponse, __MetadataBearer {}
|
|
11
6
|
declare const DefineExpressionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DefineExpressionCommandInput
|
|
8
|
+
input: DefineExpressionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DefineExpressionCommandInput,
|
|
16
11
|
DefineExpressionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DefineExpressionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DefineExpressionCommandInput
|
|
17
|
+
input: DefineExpressionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DefineExpressionCommandInput,
|
|
25
20
|
DefineExpressionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DefineIndexFieldRequest,
|
|
4
|
-
DefineIndexFieldResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DefineIndexFieldRequest, DefineIndexFieldResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DefineIndexFieldCommandInput extends DefineIndexFieldRequest {}
|
|
8
|
-
export interface DefineIndexFieldCommandOutput
|
|
9
|
-
extends DefineIndexFieldResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DefineIndexFieldCommandOutput extends DefineIndexFieldResponse, __MetadataBearer {}
|
|
11
6
|
declare const DefineIndexFieldCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DefineIndexFieldCommandInput
|
|
8
|
+
input: DefineIndexFieldCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DefineIndexFieldCommandInput,
|
|
16
11
|
DefineIndexFieldCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DefineIndexFieldCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DefineIndexFieldCommandInput
|
|
17
|
+
input: DefineIndexFieldCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DefineIndexFieldCommandInput,
|
|
25
20
|
DefineIndexFieldCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DefineSuggesterRequest,
|
|
4
|
-
DefineSuggesterResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DefineSuggesterRequest, DefineSuggesterResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DefineSuggesterCommandInput extends DefineSuggesterRequest {}
|
|
8
|
-
export interface DefineSuggesterCommandOutput
|
|
9
|
-
extends DefineSuggesterResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DefineSuggesterCommandOutput extends DefineSuggesterResponse, __MetadataBearer {}
|
|
11
6
|
declare const DefineSuggesterCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DefineSuggesterCommandInput
|
|
8
|
+
input: DefineSuggesterCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DefineSuggesterCommandInput,
|
|
16
11
|
DefineSuggesterCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DefineSuggesterCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DefineSuggesterCommandInput
|
|
17
|
+
input: DefineSuggesterCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DefineSuggesterCommandInput,
|
|
25
20
|
DefineSuggesterCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteAnalysisSchemeRequest,
|
|
4
|
-
DeleteAnalysisSchemeResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteAnalysisSchemeRequest, DeleteAnalysisSchemeResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteAnalysisSchemeCommandInput
|
|
8
|
-
extends DeleteAnalysisSchemeRequest {}
|
|
4
|
+
export interface DeleteAnalysisSchemeCommandInput extends DeleteAnalysisSchemeRequest {}
|
|
9
5
|
export interface DeleteAnalysisSchemeCommandOutput
|
|
10
|
-
extends DeleteAnalysisSchemeResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteAnalysisSchemeResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteAnalysisSchemeCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteAnalysisSchemeCommandInput
|
|
9
|
+
input: DeleteAnalysisSchemeCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteAnalysisSchemeCommandInput,
|
|
17
12
|
DeleteAnalysisSchemeCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteAnalysisSchemeCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteAnalysisSchemeCommandInput
|
|
18
|
+
input: DeleteAnalysisSchemeCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteAnalysisSchemeCommandInput,
|
|
26
21
|
DeleteAnalysisSchemeCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteDomainCommandInput extends DeleteDomainRequest {}
|
|
5
|
-
export interface DeleteDomainCommandOutput
|
|
6
|
-
extends DeleteDomainResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __MetadataBearer {}
|
|
8
6
|
declare const DeleteDomainCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteDomainCommandInput
|
|
8
|
+
input: DeleteDomainCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteDomainCommandInput,
|
|
13
11
|
DeleteDomainCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteDomainCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteDomainCommandInput
|
|
17
|
+
input: DeleteDomainCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteDomainCommandInput,
|
|
22
20
|
DeleteDomainCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteExpressionRequest,
|
|
4
|
-
DeleteExpressionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteExpressionRequest, DeleteExpressionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteExpressionCommandInput extends DeleteExpressionRequest {}
|
|
8
|
-
export interface DeleteExpressionCommandOutput
|
|
9
|
-
extends DeleteExpressionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteExpressionCommandOutput extends DeleteExpressionResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteExpressionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteExpressionCommandInput
|
|
8
|
+
input: DeleteExpressionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteExpressionCommandInput,
|
|
16
11
|
DeleteExpressionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteExpressionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteExpressionCommandInput
|
|
17
|
+
input: DeleteExpressionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteExpressionCommandInput,
|
|
25
20
|
DeleteExpressionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteIndexFieldRequest,
|
|
4
|
-
DeleteIndexFieldResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteIndexFieldRequest, DeleteIndexFieldResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteIndexFieldCommandInput extends DeleteIndexFieldRequest {}
|
|
8
|
-
export interface DeleteIndexFieldCommandOutput
|
|
9
|
-
extends DeleteIndexFieldResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteIndexFieldCommandOutput extends DeleteIndexFieldResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteIndexFieldCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteIndexFieldCommandInput
|
|
8
|
+
input: DeleteIndexFieldCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteIndexFieldCommandInput,
|
|
16
11
|
DeleteIndexFieldCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteIndexFieldCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteIndexFieldCommandInput
|
|
17
|
+
input: DeleteIndexFieldCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteIndexFieldCommandInput,
|
|
25
20
|
DeleteIndexFieldCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteSuggesterRequest,
|
|
4
|
-
DeleteSuggesterResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteSuggesterRequest, DeleteSuggesterResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteSuggesterCommandInput extends DeleteSuggesterRequest {}
|
|
8
|
-
export interface DeleteSuggesterCommandOutput
|
|
9
|
-
extends DeleteSuggesterResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteSuggesterCommandOutput extends DeleteSuggesterResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteSuggesterCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteSuggesterCommandInput
|
|
8
|
+
input: DeleteSuggesterCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteSuggesterCommandInput,
|
|
16
11
|
DeleteSuggesterCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteSuggesterCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteSuggesterCommandInput
|
|
17
|
+
input: DeleteSuggesterCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteSuggesterCommandInput,
|
|
25
20
|
DeleteSuggesterCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeAnalysisSchemesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeAnalysisSchemesCommandInput
|
|
8
|
-
extends DescribeAnalysisSchemesRequest {}
|
|
7
|
+
export interface DescribeAnalysisSchemesCommandInput extends DescribeAnalysisSchemesRequest {}
|
|
9
8
|
export interface DescribeAnalysisSchemesCommandOutput
|
|
10
|
-
extends DescribeAnalysisSchemesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeAnalysisSchemesResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeAnalysisSchemesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeAnalysisSchemesCommandInput
|
|
12
|
+
input: DescribeAnalysisSchemesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeAnalysisSchemesCommandInput,
|
|
17
15
|
DescribeAnalysisSchemesCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeAnalysisSchemesCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeAnalysisSchemesCommandInput
|
|
21
|
+
input: DescribeAnalysisSchemesCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeAnalysisSchemesCommandInput,
|
|
26
24
|
DescribeAnalysisSchemesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeAvailabilityOptionsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeAvailabilityOptionsCommandInput
|
|
8
|
-
extends DescribeAvailabilityOptionsRequest {}
|
|
7
|
+
export interface DescribeAvailabilityOptionsCommandInput extends DescribeAvailabilityOptionsRequest {}
|
|
9
8
|
export interface DescribeAvailabilityOptionsCommandOutput
|
|
10
|
-
extends DescribeAvailabilityOptionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeAvailabilityOptionsResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeAvailabilityOptionsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeAvailabilityOptionsCommandInput
|
|
12
|
+
input: DescribeAvailabilityOptionsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeAvailabilityOptionsCommandInput,
|
|
17
15
|
DescribeAvailabilityOptionsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeAvailabilityOptionsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeAvailabilityOptionsCommandInput
|
|
21
|
+
input: DescribeAvailabilityOptionsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeAvailabilityOptionsCommandInput,
|
|
26
24
|
DescribeAvailabilityOptionsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeDomainEndpointOptionsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeDomainEndpointOptionsCommandInput
|
|
8
|
-
extends DescribeDomainEndpointOptionsRequest {}
|
|
7
|
+
export interface DescribeDomainEndpointOptionsCommandInput extends DescribeDomainEndpointOptionsRequest {}
|
|
9
8
|
export interface DescribeDomainEndpointOptionsCommandOutput
|
|
10
|
-
extends DescribeDomainEndpointOptionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeDomainEndpointOptionsResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeDomainEndpointOptionsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeDomainEndpointOptionsCommandInput
|
|
12
|
+
input: DescribeDomainEndpointOptionsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeDomainEndpointOptionsCommandInput,
|
|
17
15
|
DescribeDomainEndpointOptionsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeDomainEndpointOptionsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeDomainEndpointOptionsCommandInput
|
|
21
|
+
input: DescribeDomainEndpointOptionsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeDomainEndpointOptionsCommandInput,
|
|
26
24
|
DescribeDomainEndpointOptionsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeDomainsRequest,
|
|
4
|
-
DescribeDomainsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeDomainsRequest, DescribeDomainsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DescribeDomainsCommandInput extends DescribeDomainsRequest {}
|
|
8
|
-
export interface DescribeDomainsCommandOutput
|
|
9
|
-
extends DescribeDomainsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeDomainsCommandOutput extends DescribeDomainsResponse, __MetadataBearer {}
|
|
11
6
|
declare const DescribeDomainsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DescribeDomainsCommandInput
|
|
8
|
+
input: DescribeDomainsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DescribeDomainsCommandInput,
|
|
16
11
|
DescribeDomainsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeExpressionsRequest,
|
|
4
|
-
DescribeExpressionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeExpressionsRequest, DescribeExpressionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeExpressionsCommandInput
|
|
8
|
-
extends DescribeExpressionsRequest {}
|
|
4
|
+
export interface DescribeExpressionsCommandInput extends DescribeExpressionsRequest {}
|
|
9
5
|
export interface DescribeExpressionsCommandOutput
|
|
10
|
-
extends DescribeExpressionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeExpressionsResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeExpressionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeExpressionsCommandInput
|
|
9
|
+
input: DescribeExpressionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeExpressionsCommandInput,
|
|
17
12
|
DescribeExpressionsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeExpressionsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeExpressionsCommandInput
|
|
18
|
+
input: DescribeExpressionsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeExpressionsCommandInput,
|
|
26
21
|
DescribeExpressionsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeIndexFieldsRequest,
|
|
4
|
-
DescribeIndexFieldsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeIndexFieldsRequest, DescribeIndexFieldsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeIndexFieldsCommandInput
|
|
8
|
-
extends DescribeIndexFieldsRequest {}
|
|
4
|
+
export interface DescribeIndexFieldsCommandInput extends DescribeIndexFieldsRequest {}
|
|
9
5
|
export interface DescribeIndexFieldsCommandOutput
|
|
10
|
-
extends DescribeIndexFieldsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeIndexFieldsResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeIndexFieldsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeIndexFieldsCommandInput
|
|
9
|
+
input: DescribeIndexFieldsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeIndexFieldsCommandInput,
|
|
17
12
|
DescribeIndexFieldsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeIndexFieldsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeIndexFieldsCommandInput
|
|
18
|
+
input: DescribeIndexFieldsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeIndexFieldsCommandInput,
|
|
26
21
|
DescribeIndexFieldsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeScalingParametersResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeScalingParametersCommandInput
|
|
8
|
-
extends DescribeScalingParametersRequest {}
|
|
7
|
+
export interface DescribeScalingParametersCommandInput extends DescribeScalingParametersRequest {}
|
|
9
8
|
export interface DescribeScalingParametersCommandOutput
|
|
10
|
-
extends DescribeScalingParametersResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeScalingParametersResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeScalingParametersCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeScalingParametersCommandInput
|
|
12
|
+
input: DescribeScalingParametersCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeScalingParametersCommandInput,
|
|
17
15
|
DescribeScalingParametersCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeScalingParametersCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeScalingParametersCommandInput
|
|
21
|
+
input: DescribeScalingParametersCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeScalingParametersCommandInput,
|
|
26
24
|
DescribeScalingParametersCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeServiceAccessPoliciesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeServiceAccessPoliciesCommandInput
|
|
8
|
-
extends DescribeServiceAccessPoliciesRequest {}
|
|
7
|
+
export interface DescribeServiceAccessPoliciesCommandInput extends DescribeServiceAccessPoliciesRequest {}
|
|
9
8
|
export interface DescribeServiceAccessPoliciesCommandOutput
|
|
10
|
-
extends DescribeServiceAccessPoliciesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeServiceAccessPoliciesResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeServiceAccessPoliciesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeServiceAccessPoliciesCommandInput
|
|
12
|
+
input: DescribeServiceAccessPoliciesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeServiceAccessPoliciesCommandInput,
|
|
17
15
|
DescribeServiceAccessPoliciesCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeServiceAccessPoliciesCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeServiceAccessPoliciesCommandInput
|
|
21
|
+
input: DescribeServiceAccessPoliciesCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeServiceAccessPoliciesCommandInput,
|
|
26
24
|
DescribeServiceAccessPoliciesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeSuggestersRequest,
|
|
4
|
-
DescribeSuggestersResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeSuggestersRequest, DescribeSuggestersResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeSuggestersCommandInput
|
|
8
|
-
extends DescribeSuggestersRequest {}
|
|
4
|
+
export interface DescribeSuggestersCommandInput extends DescribeSuggestersRequest {}
|
|
9
5
|
export interface DescribeSuggestersCommandOutput
|
|
10
|
-
extends DescribeSuggestersResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeSuggestersResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeSuggestersCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeSuggestersCommandInput
|
|
9
|
+
input: DescribeSuggestersCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeSuggestersCommandInput,
|
|
17
12
|
DescribeSuggestersCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeSuggestersCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeSuggestersCommandInput
|
|
18
|
+
input: DescribeSuggestersCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeSuggestersCommandInput,
|
|
26
21
|
DescribeSuggestersCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
IndexDocumentsRequest,
|
|
4
|
-
IndexDocumentsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { IndexDocumentsRequest, IndexDocumentsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface IndexDocumentsCommandInput extends IndexDocumentsRequest {}
|
|
8
|
-
export interface IndexDocumentsCommandOutput
|
|
9
|
-
extends IndexDocumentsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface IndexDocumentsCommandOutput extends IndexDocumentsResponse, __MetadataBearer {}
|
|
11
6
|
declare const IndexDocumentsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: IndexDocumentsCommandInput
|
|
8
|
+
input: IndexDocumentsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
IndexDocumentsCommandInput,
|
|
16
11
|
IndexDocumentsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const IndexDocumentsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: IndexDocumentsCommandInput
|
|
17
|
+
input: IndexDocumentsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
IndexDocumentsCommandInput,
|
|
25
20
|
IndexDocumentsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListDomainNamesResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListDomainNamesCommandInput {}
|
|
5
|
-
export interface ListDomainNamesCommandOutput
|
|
6
|
-
extends ListDomainNamesResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListDomainNamesCommandOutput extends ListDomainNamesResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListDomainNamesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListDomainNamesCommandInput
|
|
8
|
+
input: ListDomainNamesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListDomainNamesCommandInput,
|
|
13
11
|
ListDomainNamesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateAvailabilityOptionsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateAvailabilityOptionsCommandInput
|
|
8
|
-
extends UpdateAvailabilityOptionsRequest {}
|
|
7
|
+
export interface UpdateAvailabilityOptionsCommandInput extends UpdateAvailabilityOptionsRequest {}
|
|
9
8
|
export interface UpdateAvailabilityOptionsCommandOutput
|
|
10
|
-
extends UpdateAvailabilityOptionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateAvailabilityOptionsResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateAvailabilityOptionsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateAvailabilityOptionsCommandInput
|
|
12
|
+
input: UpdateAvailabilityOptionsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateAvailabilityOptionsCommandInput,
|
|
17
15
|
UpdateAvailabilityOptionsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateAvailabilityOptionsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateAvailabilityOptionsCommandInput
|
|
21
|
+
input: UpdateAvailabilityOptionsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateAvailabilityOptionsCommandInput,
|
|
26
24
|
UpdateAvailabilityOptionsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateDomainEndpointOptionsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateDomainEndpointOptionsCommandInput
|
|
8
|
-
extends UpdateDomainEndpointOptionsRequest {}
|
|
7
|
+
export interface UpdateDomainEndpointOptionsCommandInput extends UpdateDomainEndpointOptionsRequest {}
|
|
9
8
|
export interface UpdateDomainEndpointOptionsCommandOutput
|
|
10
|
-
extends UpdateDomainEndpointOptionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateDomainEndpointOptionsResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateDomainEndpointOptionsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateDomainEndpointOptionsCommandInput
|
|
12
|
+
input: UpdateDomainEndpointOptionsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateDomainEndpointOptionsCommandInput,
|
|
17
15
|
UpdateDomainEndpointOptionsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateDomainEndpointOptionsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateDomainEndpointOptionsCommandInput
|
|
21
|
+
input: UpdateDomainEndpointOptionsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateDomainEndpointOptionsCommandInput,
|
|
26
24
|
UpdateDomainEndpointOptionsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateScalingParametersResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateScalingParametersCommandInput
|
|
8
|
-
extends UpdateScalingParametersRequest {}
|
|
7
|
+
export interface UpdateScalingParametersCommandInput extends UpdateScalingParametersRequest {}
|
|
9
8
|
export interface UpdateScalingParametersCommandOutput
|
|
10
|
-
extends UpdateScalingParametersResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateScalingParametersResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateScalingParametersCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateScalingParametersCommandInput
|
|
12
|
+
input: UpdateScalingParametersCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateScalingParametersCommandInput,
|
|
17
15
|
UpdateScalingParametersCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateScalingParametersCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateScalingParametersCommandInput
|
|
21
|
+
input: UpdateScalingParametersCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateScalingParametersCommandInput,
|
|
26
24
|
UpdateScalingParametersCommandOutput,
|