@aws-sdk/client-finspace-data 3.109.0 → 3.112.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 +27 -0
- package/README.md +7 -7
- package/dist-cjs/FinspaceData.js +75 -0
- package/dist-cjs/commands/AssociateUserToPermissionGroupCommand.js +36 -0
- package/dist-cjs/commands/DisassociateUserFromPermissionGroupCommand.js +36 -0
- package/dist-cjs/commands/GetPermissionGroupCommand.js +36 -0
- package/dist-cjs/commands/ListPermissionGroupsByUserCommand.js +36 -0
- package/dist-cjs/commands/ListUsersByPermissionGroupCommand.js +36 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +128 -41
- package/dist-cjs/protocols/Aws_restJson1.js +477 -1
- package/dist-es/FinspaceData.js +75 -0
- package/dist-es/commands/AssociateUserToPermissionGroupCommand.js +39 -0
- package/dist-es/commands/DisassociateUserFromPermissionGroupCommand.js +39 -0
- package/dist-es/commands/GetPermissionGroupCommand.js +39 -0
- package/dist-es/commands/ListPermissionGroupsByUserCommand.js +39 -0
- package/dist-es/commands/ListUsersByPermissionGroupCommand.js +39 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +86 -30
- package/dist-es/protocols/Aws_restJson1.js +615 -10
- package/dist-types/FinspaceData.d.ts +35 -0
- package/dist-types/FinspaceDataClient.d.ts +7 -2
- package/dist-types/commands/AssociateUserToPermissionGroupCommand.d.ts +35 -0
- package/dist-types/commands/DisassociateUserFromPermissionGroupCommand.d.ts +35 -0
- package/dist-types/commands/GetPermissionGroupCommand.d.ts +35 -0
- package/dist-types/commands/ListPermissionGroupsByUserCommand.d.ts +35 -0
- package/dist-types/commands/ListUsersByPermissionGroupCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +411 -96
- package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/ts3.4/FinspaceData.d.ts +25 -0
- package/dist-types/ts3.4/FinspaceDataClient.d.ts +7 -2
- package/dist-types/ts3.4/commands/AssociateUserToPermissionGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateUserFromPermissionGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPermissionGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPermissionGroupsByUserCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListUsersByPermissionGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +189 -44
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
- package/package.json +26 -26
|
@@ -20,6 +20,26 @@ export declare enum ApplicationPermission {
|
|
|
20
20
|
ManageUsersAndGroups = "ManageUsersAndGroups",
|
|
21
21
|
ViewAuditData = "ViewAuditData"
|
|
22
22
|
}
|
|
23
|
+
export interface AssociateUserToPermissionGroupRequest {
|
|
24
|
+
|
|
25
|
+
permissionGroupId: string | undefined;
|
|
26
|
+
|
|
27
|
+
userId: string | undefined;
|
|
28
|
+
|
|
29
|
+
clientToken?: string;
|
|
30
|
+
}
|
|
31
|
+
export declare namespace AssociateUserToPermissionGroupRequest {
|
|
32
|
+
|
|
33
|
+
const filterSensitiveLog: (obj: AssociateUserToPermissionGroupRequest) => any;
|
|
34
|
+
}
|
|
35
|
+
export interface AssociateUserToPermissionGroupResponse {
|
|
36
|
+
|
|
37
|
+
statusCode?: number;
|
|
38
|
+
}
|
|
39
|
+
export declare namespace AssociateUserToPermissionGroupResponse {
|
|
40
|
+
|
|
41
|
+
const filterSensitiveLog: (obj: AssociateUserToPermissionGroupResponse) => any;
|
|
42
|
+
}
|
|
23
43
|
|
|
24
44
|
export declare class ConflictException extends __BaseException {
|
|
25
45
|
readonly name: "ConflictException";
|
|
@@ -28,6 +48,36 @@ export declare class ConflictException extends __BaseException {
|
|
|
28
48
|
|
|
29
49
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
30
50
|
}
|
|
51
|
+
|
|
52
|
+
export declare class InternalServerException extends __BaseException {
|
|
53
|
+
readonly name: "InternalServerException";
|
|
54
|
+
readonly $fault: "server";
|
|
55
|
+
|
|
56
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
60
|
+
readonly name: "ResourceNotFoundException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
reason?: string;
|
|
63
|
+
|
|
64
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export declare class ThrottlingException extends __BaseException {
|
|
68
|
+
readonly name: "ThrottlingException";
|
|
69
|
+
readonly $fault: "client";
|
|
70
|
+
|
|
71
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export declare class ValidationException extends __BaseException {
|
|
75
|
+
readonly name: "ValidationException";
|
|
76
|
+
readonly $fault: "client";
|
|
77
|
+
reason?: string;
|
|
78
|
+
|
|
79
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
80
|
+
}
|
|
31
81
|
export declare enum ChangeType {
|
|
32
82
|
APPEND = "APPEND",
|
|
33
83
|
MODIFY = "MODIFY",
|
|
@@ -62,42 +112,12 @@ export declare namespace CreateChangesetResponse {
|
|
|
62
112
|
const filterSensitiveLog: (obj: CreateChangesetResponse) => any;
|
|
63
113
|
}
|
|
64
114
|
|
|
65
|
-
export declare class InternalServerException extends __BaseException {
|
|
66
|
-
readonly name: "InternalServerException";
|
|
67
|
-
readonly $fault: "server";
|
|
68
|
-
|
|
69
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
115
|
export declare class LimitExceededException extends __BaseException {
|
|
73
116
|
readonly name: "LimitExceededException";
|
|
74
117
|
readonly $fault: "client";
|
|
75
118
|
|
|
76
119
|
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
77
120
|
}
|
|
78
|
-
|
|
79
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
80
|
-
readonly name: "ResourceNotFoundException";
|
|
81
|
-
readonly $fault: "client";
|
|
82
|
-
reason?: string;
|
|
83
|
-
|
|
84
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
export declare class ThrottlingException extends __BaseException {
|
|
88
|
-
readonly name: "ThrottlingException";
|
|
89
|
-
readonly $fault: "client";
|
|
90
|
-
|
|
91
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
export declare class ValidationException extends __BaseException {
|
|
95
|
-
readonly name: "ValidationException";
|
|
96
|
-
readonly $fault: "client";
|
|
97
|
-
reason?: string;
|
|
98
|
-
|
|
99
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
100
|
-
}
|
|
101
121
|
export declare enum DatasetKind {
|
|
102
122
|
NON_TABULAR = "NON_TABULAR",
|
|
103
123
|
TABULAR = "TABULAR"
|
|
@@ -373,6 +393,26 @@ export declare namespace DisableUserResponse {
|
|
|
373
393
|
|
|
374
394
|
const filterSensitiveLog: (obj: DisableUserResponse) => any;
|
|
375
395
|
}
|
|
396
|
+
export interface DisassociateUserFromPermissionGroupRequest {
|
|
397
|
+
|
|
398
|
+
permissionGroupId: string | undefined;
|
|
399
|
+
|
|
400
|
+
userId: string | undefined;
|
|
401
|
+
|
|
402
|
+
clientToken?: string;
|
|
403
|
+
}
|
|
404
|
+
export declare namespace DisassociateUserFromPermissionGroupRequest {
|
|
405
|
+
|
|
406
|
+
const filterSensitiveLog: (obj: DisassociateUserFromPermissionGroupRequest) => any;
|
|
407
|
+
}
|
|
408
|
+
export interface DisassociateUserFromPermissionGroupResponse {
|
|
409
|
+
|
|
410
|
+
statusCode?: number;
|
|
411
|
+
}
|
|
412
|
+
export declare namespace DisassociateUserFromPermissionGroupResponse {
|
|
413
|
+
|
|
414
|
+
const filterSensitiveLog: (obj: DisassociateUserFromPermissionGroupResponse) => any;
|
|
415
|
+
}
|
|
376
416
|
export interface EnableUserRequest {
|
|
377
417
|
|
|
378
418
|
userId: string | undefined;
|
|
@@ -568,6 +608,48 @@ export declare namespace GetDataViewResponse {
|
|
|
568
608
|
|
|
569
609
|
const filterSensitiveLog: (obj: GetDataViewResponse) => any;
|
|
570
610
|
}
|
|
611
|
+
export interface GetPermissionGroupRequest {
|
|
612
|
+
|
|
613
|
+
permissionGroupId: string | undefined;
|
|
614
|
+
}
|
|
615
|
+
export declare namespace GetPermissionGroupRequest {
|
|
616
|
+
|
|
617
|
+
const filterSensitiveLog: (obj: GetPermissionGroupRequest) => any;
|
|
618
|
+
}
|
|
619
|
+
export declare enum PermissionGroupMembershipStatus {
|
|
620
|
+
ADDITION_IN_PROGRESS = "ADDITION_IN_PROGRESS",
|
|
621
|
+
ADDITION_SUCCESS = "ADDITION_SUCCESS",
|
|
622
|
+
REMOVAL_IN_PROGRESS = "REMOVAL_IN_PROGRESS"
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
export interface PermissionGroup {
|
|
626
|
+
|
|
627
|
+
permissionGroupId?: string;
|
|
628
|
+
|
|
629
|
+
name?: string;
|
|
630
|
+
|
|
631
|
+
description?: string;
|
|
632
|
+
|
|
633
|
+
applicationPermissions?: (ApplicationPermission | string)[];
|
|
634
|
+
|
|
635
|
+
createTime?: number;
|
|
636
|
+
|
|
637
|
+
lastModifiedTime?: number;
|
|
638
|
+
|
|
639
|
+
membershipStatus?: PermissionGroupMembershipStatus | string;
|
|
640
|
+
}
|
|
641
|
+
export declare namespace PermissionGroup {
|
|
642
|
+
|
|
643
|
+
const filterSensitiveLog: (obj: PermissionGroup) => any;
|
|
644
|
+
}
|
|
645
|
+
export interface GetPermissionGroupResponse {
|
|
646
|
+
|
|
647
|
+
permissionGroup?: PermissionGroup;
|
|
648
|
+
}
|
|
649
|
+
export declare namespace GetPermissionGroupResponse {
|
|
650
|
+
|
|
651
|
+
const filterSensitiveLog: (obj: GetPermissionGroupResponse) => any;
|
|
652
|
+
}
|
|
571
653
|
|
|
572
654
|
export interface GetProgrammaticAccessCredentialsRequest {
|
|
573
655
|
|
|
@@ -842,34 +924,50 @@ export declare namespace ListPermissionGroupsRequest {
|
|
|
842
924
|
|
|
843
925
|
const filterSensitiveLog: (obj: ListPermissionGroupsRequest) => any;
|
|
844
926
|
}
|
|
845
|
-
|
|
846
|
-
export interface PermissionGroup {
|
|
927
|
+
export interface ListPermissionGroupsResponse {
|
|
847
928
|
|
|
848
|
-
|
|
929
|
+
permissionGroups?: PermissionGroup[];
|
|
849
930
|
|
|
850
|
-
|
|
931
|
+
nextToken?: string;
|
|
932
|
+
}
|
|
933
|
+
export declare namespace ListPermissionGroupsResponse {
|
|
851
934
|
|
|
852
|
-
|
|
935
|
+
const filterSensitiveLog: (obj: ListPermissionGroupsResponse) => any;
|
|
936
|
+
}
|
|
937
|
+
export interface ListPermissionGroupsByUserRequest {
|
|
853
938
|
|
|
854
|
-
|
|
939
|
+
userId: string | undefined;
|
|
855
940
|
|
|
856
|
-
|
|
941
|
+
nextToken?: string;
|
|
857
942
|
|
|
858
|
-
|
|
943
|
+
maxResults: number | undefined;
|
|
859
944
|
}
|
|
860
|
-
export declare namespace
|
|
945
|
+
export declare namespace ListPermissionGroupsByUserRequest {
|
|
861
946
|
|
|
862
|
-
const filterSensitiveLog: (obj:
|
|
947
|
+
const filterSensitiveLog: (obj: ListPermissionGroupsByUserRequest) => any;
|
|
863
948
|
}
|
|
864
|
-
|
|
949
|
+
|
|
950
|
+
export interface PermissionGroupByUser {
|
|
865
951
|
|
|
866
|
-
|
|
952
|
+
permissionGroupId?: string;
|
|
953
|
+
|
|
954
|
+
name?: string;
|
|
955
|
+
|
|
956
|
+
membershipStatus?: PermissionGroupMembershipStatus | string;
|
|
957
|
+
}
|
|
958
|
+
export declare namespace PermissionGroupByUser {
|
|
959
|
+
|
|
960
|
+
const filterSensitiveLog: (obj: PermissionGroupByUser) => any;
|
|
961
|
+
}
|
|
962
|
+
export interface ListPermissionGroupsByUserResponse {
|
|
963
|
+
|
|
964
|
+
permissionGroups?: PermissionGroupByUser[];
|
|
867
965
|
|
|
868
966
|
nextToken?: string;
|
|
869
967
|
}
|
|
870
|
-
export declare namespace
|
|
968
|
+
export declare namespace ListPermissionGroupsByUserResponse {
|
|
871
969
|
|
|
872
|
-
const filterSensitiveLog: (obj:
|
|
970
|
+
const filterSensitiveLog: (obj: ListPermissionGroupsByUserResponse) => any;
|
|
873
971
|
}
|
|
874
972
|
export interface ListUsersRequest {
|
|
875
973
|
|
|
@@ -924,6 +1022,53 @@ export declare namespace ListUsersResponse {
|
|
|
924
1022
|
|
|
925
1023
|
const filterSensitiveLog: (obj: ListUsersResponse) => any;
|
|
926
1024
|
}
|
|
1025
|
+
export interface ListUsersByPermissionGroupRequest {
|
|
1026
|
+
|
|
1027
|
+
permissionGroupId: string | undefined;
|
|
1028
|
+
|
|
1029
|
+
nextToken?: string;
|
|
1030
|
+
|
|
1031
|
+
maxResults: number | undefined;
|
|
1032
|
+
}
|
|
1033
|
+
export declare namespace ListUsersByPermissionGroupRequest {
|
|
1034
|
+
|
|
1035
|
+
const filterSensitiveLog: (obj: ListUsersByPermissionGroupRequest) => any;
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
export interface UserByPermissionGroup {
|
|
1039
|
+
|
|
1040
|
+
userId?: string;
|
|
1041
|
+
|
|
1042
|
+
status?: UserStatus | string;
|
|
1043
|
+
|
|
1044
|
+
firstName?: string;
|
|
1045
|
+
|
|
1046
|
+
lastName?: string;
|
|
1047
|
+
|
|
1048
|
+
emailAddress?: string;
|
|
1049
|
+
|
|
1050
|
+
type?: UserType | string;
|
|
1051
|
+
|
|
1052
|
+
apiAccess?: ApiAccess | string;
|
|
1053
|
+
|
|
1054
|
+
apiAccessPrincipalArn?: string;
|
|
1055
|
+
|
|
1056
|
+
membershipStatus?: PermissionGroupMembershipStatus | string;
|
|
1057
|
+
}
|
|
1058
|
+
export declare namespace UserByPermissionGroup {
|
|
1059
|
+
|
|
1060
|
+
const filterSensitiveLog: (obj: UserByPermissionGroup) => any;
|
|
1061
|
+
}
|
|
1062
|
+
export interface ListUsersByPermissionGroupResponse {
|
|
1063
|
+
|
|
1064
|
+
users?: UserByPermissionGroup[];
|
|
1065
|
+
|
|
1066
|
+
nextToken?: string;
|
|
1067
|
+
}
|
|
1068
|
+
export declare namespace ListUsersByPermissionGroupResponse {
|
|
1069
|
+
|
|
1070
|
+
const filterSensitiveLog: (obj: ListUsersByPermissionGroupResponse) => any;
|
|
1071
|
+
}
|
|
927
1072
|
export interface ResetUserPasswordRequest {
|
|
928
1073
|
|
|
929
1074
|
userId: string | undefined;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { AssociateUserToPermissionGroupCommandInput, AssociateUserToPermissionGroupCommandOutput } from "../commands/AssociateUserToPermissionGroupCommand";
|
|
3
4
|
import { CreateChangesetCommandInput, CreateChangesetCommandOutput } from "../commands/CreateChangesetCommand";
|
|
4
5
|
import { CreateDatasetCommandInput, CreateDatasetCommandOutput } from "../commands/CreateDatasetCommand";
|
|
5
6
|
import { CreateDataViewCommandInput, CreateDataViewCommandOutput } from "../commands/CreateDataViewCommand";
|
|
@@ -8,23 +9,28 @@ import { CreateUserCommandInput, CreateUserCommandOutput } from "../commands/Cre
|
|
|
8
9
|
import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "../commands/DeleteDatasetCommand";
|
|
9
10
|
import { DeletePermissionGroupCommandInput, DeletePermissionGroupCommandOutput } from "../commands/DeletePermissionGroupCommand";
|
|
10
11
|
import { DisableUserCommandInput, DisableUserCommandOutput } from "../commands/DisableUserCommand";
|
|
12
|
+
import { DisassociateUserFromPermissionGroupCommandInput, DisassociateUserFromPermissionGroupCommandOutput } from "../commands/DisassociateUserFromPermissionGroupCommand";
|
|
11
13
|
import { EnableUserCommandInput, EnableUserCommandOutput } from "../commands/EnableUserCommand";
|
|
12
14
|
import { GetChangesetCommandInput, GetChangesetCommandOutput } from "../commands/GetChangesetCommand";
|
|
13
15
|
import { GetDatasetCommandInput, GetDatasetCommandOutput } from "../commands/GetDatasetCommand";
|
|
14
16
|
import { GetDataViewCommandInput, GetDataViewCommandOutput } from "../commands/GetDataViewCommand";
|
|
17
|
+
import { GetPermissionGroupCommandInput, GetPermissionGroupCommandOutput } from "../commands/GetPermissionGroupCommand";
|
|
15
18
|
import { GetProgrammaticAccessCredentialsCommandInput, GetProgrammaticAccessCredentialsCommandOutput } from "../commands/GetProgrammaticAccessCredentialsCommand";
|
|
16
19
|
import { GetUserCommandInput, GetUserCommandOutput } from "../commands/GetUserCommand";
|
|
17
20
|
import { GetWorkingLocationCommandInput, GetWorkingLocationCommandOutput } from "../commands/GetWorkingLocationCommand";
|
|
18
21
|
import { ListChangesetsCommandInput, ListChangesetsCommandOutput } from "../commands/ListChangesetsCommand";
|
|
19
22
|
import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "../commands/ListDatasetsCommand";
|
|
20
23
|
import { ListDataViewsCommandInput, ListDataViewsCommandOutput } from "../commands/ListDataViewsCommand";
|
|
24
|
+
import { ListPermissionGroupsByUserCommandInput, ListPermissionGroupsByUserCommandOutput } from "../commands/ListPermissionGroupsByUserCommand";
|
|
21
25
|
import { ListPermissionGroupsCommandInput, ListPermissionGroupsCommandOutput } from "../commands/ListPermissionGroupsCommand";
|
|
26
|
+
import { ListUsersByPermissionGroupCommandInput, ListUsersByPermissionGroupCommandOutput } from "../commands/ListUsersByPermissionGroupCommand";
|
|
22
27
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
|
|
23
28
|
import { ResetUserPasswordCommandInput, ResetUserPasswordCommandOutput } from "../commands/ResetUserPasswordCommand";
|
|
24
29
|
import { UpdateChangesetCommandInput, UpdateChangesetCommandOutput } from "../commands/UpdateChangesetCommand";
|
|
25
30
|
import { UpdateDatasetCommandInput, UpdateDatasetCommandOutput } from "../commands/UpdateDatasetCommand";
|
|
26
31
|
import { UpdatePermissionGroupCommandInput, UpdatePermissionGroupCommandOutput } from "../commands/UpdatePermissionGroupCommand";
|
|
27
32
|
import { UpdateUserCommandInput, UpdateUserCommandOutput } from "../commands/UpdateUserCommand";
|
|
33
|
+
export declare const serializeAws_restJson1AssociateUserToPermissionGroupCommand: (input: AssociateUserToPermissionGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
34
|
export declare const serializeAws_restJson1CreateChangesetCommand: (input: CreateChangesetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
35
|
export declare const serializeAws_restJson1CreateDatasetCommand: (input: CreateDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
36
|
export declare const serializeAws_restJson1CreateDataViewCommand: (input: CreateDataViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -33,10 +39,12 @@ export declare const serializeAws_restJson1CreateUserCommand: (input: CreateUser
|
|
|
33
39
|
export declare const serializeAws_restJson1DeleteDatasetCommand: (input: DeleteDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
40
|
export declare const serializeAws_restJson1DeletePermissionGroupCommand: (input: DeletePermissionGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
41
|
export declare const serializeAws_restJson1DisableUserCommand: (input: DisableUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
+
export declare const serializeAws_restJson1DisassociateUserFromPermissionGroupCommand: (input: DisassociateUserFromPermissionGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
43
|
export declare const serializeAws_restJson1EnableUserCommand: (input: EnableUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
44
|
export declare const serializeAws_restJson1GetChangesetCommand: (input: GetChangesetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
45
|
export declare const serializeAws_restJson1GetDatasetCommand: (input: GetDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
46
|
export declare const serializeAws_restJson1GetDataViewCommand: (input: GetDataViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
+
export declare const serializeAws_restJson1GetPermissionGroupCommand: (input: GetPermissionGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
48
|
export declare const serializeAws_restJson1GetProgrammaticAccessCredentialsCommand: (input: GetProgrammaticAccessCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
49
|
export declare const serializeAws_restJson1GetUserCommand: (input: GetUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
50
|
export declare const serializeAws_restJson1GetWorkingLocationCommand: (input: GetWorkingLocationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -44,12 +52,15 @@ export declare const serializeAws_restJson1ListChangesetsCommand: (input: ListCh
|
|
|
44
52
|
export declare const serializeAws_restJson1ListDatasetsCommand: (input: ListDatasetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
53
|
export declare const serializeAws_restJson1ListDataViewsCommand: (input: ListDataViewsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
54
|
export declare const serializeAws_restJson1ListPermissionGroupsCommand: (input: ListPermissionGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
|
+
export declare const serializeAws_restJson1ListPermissionGroupsByUserCommand: (input: ListPermissionGroupsByUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
56
|
export declare const serializeAws_restJson1ListUsersCommand: (input: ListUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
+
export declare const serializeAws_restJson1ListUsersByPermissionGroupCommand: (input: ListUsersByPermissionGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
58
|
export declare const serializeAws_restJson1ResetUserPasswordCommand: (input: ResetUserPasswordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
59
|
export declare const serializeAws_restJson1UpdateChangesetCommand: (input: UpdateChangesetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
60
|
export declare const serializeAws_restJson1UpdateDatasetCommand: (input: UpdateDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
61
|
export declare const serializeAws_restJson1UpdatePermissionGroupCommand: (input: UpdatePermissionGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
62
|
export declare const serializeAws_restJson1UpdateUserCommand: (input: UpdateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
+
export declare const deserializeAws_restJson1AssociateUserToPermissionGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateUserToPermissionGroupCommandOutput>;
|
|
53
64
|
export declare const deserializeAws_restJson1CreateChangesetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateChangesetCommandOutput>;
|
|
54
65
|
export declare const deserializeAws_restJson1CreateDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDatasetCommandOutput>;
|
|
55
66
|
export declare const deserializeAws_restJson1CreateDataViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataViewCommandOutput>;
|
|
@@ -58,10 +69,12 @@ export declare const deserializeAws_restJson1CreateUserCommand: (output: __HttpR
|
|
|
58
69
|
export declare const deserializeAws_restJson1DeleteDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDatasetCommandOutput>;
|
|
59
70
|
export declare const deserializeAws_restJson1DeletePermissionGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePermissionGroupCommandOutput>;
|
|
60
71
|
export declare const deserializeAws_restJson1DisableUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableUserCommandOutput>;
|
|
72
|
+
export declare const deserializeAws_restJson1DisassociateUserFromPermissionGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateUserFromPermissionGroupCommandOutput>;
|
|
61
73
|
export declare const deserializeAws_restJson1EnableUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableUserCommandOutput>;
|
|
62
74
|
export declare const deserializeAws_restJson1GetChangesetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChangesetCommandOutput>;
|
|
63
75
|
export declare const deserializeAws_restJson1GetDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDatasetCommandOutput>;
|
|
64
76
|
export declare const deserializeAws_restJson1GetDataViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataViewCommandOutput>;
|
|
77
|
+
export declare const deserializeAws_restJson1GetPermissionGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPermissionGroupCommandOutput>;
|
|
65
78
|
export declare const deserializeAws_restJson1GetProgrammaticAccessCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProgrammaticAccessCredentialsCommandOutput>;
|
|
66
79
|
export declare const deserializeAws_restJson1GetUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserCommandOutput>;
|
|
67
80
|
export declare const deserializeAws_restJson1GetWorkingLocationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkingLocationCommandOutput>;
|
|
@@ -69,7 +82,9 @@ export declare const deserializeAws_restJson1ListChangesetsCommand: (output: __H
|
|
|
69
82
|
export declare const deserializeAws_restJson1ListDatasetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatasetsCommandOutput>;
|
|
70
83
|
export declare const deserializeAws_restJson1ListDataViewsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataViewsCommandOutput>;
|
|
71
84
|
export declare const deserializeAws_restJson1ListPermissionGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPermissionGroupsCommandOutput>;
|
|
85
|
+
export declare const deserializeAws_restJson1ListPermissionGroupsByUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPermissionGroupsByUserCommandOutput>;
|
|
72
86
|
export declare const deserializeAws_restJson1ListUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUsersCommandOutput>;
|
|
87
|
+
export declare const deserializeAws_restJson1ListUsersByPermissionGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUsersByPermissionGroupCommandOutput>;
|
|
73
88
|
export declare const deserializeAws_restJson1ResetUserPasswordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResetUserPasswordCommandOutput>;
|
|
74
89
|
export declare const deserializeAws_restJson1UpdateChangesetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateChangesetCommandOutput>;
|
|
75
90
|
export declare const deserializeAws_restJson1UpdateDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDatasetCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-finspace-data",
|
|
3
3
|
"description": "AWS SDK for JavaScript Finspace Data Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.112.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,35 +18,35 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.112.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.110.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.112.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.110.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.110.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.110.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.110.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.110.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.110.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.110.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.110.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.110.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.110.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.110.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.110.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.110.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.110.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.110.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.110.0",
|
|
40
|
+
"@aws-sdk/types": "3.110.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.110.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.110.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.110.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.110.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.110.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
52
|
"tslib": "^2.3.1",
|