@aws-sdk/client-finspace-data 3.53.0 → 3.55.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.
Files changed (104) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/FinspaceData.js +165 -0
  3. package/dist-cjs/FinspaceDataClient.js +13 -13
  4. package/dist-cjs/commands/CreateChangesetCommand.js +3 -3
  5. package/dist-cjs/commands/CreateDataViewCommand.js +3 -3
  6. package/dist-cjs/commands/CreateDatasetCommand.js +3 -3
  7. package/dist-cjs/commands/CreatePermissionGroupCommand.js +36 -0
  8. package/dist-cjs/commands/CreateUserCommand.js +36 -0
  9. package/dist-cjs/commands/DeleteDatasetCommand.js +3 -3
  10. package/dist-cjs/commands/DeletePermissionGroupCommand.js +36 -0
  11. package/dist-cjs/commands/DisableUserCommand.js +36 -0
  12. package/dist-cjs/commands/EnableUserCommand.js +36 -0
  13. package/dist-cjs/commands/GetChangesetCommand.js +3 -3
  14. package/dist-cjs/commands/GetDataViewCommand.js +3 -3
  15. package/dist-cjs/commands/GetDatasetCommand.js +3 -3
  16. package/dist-cjs/commands/GetProgrammaticAccessCredentialsCommand.js +3 -3
  17. package/dist-cjs/commands/GetUserCommand.js +36 -0
  18. package/dist-cjs/commands/GetWorkingLocationCommand.js +3 -3
  19. package/dist-cjs/commands/ListChangesetsCommand.js +3 -3
  20. package/dist-cjs/commands/ListDataViewsCommand.js +3 -3
  21. package/dist-cjs/commands/ListDatasetsCommand.js +3 -3
  22. package/dist-cjs/commands/ListPermissionGroupsCommand.js +36 -0
  23. package/dist-cjs/commands/ListUsersCommand.js +36 -0
  24. package/dist-cjs/commands/ResetUserPasswordCommand.js +36 -0
  25. package/dist-cjs/commands/UpdateChangesetCommand.js +3 -3
  26. package/dist-cjs/commands/UpdateDatasetCommand.js +3 -3
  27. package/dist-cjs/commands/UpdatePermissionGroupCommand.js +36 -0
  28. package/dist-cjs/commands/UpdateUserCommand.js +36 -0
  29. package/dist-cjs/commands/index.js +11 -0
  30. package/dist-cjs/endpoints.js +1 -1
  31. package/dist-cjs/models/models_0.js +202 -2
  32. package/dist-cjs/pagination/ListPermissionGroupsPaginator.js +35 -0
  33. package/dist-cjs/pagination/ListUsersPaginator.js +35 -0
  34. package/dist-cjs/pagination/index.js +2 -0
  35. package/dist-cjs/protocols/Aws_restJson1.js +1352 -321
  36. package/dist-cjs/runtimeConfig.browser.js +4 -4
  37. package/dist-cjs/runtimeConfig.js +9 -9
  38. package/dist-cjs/runtimeConfig.native.js +1 -1
  39. package/dist-es/FinspaceData.js +179 -14
  40. package/dist-es/commands/CreatePermissionGroupCommand.js +39 -0
  41. package/dist-es/commands/CreateUserCommand.js +39 -0
  42. package/dist-es/commands/DeletePermissionGroupCommand.js +39 -0
  43. package/dist-es/commands/DisableUserCommand.js +39 -0
  44. package/dist-es/commands/EnableUserCommand.js +39 -0
  45. package/dist-es/commands/GetUserCommand.js +39 -0
  46. package/dist-es/commands/ListPermissionGroupsCommand.js +39 -0
  47. package/dist-es/commands/ListUsersCommand.js +39 -0
  48. package/dist-es/commands/ResetUserPasswordCommand.js +39 -0
  49. package/dist-es/commands/UpdatePermissionGroupCommand.js +39 -0
  50. package/dist-es/commands/UpdateUserCommand.js +39 -0
  51. package/dist-es/commands/index.js +11 -0
  52. package/dist-es/models/models_0.js +132 -4
  53. package/dist-es/pagination/ListChangesetsPaginator.js +4 -4
  54. package/dist-es/pagination/ListDataViewsPaginator.js +4 -4
  55. package/dist-es/pagination/ListDatasetsPaginator.js +4 -4
  56. package/dist-es/pagination/ListPermissionGroupsPaginator.js +74 -0
  57. package/dist-es/pagination/ListUsersPaginator.js +74 -0
  58. package/dist-es/pagination/index.js +2 -0
  59. package/dist-es/protocols/Aws_restJson1.js +1636 -322
  60. package/dist-types/FinspaceData.d.ts +77 -0
  61. package/dist-types/FinspaceDataClient.d.ts +15 -4
  62. package/dist-types/commands/CreatePermissionGroupCommand.d.ts +35 -0
  63. package/dist-types/commands/CreateUserCommand.d.ts +35 -0
  64. package/dist-types/commands/DeletePermissionGroupCommand.d.ts +35 -0
  65. package/dist-types/commands/DisableUserCommand.d.ts +35 -0
  66. package/dist-types/commands/EnableUserCommand.d.ts +35 -0
  67. package/dist-types/commands/GetUserCommand.d.ts +35 -0
  68. package/dist-types/commands/ListPermissionGroupsCommand.d.ts +35 -0
  69. package/dist-types/commands/ListUsersCommand.d.ts +35 -0
  70. package/dist-types/commands/ResetUserPasswordCommand.d.ts +35 -0
  71. package/dist-types/commands/UpdatePermissionGroupCommand.d.ts +35 -0
  72. package/dist-types/commands/UpdateUserCommand.d.ts +35 -0
  73. package/dist-types/commands/index.d.ts +11 -0
  74. package/dist-types/models/models_0.d.ts +865 -113
  75. package/dist-types/pagination/ListPermissionGroupsPaginator.d.ts +4 -0
  76. package/dist-types/pagination/ListUsersPaginator.d.ts +4 -0
  77. package/dist-types/pagination/index.d.ts +2 -0
  78. package/dist-types/protocols/Aws_restJson1.d.ts +33 -0
  79. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  80. package/dist-types/runtimeConfig.d.ts +1 -1
  81. package/dist-types/runtimeConfig.native.d.ts +3 -3
  82. package/dist-types/ts3.4/FinspaceData.d.ts +55 -0
  83. package/dist-types/ts3.4/FinspaceDataClient.d.ts +15 -4
  84. package/dist-types/ts3.4/commands/CreatePermissionGroupCommand.d.ts +17 -0
  85. package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +17 -0
  86. package/dist-types/ts3.4/commands/DeletePermissionGroupCommand.d.ts +17 -0
  87. package/dist-types/ts3.4/commands/DisableUserCommand.d.ts +17 -0
  88. package/dist-types/ts3.4/commands/EnableUserCommand.d.ts +17 -0
  89. package/dist-types/ts3.4/commands/GetUserCommand.d.ts +17 -0
  90. package/dist-types/ts3.4/commands/ListPermissionGroupsCommand.d.ts +17 -0
  91. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +17 -0
  92. package/dist-types/ts3.4/commands/ResetUserPasswordCommand.d.ts +17 -0
  93. package/dist-types/ts3.4/commands/UpdatePermissionGroupCommand.d.ts +17 -0
  94. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +17 -0
  95. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  96. package/dist-types/ts3.4/models/models_0.d.ts +333 -0
  97. package/dist-types/ts3.4/pagination/ListPermissionGroupsPaginator.d.ts +4 -0
  98. package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +4 -0
  99. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  100. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +33 -0
  101. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  102. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  103. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
  104. package/package.json +34 -34
