@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,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
|
+
ListKxClustersRequest,
|
|
16
|
+
ListKxClustersResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListKxClustersCommandInput extends ListKxClustersRequest {}
|
|
20
|
+
export interface ListKxClustersCommandOutput
|
|
21
|
+
extends ListKxClustersResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListKxClustersCommand extends $Command<
|
|
24
|
+
ListKxClustersCommandInput,
|
|
25
|
+
ListKxClustersCommandOutput,
|
|
26
|
+
FinspaceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListKxClustersCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListKxClustersCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListKxClustersCommandInput, ListKxClustersCommandOutput>;
|
|
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
|
+
ListKxDatabasesRequest,
|
|
16
|
+
ListKxDatabasesResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListKxDatabasesCommandInput extends ListKxDatabasesRequest {}
|
|
20
|
+
export interface ListKxDatabasesCommandOutput
|
|
21
|
+
extends ListKxDatabasesResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListKxDatabasesCommand extends $Command<
|
|
24
|
+
ListKxDatabasesCommandInput,
|
|
25
|
+
ListKxDatabasesCommandOutput,
|
|
26
|
+
FinspaceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListKxDatabasesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListKxDatabasesCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListKxDatabasesCommandInput, ListKxDatabasesCommandOutput>;
|
|
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
|
+
ListKxEnvironmentsRequest,
|
|
16
|
+
ListKxEnvironmentsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListKxEnvironmentsCommandInput
|
|
20
|
+
extends ListKxEnvironmentsRequest {}
|
|
21
|
+
export interface ListKxEnvironmentsCommandOutput
|
|
22
|
+
extends ListKxEnvironmentsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListKxEnvironmentsCommand extends $Command<
|
|
25
|
+
ListKxEnvironmentsCommandInput,
|
|
26
|
+
ListKxEnvironmentsCommandOutput,
|
|
27
|
+
FinspaceClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListKxEnvironmentsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListKxEnvironmentsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: FinspaceClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<ListKxEnvironmentsCommandInput, ListKxEnvironmentsCommandOutput>;
|
|
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 { ListKxUsersRequest, ListKxUsersResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface ListKxUsersCommandInput extends ListKxUsersRequest {}
|
|
17
|
+
export interface ListKxUsersCommandOutput
|
|
18
|
+
extends ListKxUsersResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class ListKxUsersCommand extends $Command<
|
|
21
|
+
ListKxUsersCommandInput,
|
|
22
|
+
ListKxUsersCommandOutput,
|
|
23
|
+
FinspaceClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: ListKxUsersCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: ListKxUsersCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: FinspaceClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListKxUsersCommandInput, ListKxUsersCommandOutput>;
|
|
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
|
+
UpdateKxClusterDatabasesRequest,
|
|
16
|
+
UpdateKxClusterDatabasesResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateKxClusterDatabasesCommandInput
|
|
20
|
+
extends UpdateKxClusterDatabasesRequest {}
|
|
21
|
+
export interface UpdateKxClusterDatabasesCommandOutput
|
|
22
|
+
extends UpdateKxClusterDatabasesResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class UpdateKxClusterDatabasesCommand extends $Command<
|
|
25
|
+
UpdateKxClusterDatabasesCommandInput,
|
|
26
|
+
UpdateKxClusterDatabasesCommandOutput,
|
|
27
|
+
FinspaceClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: UpdateKxClusterDatabasesCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: UpdateKxClusterDatabasesCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: FinspaceClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
UpdateKxClusterDatabasesCommandInput,
|
|
38
|
+
UpdateKxClusterDatabasesCommandOutput
|
|
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
|
+
UpdateKxDatabaseRequest,
|
|
16
|
+
UpdateKxDatabaseResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateKxDatabaseCommandInput extends UpdateKxDatabaseRequest {}
|
|
20
|
+
export interface UpdateKxDatabaseCommandOutput
|
|
21
|
+
extends UpdateKxDatabaseResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class UpdateKxDatabaseCommand extends $Command<
|
|
24
|
+
UpdateKxDatabaseCommandInput,
|
|
25
|
+
UpdateKxDatabaseCommandOutput,
|
|
26
|
+
FinspaceClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateKxDatabaseCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UpdateKxDatabaseCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UpdateKxDatabaseCommandInput, UpdateKxDatabaseCommandOutput>;
|
|
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
|
+
UpdateKxEnvironmentRequest,
|
|
16
|
+
UpdateKxEnvironmentResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateKxEnvironmentCommandInput
|
|
20
|
+
extends UpdateKxEnvironmentRequest {}
|
|
21
|
+
export interface UpdateKxEnvironmentCommandOutput
|
|
22
|
+
extends UpdateKxEnvironmentResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class UpdateKxEnvironmentCommand extends $Command<
|
|
25
|
+
UpdateKxEnvironmentCommandInput,
|
|
26
|
+
UpdateKxEnvironmentCommandOutput,
|
|
27
|
+
FinspaceClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: UpdateKxEnvironmentCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: UpdateKxEnvironmentCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: FinspaceClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<UpdateKxEnvironmentCommandInput, UpdateKxEnvironmentCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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
|
+
UpdateKxEnvironmentNetworkRequest,
|
|
16
|
+
UpdateKxEnvironmentNetworkResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateKxEnvironmentNetworkCommandInput
|
|
20
|
+
extends UpdateKxEnvironmentNetworkRequest {}
|
|
21
|
+
export interface UpdateKxEnvironmentNetworkCommandOutput
|
|
22
|
+
extends UpdateKxEnvironmentNetworkResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class UpdateKxEnvironmentNetworkCommand extends $Command<
|
|
25
|
+
UpdateKxEnvironmentNetworkCommandInput,
|
|
26
|
+
UpdateKxEnvironmentNetworkCommandOutput,
|
|
27
|
+
FinspaceClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: UpdateKxEnvironmentNetworkCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: UpdateKxEnvironmentNetworkCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: FinspaceClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
UpdateKxEnvironmentNetworkCommandInput,
|
|
38
|
+
UpdateKxEnvironmentNetworkCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -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 { UpdateKxUserRequest, UpdateKxUserResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface UpdateKxUserCommandInput extends UpdateKxUserRequest {}
|
|
17
|
+
export interface UpdateKxUserCommandOutput
|
|
18
|
+
extends UpdateKxUserResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class UpdateKxUserCommand extends $Command<
|
|
21
|
+
UpdateKxUserCommandInput,
|
|
22
|
+
UpdateKxUserCommandOutput,
|
|
23
|
+
FinspaceClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: UpdateKxUserCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: UpdateKxUserCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: FinspaceClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UpdateKxUserCommandInput, UpdateKxUserCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,8 +1,34 @@
|
|
|
1
1
|
export * from "./CreateEnvironmentCommand";
|
|
2
|
+
export * from "./CreateKxChangesetCommand";
|
|
3
|
+
export * from "./CreateKxClusterCommand";
|
|
4
|
+
export * from "./CreateKxDatabaseCommand";
|
|
5
|
+
export * from "./CreateKxEnvironmentCommand";
|
|
6
|
+
export * from "./CreateKxUserCommand";
|
|
2
7
|
export * from "./DeleteEnvironmentCommand";
|
|
8
|
+
export * from "./DeleteKxClusterCommand";
|
|
9
|
+
export * from "./DeleteKxDatabaseCommand";
|
|
10
|
+
export * from "./DeleteKxEnvironmentCommand";
|
|
11
|
+
export * from "./DeleteKxUserCommand";
|
|
3
12
|
export * from "./GetEnvironmentCommand";
|
|
13
|
+
export * from "./GetKxChangesetCommand";
|
|
14
|
+
export * from "./GetKxClusterCommand";
|
|
15
|
+
export * from "./GetKxConnectionStringCommand";
|
|
16
|
+
export * from "./GetKxDatabaseCommand";
|
|
17
|
+
export * from "./GetKxEnvironmentCommand";
|
|
18
|
+
export * from "./GetKxUserCommand";
|
|
4
19
|
export * from "./ListEnvironmentsCommand";
|
|
20
|
+
export * from "./ListKxChangesetsCommand";
|
|
21
|
+
export * from "./ListKxClusterNodesCommand";
|
|
22
|
+
export * from "./ListKxClustersCommand";
|
|
23
|
+
export * from "./ListKxDatabasesCommand";
|
|
24
|
+
export * from "./ListKxEnvironmentsCommand";
|
|
25
|
+
export * from "./ListKxUsersCommand";
|
|
5
26
|
export * from "./ListTagsForResourceCommand";
|
|
6
27
|
export * from "./TagResourceCommand";
|
|
7
28
|
export * from "./UntagResourceCommand";
|
|
8
29
|
export * from "./UpdateEnvironmentCommand";
|
|
30
|
+
export * from "./UpdateKxClusterDatabasesCommand";
|
|
31
|
+
export * from "./UpdateKxDatabaseCommand";
|
|
32
|
+
export * from "./UpdateKxEnvironmentCommand";
|
|
33
|
+
export * from "./UpdateKxEnvironmentNetworkCommand";
|
|
34
|
+
export * from "./UpdateKxUserCommand";
|