@aws-sdk/client-finspace-data 3.40.0 → 3.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +41 -0
- package/README.md +1 -1
- package/dist-cjs/FinspaceData.js +165 -0
- package/dist-cjs/commands/CreateDataViewCommand.js +36 -0
- package/dist-cjs/commands/CreateDatasetCommand.js +36 -0
- package/dist-cjs/commands/DeleteDatasetCommand.js +36 -0
- package/dist-cjs/commands/GetChangesetCommand.js +36 -0
- package/dist-cjs/commands/GetDataViewCommand.js +36 -0
- package/dist-cjs/commands/GetDatasetCommand.js +36 -0
- package/dist-cjs/commands/ListChangesetsCommand.js +36 -0
- package/dist-cjs/commands/ListDataViewsCommand.js +36 -0
- package/dist-cjs/commands/ListDatasetsCommand.js +36 -0
- package/dist-cjs/commands/UpdateChangesetCommand.js +36 -0
- package/dist-cjs/commands/UpdateDatasetCommand.js +36 -0
- package/dist-cjs/commands/index.js +11 -0
- package/dist-cjs/endpoints.js +9 -0
- package/dist-cjs/index.js +1 -0
- package/dist-cjs/models/models_0.js +280 -43
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListChangesetsPaginator.js +35 -0
- package/dist-cjs/pagination/ListDataViewsPaginator.js +35 -0
- package/dist-cjs/pagination/ListDatasetsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1912 -60
- package/dist-es/FinspaceData.js +165 -0
- package/dist-es/commands/CreateDataViewCommand.js +39 -0
- package/dist-es/commands/CreateDatasetCommand.js +39 -0
- package/dist-es/commands/DeleteDatasetCommand.js +39 -0
- package/dist-es/commands/GetChangesetCommand.js +39 -0
- package/dist-es/commands/GetDataViewCommand.js +39 -0
- package/dist-es/commands/GetDatasetCommand.js +39 -0
- package/dist-es/commands/ListChangesetsCommand.js +39 -0
- package/dist-es/commands/ListDataViewsCommand.js +39 -0
- package/dist-es/commands/ListDatasetsCommand.js +39 -0
- package/dist-es/commands/UpdateChangesetCommand.js +39 -0
- package/dist-es/commands/UpdateDatasetCommand.js +39 -0
- package/dist-es/commands/index.js +11 -0
- package/dist-es/endpoints.js +9 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/models_0.js +206 -38
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListChangesetsPaginator.js +74 -0
- package/dist-es/pagination/ListDataViewsPaginator.js +74 -0
- package/dist-es/pagination/ListDatasetsPaginator.js +74 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +2109 -104
- package/dist-types/FinspaceData.d.ts +82 -5
- package/dist-types/FinspaceDataClient.d.ts +14 -3
- package/dist-types/commands/CreateChangesetCommand.d.ts +2 -2
- package/dist-types/commands/CreateDataViewCommand.d.ts +35 -0
- package/dist-types/commands/CreateDatasetCommand.d.ts +35 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +35 -0
- package/dist-types/commands/GetChangesetCommand.d.ts +35 -0
- package/dist-types/commands/GetDataViewCommand.d.ts +35 -0
- package/dist-types/commands/GetDatasetCommand.d.ts +35 -0
- package/dist-types/commands/GetProgrammaticAccessCredentialsCommand.d.ts +2 -2
- package/dist-types/commands/GetWorkingLocationCommand.d.ts +3 -3
- package/dist-types/commands/ListChangesetsCommand.d.ts +35 -0
- package/dist-types/commands/ListDataViewsCommand.d.ts +35 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +35 -0
- package/dist-types/commands/UpdateChangesetCommand.d.ts +35 -0
- package/dist-types/commands/UpdateDatasetCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +11 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1438 -242
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListChangesetsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListDataViewsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListDatasetsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +33 -0
- package/dist-types/ts3.4/FinspaceData.d.ts +55 -0
- package/dist-types/ts3.4/FinspaceDataClient.d.ts +13 -2
- package/dist-types/ts3.4/commands/CreateDataViewCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetChangesetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDataViewCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListChangesetsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDataViewsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateChangesetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDatasetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +606 -71
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListChangesetsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListDataViewsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListDatasetsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +33 -0
- package/package.json +9 -7
|
@@ -1,29 +1,106 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
2
|
import { CreateChangesetCommandInput, CreateChangesetCommandOutput } from "./commands/CreateChangesetCommand";
|
|
3
|
+
import { CreateDatasetCommandInput, CreateDatasetCommandOutput } from "./commands/CreateDatasetCommand";
|
|
4
|
+
import { CreateDataViewCommandInput, CreateDataViewCommandOutput } from "./commands/CreateDataViewCommand";
|
|
5
|
+
import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "./commands/DeleteDatasetCommand";
|
|
6
|
+
import { GetChangesetCommandInput, GetChangesetCommandOutput } from "./commands/GetChangesetCommand";
|
|
7
|
+
import { GetDatasetCommandInput, GetDatasetCommandOutput } from "./commands/GetDatasetCommand";
|
|
8
|
+
import { GetDataViewCommandInput, GetDataViewCommandOutput } from "./commands/GetDataViewCommand";
|
|
3
9
|
import { GetProgrammaticAccessCredentialsCommandInput, GetProgrammaticAccessCredentialsCommandOutput } from "./commands/GetProgrammaticAccessCredentialsCommand";
|
|
4
10
|
import { GetWorkingLocationCommandInput, GetWorkingLocationCommandOutput } from "./commands/GetWorkingLocationCommand";
|
|
11
|
+
import { ListChangesetsCommandInput, ListChangesetsCommandOutput } from "./commands/ListChangesetsCommand";
|
|
12
|
+
import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "./commands/ListDatasetsCommand";
|
|
13
|
+
import { ListDataViewsCommandInput, ListDataViewsCommandOutput } from "./commands/ListDataViewsCommand";
|
|
14
|
+
import { UpdateChangesetCommandInput, UpdateChangesetCommandOutput } from "./commands/UpdateChangesetCommand";
|
|
15
|
+
import { UpdateDatasetCommandInput, UpdateDatasetCommandOutput } from "./commands/UpdateDatasetCommand";
|
|
5
16
|
import { FinspaceDataClient } from "./FinspaceDataClient";
|
|
6
17
|
/**
|
|
7
|
-
* <p> The FinSpace APIs let you take actions inside the FinSpace
|
|
18
|
+
* <p> The FinSpace APIs let you take actions inside the FinSpace.</p>
|
|
8
19
|
*/
|
|
9
20
|
export declare class FinspaceData extends FinspaceDataClient {
|
|
10
21
|
/**
|
|
11
|
-
* <p>Creates a new
|
|
22
|
+
* <p>Creates a new Changeset in a FinSpace Dataset.</p>
|
|
12
23
|
*/
|
|
13
24
|
createChangeset(args: CreateChangesetCommandInput, options?: __HttpHandlerOptions): Promise<CreateChangesetCommandOutput>;
|
|
14
25
|
createChangeset(args: CreateChangesetCommandInput, cb: (err: any, data?: CreateChangesetCommandOutput) => void): void;
|
|
15
26
|
createChangeset(args: CreateChangesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateChangesetCommandOutput) => void): void;
|
|
16
27
|
/**
|
|
17
|
-
* <p>
|
|
28
|
+
* <p>Creates a new FinSpace Dataset.</p>
|
|
29
|
+
*/
|
|
30
|
+
createDataset(args: CreateDatasetCommandInput, options?: __HttpHandlerOptions): Promise<CreateDatasetCommandOutput>;
|
|
31
|
+
createDataset(args: CreateDatasetCommandInput, cb: (err: any, data?: CreateDatasetCommandOutput) => void): void;
|
|
32
|
+
createDataset(args: CreateDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDatasetCommandOutput) => void): void;
|
|
33
|
+
/**
|
|
34
|
+
* <p>Creates a Dataview for a Dataset.</p>
|
|
35
|
+
*/
|
|
36
|
+
createDataView(args: CreateDataViewCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataViewCommandOutput>;
|
|
37
|
+
createDataView(args: CreateDataViewCommandInput, cb: (err: any, data?: CreateDataViewCommandOutput) => void): void;
|
|
38
|
+
createDataView(args: CreateDataViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataViewCommandOutput) => void): void;
|
|
39
|
+
/**
|
|
40
|
+
* <p>Deletes a FinSpace Dataset.</p>
|
|
41
|
+
*/
|
|
42
|
+
deleteDataset(args: DeleteDatasetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDatasetCommandOutput>;
|
|
43
|
+
deleteDataset(args: DeleteDatasetCommandInput, cb: (err: any, data?: DeleteDatasetCommandOutput) => void): void;
|
|
44
|
+
deleteDataset(args: DeleteDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDatasetCommandOutput) => void): void;
|
|
45
|
+
/**
|
|
46
|
+
* <p>Get information about a Changeset.</p>
|
|
47
|
+
*/
|
|
48
|
+
getChangeset(args: GetChangesetCommandInput, options?: __HttpHandlerOptions): Promise<GetChangesetCommandOutput>;
|
|
49
|
+
getChangeset(args: GetChangesetCommandInput, cb: (err: any, data?: GetChangesetCommandOutput) => void): void;
|
|
50
|
+
getChangeset(args: GetChangesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetChangesetCommandOutput) => void): void;
|
|
51
|
+
/**
|
|
52
|
+
* <p>Returns information about a Dataset.</p>
|
|
53
|
+
*/
|
|
54
|
+
getDataset(args: GetDatasetCommandInput, options?: __HttpHandlerOptions): Promise<GetDatasetCommandOutput>;
|
|
55
|
+
getDataset(args: GetDatasetCommandInput, cb: (err: any, data?: GetDatasetCommandOutput) => void): void;
|
|
56
|
+
getDataset(args: GetDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDatasetCommandOutput) => void): void;
|
|
57
|
+
/**
|
|
58
|
+
* <p>Gets information about a Dataview.</p>
|
|
59
|
+
*/
|
|
60
|
+
getDataView(args: GetDataViewCommandInput, options?: __HttpHandlerOptions): Promise<GetDataViewCommandOutput>;
|
|
61
|
+
getDataView(args: GetDataViewCommandInput, cb: (err: any, data?: GetDataViewCommandOutput) => void): void;
|
|
62
|
+
getDataView(args: GetDataViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataViewCommandOutput) => void): void;
|
|
63
|
+
/**
|
|
64
|
+
* <p>Request programmatic credentials to use with FinSpace SDK.</p>
|
|
18
65
|
*/
|
|
19
66
|
getProgrammaticAccessCredentials(args: GetProgrammaticAccessCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<GetProgrammaticAccessCredentialsCommandOutput>;
|
|
20
67
|
getProgrammaticAccessCredentials(args: GetProgrammaticAccessCredentialsCommandInput, cb: (err: any, data?: GetProgrammaticAccessCredentialsCommandOutput) => void): void;
|
|
21
68
|
getProgrammaticAccessCredentials(args: GetProgrammaticAccessCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProgrammaticAccessCredentialsCommandOutput) => void): void;
|
|
22
69
|
/**
|
|
23
|
-
* <p>A temporary Amazon S3 location
|
|
24
|
-
* as a scratch space in
|
|
70
|
+
* <p>A temporary Amazon S3 location, where you can copy your files from a source location to stage or use
|
|
71
|
+
* as a scratch space in FinSpace notebook.</p>
|
|
25
72
|
*/
|
|
26
73
|
getWorkingLocation(args: GetWorkingLocationCommandInput, options?: __HttpHandlerOptions): Promise<GetWorkingLocationCommandOutput>;
|
|
27
74
|
getWorkingLocation(args: GetWorkingLocationCommandInput, cb: (err: any, data?: GetWorkingLocationCommandOutput) => void): void;
|
|
28
75
|
getWorkingLocation(args: GetWorkingLocationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkingLocationCommandOutput) => void): void;
|
|
76
|
+
/**
|
|
77
|
+
* <p>Lists the FinSpace Changesets for a Dataset.</p>
|
|
78
|
+
*/
|
|
79
|
+
listChangesets(args: ListChangesetsCommandInput, options?: __HttpHandlerOptions): Promise<ListChangesetsCommandOutput>;
|
|
80
|
+
listChangesets(args: ListChangesetsCommandInput, cb: (err: any, data?: ListChangesetsCommandOutput) => void): void;
|
|
81
|
+
listChangesets(args: ListChangesetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChangesetsCommandOutput) => void): void;
|
|
82
|
+
/**
|
|
83
|
+
* <p>Lists all of the active Datasets that a user has access to.</p>
|
|
84
|
+
*/
|
|
85
|
+
listDatasets(args: ListDatasetsCommandInput, options?: __HttpHandlerOptions): Promise<ListDatasetsCommandOutput>;
|
|
86
|
+
listDatasets(args: ListDatasetsCommandInput, cb: (err: any, data?: ListDatasetsCommandOutput) => void): void;
|
|
87
|
+
listDatasets(args: ListDatasetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatasetsCommandOutput) => void): void;
|
|
88
|
+
/**
|
|
89
|
+
* <p>Lists all available Dataviews for a Dataset.</p>
|
|
90
|
+
*/
|
|
91
|
+
listDataViews(args: ListDataViewsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataViewsCommandOutput>;
|
|
92
|
+
listDataViews(args: ListDataViewsCommandInput, cb: (err: any, data?: ListDataViewsCommandOutput) => void): void;
|
|
93
|
+
listDataViews(args: ListDataViewsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataViewsCommandOutput) => void): void;
|
|
94
|
+
/**
|
|
95
|
+
* <p>Updates a FinSpace Changeset.</p>
|
|
96
|
+
*/
|
|
97
|
+
updateChangeset(args: UpdateChangesetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateChangesetCommandOutput>;
|
|
98
|
+
updateChangeset(args: UpdateChangesetCommandInput, cb: (err: any, data?: UpdateChangesetCommandOutput) => void): void;
|
|
99
|
+
updateChangeset(args: UpdateChangesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateChangesetCommandOutput) => void): void;
|
|
100
|
+
/**
|
|
101
|
+
* <p>Updates a FinSpace Dataset.</p>
|
|
102
|
+
*/
|
|
103
|
+
updateDataset(args: UpdateDatasetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDatasetCommandOutput>;
|
|
104
|
+
updateDataset(args: UpdateDatasetCommandInput, cb: (err: any, data?: UpdateDatasetCommandOutput) => void): void;
|
|
105
|
+
updateDataset(args: UpdateDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDatasetCommandOutput) => void): void;
|
|
29
106
|
}
|
|
@@ -7,10 +7,21 @@ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
|
7
7
|
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CreateChangesetCommandInput, CreateChangesetCommandOutput } from "./commands/CreateChangesetCommand";
|
|
10
|
+
import { CreateDatasetCommandInput, CreateDatasetCommandOutput } from "./commands/CreateDatasetCommand";
|
|
11
|
+
import { CreateDataViewCommandInput, CreateDataViewCommandOutput } from "./commands/CreateDataViewCommand";
|
|
12
|
+
import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "./commands/DeleteDatasetCommand";
|
|
13
|
+
import { GetChangesetCommandInput, GetChangesetCommandOutput } from "./commands/GetChangesetCommand";
|
|
14
|
+
import { GetDatasetCommandInput, GetDatasetCommandOutput } from "./commands/GetDatasetCommand";
|
|
15
|
+
import { GetDataViewCommandInput, GetDataViewCommandOutput } from "./commands/GetDataViewCommand";
|
|
10
16
|
import { GetProgrammaticAccessCredentialsCommandInput, GetProgrammaticAccessCredentialsCommandOutput } from "./commands/GetProgrammaticAccessCredentialsCommand";
|
|
11
17
|
import { GetWorkingLocationCommandInput, GetWorkingLocationCommandOutput } from "./commands/GetWorkingLocationCommand";
|
|
12
|
-
|
|
13
|
-
|
|
18
|
+
import { ListChangesetsCommandInput, ListChangesetsCommandOutput } from "./commands/ListChangesetsCommand";
|
|
19
|
+
import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "./commands/ListDatasetsCommand";
|
|
20
|
+
import { ListDataViewsCommandInput, ListDataViewsCommandOutput } from "./commands/ListDataViewsCommand";
|
|
21
|
+
import { UpdateChangesetCommandInput, UpdateChangesetCommandOutput } from "./commands/UpdateChangesetCommand";
|
|
22
|
+
import { UpdateDatasetCommandInput, UpdateDatasetCommandOutput } from "./commands/UpdateDatasetCommand";
|
|
23
|
+
export declare type ServiceInputTypes = CreateChangesetCommandInput | CreateDataViewCommandInput | CreateDatasetCommandInput | DeleteDatasetCommandInput | GetChangesetCommandInput | GetDataViewCommandInput | GetDatasetCommandInput | GetProgrammaticAccessCredentialsCommandInput | GetWorkingLocationCommandInput | ListChangesetsCommandInput | ListDataViewsCommandInput | ListDatasetsCommandInput | UpdateChangesetCommandInput | UpdateDatasetCommandInput;
|
|
24
|
+
export declare type ServiceOutputTypes = CreateChangesetCommandOutput | CreateDataViewCommandOutput | CreateDatasetCommandOutput | DeleteDatasetCommandOutput | GetChangesetCommandOutput | GetDataViewCommandOutput | GetDatasetCommandOutput | GetProgrammaticAccessCredentialsCommandOutput | GetWorkingLocationCommandOutput | ListChangesetsCommandOutput | ListDataViewsCommandOutput | ListDatasetsCommandOutput | UpdateChangesetCommandOutput | UpdateDatasetCommandOutput;
|
|
14
25
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
15
26
|
/**
|
|
16
27
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -125,7 +136,7 @@ declare type FinspaceDataClientResolvedConfigType = __SmithyResolvedConfiguratio
|
|
|
125
136
|
export interface FinspaceDataClientResolvedConfig extends FinspaceDataClientResolvedConfigType {
|
|
126
137
|
}
|
|
127
138
|
/**
|
|
128
|
-
* <p> The FinSpace APIs let you take actions inside the FinSpace
|
|
139
|
+
* <p> The FinSpace APIs let you take actions inside the FinSpace.</p>
|
|
129
140
|
*/
|
|
130
141
|
export declare class FinspaceDataClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, FinspaceDataClientResolvedConfig> {
|
|
131
142
|
/**
|
|
@@ -7,7 +7,7 @@ export interface CreateChangesetCommandInput extends CreateChangesetRequest {
|
|
|
7
7
|
export interface CreateChangesetCommandOutput extends CreateChangesetResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Creates a new
|
|
10
|
+
* <p>Creates a new Changeset in a FinSpace Dataset.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -20,7 +20,7 @@ export interface CreateChangesetCommandOutput extends CreateChangesetResponse, _
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link CreateChangesetCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link CreateChangesetCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link FinspaceDataClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class CreateChangesetCommand extends $Command<CreateChangesetCommandInput, CreateChangesetCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
4
|
+
import { CreateDataViewRequest, CreateDataViewResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateDataViewCommandInput extends CreateDataViewRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateDataViewCommandOutput extends CreateDataViewResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Creates a Dataview for a Dataset.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { FinspaceDataClient, CreateDataViewCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
15
|
+
* // const { FinspaceDataClient, CreateDataViewCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
16
|
+
* const client = new FinspaceDataClient(config);
|
|
17
|
+
* const command = new CreateDataViewCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link CreateDataViewCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link CreateDataViewCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class CreateDataViewCommand extends $Command<CreateDataViewCommandInput, CreateDataViewCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
|
+
readonly input: CreateDataViewCommandInput;
|
|
28
|
+
constructor(input: CreateDataViewCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDataViewCommandInput, CreateDataViewCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
4
|
+
import { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateDatasetCommandInput extends CreateDatasetRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Creates a new FinSpace Dataset.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { FinspaceDataClient, CreateDatasetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
15
|
+
* // const { FinspaceDataClient, CreateDatasetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
16
|
+
* const client = new FinspaceDataClient(config);
|
|
17
|
+
* const command = new CreateDatasetCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link CreateDatasetCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link CreateDatasetCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class CreateDatasetCommand extends $Command<CreateDatasetCommandInput, CreateDatasetCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
|
+
readonly input: CreateDatasetCommandInput;
|
|
28
|
+
constructor(input: CreateDatasetCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDatasetCommandInput, CreateDatasetCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
4
|
+
import { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteDatasetCommandInput extends DeleteDatasetRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Deletes a FinSpace Dataset.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { FinspaceDataClient, DeleteDatasetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
15
|
+
* // const { FinspaceDataClient, DeleteDatasetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
16
|
+
* const client = new FinspaceDataClient(config);
|
|
17
|
+
* const command = new DeleteDatasetCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link DeleteDatasetCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link DeleteDatasetCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class DeleteDatasetCommand extends $Command<DeleteDatasetCommandInput, DeleteDatasetCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
|
+
readonly input: DeleteDatasetCommandInput;
|
|
28
|
+
constructor(input: DeleteDatasetCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDatasetCommandInput, DeleteDatasetCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
4
|
+
import { GetChangesetRequest, GetChangesetResponse } from "../models/models_0";
|
|
5
|
+
export interface GetChangesetCommandInput extends GetChangesetRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetChangesetCommandOutput extends GetChangesetResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Get information about a Changeset.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { FinspaceDataClient, GetChangesetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
15
|
+
* // const { FinspaceDataClient, GetChangesetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
16
|
+
* const client = new FinspaceDataClient(config);
|
|
17
|
+
* const command = new GetChangesetCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link GetChangesetCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link GetChangesetCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class GetChangesetCommand extends $Command<GetChangesetCommandInput, GetChangesetCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
|
+
readonly input: GetChangesetCommandInput;
|
|
28
|
+
constructor(input: GetChangesetCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetChangesetCommandInput, GetChangesetCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
4
|
+
import { GetDataViewRequest, GetDataViewResponse } from "../models/models_0";
|
|
5
|
+
export interface GetDataViewCommandInput extends GetDataViewRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetDataViewCommandOutput extends GetDataViewResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Gets information about a Dataview.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { FinspaceDataClient, GetDataViewCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
15
|
+
* // const { FinspaceDataClient, GetDataViewCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
16
|
+
* const client = new FinspaceDataClient(config);
|
|
17
|
+
* const command = new GetDataViewCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link GetDataViewCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link GetDataViewCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class GetDataViewCommand extends $Command<GetDataViewCommandInput, GetDataViewCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
|
+
readonly input: GetDataViewCommandInput;
|
|
28
|
+
constructor(input: GetDataViewCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataViewCommandInput, GetDataViewCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
4
|
+
import { GetDatasetRequest, GetDatasetResponse } from "../models/models_0";
|
|
5
|
+
export interface GetDatasetCommandInput extends GetDatasetRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetDatasetCommandOutput extends GetDatasetResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Returns information about a Dataset.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { FinspaceDataClient, GetDatasetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
15
|
+
* // const { FinspaceDataClient, GetDatasetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
16
|
+
* const client = new FinspaceDataClient(config);
|
|
17
|
+
* const command = new GetDatasetCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link GetDatasetCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link GetDatasetCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class GetDatasetCommand extends $Command<GetDatasetCommandInput, GetDatasetCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
|
+
readonly input: GetDatasetCommandInput;
|
|
28
|
+
constructor(input: GetDatasetCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDatasetCommandInput, GetDatasetCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -7,7 +7,7 @@ export interface GetProgrammaticAccessCredentialsCommandInput extends GetProgram
|
|
|
7
7
|
export interface GetProgrammaticAccessCredentialsCommandOutput extends GetProgrammaticAccessCredentialsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Request programmatic credentials to use with
|
|
10
|
+
* <p>Request programmatic credentials to use with FinSpace SDK.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -20,7 +20,7 @@ export interface GetProgrammaticAccessCredentialsCommandOutput extends GetProgra
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetProgrammaticAccessCredentialsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetProgrammaticAccessCredentialsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link FinspaceDataClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetProgrammaticAccessCredentialsCommand extends $Command<GetProgrammaticAccessCredentialsCommandInput, GetProgrammaticAccessCredentialsCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
@@ -7,8 +7,8 @@ export interface GetWorkingLocationCommandInput extends GetWorkingLocationReques
|
|
|
7
7
|
export interface GetWorkingLocationCommandOutput extends GetWorkingLocationResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>A temporary Amazon S3 location
|
|
11
|
-
* as a scratch space in
|
|
10
|
+
* <p>A temporary Amazon S3 location, where you can copy your files from a source location to stage or use
|
|
11
|
+
* as a scratch space in FinSpace notebook.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
14
14
|
* ```javascript
|
|
@@ -21,7 +21,7 @@ export interface GetWorkingLocationCommandOutput extends GetWorkingLocationRespo
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link GetWorkingLocationCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link GetWorkingLocationCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link FinspaceDataClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class GetWorkingLocationCommand extends $Command<GetWorkingLocationCommandInput, GetWorkingLocationCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
4
|
+
import { ListChangesetsRequest, ListChangesetsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListChangesetsCommandInput extends ListChangesetsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListChangesetsCommandOutput extends ListChangesetsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Lists the FinSpace Changesets for a Dataset.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { FinspaceDataClient, ListChangesetsCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
15
|
+
* // const { FinspaceDataClient, ListChangesetsCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
16
|
+
* const client = new FinspaceDataClient(config);
|
|
17
|
+
* const command = new ListChangesetsCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link ListChangesetsCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link ListChangesetsCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class ListChangesetsCommand extends $Command<ListChangesetsCommandInput, ListChangesetsCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
|
+
readonly input: ListChangesetsCommandInput;
|
|
28
|
+
constructor(input: ListChangesetsCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListChangesetsCommandInput, ListChangesetsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
4
|
+
import { ListDataViewsRequest, ListDataViewsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListDataViewsCommandInput extends ListDataViewsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListDataViewsCommandOutput extends ListDataViewsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Lists all available Dataviews for a Dataset.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { FinspaceDataClient, ListDataViewsCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
15
|
+
* // const { FinspaceDataClient, ListDataViewsCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
16
|
+
* const client = new FinspaceDataClient(config);
|
|
17
|
+
* const command = new ListDataViewsCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link ListDataViewsCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link ListDataViewsCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class ListDataViewsCommand extends $Command<ListDataViewsCommandInput, ListDataViewsCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
|
+
readonly input: ListDataViewsCommandInput;
|
|
28
|
+
constructor(input: ListDataViewsCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDataViewsCommandInput, ListDataViewsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
4
|
+
import { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListDatasetsCommandInput extends ListDatasetsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Lists all of the active Datasets that a user has access to.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { FinspaceDataClient, ListDatasetsCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
15
|
+
* // const { FinspaceDataClient, ListDatasetsCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
16
|
+
* const client = new FinspaceDataClient(config);
|
|
17
|
+
* const command = new ListDatasetsCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link ListDatasetsCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link ListDatasetsCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class ListDatasetsCommand extends $Command<ListDatasetsCommandInput, ListDatasetsCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
|
+
readonly input: ListDatasetsCommandInput;
|
|
28
|
+
constructor(input: ListDatasetsCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDatasetsCommandInput, ListDatasetsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
4
|
+
import { UpdateChangesetRequest, UpdateChangesetResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateChangesetCommandInput extends UpdateChangesetRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateChangesetCommandOutput extends UpdateChangesetResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Updates a FinSpace Changeset.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { FinspaceDataClient, UpdateChangesetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
15
|
+
* // const { FinspaceDataClient, UpdateChangesetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
16
|
+
* const client = new FinspaceDataClient(config);
|
|
17
|
+
* const command = new UpdateChangesetCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link UpdateChangesetCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link UpdateChangesetCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class UpdateChangesetCommand extends $Command<UpdateChangesetCommandInput, UpdateChangesetCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
|
+
readonly input: UpdateChangesetCommandInput;
|
|
28
|
+
constructor(input: UpdateChangesetCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateChangesetCommandInput, UpdateChangesetCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
4
|
+
import { UpdateDatasetRequest, UpdateDatasetResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateDatasetCommandInput extends UpdateDatasetRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Updates a FinSpace Dataset.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { FinspaceDataClient, UpdateDatasetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
15
|
+
* // const { FinspaceDataClient, UpdateDatasetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
16
|
+
* const client = new FinspaceDataClient(config);
|
|
17
|
+
* const command = new UpdateDatasetCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link UpdateDatasetCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link UpdateDatasetCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class UpdateDatasetCommand extends $Command<UpdateDatasetCommandInput, UpdateDatasetCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
|
+
readonly input: UpdateDatasetCommandInput;
|
|
28
|
+
constructor(input: UpdateDatasetCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDatasetCommandInput, UpdateDatasetCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,3 +1,14 @@
|
|
|
1
1
|
export * from "./CreateChangesetCommand";
|
|
2
|
+
export * from "./CreateDataViewCommand";
|
|
3
|
+
export * from "./CreateDatasetCommand";
|
|
4
|
+
export * from "./DeleteDatasetCommand";
|
|
5
|
+
export * from "./GetChangesetCommand";
|
|
6
|
+
export * from "./GetDataViewCommand";
|
|
7
|
+
export * from "./GetDatasetCommand";
|
|
2
8
|
export * from "./GetProgrammaticAccessCredentialsCommand";
|
|
3
9
|
export * from "./GetWorkingLocationCommand";
|
|
10
|
+
export * from "./ListChangesetsCommand";
|
|
11
|
+
export * from "./ListDataViewsCommand";
|
|
12
|
+
export * from "./ListDatasetsCommand";
|
|
13
|
+
export * from "./UpdateChangesetCommand";
|
|
14
|
+
export * from "./UpdateDatasetCommand";
|
package/dist-types/index.d.ts
CHANGED