@@ -7,10 +7,24 @@ export declare class AccessDeniedException extends __BaseException {
7
7
 
8
8
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
9
  }
10
+ export declare enum ApiAccess {
11
+ DISABLED = "DISABLED",
12
+ ENABLED = "ENABLED"
13
+ }
14
+ export declare enum ApplicationPermission {
15
+ AccessNotebooks = "AccessNotebooks",
16
+ CreateDataset = "CreateDataset",
17
+ GetTemporaryCredentials = "GetTemporaryCredentials",
18
+ ManageAttributeSets = "ManageAttributeSets",
19
+ ManageClusters = "ManageClusters",
20
+ ManageUsersAndGroups = "ManageUsersAndGroups",
21
+ ViewAuditData = "ViewAuditData"
22
+ }
10
23
 
11
24
  export declare class ConflictException extends __BaseException {
12
25
  readonly name: "ConflictException";
13
26
  readonly $fault: "client";
27
+ reason?: string;
14
28
 
15
29
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
16
30
  }
@@ -69,6 +83,7 @@ export declare class LimitExceededException extends __BaseException {
69
83
  export declare class ResourceNotFoundException extends __BaseException {
70
84
  readonly name: "ResourceNotFoundException";
71
85
  readonly $fault: "client";
86
+ reason?: string;
72
87
 
73
88
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
74
89
  }
@@ -83,6 +98,7 @@ export declare class ThrottlingException extends __BaseException {
83
98
  export declare class ValidationException extends __BaseException {
84
99
  readonly name: "ValidationException";
85
100
  readonly $fault: "client";
101
+ reason?: string;
86
102
 
87
103
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
88
104
  }
@@ -253,6 +269,60 @@ export declare namespace CreateDataViewResponse {
253
269
 
254
270
  const filterSensitiveLog: (obj: CreateDataViewResponse) => any;
255
271
  }
272
+ export interface CreatePermissionGroupRequest {
273
+
274
+ name: string | undefined;
275
+
276
+ description?: string;
277
+
278
+ applicationPermissions: (ApplicationPermission | string)[] | undefined;
279
+
280
+ clientToken?: string;
281
+ }
282
+ export declare namespace CreatePermissionGroupRequest {
283
+
284
+ const filterSensitiveLog: (obj: CreatePermissionGroupRequest) => any;
285
+ }
286
+ export interface CreatePermissionGroupResponse {
287
+
288
+ permissionGroupId?: string;
289
+ }
290
+ export declare namespace CreatePermissionGroupResponse {
291
+
292
+ const filterSensitiveLog: (obj: CreatePermissionGroupResponse) => any;
293
+ }
294
+ export declare enum UserType {
295
+ APP_USER = "APP_USER",
296
+ SUPER_USER = "SUPER_USER"
297
+ }
298
+ export interface CreateUserRequest {
299
+
300
+ emailAddress: string | undefined;
301
+
302
+ type: UserType | string | undefined;
303
+
304
+ firstName?: string;
305
+
306
+ lastName?: string;
307
+
308
+ ApiAccess?: ApiAccess | string;
309
+
310
+ apiAccessPrincipalArn?: string;
311
+
312
+ clientToken?: string;
313
+ }
314
+ export declare namespace CreateUserRequest {
315
+
316
+ const filterSensitiveLog: (obj: CreateUserRequest) => any;
317
+ }
318
+ export interface CreateUserResponse {
319
+
320
+ userId?: string;
321
+ }
322
+ export declare namespace CreateUserResponse {
323
+
324
+ const filterSensitiveLog: (obj: CreateUserResponse) => any;
325
+ }
256
326
 
257
327
  export interface DeleteDatasetRequest {
258
328
 
@@ -273,6 +343,60 @@ export declare namespace DeleteDatasetResponse {
273
343
 
274
344
  const filterSensitiveLog: (obj: DeleteDatasetResponse) => any;
275
345
  }
346
+ export interface DeletePermissionGroupRequest {
347
+
348
+ permissionGroupId: string | undefined;
349
+
350
+ clientToken?: string;
351
+ }
352
+ export declare namespace DeletePermissionGroupRequest {
353
+
354
+ const filterSensitiveLog: (obj: DeletePermissionGroupRequest) => any;
355
+ }
356
+ export interface DeletePermissionGroupResponse {
357
+
358
+ permissionGroupId?: string;
359
+ }
360
+ export declare namespace DeletePermissionGroupResponse {
361
+
362
+ const filterSensitiveLog: (obj: DeletePermissionGroupResponse) => any;
363
+ }
364
+ export interface DisableUserRequest {
365
+
366
+ userId: string | undefined;
367
+
368
+ clientToken?: string;
369
+ }
370
+ export declare namespace DisableUserRequest {
371
+
372
+ const filterSensitiveLog: (obj: DisableUserRequest) => any;
373
+ }
374
+ export interface DisableUserResponse {
375
+
376
+ userId?: string;
377
+ }
378
+ export declare namespace DisableUserResponse {
379
+
380
+ const filterSensitiveLog: (obj: DisableUserResponse) => any;
381
+ }
382
+ export interface EnableUserRequest {
383
+
384
+ userId: string | undefined;
385
+
386
+ clientToken?: string;
387
+ }
388
+ export declare namespace EnableUserRequest {
389
+
390
+ const filterSensitiveLog: (obj: EnableUserRequest) => any;
391
+ }
392
+ export interface EnableUserResponse {
393
+
394
+ userId?: string;
395
+ }
396
+ export declare namespace EnableUserResponse {
397
+
398
+ const filterSensitiveLog: (obj: EnableUserResponse) => any;
399
+ }
276
400
 
277
401
  export interface GetChangesetRequest {
278
402
 
@@ -489,6 +613,51 @@ export declare namespace GetProgrammaticAccessCredentialsResponse {
489
613
 
490
614
  const filterSensitiveLog: (obj: GetProgrammaticAccessCredentialsResponse) => any;
491
615
  }
616
+ export interface GetUserRequest {
617
+
618
+ userId: string | undefined;
619
+ }
620
+ export declare namespace GetUserRequest {
621
+
622
+ const filterSensitiveLog: (obj: GetUserRequest) => any;
623
+ }
624
+ export declare enum UserStatus {
625
+ CREATING = "CREATING",
626
+ DISABLED = "DISABLED",
627
+ ENABLED = "ENABLED"
628
+ }
629
+ export interface GetUserResponse {
630
+
631
+ userId?: string;
632
+
633
+ status?: UserStatus | string;
634
+
635
+ firstName?: string;
636
+
637
+ lastName?: string;
638
+
639
+ emailAddress?: string;
640
+
641
+ type?: UserType | string;
642
+
643
+ apiAccess?: ApiAccess | string;
644
+
645
+ apiAccessPrincipalArn?: string;
646
+
647
+ createTime?: number;
648
+
649
+ lastEnabledTime?: number;
650
+
651
+ lastDisabledTime?: number;
652
+
653
+ lastModifiedTime?: number;
654
+
655
+ lastLoginTime?: number;
656
+ }
657
+ export declare namespace GetUserResponse {
658
+
659
+ const filterSensitiveLog: (obj: GetUserResponse) => any;
660
+ }
492
661
  export declare enum LocationType {
493
662
  INGESTION = "INGESTION",
494
663
  SAGEMAKER = "SAGEMAKER"
@@ -677,6 +846,118 @@ export declare namespace ListDataViewsResponse {
677
846
 
678
847
  const filterSensitiveLog: (obj: ListDataViewsResponse) => any;
679
848
  }
849
+ export interface ListPermissionGroupsRequest {
850
+
851
+ nextToken?: string;
852
+
853
+ maxResults: number | undefined;
854
+ }
855
+ export declare namespace ListPermissionGroupsRequest {
856
+
857
+ const filterSensitiveLog: (obj: ListPermissionGroupsRequest) => any;
858
+ }
859
+
860
+ export interface PermissionGroup {
861
+
862
+ permissionGroupId?: string;
863
+
864
+ name?: string;
865
+
866
+ description?: string;
867
+
868
+ applicationPermissions?: (ApplicationPermission | string)[];
869
+
870
+ createTime?: number;
871
+
872
+ lastModifiedTime?: number;
873
+ }
874
+ export declare namespace PermissionGroup {
875
+
876
+ const filterSensitiveLog: (obj: PermissionGroup) => any;
877
+ }
878
+ export interface ListPermissionGroupsResponse {
879
+
880
+ permissionGroups?: PermissionGroup[];
881
+
882
+ nextToken?: string;
883
+ }
884
+ export declare namespace ListPermissionGroupsResponse {
885
+
886
+ const filterSensitiveLog: (obj: ListPermissionGroupsResponse) => any;
887
+ }
888
+ export interface ListUsersRequest {
889
+
890
+ nextToken?: string;
891
+
892
+ maxResults: number | undefined;
893
+ }
894
+ export declare namespace ListUsersRequest {
895
+
896
+ const filterSensitiveLog: (obj: ListUsersRequest) => any;
897
+ }
898
+
899
+ export interface User {
900
+
901
+ userId?: string;
902
+
903
+ status?: UserStatus | string;
904
+
905
+ firstName?: string;
906
+
907
+ lastName?: string;
908
+
909
+ emailAddress?: string;
910
+
911
+ type?: UserType | string;
912
+
913
+ apiAccess?: ApiAccess | string;
914
+
915
+ apiAccessPrincipalArn?: string;
916
+
917
+ createTime?: number;
918
+
919
+ lastEnabledTime?: number;
920
+
921
+ lastDisabledTime?: number;
922
+
923
+ lastModifiedTime?: number;
924
+
925
+ lastLoginTime?: number;
926
+ }
927
+ export declare namespace User {
928
+
929
+ const filterSensitiveLog: (obj: User) => any;
930
+ }
931
+ export interface ListUsersResponse {
932
+
933
+ users?: User[];
934
+
935
+ nextToken?: string;
936
+ }
937
+ export declare namespace ListUsersResponse {
938
+
939
+ const filterSensitiveLog: (obj: ListUsersResponse) => any;
940
+ }
941
+ export interface ResetUserPasswordRequest {
942
+
943
+ userId: string | undefined;
944
+
945
+ clientToken?: string;
946
+ }
947
+ export declare namespace ResetUserPasswordRequest {
948
+
949
+ const filterSensitiveLog: (obj: ResetUserPasswordRequest) => any;
950
+ }
951
+ export interface ResetUserPasswordResponse {
952
+
953
+ userId?: string;
954
+
955
+ temporaryPassword?: string;
956
+ }
957
+ export declare namespace ResetUserPasswordResponse {
958
+
959
+ const filterSensitiveLog: (obj: ResetUserPasswordResponse) => any;
960
+ }
680
961
 
681
962
  export interface UpdateChangesetRequest {
682
963
 
@@ -739,3 +1020,55 @@ export declare namespace UpdateDatasetResponse {
739
1020
 
740
1021
  const filterSensitiveLog: (obj: UpdateDatasetResponse) => any;
741
1022
  }
1023
+ export interface UpdatePermissionGroupRequest {
1024
+
1025
+ permissionGroupId: string | undefined;
1026
+
1027
+ name?: string;
1028
+
1029
+ description?: string;
1030
+
1031
+ applicationPermissions?: (ApplicationPermission | string)[];
1032
+
1033
+ clientToken?: string;
1034
+ }
1035
+ export declare namespace UpdatePermissionGroupRequest {
1036
+
1037
+ const filterSensitiveLog: (obj: UpdatePermissionGroupRequest) => any;
1038
+ }
1039
+ export interface UpdatePermissionGroupResponse {
1040
+
1041
+ permissionGroupId?: string;
1042
+ }
1043
+ export declare namespace UpdatePermissionGroupResponse {
1044
+
1045
+ const filterSensitiveLog: (obj: UpdatePermissionGroupResponse) => any;
1046
+ }
1047
+ export interface UpdateUserRequest {
1048
+
1049
+ userId: string | undefined;
1050
+
1051
+ type?: UserType | string;
1052
+
1053
+ firstName?: string;
1054
+
1055
+ lastName?: string;
1056
+
1057
+ apiAccess?: ApiAccess | string;
1058
+
1059
+ apiAccessPrincipalArn?: string;
1060
+
1061
+ clientToken?: string;
1062
+ }
1063
+ export declare namespace UpdateUserRequest {
1064
+
1065
+ const filterSensitiveLog: (obj: UpdateUserRequest) => any;
1066
+ }
1067
+ export interface UpdateUserResponse {
1068
+
1069
+ userId?: string;
1070
+ }
1071
+ export declare namespace UpdateUserResponse {
1072
+
1073
+ const filterSensitiveLog: (obj: UpdateUserResponse) => any;
1074
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListPermissionGroupsCommandInput, ListPermissionGroupsCommandOutput } from "../commands/ListPermissionGroupsCommand";
3
+ import { FinspaceDataPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListPermissionGroups(config: FinspaceDataPaginationConfiguration, input: ListPermissionGroupsCommandInput, ...additionalArguments: any): Paginator<ListPermissionGroupsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
3
+ import { FinspaceDataPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListUsers(config: FinspaceDataPaginationConfiguration, input: ListUsersCommandInput, ...additionalArguments: any): Paginator<ListUsersCommandOutput>;
@@ -2,3 +2,5 @@ export * from "./Interfaces";
2
2
  export * from "./ListChangesetsPaginator";
3
3
  export * from "./ListDataViewsPaginator";
4
4
  export * from "./ListDatasetsPaginator";
5
+ export * from "./ListPermissionGroupsPaginator";
6
+ export * from "./ListUsersPaginator";
@@ -3,42 +3,75 @@ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
3
  import { CreateChangesetCommandInput, CreateChangesetCommandOutput } from "../commands/CreateChangesetCommand";
4
4
  import { CreateDatasetCommandInput, CreateDatasetCommandOutput } from "../commands/CreateDatasetCommand";
5
5
  import { CreateDataViewCommandInput, CreateDataViewCommandOutput } from "../commands/CreateDataViewCommand";
6
+ import { CreatePermissionGroupCommandInput, CreatePermissionGroupCommandOutput } from "../commands/CreatePermissionGroupCommand";
7
+ import { CreateUserCommandInput, CreateUserCommandOutput } from "../commands/CreateUserCommand";
6
8
  import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "../commands/DeleteDatasetCommand";
9
+ import { DeletePermissionGroupCommandInput, DeletePermissionGroupCommandOutput } from "../commands/DeletePermissionGroupCommand";
10
+ import { DisableUserCommandInput, DisableUserCommandOutput } from "../commands/DisableUserCommand";
11
+ import { EnableUserCommandInput, EnableUserCommandOutput } from "../commands/EnableUserCommand";
7
12
  import { GetChangesetCommandInput, GetChangesetCommandOutput } from "../commands/GetChangesetCommand";
8
13
  import { GetDatasetCommandInput, GetDatasetCommandOutput } from "../commands/GetDatasetCommand";
9
14
  import { GetDataViewCommandInput, GetDataViewCommandOutput } from "../commands/GetDataViewCommand";
10
15
  import { GetProgrammaticAccessCredentialsCommandInput, GetProgrammaticAccessCredentialsCommandOutput } from "../commands/GetProgrammaticAccessCredentialsCommand";
16
+ import { GetUserCommandInput, GetUserCommandOutput } from "../commands/GetUserCommand";
11
17
  import { GetWorkingLocationCommandInput, GetWorkingLocationCommandOutput } from "../commands/GetWorkingLocationCommand";
12
18
  import { ListChangesetsCommandInput, ListChangesetsCommandOutput } from "../commands/ListChangesetsCommand";
13
19
  import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "../commands/ListDatasetsCommand";
14
20
  import { ListDataViewsCommandInput, ListDataViewsCommandOutput } from "../commands/ListDataViewsCommand";
21
+ import { ListPermissionGroupsCommandInput, ListPermissionGroupsCommandOutput } from "../commands/ListPermissionGroupsCommand";
22
+ import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
23
+ import { ResetUserPasswordCommandInput, ResetUserPasswordCommandOutput } from "../commands/ResetUserPasswordCommand";
15
24
  import { UpdateChangesetCommandInput, UpdateChangesetCommandOutput } from "../commands/UpdateChangesetCommand";
16
25
  import { UpdateDatasetCommandInput, UpdateDatasetCommandOutput } from "../commands/UpdateDatasetCommand";
26
+ import { UpdatePermissionGroupCommandInput, UpdatePermissionGroupCommandOutput } from "../commands/UpdatePermissionGroupCommand";
27
+ import { UpdateUserCommandInput, UpdateUserCommandOutput } from "../commands/UpdateUserCommand";
17
28
  export declare const serializeAws_restJson1CreateChangesetCommand: (input: CreateChangesetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
29
  export declare const serializeAws_restJson1CreateDatasetCommand: (input: CreateDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
30
  export declare const serializeAws_restJson1CreateDataViewCommand: (input: CreateDataViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ export declare const serializeAws_restJson1CreatePermissionGroupCommand: (input: CreatePermissionGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
+ export declare const serializeAws_restJson1CreateUserCommand: (input: CreateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
33
  export declare const serializeAws_restJson1DeleteDatasetCommand: (input: DeleteDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
+ export declare const serializeAws_restJson1DeletePermissionGroupCommand: (input: DeletePermissionGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
+ export declare const serializeAws_restJson1DisableUserCommand: (input: DisableUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
+ export declare const serializeAws_restJson1EnableUserCommand: (input: EnableUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
37
  export declare const serializeAws_restJson1GetChangesetCommand: (input: GetChangesetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
38
  export declare const serializeAws_restJson1GetDatasetCommand: (input: GetDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
39
  export declare const serializeAws_restJson1GetDataViewCommand: (input: GetDataViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
40
  export declare const serializeAws_restJson1GetProgrammaticAccessCredentialsCommand: (input: GetProgrammaticAccessCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
+ export declare const serializeAws_restJson1GetUserCommand: (input: GetUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
42
  export declare const serializeAws_restJson1GetWorkingLocationCommand: (input: GetWorkingLocationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
43
  export declare const serializeAws_restJson1ListChangesetsCommand: (input: ListChangesetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
44
  export declare const serializeAws_restJson1ListDatasetsCommand: (input: ListDatasetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
45
  export declare const serializeAws_restJson1ListDataViewsCommand: (input: ListDataViewsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
+ export declare const serializeAws_restJson1ListPermissionGroupsCommand: (input: ListPermissionGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
+ export declare const serializeAws_restJson1ListUsersCommand: (input: ListUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
+ export declare const serializeAws_restJson1ResetUserPasswordCommand: (input: ResetUserPasswordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
49
  export declare const serializeAws_restJson1UpdateChangesetCommand: (input: UpdateChangesetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
50
  export declare const serializeAws_restJson1UpdateDatasetCommand: (input: UpdateDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
+ export declare const serializeAws_restJson1UpdatePermissionGroupCommand: (input: UpdatePermissionGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
+ export declare const serializeAws_restJson1UpdateUserCommand: (input: UpdateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
53
  export declare const deserializeAws_restJson1CreateChangesetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateChangesetCommandOutput>;
32
54
  export declare const deserializeAws_restJson1CreateDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDatasetCommandOutput>;
33
55
  export declare const deserializeAws_restJson1CreateDataViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataViewCommandOutput>;
56
+ export declare const deserializeAws_restJson1CreatePermissionGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePermissionGroupCommandOutput>;
57
+ export declare const deserializeAws_restJson1CreateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserCommandOutput>;
34
58
  export declare const deserializeAws_restJson1DeleteDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDatasetCommandOutput>;
59
+ export declare const deserializeAws_restJson1DeletePermissionGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePermissionGroupCommandOutput>;
60
+ export declare const deserializeAws_restJson1DisableUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableUserCommandOutput>;
61
+ export declare const deserializeAws_restJson1EnableUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableUserCommandOutput>;
35
62
  export declare const deserializeAws_restJson1GetChangesetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChangesetCommandOutput>;
36
63
  export declare const deserializeAws_restJson1GetDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDatasetCommandOutput>;
37
64
  export declare const deserializeAws_restJson1GetDataViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataViewCommandOutput>;
38
65
  export declare const deserializeAws_restJson1GetProgrammaticAccessCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProgrammaticAccessCredentialsCommandOutput>;
66
+ export declare const deserializeAws_restJson1GetUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserCommandOutput>;
39
67
  export declare const deserializeAws_restJson1GetWorkingLocationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkingLocationCommandOutput>;
40
68
  export declare const deserializeAws_restJson1ListChangesetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChangesetsCommandOutput>;
41
69
  export declare const deserializeAws_restJson1ListDatasetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatasetsCommandOutput>;
42
70
  export declare const deserializeAws_restJson1ListDataViewsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataViewsCommandOutput>;
71
+ export declare const deserializeAws_restJson1ListPermissionGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPermissionGroupsCommandOutput>;
72
+ export declare const deserializeAws_restJson1ListUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUsersCommandOutput>;
73
+ export declare const deserializeAws_restJson1ResetUserPasswordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResetUserPasswordCommandOutput>;
43
74
  export declare const deserializeAws_restJson1UpdateChangesetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateChangesetCommandOutput>;
44
75
  export declare const deserializeAws_restJson1UpdateDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDatasetCommandOutput>;
76
+ export declare const deserializeAws_restJson1UpdatePermissionGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePermissionGroupCommandOutput>;
77
+ export declare const deserializeAws_restJson1UpdateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateUserCommandOutput>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
6
6
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
7
  apiVersion: string;
8
8
  urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  streamCollector: import("@aws-sdk/types").StreamCollector;
11
11
  base64Decoder: import("@aws-sdk/types").Decoder;
12
12
  base64Encoder: import("@aws-sdk/types").Encoder;
@@ -19,11 +19,11 @@ export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
19
19
  useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
20
  useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
21
  serviceId: string;
22
- region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
22
+ region: string | import("@aws-sdk/types").Provider<any>;
23
23
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
24
  regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
25
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
- defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
27
27
  endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
28
  tls?: boolean | undefined;
29
29
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
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.53.0",
4
+ "version": "3.55.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,41 +18,41 @@
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.53.0",
22
- "@aws-sdk/config-resolver": "3.53.0",
23
- "@aws-sdk/credential-provider-node": "3.53.0",
24
- "@aws-sdk/fetch-http-handler": "3.53.0",
25
- "@aws-sdk/hash-node": "3.53.0",
26
- "@aws-sdk/invalid-dependency": "3.53.0",
27
- "@aws-sdk/middleware-content-length": "3.53.0",
28
- "@aws-sdk/middleware-host-header": "3.53.0",
29
- "@aws-sdk/middleware-logger": "3.53.0",
30
- "@aws-sdk/middleware-retry": "3.53.0",
31
- "@aws-sdk/middleware-serde": "3.53.0",
32
- "@aws-sdk/middleware-signing": "3.53.0",
33
- "@aws-sdk/middleware-stack": "3.53.0",
34
- "@aws-sdk/middleware-user-agent": "3.53.0",
35
- "@aws-sdk/node-config-provider": "3.53.0",
36
- "@aws-sdk/node-http-handler": "3.53.0",
37
- "@aws-sdk/protocol-http": "3.53.0",
38
- "@aws-sdk/smithy-client": "3.53.0",
39
- "@aws-sdk/types": "3.53.0",
40
- "@aws-sdk/url-parser": "3.53.0",
41
- "@aws-sdk/util-base64-browser": "3.52.0",
42
- "@aws-sdk/util-base64-node": "3.52.0",
43
- "@aws-sdk/util-body-length-browser": "3.52.0",
44
- "@aws-sdk/util-body-length-node": "3.52.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.53.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.53.0",
47
- "@aws-sdk/util-user-agent-browser": "3.53.0",
48
- "@aws-sdk/util-user-agent-node": "3.53.0",
49
- "@aws-sdk/util-utf8-browser": "3.52.0",
50
- "@aws-sdk/util-utf8-node": "3.52.0",
51
- "tslib": "^2.3.0",
21
+ "@aws-sdk/client-sts": "3.55.0",
22
+ "@aws-sdk/config-resolver": "3.55.0",
23
+ "@aws-sdk/credential-provider-node": "3.55.0",
24
+ "@aws-sdk/fetch-http-handler": "3.55.0",
25
+ "@aws-sdk/hash-node": "3.55.0",
26
+ "@aws-sdk/invalid-dependency": "3.55.0",
27
+ "@aws-sdk/middleware-content-length": "3.55.0",
28
+ "@aws-sdk/middleware-host-header": "3.55.0",
29
+ "@aws-sdk/middleware-logger": "3.55.0",
30
+ "@aws-sdk/middleware-retry": "3.55.0",
31
+ "@aws-sdk/middleware-serde": "3.55.0",
32
+ "@aws-sdk/middleware-signing": "3.55.0",
33
+ "@aws-sdk/middleware-stack": "3.55.0",
34
+ "@aws-sdk/middleware-user-agent": "3.55.0",
35
+ "@aws-sdk/node-config-provider": "3.55.0",
36
+ "@aws-sdk/node-http-handler": "3.55.0",
37
+ "@aws-sdk/protocol-http": "3.55.0",
38
+ "@aws-sdk/smithy-client": "3.55.0",
39
+ "@aws-sdk/types": "3.55.0",
40
+ "@aws-sdk/url-parser": "3.55.0",
41
+ "@aws-sdk/util-base64-browser": "3.55.0",
42
+ "@aws-sdk/util-base64-node": "3.55.0",
43
+ "@aws-sdk/util-body-length-browser": "3.55.0",
44
+ "@aws-sdk/util-body-length-node": "3.55.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.55.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.55.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.55.0",
48
+ "@aws-sdk/util-user-agent-node": "3.55.0",
49
+ "@aws-sdk/util-utf8-browser": "3.55.0",
50
+ "@aws-sdk/util-utf8-node": "3.55.0",
51
+ "tslib": "^2.3.1",
52
52
  "uuid": "^8.3.2"
53
53
  },
54
54
  "devDependencies": {
55
- "@aws-sdk/service-client-documentation-generator": "3.52.0",
55
+ "@aws-sdk/service-client-documentation-generator": "3.55.0",
56
56
  "@tsconfig/recommended": "1.0.1",
57
57
  "@types/node": "^12.7.5",
58
58
  "@types/uuid": "^8.3.0",
@@ -60,7 +60,7 @@
60
60
  "downlevel-dts": "0.7.0",
61
61
  "rimraf": "3.0.2",
62
62
  "typedoc": "0.19.2",
63
- "typescript": "~4.3.5"
63
+ "typescript": "~4.6.2"
64
64
  },
65
65
  "engines": {
66
66
  "node": ">=12.0.0"