@aws-sdk/client-finspace-data 3.169.0 → 3.170.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 +8 -0
- package/dist-types/ts3.4/FinspaceData.d.ts +568 -160
- package/dist-types/ts3.4/FinspaceDataClient.d.ts +316 -104
- package/dist-types/ts3.4/commands/AssociateUserToPermissionGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateChangesetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateDataViewCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreatePermissionGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeletePermissionGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisableUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DisassociateUserFromPermissionGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/EnableUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetChangesetCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetDataViewCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetExternalDataViewAccessDetailsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetPermissionGroupCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetProgrammaticAccessCredentialsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetWorkingLocationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListChangesetsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListDataViewsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListPermissionGroupsByUserCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListPermissionGroupsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListUsersByPermissionGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ResetUserPasswordCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateChangesetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateDatasetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdatePermissionGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +31 -31
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/FinspaceDataServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1168 -1085
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListChangesetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListDataViewsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListDatasetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPermissionGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +377 -95
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FinspaceDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FinspaceDataClient";
|
|
13
|
+
import {
|
|
14
|
+
GetPermissionGroupRequest,
|
|
15
|
+
GetPermissionGroupResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetPermissionGroupCommandInput
|
|
18
|
+
extends GetPermissionGroupRequest {}
|
|
19
|
+
export interface GetPermissionGroupCommandOutput
|
|
20
|
+
extends GetPermissionGroupResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetPermissionGroupCommand extends $Command<
|
|
24
|
+
GetPermissionGroupCommandInput,
|
|
25
|
+
GetPermissionGroupCommandOutput,
|
|
26
|
+
FinspaceDataClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetPermissionGroupCommandInput;
|
|
29
|
+
constructor(input: GetPermissionGroupCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceDataClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetPermissionGroupCommandInput, GetPermissionGroupCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FinspaceDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FinspaceDataClient";
|
|
13
|
+
import {
|
|
14
|
+
GetProgrammaticAccessCredentialsRequest,
|
|
15
|
+
GetProgrammaticAccessCredentialsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetProgrammaticAccessCredentialsCommandInput
|
|
18
|
+
extends GetProgrammaticAccessCredentialsRequest {}
|
|
19
|
+
export interface GetProgrammaticAccessCredentialsCommandOutput
|
|
20
|
+
extends GetProgrammaticAccessCredentialsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetProgrammaticAccessCredentialsCommand extends $Command<
|
|
24
|
+
GetProgrammaticAccessCredentialsCommandInput,
|
|
25
|
+
GetProgrammaticAccessCredentialsCommandOutput,
|
|
26
|
+
FinspaceDataClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetProgrammaticAccessCredentialsCommandInput;
|
|
29
|
+
constructor(input: GetProgrammaticAccessCredentialsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceDataClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetProgrammaticAccessCredentialsCommandInput,
|
|
37
|
+
GetProgrammaticAccessCredentialsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FinspaceDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FinspaceDataClient";
|
|
13
|
+
import { GetUserRequest, GetUserResponse } from "../models/models_0";
|
|
14
|
+
export interface GetUserCommandInput extends GetUserRequest {}
|
|
15
|
+
export interface GetUserCommandOutput
|
|
16
|
+
extends GetUserResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetUserCommand extends $Command<
|
|
20
|
+
GetUserCommandInput,
|
|
21
|
+
GetUserCommandOutput,
|
|
22
|
+
FinspaceDataClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetUserCommandInput;
|
|
25
|
+
constructor(input: GetUserCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: FinspaceDataClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetUserCommandInput, GetUserCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FinspaceDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FinspaceDataClient";
|
|
13
|
+
import {
|
|
14
|
+
GetWorkingLocationRequest,
|
|
15
|
+
GetWorkingLocationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetWorkingLocationCommandInput
|
|
18
|
+
extends GetWorkingLocationRequest {}
|
|
19
|
+
export interface GetWorkingLocationCommandOutput
|
|
20
|
+
extends GetWorkingLocationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetWorkingLocationCommand extends $Command<
|
|
24
|
+
GetWorkingLocationCommandInput,
|
|
25
|
+
GetWorkingLocationCommandOutput,
|
|
26
|
+
FinspaceDataClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetWorkingLocationCommandInput;
|
|
29
|
+
constructor(input: GetWorkingLocationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceDataClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetWorkingLocationCommandInput, GetWorkingLocationCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FinspaceDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FinspaceDataClient";
|
|
13
|
+
import {
|
|
14
|
+
ListChangesetsRequest,
|
|
15
|
+
ListChangesetsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListChangesetsCommandInput extends ListChangesetsRequest {}
|
|
18
|
+
export interface ListChangesetsCommandOutput
|
|
19
|
+
extends ListChangesetsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListChangesetsCommand extends $Command<
|
|
23
|
+
ListChangesetsCommandInput,
|
|
24
|
+
ListChangesetsCommandOutput,
|
|
25
|
+
FinspaceDataClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListChangesetsCommandInput;
|
|
28
|
+
constructor(input: ListChangesetsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: FinspaceDataClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListChangesetsCommandInput, ListChangesetsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FinspaceDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FinspaceDataClient";
|
|
13
|
+
import {
|
|
14
|
+
ListDataViewsRequest,
|
|
15
|
+
ListDataViewsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListDataViewsCommandInput extends ListDataViewsRequest {}
|
|
18
|
+
export interface ListDataViewsCommandOutput
|
|
19
|
+
extends ListDataViewsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListDataViewsCommand extends $Command<
|
|
23
|
+
ListDataViewsCommandInput,
|
|
24
|
+
ListDataViewsCommandOutput,
|
|
25
|
+
FinspaceDataClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListDataViewsCommandInput;
|
|
28
|
+
constructor(input: ListDataViewsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: FinspaceDataClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListDataViewsCommandInput, ListDataViewsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FinspaceDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FinspaceDataClient";
|
|
13
|
+
import { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0";
|
|
14
|
+
export interface ListDatasetsCommandInput extends ListDatasetsRequest {}
|
|
15
|
+
export interface ListDatasetsCommandOutput
|
|
16
|
+
extends ListDatasetsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListDatasetsCommand extends $Command<
|
|
20
|
+
ListDatasetsCommandInput,
|
|
21
|
+
ListDatasetsCommandOutput,
|
|
22
|
+
FinspaceDataClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListDatasetsCommandInput;
|
|
25
|
+
constructor(input: ListDatasetsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: FinspaceDataClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListDatasetsCommandInput, ListDatasetsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FinspaceDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FinspaceDataClient";
|
|
13
|
+
import {
|
|
14
|
+
ListPermissionGroupsByUserRequest,
|
|
15
|
+
ListPermissionGroupsByUserResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListPermissionGroupsByUserCommandInput
|
|
18
|
+
extends ListPermissionGroupsByUserRequest {}
|
|
19
|
+
export interface ListPermissionGroupsByUserCommandOutput
|
|
20
|
+
extends ListPermissionGroupsByUserResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListPermissionGroupsByUserCommand extends $Command<
|
|
24
|
+
ListPermissionGroupsByUserCommandInput,
|
|
25
|
+
ListPermissionGroupsByUserCommandOutput,
|
|
26
|
+
FinspaceDataClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListPermissionGroupsByUserCommandInput;
|
|
29
|
+
constructor(input: ListPermissionGroupsByUserCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceDataClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListPermissionGroupsByUserCommandInput,
|
|
37
|
+
ListPermissionGroupsByUserCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FinspaceDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FinspaceDataClient";
|
|
13
|
+
import {
|
|
14
|
+
ListPermissionGroupsRequest,
|
|
15
|
+
ListPermissionGroupsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListPermissionGroupsCommandInput
|
|
18
|
+
extends ListPermissionGroupsRequest {}
|
|
19
|
+
export interface ListPermissionGroupsCommandOutput
|
|
20
|
+
extends ListPermissionGroupsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListPermissionGroupsCommand extends $Command<
|
|
24
|
+
ListPermissionGroupsCommandInput,
|
|
25
|
+
ListPermissionGroupsCommandOutput,
|
|
26
|
+
FinspaceDataClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListPermissionGroupsCommandInput;
|
|
29
|
+
constructor(input: ListPermissionGroupsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceDataClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListPermissionGroupsCommandInput,
|
|
37
|
+
ListPermissionGroupsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FinspaceDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FinspaceDataClient";
|
|
13
|
+
import {
|
|
14
|
+
ListUsersByPermissionGroupRequest,
|
|
15
|
+
ListUsersByPermissionGroupResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListUsersByPermissionGroupCommandInput
|
|
18
|
+
extends ListUsersByPermissionGroupRequest {}
|
|
19
|
+
export interface ListUsersByPermissionGroupCommandOutput
|
|
20
|
+
extends ListUsersByPermissionGroupResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListUsersByPermissionGroupCommand extends $Command<
|
|
24
|
+
ListUsersByPermissionGroupCommandInput,
|
|
25
|
+
ListUsersByPermissionGroupCommandOutput,
|
|
26
|
+
FinspaceDataClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListUsersByPermissionGroupCommandInput;
|
|
29
|
+
constructor(input: ListUsersByPermissionGroupCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FinspaceDataClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListUsersByPermissionGroupCommandInput,
|
|
37
|
+
ListUsersByPermissionGroupCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FinspaceDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FinspaceDataClient";
|
|
13
|
+
import { ListUsersRequest, ListUsersResponse } from "../models/models_0";
|
|
14
|
+
export interface ListUsersCommandInput extends ListUsersRequest {}
|
|
15
|
+
export interface ListUsersCommandOutput
|
|
16
|
+
extends ListUsersResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListUsersCommand extends $Command<
|
|
20
|
+
ListUsersCommandInput,
|
|
21
|
+
ListUsersCommandOutput,
|
|
22
|
+
FinspaceDataClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListUsersCommandInput;
|
|
25
|
+
constructor(input: ListUsersCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: FinspaceDataClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListUsersCommandInput, ListUsersCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|