@aws-sdk/client-finspace 3.345.0 → 3.346.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/README.md +208 -0
- package/dist-cjs/Finspace.js +52 -0
- package/dist-cjs/commands/CreateKxChangesetCommand.js +46 -0
- package/dist-cjs/commands/CreateKxClusterCommand.js +46 -0
- package/dist-cjs/commands/CreateKxDatabaseCommand.js +46 -0
- package/dist-cjs/commands/CreateKxEnvironmentCommand.js +46 -0
- package/dist-cjs/commands/CreateKxUserCommand.js +46 -0
- package/dist-cjs/commands/DeleteKxClusterCommand.js +46 -0
- package/dist-cjs/commands/DeleteKxDatabaseCommand.js +46 -0
- package/dist-cjs/commands/DeleteKxEnvironmentCommand.js +46 -0
- package/dist-cjs/commands/DeleteKxUserCommand.js +46 -0
- package/dist-cjs/commands/GetKxChangesetCommand.js +46 -0
- package/dist-cjs/commands/GetKxClusterCommand.js +46 -0
- package/dist-cjs/commands/GetKxConnectionStringCommand.js +47 -0
- package/dist-cjs/commands/GetKxDatabaseCommand.js +46 -0
- package/dist-cjs/commands/GetKxEnvironmentCommand.js +46 -0
- package/dist-cjs/commands/GetKxUserCommand.js +46 -0
- package/dist-cjs/commands/ListKxChangesetsCommand.js +46 -0
- package/dist-cjs/commands/ListKxClusterNodesCommand.js +46 -0
- package/dist-cjs/commands/ListKxClustersCommand.js +46 -0
- package/dist-cjs/commands/ListKxDatabasesCommand.js +46 -0
- package/dist-cjs/commands/ListKxEnvironmentsCommand.js +46 -0
- package/dist-cjs/commands/ListKxUsersCommand.js +46 -0
- package/dist-cjs/commands/UpdateKxClusterDatabasesCommand.js +46 -0
- package/dist-cjs/commands/UpdateKxDatabaseCommand.js +46 -0
- package/dist-cjs/commands/UpdateKxEnvironmentCommand.js +46 -0
- package/dist-cjs/commands/UpdateKxEnvironmentNetworkCommand.js +46 -0
- package/dist-cjs/commands/UpdateKxUserCommand.js +46 -0
- package/dist-cjs/commands/index.js +26 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/index.js +1 -0
- package/dist-cjs/models/models_0.js +98 -1
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListKxChangesetsPaginator.js +29 -0
- package/dist-cjs/pagination/ListKxClusterNodesPaginator.js +29 -0
- package/dist-cjs/pagination/ListKxDatabasesPaginator.js +29 -0
- package/dist-cjs/pagination/ListKxEnvironmentsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +8 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2270 -125
- package/dist-es/Finspace.js +52 -0
- package/dist-es/commands/CreateKxChangesetCommand.js +42 -0
- package/dist-es/commands/CreateKxClusterCommand.js +42 -0
- package/dist-es/commands/CreateKxDatabaseCommand.js +42 -0
- package/dist-es/commands/CreateKxEnvironmentCommand.js +42 -0
- package/dist-es/commands/CreateKxUserCommand.js +42 -0
- package/dist-es/commands/DeleteKxClusterCommand.js +42 -0
- package/dist-es/commands/DeleteKxDatabaseCommand.js +42 -0
- package/dist-es/commands/DeleteKxEnvironmentCommand.js +42 -0
- package/dist-es/commands/DeleteKxUserCommand.js +42 -0
- package/dist-es/commands/GetKxChangesetCommand.js +42 -0
- package/dist-es/commands/GetKxClusterCommand.js +42 -0
- package/dist-es/commands/GetKxConnectionStringCommand.js +43 -0
- package/dist-es/commands/GetKxDatabaseCommand.js +42 -0
- package/dist-es/commands/GetKxEnvironmentCommand.js +42 -0
- package/dist-es/commands/GetKxUserCommand.js +42 -0
- package/dist-es/commands/ListKxChangesetsCommand.js +42 -0
- package/dist-es/commands/ListKxClusterNodesCommand.js +42 -0
- package/dist-es/commands/ListKxClustersCommand.js +42 -0
- package/dist-es/commands/ListKxDatabasesCommand.js +42 -0
- package/dist-es/commands/ListKxEnvironmentsCommand.js +42 -0
- package/dist-es/commands/ListKxUsersCommand.js +42 -0
- package/dist-es/commands/UpdateKxClusterDatabasesCommand.js +42 -0
- package/dist-es/commands/UpdateKxDatabaseCommand.js +42 -0
- package/dist-es/commands/UpdateKxEnvironmentCommand.js +42 -0
- package/dist-es/commands/UpdateKxEnvironmentNetworkCommand.js +42 -0
- package/dist-es/commands/UpdateKxUserCommand.js +42 -0
- package/dist-es/commands/index.js +26 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/index.js +1 -0
- package/dist-es/models/models_0.js +94 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListKxChangesetsPaginator.js +25 -0
- package/dist-es/pagination/ListKxClusterNodesPaginator.js +25 -0
- package/dist-es/pagination/ListKxDatabasesPaginator.js +25 -0
- package/dist-es/pagination/ListKxEnvironmentsPaginator.js +25 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +2192 -100
- package/dist-types/Finspace.d.ts +182 -0
- package/dist-types/FinspaceClient.d.ts +28 -2
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateKxChangesetCommand.d.ts +122 -0
- package/dist-types/commands/CreateKxClusterCommand.d.ts +233 -0
- package/dist-types/commands/CreateKxDatabaseCommand.d.ts +109 -0
- package/dist-types/commands/CreateKxEnvironmentCommand.d.ts +108 -0
- package/dist-types/commands/CreateKxUserCommand.d.ts +107 -0
- package/dist-types/commands/DeleteKxClusterCommand.d.ts +95 -0
- package/dist-types/commands/DeleteKxDatabaseCommand.d.ts +92 -0
- package/dist-types/commands/DeleteKxEnvironmentCommand.d.ts +87 -0
- package/dist-types/commands/DeleteKxUserCommand.d.ts +88 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +2 -2
- package/dist-types/commands/GetKxChangesetCommand.d.ts +108 -0
- package/dist-types/commands/GetKxClusterCommand.d.ts +164 -0
- package/dist-types/commands/GetKxConnectionStringCommand.d.ts +91 -0
- package/dist-types/commands/GetKxDatabaseCommand.d.ts +99 -0
- package/dist-types/commands/GetKxEnvironmentCommand.d.ts +112 -0
- package/dist-types/commands/GetKxUserCommand.d.ts +93 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +2 -2
- package/dist-types/commands/ListKxChangesetsCommand.d.ts +101 -0
- package/dist-types/commands/ListKxClusterNodesCommand.d.ts +102 -0
- package/dist-types/commands/ListKxClustersCommand.d.ts +114 -0
- package/dist-types/commands/ListKxDatabasesCommand.d.ts +98 -0
- package/dist-types/commands/ListKxEnvironmentsCommand.d.ts +112 -0
- package/dist-types/commands/ListKxUsersCommand.d.ts +100 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +3 -3
- package/dist-types/commands/UpdateKxClusterDatabasesCommand.d.ts +107 -0
- package/dist-types/commands/UpdateKxDatabaseCommand.d.ts +98 -0
- package/dist-types/commands/UpdateKxEnvironmentCommand.d.ts +120 -0
- package/dist-types/commands/UpdateKxEnvironmentNetworkCommand.d.ts +129 -0
- package/dist-types/commands/UpdateKxUserCommand.d.ts +101 -0
- package/dist-types/commands/index.d.ts +26 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2390 -105
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListKxChangesetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListKxClusterNodesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListKxDatabasesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListKxEnvironmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +234 -0
- package/dist-types/ts3.4/Finspace.d.ts +442 -0
- package/dist-types/ts3.4/FinspaceClient.d.ts +158 -2
- package/dist-types/ts3.4/commands/CreateKxChangesetCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateKxClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateKxDatabaseCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateKxEnvironmentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateKxUserCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteKxClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteKxDatabaseCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteKxEnvironmentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteKxUserCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetKxChangesetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetKxClusterCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetKxConnectionStringCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetKxDatabaseCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetKxEnvironmentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetKxUserCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListKxChangesetsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListKxClusterNodesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListKxClustersCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListKxDatabasesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListKxEnvironmentsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListKxUsersCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateKxClusterDatabasesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateKxDatabaseCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateKxEnvironmentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateKxEnvironmentNetworkCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateKxUserCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +26 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +575 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListKxChangesetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListKxClusterNodesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListKxDatabasesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListKxEnvironmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +312 -0
- package/package.json +4 -2
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateKxChangesetRequest,
|
|
16
|
+
CreateKxChangesetResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateKxChangesetCommandInput
|
|
20
|
+
extends CreateKxChangesetRequest {}
|
|
21
|
+
export interface CreateKxChangesetCommandOutput
|
|
22
|
+
extends CreateKxChangesetResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreateKxChangesetCommand extends $Command<
|
|
25
|
+
CreateKxChangesetCommandInput,
|
|
26
|
+
CreateKxChangesetCommandOutput,
|
|
27
|
+
FinspaceClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreateKxChangesetCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreateKxChangesetCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: FinspaceClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<CreateKxChangesetCommandInput, CreateKxChangesetCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateKxClusterRequest,
|
|
16
|
+
CreateKxClusterResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateKxClusterCommandInput extends CreateKxClusterRequest {}
|
|
20
|
+
export interface CreateKxClusterCommandOutput
|
|
21
|
+
extends CreateKxClusterResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateKxClusterCommand extends $Command<
|
|
24
|
+
CreateKxClusterCommandInput,
|
|
25
|
+
CreateKxClusterCommandOutput,
|
|
26
|
+
FinspaceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateKxClusterCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateKxClusterCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateKxClusterCommandInput, CreateKxClusterCommandOutput>;
|
|
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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateKxDatabaseRequest,
|
|
16
|
+
CreateKxDatabaseResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateKxDatabaseCommandInput extends CreateKxDatabaseRequest {}
|
|
20
|
+
export interface CreateKxDatabaseCommandOutput
|
|
21
|
+
extends CreateKxDatabaseResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateKxDatabaseCommand extends $Command<
|
|
24
|
+
CreateKxDatabaseCommandInput,
|
|
25
|
+
CreateKxDatabaseCommandOutput,
|
|
26
|
+
FinspaceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateKxDatabaseCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateKxDatabaseCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateKxDatabaseCommandInput, CreateKxDatabaseCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateKxEnvironmentRequest,
|
|
16
|
+
CreateKxEnvironmentResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateKxEnvironmentCommandInput
|
|
20
|
+
extends CreateKxEnvironmentRequest {}
|
|
21
|
+
export interface CreateKxEnvironmentCommandOutput
|
|
22
|
+
extends CreateKxEnvironmentResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreateKxEnvironmentCommand extends $Command<
|
|
25
|
+
CreateKxEnvironmentCommandInput,
|
|
26
|
+
CreateKxEnvironmentCommandOutput,
|
|
27
|
+
FinspaceClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreateKxEnvironmentCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreateKxEnvironmentCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: FinspaceClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<CreateKxEnvironmentCommandInput, CreateKxEnvironmentCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import { CreateKxUserRequest, CreateKxUserResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface CreateKxUserCommandInput extends CreateKxUserRequest {}
|
|
17
|
+
export interface CreateKxUserCommandOutput
|
|
18
|
+
extends CreateKxUserResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class CreateKxUserCommand extends $Command<
|
|
21
|
+
CreateKxUserCommandInput,
|
|
22
|
+
CreateKxUserCommandOutput,
|
|
23
|
+
FinspaceClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: CreateKxUserCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: CreateKxUserCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: FinspaceClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<CreateKxUserCommandInput, CreateKxUserCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteKxClusterRequest,
|
|
16
|
+
DeleteKxClusterResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteKxClusterCommandInput extends DeleteKxClusterRequest {}
|
|
20
|
+
export interface DeleteKxClusterCommandOutput
|
|
21
|
+
extends DeleteKxClusterResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteKxClusterCommand extends $Command<
|
|
24
|
+
DeleteKxClusterCommandInput,
|
|
25
|
+
DeleteKxClusterCommandOutput,
|
|
26
|
+
FinspaceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteKxClusterCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteKxClusterCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteKxClusterCommandInput, DeleteKxClusterCommandOutput>;
|
|
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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteKxDatabaseRequest,
|
|
16
|
+
DeleteKxDatabaseResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteKxDatabaseCommandInput extends DeleteKxDatabaseRequest {}
|
|
20
|
+
export interface DeleteKxDatabaseCommandOutput
|
|
21
|
+
extends DeleteKxDatabaseResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteKxDatabaseCommand extends $Command<
|
|
24
|
+
DeleteKxDatabaseCommandInput,
|
|
25
|
+
DeleteKxDatabaseCommandOutput,
|
|
26
|
+
FinspaceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteKxDatabaseCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteKxDatabaseCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteKxDatabaseCommandInput, DeleteKxDatabaseCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteKxEnvironmentRequest,
|
|
16
|
+
DeleteKxEnvironmentResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteKxEnvironmentCommandInput
|
|
20
|
+
extends DeleteKxEnvironmentRequest {}
|
|
21
|
+
export interface DeleteKxEnvironmentCommandOutput
|
|
22
|
+
extends DeleteKxEnvironmentResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DeleteKxEnvironmentCommand extends $Command<
|
|
25
|
+
DeleteKxEnvironmentCommandInput,
|
|
26
|
+
DeleteKxEnvironmentCommandOutput,
|
|
27
|
+
FinspaceClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DeleteKxEnvironmentCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DeleteKxEnvironmentCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: FinspaceClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<DeleteKxEnvironmentCommandInput, DeleteKxEnvironmentCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import { DeleteKxUserRequest, DeleteKxUserResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface DeleteKxUserCommandInput extends DeleteKxUserRequest {}
|
|
17
|
+
export interface DeleteKxUserCommandOutput
|
|
18
|
+
extends DeleteKxUserResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class DeleteKxUserCommand extends $Command<
|
|
21
|
+
DeleteKxUserCommandInput,
|
|
22
|
+
DeleteKxUserCommandOutput,
|
|
23
|
+
FinspaceClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: DeleteKxUserCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: DeleteKxUserCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: FinspaceClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeleteKxUserCommandInput, DeleteKxUserCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import {
|
|
15
|
+
GetKxChangesetRequest,
|
|
16
|
+
GetKxChangesetResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetKxChangesetCommandInput extends GetKxChangesetRequest {}
|
|
20
|
+
export interface GetKxChangesetCommandOutput
|
|
21
|
+
extends GetKxChangesetResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetKxChangesetCommand extends $Command<
|
|
24
|
+
GetKxChangesetCommandInput,
|
|
25
|
+
GetKxChangesetCommandOutput,
|
|
26
|
+
FinspaceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetKxChangesetCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetKxChangesetCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetKxChangesetCommandInput, GetKxChangesetCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import { GetKxClusterRequest, GetKxClusterResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetKxClusterCommandInput extends GetKxClusterRequest {}
|
|
17
|
+
export interface GetKxClusterCommandOutput
|
|
18
|
+
extends GetKxClusterResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetKxClusterCommand extends $Command<
|
|
21
|
+
GetKxClusterCommandInput,
|
|
22
|
+
GetKxClusterCommandOutput,
|
|
23
|
+
FinspaceClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetKxClusterCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetKxClusterCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: FinspaceClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetKxClusterCommandInput, GetKxClusterCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import {
|
|
15
|
+
GetKxConnectionStringRequest,
|
|
16
|
+
GetKxConnectionStringResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetKxConnectionStringCommandInput
|
|
20
|
+
extends GetKxConnectionStringRequest {}
|
|
21
|
+
export interface GetKxConnectionStringCommandOutput
|
|
22
|
+
extends GetKxConnectionStringResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetKxConnectionStringCommand extends $Command<
|
|
25
|
+
GetKxConnectionStringCommandInput,
|
|
26
|
+
GetKxConnectionStringCommandOutput,
|
|
27
|
+
FinspaceClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetKxConnectionStringCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetKxConnectionStringCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: FinspaceClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
GetKxConnectionStringCommandInput,
|
|
38
|
+
GetKxConnectionStringCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import {
|
|
15
|
+
GetKxDatabaseRequest,
|
|
16
|
+
GetKxDatabaseResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetKxDatabaseCommandInput extends GetKxDatabaseRequest {}
|
|
20
|
+
export interface GetKxDatabaseCommandOutput
|
|
21
|
+
extends GetKxDatabaseResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetKxDatabaseCommand extends $Command<
|
|
24
|
+
GetKxDatabaseCommandInput,
|
|
25
|
+
GetKxDatabaseCommandOutput,
|
|
26
|
+
FinspaceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetKxDatabaseCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetKxDatabaseCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetKxDatabaseCommandInput, GetKxDatabaseCommandOutput>;
|
|
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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import {
|
|
15
|
+
GetKxEnvironmentRequest,
|
|
16
|
+
GetKxEnvironmentResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetKxEnvironmentCommandInput extends GetKxEnvironmentRequest {}
|
|
20
|
+
export interface GetKxEnvironmentCommandOutput
|
|
21
|
+
extends GetKxEnvironmentResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetKxEnvironmentCommand extends $Command<
|
|
24
|
+
GetKxEnvironmentCommandInput,
|
|
25
|
+
GetKxEnvironmentCommandOutput,
|
|
26
|
+
FinspaceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetKxEnvironmentCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetKxEnvironmentCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetKxEnvironmentCommandInput, GetKxEnvironmentCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import { GetKxUserRequest, GetKxUserResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetKxUserCommandInput extends GetKxUserRequest {}
|
|
17
|
+
export interface GetKxUserCommandOutput
|
|
18
|
+
extends GetKxUserResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetKxUserCommand extends $Command<
|
|
21
|
+
GetKxUserCommandInput,
|
|
22
|
+
GetKxUserCommandOutput,
|
|
23
|
+
FinspaceClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetKxUserCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetKxUserCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: FinspaceClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetKxUserCommandInput, GetKxUserCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import {
|
|
15
|
+
ListKxChangesetsRequest,
|
|
16
|
+
ListKxChangesetsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListKxChangesetsCommandInput extends ListKxChangesetsRequest {}
|
|
20
|
+
export interface ListKxChangesetsCommandOutput
|
|
21
|
+
extends ListKxChangesetsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListKxChangesetsCommand extends $Command<
|
|
24
|
+
ListKxChangesetsCommandInput,
|
|
25
|
+
ListKxChangesetsCommandOutput,
|
|
26
|
+
FinspaceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListKxChangesetsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListKxChangesetsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListKxChangesetsCommandInput, ListKxChangesetsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
FinspaceClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FinspaceClient";
|
|
14
|
+
import {
|
|
15
|
+
ListKxClusterNodesRequest,
|
|
16
|
+
ListKxClusterNodesResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListKxClusterNodesCommandInput
|
|
20
|
+
extends ListKxClusterNodesRequest {}
|
|
21
|
+
export interface ListKxClusterNodesCommandOutput
|
|
22
|
+
extends ListKxClusterNodesResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListKxClusterNodesCommand extends $Command<
|
|
25
|
+
ListKxClusterNodesCommandInput,
|
|
26
|
+
ListKxClusterNodesCommandOutput,
|
|
27
|
+
FinspaceClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListKxClusterNodesCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListKxClusterNodesCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: FinspaceClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<ListKxClusterNodesCommandInput, ListKxClusterNodesCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|