@aws-sdk/client-elasticsearch-service 3.202.0 → 3.208.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/ElasticsearchService.js +135 -0
- package/dist-cjs/commands/AuthorizeVpcEndpointAccessCommand.js +46 -0
- package/dist-cjs/commands/CreateVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/DeleteVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/DescribeVpcEndpointsCommand.js +46 -0
- package/dist-cjs/commands/ListVpcEndpointAccessCommand.js +46 -0
- package/dist-cjs/commands/ListVpcEndpointsCommand.js +46 -0
- package/dist-cjs/commands/ListVpcEndpointsForDomainCommand.js +46 -0
- package/dist-cjs/commands/RevokeVpcEndpointAccessCommand.js +46 -0
- package/dist-cjs/commands/UpdateVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/index.js +9 -0
- package/dist-cjs/models/models_0.js +249 -4
- package/dist-cjs/protocols/Aws_restJson1.js +764 -72
- package/dist-cjs/runtimeConfig.browser.js +0 -3
- package/dist-cjs/runtimeConfig.js +0 -3
- package/dist-cjs/runtimeConfig.shared.js +3 -0
- package/dist-es/ElasticsearchService.js +135 -0
- package/dist-es/commands/AuthorizeVpcEndpointAccessCommand.js +42 -0
- package/dist-es/commands/CreateVpcEndpointCommand.js +42 -0
- package/dist-es/commands/DeleteVpcEndpointCommand.js +42 -0
- package/dist-es/commands/DescribeVpcEndpointsCommand.js +42 -0
- package/dist-es/commands/ListVpcEndpointAccessCommand.js +42 -0
- package/dist-es/commands/ListVpcEndpointsCommand.js +42 -0
- package/dist-es/commands/ListVpcEndpointsForDomainCommand.js +42 -0
- package/dist-es/commands/RevokeVpcEndpointAccessCommand.js +42 -0
- package/dist-es/commands/UpdateVpcEndpointCommand.js +42 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +222 -0
- package/dist-es/protocols/Aws_restJson1.js +741 -67
- package/dist-es/runtimeConfig.browser.js +0 -3
- package/dist-es/runtimeConfig.js +0 -3
- package/dist-es/runtimeConfig.shared.js +3 -0
- package/dist-types/ElasticsearchService.d.ts +65 -0
- package/dist-types/ElasticsearchServiceClient.d.ts +11 -2
- package/dist-types/commands/AuthorizeVpcEndpointAccessCommand.d.ts +37 -0
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +37 -0
- package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +37 -0
- package/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +37 -0
- package/dist-types/commands/ListVpcEndpointAccessCommand.d.ts +38 -0
- package/dist-types/commands/ListVpcEndpointsCommand.d.ts +37 -0
- package/dist-types/commands/ListVpcEndpointsForDomainCommand.d.ts +37 -0
- package/dist-types/commands/RevokeVpcEndpointAccessCommand.d.ts +38 -0
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +523 -12
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/ElasticsearchService.d.ts +153 -0
- package/dist-types/ts3.4/ElasticsearchServiceClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/AuthorizeVpcEndpointAccessCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeVpcEndpointsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListVpcEndpointAccessCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListVpcEndpointsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListVpcEndpointsForDomainCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/RevokeVpcEndpointAccessCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +291 -104
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +35 -34
- package/CHANGELOG.md +0 -4175
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ElasticsearchServiceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ElasticsearchServiceClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateVpcEndpointRequest,
|
|
16
|
+
CreateVpcEndpointResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface CreateVpcEndpointCommandInput
|
|
19
|
+
extends CreateVpcEndpointRequest {}
|
|
20
|
+
export interface CreateVpcEndpointCommandOutput
|
|
21
|
+
extends CreateVpcEndpointResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateVpcEndpointCommand extends $Command<
|
|
24
|
+
CreateVpcEndpointCommandInput,
|
|
25
|
+
CreateVpcEndpointCommandOutput,
|
|
26
|
+
ElasticsearchServiceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateVpcEndpointCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateVpcEndpointCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ElasticsearchServiceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateVpcEndpointCommandInput, CreateVpcEndpointCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ElasticsearchServiceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ElasticsearchServiceClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteVpcEndpointRequest,
|
|
16
|
+
DeleteVpcEndpointResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface DeleteVpcEndpointCommandInput
|
|
19
|
+
extends DeleteVpcEndpointRequest {}
|
|
20
|
+
export interface DeleteVpcEndpointCommandOutput
|
|
21
|
+
extends DeleteVpcEndpointResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteVpcEndpointCommand extends $Command<
|
|
24
|
+
DeleteVpcEndpointCommandInput,
|
|
25
|
+
DeleteVpcEndpointCommandOutput,
|
|
26
|
+
ElasticsearchServiceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteVpcEndpointCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteVpcEndpointCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ElasticsearchServiceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteVpcEndpointCommandInput, DeleteVpcEndpointCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ElasticsearchServiceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ElasticsearchServiceClient";
|
|
14
|
+
import {
|
|
15
|
+
DescribeVpcEndpointsRequest,
|
|
16
|
+
DescribeVpcEndpointsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface DescribeVpcEndpointsCommandInput
|
|
19
|
+
extends DescribeVpcEndpointsRequest {}
|
|
20
|
+
export interface DescribeVpcEndpointsCommandOutput
|
|
21
|
+
extends DescribeVpcEndpointsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DescribeVpcEndpointsCommand extends $Command<
|
|
24
|
+
DescribeVpcEndpointsCommandInput,
|
|
25
|
+
DescribeVpcEndpointsCommandOutput,
|
|
26
|
+
ElasticsearchServiceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeVpcEndpointsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DescribeVpcEndpointsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ElasticsearchServiceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeVpcEndpointsCommandInput,
|
|
37
|
+
DescribeVpcEndpointsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ElasticsearchServiceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ElasticsearchServiceClient";
|
|
14
|
+
import {
|
|
15
|
+
ListVpcEndpointAccessRequest,
|
|
16
|
+
ListVpcEndpointAccessResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface ListVpcEndpointAccessCommandInput
|
|
19
|
+
extends ListVpcEndpointAccessRequest {}
|
|
20
|
+
export interface ListVpcEndpointAccessCommandOutput
|
|
21
|
+
extends ListVpcEndpointAccessResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListVpcEndpointAccessCommand extends $Command<
|
|
24
|
+
ListVpcEndpointAccessCommandInput,
|
|
25
|
+
ListVpcEndpointAccessCommandOutput,
|
|
26
|
+
ElasticsearchServiceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListVpcEndpointAccessCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListVpcEndpointAccessCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ElasticsearchServiceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListVpcEndpointAccessCommandInput,
|
|
37
|
+
ListVpcEndpointAccessCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ElasticsearchServiceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ElasticsearchServiceClient";
|
|
14
|
+
import {
|
|
15
|
+
ListVpcEndpointsRequest,
|
|
16
|
+
ListVpcEndpointsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface ListVpcEndpointsCommandInput extends ListVpcEndpointsRequest {}
|
|
19
|
+
export interface ListVpcEndpointsCommandOutput
|
|
20
|
+
extends ListVpcEndpointsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListVpcEndpointsCommand extends $Command<
|
|
23
|
+
ListVpcEndpointsCommandInput,
|
|
24
|
+
ListVpcEndpointsCommandOutput,
|
|
25
|
+
ElasticsearchServiceClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListVpcEndpointsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: ListVpcEndpointsCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ElasticsearchServiceClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListVpcEndpointsCommandInput, ListVpcEndpointsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ElasticsearchServiceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ElasticsearchServiceClient";
|
|
14
|
+
import {
|
|
15
|
+
ListVpcEndpointsForDomainRequest,
|
|
16
|
+
ListVpcEndpointsForDomainResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface ListVpcEndpointsForDomainCommandInput
|
|
19
|
+
extends ListVpcEndpointsForDomainRequest {}
|
|
20
|
+
export interface ListVpcEndpointsForDomainCommandOutput
|
|
21
|
+
extends ListVpcEndpointsForDomainResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListVpcEndpointsForDomainCommand extends $Command<
|
|
24
|
+
ListVpcEndpointsForDomainCommandInput,
|
|
25
|
+
ListVpcEndpointsForDomainCommandOutput,
|
|
26
|
+
ElasticsearchServiceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListVpcEndpointsForDomainCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListVpcEndpointsForDomainCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ElasticsearchServiceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListVpcEndpointsForDomainCommandInput,
|
|
37
|
+
ListVpcEndpointsForDomainCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ElasticsearchServiceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ElasticsearchServiceClient";
|
|
14
|
+
import {
|
|
15
|
+
RevokeVpcEndpointAccessRequest,
|
|
16
|
+
RevokeVpcEndpointAccessResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface RevokeVpcEndpointAccessCommandInput
|
|
19
|
+
extends RevokeVpcEndpointAccessRequest {}
|
|
20
|
+
export interface RevokeVpcEndpointAccessCommandOutput
|
|
21
|
+
extends RevokeVpcEndpointAccessResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class RevokeVpcEndpointAccessCommand extends $Command<
|
|
24
|
+
RevokeVpcEndpointAccessCommandInput,
|
|
25
|
+
RevokeVpcEndpointAccessCommandOutput,
|
|
26
|
+
ElasticsearchServiceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: RevokeVpcEndpointAccessCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: RevokeVpcEndpointAccessCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ElasticsearchServiceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
RevokeVpcEndpointAccessCommandInput,
|
|
37
|
+
RevokeVpcEndpointAccessCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ElasticsearchServiceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ElasticsearchServiceClient";
|
|
14
|
+
import {
|
|
15
|
+
UpdateVpcEndpointRequest,
|
|
16
|
+
UpdateVpcEndpointResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface UpdateVpcEndpointCommandInput
|
|
19
|
+
extends UpdateVpcEndpointRequest {}
|
|
20
|
+
export interface UpdateVpcEndpointCommandOutput
|
|
21
|
+
extends UpdateVpcEndpointResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class UpdateVpcEndpointCommand extends $Command<
|
|
24
|
+
UpdateVpcEndpointCommandInput,
|
|
25
|
+
UpdateVpcEndpointCommandOutput,
|
|
26
|
+
ElasticsearchServiceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateVpcEndpointCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UpdateVpcEndpointCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ElasticsearchServiceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UpdateVpcEndpointCommandInput, UpdateVpcEndpointCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
export * from "./AcceptInboundCrossClusterSearchConnectionCommand";
|
|
2
2
|
export * from "./AddTagsCommand";
|
|
3
3
|
export * from "./AssociatePackageCommand";
|
|
4
|
+
export * from "./AuthorizeVpcEndpointAccessCommand";
|
|
4
5
|
export * from "./CancelElasticsearchServiceSoftwareUpdateCommand";
|
|
5
6
|
export * from "./CreateElasticsearchDomainCommand";
|
|
6
7
|
export * from "./CreateOutboundCrossClusterSearchConnectionCommand";
|
|
7
8
|
export * from "./CreatePackageCommand";
|
|
9
|
+
export * from "./CreateVpcEndpointCommand";
|
|
8
10
|
export * from "./DeleteElasticsearchDomainCommand";
|
|
9
11
|
export * from "./DeleteElasticsearchServiceRoleCommand";
|
|
10
12
|
export * from "./DeleteInboundCrossClusterSearchConnectionCommand";
|
|
11
13
|
export * from "./DeleteOutboundCrossClusterSearchConnectionCommand";
|
|
12
14
|
export * from "./DeletePackageCommand";
|
|
15
|
+
export * from "./DeleteVpcEndpointCommand";
|
|
13
16
|
export * from "./DescribeDomainAutoTunesCommand";
|
|
14
17
|
export * from "./DescribeDomainChangeProgressCommand";
|
|
15
18
|
export * from "./DescribeElasticsearchDomainCommand";
|
|
@@ -21,6 +24,7 @@ export * from "./DescribeOutboundCrossClusterSearchConnectionsCommand";
|
|
|
21
24
|
export * from "./DescribePackagesCommand";
|
|
22
25
|
export * from "./DescribeReservedElasticsearchInstanceOfferingsCommand";
|
|
23
26
|
export * from "./DescribeReservedElasticsearchInstancesCommand";
|
|
27
|
+
export * from "./DescribeVpcEndpointsCommand";
|
|
24
28
|
export * from "./DissociatePackageCommand";
|
|
25
29
|
export * from "./GetCompatibleElasticsearchVersionsCommand";
|
|
26
30
|
export * from "./GetPackageVersionHistoryCommand";
|
|
@@ -32,10 +36,15 @@ export * from "./ListElasticsearchInstanceTypesCommand";
|
|
|
32
36
|
export * from "./ListElasticsearchVersionsCommand";
|
|
33
37
|
export * from "./ListPackagesForDomainCommand";
|
|
34
38
|
export * from "./ListTagsCommand";
|
|
39
|
+
export * from "./ListVpcEndpointAccessCommand";
|
|
40
|
+
export * from "./ListVpcEndpointsCommand";
|
|
41
|
+
export * from "./ListVpcEndpointsForDomainCommand";
|
|
35
42
|
export * from "./PurchaseReservedElasticsearchInstanceOfferingCommand";
|
|
36
43
|
export * from "./RejectInboundCrossClusterSearchConnectionCommand";
|
|
37
44
|
export * from "./RemoveTagsCommand";
|
|
45
|
+
export * from "./RevokeVpcEndpointAccessCommand";
|
|
38
46
|
export * from "./StartElasticsearchServiceSoftwareUpdateCommand";
|
|
39
47
|
export * from "./UpdateElasticsearchDomainConfigCommand";
|
|
40
48
|
export * from "./UpdatePackageCommand";
|
|
49
|
+
export * from "./UpdateVpcEndpointCommand";
|
|
41
50
|
export * from "./UpgradeElasticsearchDomainCommand";
|