@aws-sdk/client-finspace-data 3.296.0 → 3.297.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 (42) hide show
  1. package/dist-types/FinspaceData.d.ts +32 -0
  2. package/dist-types/FinspaceDataClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateUserToPermissionGroupCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateChangesetCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateDataViewCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateDatasetCommand.d.ts +16 -0
  7. package/dist-types/commands/CreatePermissionGroupCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateUserCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteDatasetCommand.d.ts +16 -0
  10. package/dist-types/commands/DeletePermissionGroupCommand.d.ts +16 -0
  11. package/dist-types/commands/DisableUserCommand.d.ts +16 -0
  12. package/dist-types/commands/DisassociateUserFromPermissionGroupCommand.d.ts +16 -0
  13. package/dist-types/commands/EnableUserCommand.d.ts +16 -0
  14. package/dist-types/commands/GetChangesetCommand.d.ts +16 -0
  15. package/dist-types/commands/GetDataViewCommand.d.ts +16 -0
  16. package/dist-types/commands/GetDatasetCommand.d.ts +16 -0
  17. package/dist-types/commands/GetExternalDataViewAccessDetailsCommand.d.ts +16 -0
  18. package/dist-types/commands/GetPermissionGroupCommand.d.ts +16 -0
  19. package/dist-types/commands/GetProgrammaticAccessCredentialsCommand.d.ts +16 -0
  20. package/dist-types/commands/GetUserCommand.d.ts +16 -0
  21. package/dist-types/commands/GetWorkingLocationCommand.d.ts +16 -0
  22. package/dist-types/commands/ListChangesetsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListDataViewsCommand.d.ts +16 -0
  24. package/dist-types/commands/ListDatasetsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListPermissionGroupsByUserCommand.d.ts +16 -0
  26. package/dist-types/commands/ListPermissionGroupsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListUsersByPermissionGroupCommand.d.ts +16 -0
  28. package/dist-types/commands/ListUsersCommand.d.ts +16 -0
  29. package/dist-types/commands/ResetUserPasswordCommand.d.ts +16 -0
  30. package/dist-types/commands/UpdateChangesetCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateDatasetCommand.d.ts +16 -0
  32. package/dist-types/commands/UpdatePermissionGroupCommand.d.ts +16 -0
  33. package/dist-types/commands/UpdateUserCommand.d.ts +16 -0
  34. package/dist-types/models/FinspaceDataServiceException.d.ts +2 -0
  35. package/dist-types/models/models_0.d.ts +224 -20
  36. package/dist-types/pagination/Interfaces.d.ts +3 -0
  37. package/dist-types/pagination/ListChangesetsPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListDataViewsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListDatasetsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListPermissionGroupsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/ListUsersPaginator.d.ts +3 -0
  42. package/package.json +3 -3
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { FinspaceDataServiceException as __BaseException } from "./FinspaceDataServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>You do not have sufficient access to perform this action.</p>
5
6
  */
6
7
  export declare class AccessDeniedException extends __BaseException {
@@ -11,10 +12,16 @@ export declare class AccessDeniedException extends __BaseException {
11
12
  */
12
13
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
13
14
  }
15
+ /**
16
+ * @public
17
+ */
14
18
  export declare enum ApiAccess {
15
19
  DISABLED = "DISABLED",
16
20
  ENABLED = "ENABLED"
17
21
  }
22
+ /**
23
+ * @public
24
+ */
18
25
  export declare enum ApplicationPermission {
19
26
  AccessNotebooks = "AccessNotebooks",
20
27
  CreateDataset = "CreateDataset",
@@ -24,6 +31,9 @@ export declare enum ApplicationPermission {
24
31
  ManageUsersAndGroups = "ManageUsersAndGroups",
25
32
  ViewAuditData = "ViewAuditData"
26
33
  }
34
+ /**
35
+ * @public
36
+ */
27
37
  export interface AssociateUserToPermissionGroupRequest {
28
38
  /**
29
39
  * <p>The unique identifier for the permission group.</p>
@@ -38,6 +48,9 @@ export interface AssociateUserToPermissionGroupRequest {
38
48
  */
39
49
  clientToken?: string;
40
50
  }
51
+ /**
52
+ * @public
53
+ */
41
54
  export interface AssociateUserToPermissionGroupResponse {
42
55
  /**
43
56
  * <p>The returned status code of the response.</p>
@@ -45,6 +58,7 @@ export interface AssociateUserToPermissionGroupResponse {
45
58
  statusCode?: number;
46
59
  }
47
60
  /**
61
+ * @public
48
62
  * <p>The request conflicts with an existing resource.</p>
49
63
  */
50
64
  export declare class ConflictException extends __BaseException {
@@ -57,6 +71,7 @@ export declare class ConflictException extends __BaseException {
57
71
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
58
72
  }
59
73
  /**
74
+ * @public
60
75
  * <p>The request processing has failed because of an unknown error, exception or
61
76
  * failure.</p>
62
77
  */
@@ -69,6 +84,7 @@ export declare class InternalServerException extends __BaseException {
69
84
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
70
85
  }
71
86
  /**
87
+ * @public
72
88
  * <p>One or more resources can't be found.</p>
73
89
  */
74
90
  export declare class ResourceNotFoundException extends __BaseException {
@@ -81,6 +97,7 @@ export declare class ResourceNotFoundException extends __BaseException {
81
97
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
82
98
  }
83
99
  /**
100
+ * @public
84
101
  * <p>The request was denied due to request throttling.</p>
85
102
  */
86
103
  export declare class ThrottlingException extends __BaseException {
@@ -92,6 +109,7 @@ export declare class ThrottlingException extends __BaseException {
92
109
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
93
110
  }
94
111
  /**
112
+ * @public
95
113
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
96
114
  */
97
115
  export declare class ValidationException extends __BaseException {
@@ -104,6 +122,7 @@ export declare class ValidationException extends __BaseException {
104
122
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
105
123
  }
106
124
  /**
125
+ * @public
107
126
  * <p> The credentials required to access the external Dataview from the S3 location.</p>
108
127
  */
109
128
  export interface AwsCredentials {
@@ -124,12 +143,16 @@ export interface AwsCredentials {
124
143
  */
125
144
  expiration?: number;
126
145
  }
146
+ /**
147
+ * @public
148
+ */
127
149
  export declare enum ChangeType {
128
150
  APPEND = "APPEND",
129
151
  MODIFY = "MODIFY",
130
152
  REPLACE = "REPLACE"
131
153
  }
132
154
  /**
155
+ * @public
133
156
  * The request for a CreateChangeset operation.
134
157
  */
135
158
  export interface CreateChangesetRequest {
@@ -169,10 +192,10 @@ export interface CreateChangesetRequest {
169
192
  * <p>
170
193
  * <code>
171
194
  * "sourceParams":
172
- * {
195
+ * \{
173
196
  * "s3SourcePath": "s3://finspace-landing-us-east-2-bk7gcfvitndqa6ebnvys4d/scratch/wr5hh8pwkpqqkxa4sxrmcw/ingestion/equity.csv",
174
197
  * "sourceType": "S3"
175
- * }
198
+ * \}
176
199
  * </code>
177
200
  * </p>
178
201
  * <p>The S3 path that you specify must allow the FinSpace role access. To do that, you first need to configure the IAM policy on S3 bucket. For more information, see <a href="https://docs.aws.amazon.com/finspace/latest/data-api/fs-using-the-finspace-api.html#access-s3-buckets">Loading data from an Amazon S3 Bucket using the FinSpace API</a> section.</p>
@@ -207,21 +230,21 @@ export interface CreateChangesetRequest {
207
230
  * <p>
208
231
  * <code>
209
232
  * "formatParams":
210
- * {
233
+ * \{
211
234
  * "formatType": "CSV",
212
235
  * "withHeader": "true",
213
236
  * "separator": ",",
214
237
  * "compression":"None"
215
- * }
238
+ * \}
216
239
  * </code>
217
240
  * </p>
218
241
  * <p>Note that if you only provide <code>formatType</code> as <code>CSV</code>, the rest of the attributes will automatically default to CSV values as following:</p>
219
242
  * <p>
220
243
  * <code>
221
- * {
244
+ * \{
222
245
  * "withHeader": "true",
223
246
  * "separator": ","
224
- * }
247
+ * \}
225
248
  * </code>
226
249
  * </p>
227
250
  * <p> For more information about supported file formats, see <a href="https://docs.aws.amazon.com/finspace/latest/userguide/supported-data-types.html">Supported Data Types and File Formats</a> in the FinSpace User Guide.</p>
@@ -229,6 +252,7 @@ export interface CreateChangesetRequest {
229
252
  formatParams: Record<string, string> | undefined;
230
253
  }
231
254
  /**
255
+ * @public
232
256
  * The response from a CreateChangeset operation.
233
257
  */
234
258
  export interface CreateChangesetResponse {
@@ -242,6 +266,7 @@ export interface CreateChangesetResponse {
242
266
  changesetId?: string;
243
267
  }
244
268
  /**
269
+ * @public
245
270
  * <p>A limit has exceeded.</p>
246
271
  */
247
272
  export declare class LimitExceededException extends __BaseException {
@@ -252,11 +277,15 @@ export declare class LimitExceededException extends __BaseException {
252
277
  */
253
278
  constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
254
279
  }
280
+ /**
281
+ * @public
282
+ */
255
283
  export declare enum DatasetKind {
256
284
  NON_TABULAR = "NON_TABULAR",
257
285
  TABULAR = "TABULAR"
258
286
  }
259
287
  /**
288
+ * @public
260
289
  * <p>A structure for Dataset owner info.</p>
261
290
  */
262
291
  export interface DatasetOwnerInfo {
@@ -274,6 +303,7 @@ export interface DatasetOwnerInfo {
274
303
  email?: string;
275
304
  }
276
305
  /**
306
+ * @public
277
307
  * <p>Resource permission for a dataset. When you create a dataset, all the other members of the same user group inherit access to the dataset. You can only create a dataset if your user group has application permission for Create Datasets.</p>
278
308
  * <p>The following is a list of valid dataset permissions that you can apply:
279
309
  *
@@ -319,19 +349,20 @@ export interface ResourcePermission {
319
349
  permission?: string;
320
350
  }
321
351
  /**
352
+ * @public
322
353
  * <p>Permission group parameters for Dataset permissions.</p>
323
354
  * <p>Here is an example of how you could specify the <code>PermissionGroupParams</code>:</p>
324
355
  * <p>
325
356
  * <code>
326
- * {
357
+ * \{
327
358
  * "permissionGroupId": "0r6fCRtSTUk4XPfXQe3M0g",
328
359
  * "datasetPermissions": [
329
- * {"permission": "ViewDatasetDetails"},
330
- * {"permission": "AddDatasetData"},
331
- * {"permission": "EditDatasetMetadata"},
332
- * {"permission": "DeleteDataset"}
360
+ * \{"permission": "ViewDatasetDetails"\},
361
+ * \{"permission": "AddDatasetData"\},
362
+ * \{"permission": "EditDatasetMetadata"\},
363
+ * \{"permission": "DeleteDataset"\}
333
364
  * ]
334
- * }
365
+ * \}
335
366
  * </code>
336
367
  * </p>
337
368
  */
@@ -345,6 +376,9 @@ export interface PermissionGroupParams {
345
376
  */
346
377
  datasetPermissions?: ResourcePermission[];
347
378
  }
379
+ /**
380
+ * @public
381
+ */
348
382
  export declare enum ColumnDataType {
349
383
  BIGINT = "BIGINT",
350
384
  BINARY = "BINARY",
@@ -360,6 +394,7 @@ export declare enum ColumnDataType {
360
394
  TINYINT = "TINYINT"
361
395
  }
362
396
  /**
397
+ * @public
363
398
  * <p>The definition of a column in a tabular Dataset.</p>
364
399
  */
365
400
  export interface ColumnDefinition {
@@ -405,6 +440,7 @@ export interface ColumnDefinition {
405
440
  columnDescription?: string;
406
441
  }
407
442
  /**
443
+ * @public
408
444
  * <p>Definition for a schema on a tabular Dataset.</p>
409
445
  */
410
446
  export interface SchemaDefinition {
@@ -418,6 +454,7 @@ export interface SchemaDefinition {
418
454
  primaryKeyColumns?: string[];
419
455
  }
420
456
  /**
457
+ * @public
421
458
  * <p>A union of schema types.</p>
422
459
  */
423
460
  export interface SchemaUnion {
@@ -427,6 +464,7 @@ export interface SchemaUnion {
427
464
  tabularSchemaConfig?: SchemaDefinition;
428
465
  }
429
466
  /**
467
+ * @public
430
468
  * The request for a CreateDataset operation
431
469
  */
432
470
  export interface CreateDatasetRequest {
@@ -474,6 +512,7 @@ export interface CreateDatasetRequest {
474
512
  schemaDefinition?: SchemaUnion;
475
513
  }
476
514
  /**
515
+ * @public
477
516
  * The response from a CreateDataset operation
478
517
  */
479
518
  export interface CreateDatasetResponse {
@@ -482,11 +521,15 @@ export interface CreateDatasetResponse {
482
521
  */
483
522
  datasetId?: string;
484
523
  }
524
+ /**
525
+ * @public
526
+ */
485
527
  export declare enum ExportFileFormat {
486
528
  DELIMITED_TEXT = "DELIMITED_TEXT",
487
529
  PARQUET = "PARQUET"
488
530
  }
489
531
  /**
532
+ * @public
490
533
  * <p>Structure for the Dataview destination type parameters.</p>
491
534
  */
492
535
  export interface DataViewDestinationTypeParams {
@@ -524,16 +567,17 @@ export interface DataViewDestinationTypeParams {
524
567
  * </p>
525
568
  * <p>
526
569
  * <code>
527
- * {
570
+ * \{
528
571
  * "header": "true",
529
572
  * "delimiter": ",",
530
573
  * "compression": "gzip"
531
- * }</code>
574
+ * \}</code>
532
575
  * </p>
533
576
  */
534
577
  s3DestinationExportFileFormatOptions?: Record<string, string>;
535
578
  }
536
579
  /**
580
+ * @public
537
581
  * Request for creating a data view.
538
582
  */
539
583
  export interface CreateDataViewRequest {
@@ -567,6 +611,7 @@ export interface CreateDataViewRequest {
567
611
  destinationTypeParams: DataViewDestinationTypeParams | undefined;
568
612
  }
569
613
  /**
614
+ * @public
570
615
  * Response for creating a data view.
571
616
  */
572
617
  export interface CreateDataViewResponse {
@@ -579,6 +624,9 @@ export interface CreateDataViewResponse {
579
624
  */
580
625
  dataViewId?: string;
581
626
  }
627
+ /**
628
+ * @public
629
+ */
582
630
  export interface CreatePermissionGroupRequest {
583
631
  /**
584
632
  * <p>The name of the permission group.</p>
@@ -630,16 +678,25 @@ export interface CreatePermissionGroupRequest {
630
678
  */
631
679
  clientToken?: string;
632
680
  }
681
+ /**
682
+ * @public
683
+ */
633
684
  export interface CreatePermissionGroupResponse {
634
685
  /**
635
686
  * <p>The unique identifier for the permission group.</p>
636
687
  */
637
688
  permissionGroupId?: string;
638
689
  }
690
+ /**
691
+ * @public
692
+ */
639
693
  export declare enum UserType {
640
694
  APP_USER = "APP_USER",
641
695
  SUPER_USER = "SUPER_USER"
642
696
  }
697
+ /**
698
+ * @public
699
+ */
643
700
  export interface CreateUserRequest {
644
701
  /**
645
702
  * <p>The email address of the user that you want to register. The email address serves as a uniquer identifier for each user and cannot be changed after it's created.</p>
@@ -690,6 +747,9 @@ export interface CreateUserRequest {
690
747
  */
691
748
  clientToken?: string;
692
749
  }
750
+ /**
751
+ * @public
752
+ */
693
753
  export interface CreateUserResponse {
694
754
  /**
695
755
  * <p>The unique identifier for the user.</p>
@@ -697,6 +757,7 @@ export interface CreateUserResponse {
697
757
  userId?: string;
698
758
  }
699
759
  /**
760
+ * @public
700
761
  * The request for a DeleteDataset operation.
701
762
  */
702
763
  export interface DeleteDatasetRequest {
@@ -710,6 +771,7 @@ export interface DeleteDatasetRequest {
710
771
  datasetId: string | undefined;
711
772
  }
712
773
  /**
774
+ * @public
713
775
  * The response from an DeleteDataset operation
714
776
  */
715
777
  export interface DeleteDatasetResponse {
@@ -718,6 +780,9 @@ export interface DeleteDatasetResponse {
718
780
  */
719
781
  datasetId?: string;
720
782
  }
783
+ /**
784
+ * @public
785
+ */
721
786
  export interface DeletePermissionGroupRequest {
722
787
  /**
723
788
  * <p>The unique identifier for the permission group that you want to delete.</p>
@@ -728,12 +793,18 @@ export interface DeletePermissionGroupRequest {
728
793
  */
729
794
  clientToken?: string;
730
795
  }
796
+ /**
797
+ * @public
798
+ */
731
799
  export interface DeletePermissionGroupResponse {
732
800
  /**
733
801
  * <p>The unique identifier for the deleted permission group.</p>
734
802
  */
735
803
  permissionGroupId?: string;
736
804
  }
805
+ /**
806
+ * @public
807
+ */
737
808
  export interface DisableUserRequest {
738
809
  /**
739
810
  * <p>The unique identifier for the user account that you want to disable.</p>
@@ -744,12 +815,18 @@ export interface DisableUserRequest {
744
815
  */
745
816
  clientToken?: string;
746
817
  }
818
+ /**
819
+ * @public
820
+ */
747
821
  export interface DisableUserResponse {
748
822
  /**
749
823
  * <p>The unique identifier for the disabled user account.</p>
750
824
  */
751
825
  userId?: string;
752
826
  }
827
+ /**
828
+ * @public
829
+ */
753
830
  export interface DisassociateUserFromPermissionGroupRequest {
754
831
  /**
755
832
  * <p>The unique identifier for the permission group.</p>
@@ -764,12 +841,18 @@ export interface DisassociateUserFromPermissionGroupRequest {
764
841
  */
765
842
  clientToken?: string;
766
843
  }
844
+ /**
845
+ * @public
846
+ */
767
847
  export interface DisassociateUserFromPermissionGroupResponse {
768
848
  /**
769
849
  * <p>The returned status code of the response.</p>
770
850
  */
771
851
  statusCode?: number;
772
852
  }
853
+ /**
854
+ * @public
855
+ */
773
856
  export interface EnableUserRequest {
774
857
  /**
775
858
  * <p>The unique identifier for the user account that you want to enable.</p>
@@ -780,6 +863,9 @@ export interface EnableUserRequest {
780
863
  */
781
864
  clientToken?: string;
782
865
  }
866
+ /**
867
+ * @public
868
+ */
783
869
  export interface EnableUserResponse {
784
870
  /**
785
871
  * <p>The unique identifier for the enabled user account.</p>
@@ -787,6 +873,7 @@ export interface EnableUserResponse {
787
873
  userId?: string;
788
874
  }
789
875
  /**
876
+ * @public
790
877
  * Request to describe a changeset.
791
878
  */
792
879
  export interface GetChangesetRequest {
@@ -799,6 +886,9 @@ export interface GetChangesetRequest {
799
886
  */
800
887
  changesetId: string | undefined;
801
888
  }
889
+ /**
890
+ * @public
891
+ */
802
892
  export declare enum ErrorCategory {
803
893
  ACCESS_DENIED = "ACCESS_DENIED",
804
894
  CANCELLED = "CANCELLED",
@@ -810,6 +900,7 @@ export declare enum ErrorCategory {
810
900
  VALIDATION = "VALIDATION"
811
901
  }
812
902
  /**
903
+ * @public
813
904
  * <p>The structure with error messages.</p>
814
905
  */
815
906
  export interface ChangesetErrorInfo {
@@ -861,6 +952,9 @@ export interface ChangesetErrorInfo {
861
952
  */
862
953
  errorCategory?: ErrorCategory | string;
863
954
  }
955
+ /**
956
+ * @public
957
+ */
864
958
  export declare enum IngestionStatus {
865
959
  FAILED = "FAILED",
866
960
  PENDING = "PENDING",
@@ -869,6 +963,7 @@ export declare enum IngestionStatus {
869
963
  SUCCESS = "SUCCESS"
870
964
  }
871
965
  /**
966
+ * @public
872
967
  * The response from a describe changeset operation
873
968
  */
874
969
  export interface GetChangesetResponse {
@@ -940,6 +1035,7 @@ export interface GetChangesetResponse {
940
1035
  updatedByChangesetId?: string;
941
1036
  }
942
1037
  /**
1038
+ * @public
943
1039
  * Request for the GetDataset operation.
944
1040
  */
945
1041
  export interface GetDatasetRequest {
@@ -948,6 +1044,9 @@ export interface GetDatasetRequest {
948
1044
  */
949
1045
  datasetId: string | undefined;
950
1046
  }
1047
+ /**
1048
+ * @public
1049
+ */
951
1050
  export declare enum DatasetStatus {
952
1051
  FAILED = "FAILED",
953
1052
  PENDING = "PENDING",
@@ -955,6 +1054,7 @@ export declare enum DatasetStatus {
955
1054
  SUCCESS = "SUCCESS"
956
1055
  }
957
1056
  /**
1057
+ * @public
958
1058
  * Response for the GetDataset operation
959
1059
  */
960
1060
  export interface GetDatasetResponse {
@@ -1028,6 +1128,7 @@ export interface GetDatasetResponse {
1028
1128
  status?: DatasetStatus | string;
1029
1129
  }
1030
1130
  /**
1131
+ * @public
1031
1132
  * Request for retrieving a data view detail. Grouped / accessible within a dataset by its dataset id.
1032
1133
  */
1033
1134
  export interface GetDataViewRequest {
@@ -1041,6 +1142,7 @@ export interface GetDataViewRequest {
1041
1142
  datasetId: string | undefined;
1042
1143
  }
1043
1144
  /**
1145
+ * @public
1044
1146
  * <p>The structure with error messages.</p>
1045
1147
  */
1046
1148
  export interface DataViewErrorInfo {
@@ -1092,6 +1194,9 @@ export interface DataViewErrorInfo {
1092
1194
  */
1093
1195
  errorCategory?: ErrorCategory | string;
1094
1196
  }
1197
+ /**
1198
+ * @public
1199
+ */
1095
1200
  export declare enum DataViewStatus {
1096
1201
  CANCELLED = "CANCELLED",
1097
1202
  FAILED = "FAILED",
@@ -1103,6 +1208,7 @@ export declare enum DataViewStatus {
1103
1208
  TIMEOUT = "TIMEOUT"
1104
1209
  }
1105
1210
  /**
1211
+ * @public
1106
1212
  * Response from retrieving a dataview, which includes details on the target database and table name
1107
1213
  */
1108
1214
  export interface GetDataViewResponse {
@@ -1189,6 +1295,9 @@ export interface GetDataViewResponse {
1189
1295
  */
1190
1296
  status?: DataViewStatus | string;
1191
1297
  }
1298
+ /**
1299
+ * @public
1300
+ */
1192
1301
  export interface GetExternalDataViewAccessDetailsRequest {
1193
1302
  /**
1194
1303
  * <p>The unique identifier for the Dataview that you want to access.</p>
@@ -1200,6 +1309,7 @@ export interface GetExternalDataViewAccessDetailsRequest {
1200
1309
  datasetId: string | undefined;
1201
1310
  }
1202
1311
  /**
1312
+ * @public
1203
1313
  * <p>The location of an external Dataview in an S3 bucket.</p>
1204
1314
  */
1205
1315
  export interface S3Location {
@@ -1212,6 +1322,9 @@ export interface S3Location {
1212
1322
  */
1213
1323
  key: string | undefined;
1214
1324
  }
1325
+ /**
1326
+ * @public
1327
+ */
1215
1328
  export interface GetExternalDataViewAccessDetailsResponse {
1216
1329
  /**
1217
1330
  * <p>The credentials required to access the external Dataview from the S3 location.</p>
@@ -1222,18 +1335,25 @@ export interface GetExternalDataViewAccessDetailsResponse {
1222
1335
  */
1223
1336
  s3Location?: S3Location;
1224
1337
  }
1338
+ /**
1339
+ * @public
1340
+ */
1225
1341
  export interface GetPermissionGroupRequest {
1226
1342
  /**
1227
1343
  * <p>The unique identifier for the permission group.</p>
1228
1344
  */
1229
1345
  permissionGroupId: string | undefined;
1230
1346
  }
1347
+ /**
1348
+ * @public
1349
+ */
1231
1350
  export declare enum PermissionGroupMembershipStatus {
1232
1351
  ADDITION_IN_PROGRESS = "ADDITION_IN_PROGRESS",
1233
1352
  ADDITION_SUCCESS = "ADDITION_SUCCESS",
1234
1353
  REMOVAL_IN_PROGRESS = "REMOVAL_IN_PROGRESS"
1235
1354
  }
1236
1355
  /**
1356
+ * @public
1237
1357
  * <p>The structure for a permission group.</p>
1238
1358
  */
1239
1359
  export interface PermissionGroup {
@@ -1315,6 +1435,9 @@ export interface PermissionGroup {
1315
1435
  */
1316
1436
  membershipStatus?: PermissionGroupMembershipStatus | string;
1317
1437
  }
1438
+ /**
1439
+ * @public
1440
+ */
1318
1441
  export interface GetPermissionGroupResponse {
1319
1442
  /**
1320
1443
  * <p>The structure for a permission group.</p>
@@ -1322,6 +1445,7 @@ export interface GetPermissionGroupResponse {
1322
1445
  permissionGroup?: PermissionGroup;
1323
1446
  }
1324
1447
  /**
1448
+ * @public
1325
1449
  * Request for GetProgrammaticAccessCredentials operation
1326
1450
  */
1327
1451
  export interface GetProgrammaticAccessCredentialsRequest {
@@ -1335,6 +1459,7 @@ export interface GetProgrammaticAccessCredentialsRequest {
1335
1459
  environmentId: string | undefined;
1336
1460
  }
1337
1461
  /**
1462
+ * @public
1338
1463
  * <p>Short term API credentials.</p>
1339
1464
  */
1340
1465
  export interface Credentials {
@@ -1352,6 +1477,7 @@ export interface Credentials {
1352
1477
  sessionToken?: string;
1353
1478
  }
1354
1479
  /**
1480
+ * @public
1355
1481
  * Response for GetProgrammaticAccessCredentials operation
1356
1482
  */
1357
1483
  export interface GetProgrammaticAccessCredentialsResponse {
@@ -1364,17 +1490,26 @@ export interface GetProgrammaticAccessCredentialsResponse {
1364
1490
  */
1365
1491
  durationInMinutes?: number;
1366
1492
  }
1493
+ /**
1494
+ * @public
1495
+ */
1367
1496
  export interface GetUserRequest {
1368
1497
  /**
1369
1498
  * <p>The unique identifier of the user to get data for.</p>
1370
1499
  */
1371
1500
  userId: string | undefined;
1372
1501
  }
1502
+ /**
1503
+ * @public
1504
+ */
1373
1505
  export declare enum UserStatus {
1374
1506
  CREATING = "CREATING",
1375
1507
  DISABLED = "DISABLED",
1376
1508
  ENABLED = "ENABLED"
1377
1509
  }
1510
+ /**
1511
+ * @public
1512
+ */
1378
1513
  export interface GetUserResponse {
1379
1514
  /**
1380
1515
  * <p>The unique identifier for the user account that is retrieved.</p>
@@ -1465,10 +1600,16 @@ export interface GetUserResponse {
1465
1600
  */
1466
1601
  lastLoginTime?: number;
1467
1602
  }
1603
+ /**
1604
+ * @public
1605
+ */
1468
1606
  export declare enum LocationType {
1469
1607
  INGESTION = "INGESTION",
1470
1608
  SAGEMAKER = "SAGEMAKER"
1471
1609
  }
1610
+ /**
1611
+ * @public
1612
+ */
1472
1613
  export interface GetWorkingLocationRequest {
1473
1614
  /**
1474
1615
  * <p>Specify the type of the working location.</p>
@@ -1487,6 +1628,9 @@ export interface GetWorkingLocationRequest {
1487
1628
  */
1488
1629
  locationType?: LocationType | string;
1489
1630
  }
1631
+ /**
1632
+ * @public
1633
+ */
1490
1634
  export interface GetWorkingLocationResponse {
1491
1635
  /**
1492
1636
  * <p>Returns the Amazon S3 URI for the working location.</p>
@@ -1502,6 +1646,7 @@ export interface GetWorkingLocationResponse {
1502
1646
  s3Bucket?: string;
1503
1647
  }
1504
1648
  /**
1649
+ * @public
1505
1650
  * Request to ListChangesetsRequest. It exposes minimal query filters.
1506
1651
  */
1507
1652
  export interface ListChangesetsRequest {
@@ -1519,6 +1664,7 @@ export interface ListChangesetsRequest {
1519
1664
  nextToken?: string;
1520
1665
  }
1521
1666
  /**
1667
+ * @public
1522
1668
  * <p>A Changeset is unit of data in a Dataset.</p>
1523
1669
  */
1524
1670
  export interface ChangesetSummary {
@@ -1615,6 +1761,7 @@ export interface ChangesetSummary {
1615
1761
  updatedByChangesetId?: string;
1616
1762
  }
1617
1763
  /**
1764
+ * @public
1618
1765
  * Response to ListChangesetsResponse. This returns a list of dataset changesets that match the query criteria.
1619
1766
  */
1620
1767
  export interface ListChangesetsResponse {
@@ -1628,6 +1775,7 @@ export interface ListChangesetsResponse {
1628
1775
  nextToken?: string;
1629
1776
  }
1630
1777
  /**
1778
+ * @public
1631
1779
  * Request for the ListDatasets operation.
1632
1780
  */
1633
1781
  export interface ListDatasetsRequest {
@@ -1641,6 +1789,7 @@ export interface ListDatasetsRequest {
1641
1789
  maxResults?: number;
1642
1790
  }
1643
1791
  /**
1792
+ * @public
1644
1793
  * <p>The structure for a Dataset.</p>
1645
1794
  */
1646
1795
  export interface Dataset {
@@ -1696,6 +1845,7 @@ export interface Dataset {
1696
1845
  alias?: string;
1697
1846
  }
1698
1847
  /**
1848
+ * @public
1699
1849
  * Response for the ListDatasets operation
1700
1850
  */
1701
1851
  export interface ListDatasetsResponse {
@@ -1709,6 +1859,7 @@ export interface ListDatasetsResponse {
1709
1859
  nextToken?: string;
1710
1860
  }
1711
1861
  /**
1862
+ * @public
1712
1863
  * Request for a list data views.
1713
1864
  */
1714
1865
  export interface ListDataViewsRequest {
@@ -1726,6 +1877,7 @@ export interface ListDataViewsRequest {
1726
1877
  maxResults?: number;
1727
1878
  }
1728
1879
  /**
1880
+ * @public
1729
1881
  * <p>Structure for the summary of a Dataview.</p>
1730
1882
  */
1731
1883
  export interface DataViewSummary {
@@ -1812,6 +1964,9 @@ export interface DataViewSummary {
1812
1964
  */
1813
1965
  lastModifiedTime?: number;
1814
1966
  }
1967
+ /**
1968
+ * @public
1969
+ */
1815
1970
  export interface ListDataViewsResponse {
1816
1971
  /**
1817
1972
  * <p>A token that indicates where a results page should begin.</p>
@@ -1822,6 +1977,9 @@ export interface ListDataViewsResponse {
1822
1977
  */
1823
1978
  dataViews?: DataViewSummary[];
1824
1979
  }
1980
+ /**
1981
+ * @public
1982
+ */
1825
1983
  export interface ListPermissionGroupsRequest {
1826
1984
  /**
1827
1985
  * <p>A token that indicates where a results page should begin.</p>
@@ -1832,6 +1990,9 @@ export interface ListPermissionGroupsRequest {
1832
1990
  */
1833
1991
  maxResults: number | undefined;
1834
1992
  }
1993
+ /**
1994
+ * @public
1995
+ */
1835
1996
  export interface ListPermissionGroupsResponse {
1836
1997
  /**
1837
1998
  * <p>A list of all the permission groups.</p>
@@ -1842,6 +2003,9 @@ export interface ListPermissionGroupsResponse {
1842
2003
  */
1843
2004
  nextToken?: string;
1844
2005
  }
2006
+ /**
2007
+ * @public
2008
+ */
1845
2009
  export interface ListPermissionGroupsByUserRequest {
1846
2010
  /**
1847
2011
  * <p>The unique identifier for the user.</p>
@@ -1857,6 +2021,7 @@ export interface ListPermissionGroupsByUserRequest {
1857
2021
  maxResults: number | undefined;
1858
2022
  }
1859
2023
  /**
2024
+ * @public
1860
2025
  * <p>The structure of a permission group associated with a user account.</p>
1861
2026
  */
1862
2027
  export interface PermissionGroupByUser {
@@ -1887,6 +2052,9 @@ export interface PermissionGroupByUser {
1887
2052
  */
1888
2053
  membershipStatus?: PermissionGroupMembershipStatus | string;
1889
2054
  }
2055
+ /**
2056
+ * @public
2057
+ */
1890
2058
  export interface ListPermissionGroupsByUserResponse {
1891
2059
  /**
1892
2060
  * <p>A list of returned permission groups.</p>
@@ -1897,6 +2065,9 @@ export interface ListPermissionGroupsByUserResponse {
1897
2065
  */
1898
2066
  nextToken?: string;
1899
2067
  }
2068
+ /**
2069
+ * @public
2070
+ */
1900
2071
  export interface ListUsersRequest {
1901
2072
  /**
1902
2073
  * <p>A token that indicates where a results page should begin.</p>
@@ -1908,6 +2079,7 @@ export interface ListUsersRequest {
1908
2079
  maxResults: number | undefined;
1909
2080
  }
1910
2081
  /**
2082
+ * @public
1911
2083
  * <p>The details of the user account.</p>
1912
2084
  */
1913
2085
  export interface User {
@@ -2001,6 +2173,9 @@ export interface User {
2001
2173
  */
2002
2174
  lastLoginTime?: number;
2003
2175
  }
2176
+ /**
2177
+ * @public
2178
+ */
2004
2179
  export interface ListUsersResponse {
2005
2180
  /**
2006
2181
  * <p>A list of all the user accounts.</p>
@@ -2011,6 +2186,9 @@ export interface ListUsersResponse {
2011
2186
  */
2012
2187
  nextToken?: string;
2013
2188
  }
2189
+ /**
2190
+ * @public
2191
+ */
2014
2192
  export interface ListUsersByPermissionGroupRequest {
2015
2193
  /**
2016
2194
  * <p>The unique identifier for the permission group.</p>
@@ -2026,6 +2204,7 @@ export interface ListUsersByPermissionGroupRequest {
2026
2204
  maxResults: number | undefined;
2027
2205
  }
2028
2206
  /**
2207
+ * @public
2029
2208
  * <p>The structure of a user account associated with a permission group.</p>
2030
2209
  */
2031
2210
  export interface UserByPermissionGroup {
@@ -2114,6 +2293,9 @@ export interface UserByPermissionGroup {
2114
2293
  */
2115
2294
  membershipStatus?: PermissionGroupMembershipStatus | string;
2116
2295
  }
2296
+ /**
2297
+ * @public
2298
+ */
2117
2299
  export interface ListUsersByPermissionGroupResponse {
2118
2300
  /**
2119
2301
  * <p>Lists details of all users in a specific permission group.</p>
@@ -2124,6 +2306,9 @@ export interface ListUsersByPermissionGroupResponse {
2124
2306
  */
2125
2307
  nextToken?: string;
2126
2308
  }
2309
+ /**
2310
+ * @public
2311
+ */
2127
2312
  export interface ResetUserPasswordRequest {
2128
2313
  /**
2129
2314
  * <p>The unique identifier of the user that a temporary password is requested for.</p>
@@ -2134,6 +2319,9 @@ export interface ResetUserPasswordRequest {
2134
2319
  */
2135
2320
  clientToken?: string;
2136
2321
  }
2322
+ /**
2323
+ * @public
2324
+ */
2137
2325
  export interface ResetUserPasswordResponse {
2138
2326
  /**
2139
2327
  * <p>The unique identifier of the user that a new password is generated for.</p>
@@ -2145,6 +2333,7 @@ export interface ResetUserPasswordResponse {
2145
2333
  temporaryPassword?: string;
2146
2334
  }
2147
2335
  /**
2336
+ * @public
2148
2337
  * Request to update an existing changeset.
2149
2338
  */
2150
2339
  export interface UpdateChangesetRequest {
@@ -2167,10 +2356,10 @@ export interface UpdateChangesetRequest {
2167
2356
  * <p>
2168
2357
  * <code>
2169
2358
  * "sourceParams":
2170
- * {
2359
+ * \{
2171
2360
  * "s3SourcePath": "s3://finspace-landing-us-east-2-bk7gcfvitndqa6ebnvys4d/scratch/wr5hh8pwkpqqkxa4sxrmcw/ingestion/equity.csv",
2172
2361
  * "sourceType": "S3"
2173
- * }
2362
+ * \}
2174
2363
  * </code>
2175
2364
  * </p>
2176
2365
  * <p>The S3 path that you specify must allow the FinSpace role access. To do that, you first need to configure the IAM policy on S3 bucket. For more information, see <a href="https://docs.aws.amazon.com/finspace/latest/data-api/fs-using-the-finspace-api.html#access-s3-buckets">Loading data from an Amazon S3 Bucket using the FinSpace API</a>section.</p>
@@ -2205,21 +2394,21 @@ export interface UpdateChangesetRequest {
2205
2394
  * <p>
2206
2395
  * <code>
2207
2396
  * "formatParams":
2208
- * {
2397
+ * \{
2209
2398
  * "formatType": "CSV",
2210
2399
  * "withHeader": "true",
2211
2400
  * "separator": ",",
2212
2401
  * "compression":"None"
2213
- * }
2402
+ * \}
2214
2403
  * </code>
2215
2404
  * </p>
2216
2405
  * <p>Note that if you only provide <code>formatType</code> as <code>CSV</code>, the rest of the attributes will automatically default to CSV values as following:</p>
2217
2406
  * <p>
2218
2407
  * <code>
2219
- * {
2408
+ * \{
2220
2409
  * "withHeader": "true",
2221
2410
  * "separator": ","
2222
- * }
2411
+ * \}
2223
2412
  * </code>
2224
2413
  * </p>
2225
2414
  * <p> For more information about supported file formats, see <a href="https://docs.aws.amazon.com/finspace/latest/userguide/supported-data-types.html">Supported Data Types and File Formats</a> in the FinSpace User Guide.</p>
@@ -2227,6 +2416,7 @@ export interface UpdateChangesetRequest {
2227
2416
  formatParams: Record<string, string> | undefined;
2228
2417
  }
2229
2418
  /**
2419
+ * @public
2230
2420
  * The response from a update changeset operation.
2231
2421
  */
2232
2422
  export interface UpdateChangesetResponse {
@@ -2240,6 +2430,7 @@ export interface UpdateChangesetResponse {
2240
2430
  datasetId?: string;
2241
2431
  }
2242
2432
  /**
2433
+ * @public
2243
2434
  * The request for an UpdateDataset operation
2244
2435
  */
2245
2436
  export interface UpdateDatasetRequest {
@@ -2283,6 +2474,7 @@ export interface UpdateDatasetRequest {
2283
2474
  schemaDefinition?: SchemaUnion;
2284
2475
  }
2285
2476
  /**
2477
+ * @public
2286
2478
  * The response from an UpdateDataset operation
2287
2479
  */
2288
2480
  export interface UpdateDatasetResponse {
@@ -2291,6 +2483,9 @@ export interface UpdateDatasetResponse {
2291
2483
  */
2292
2484
  datasetId?: string;
2293
2485
  }
2486
+ /**
2487
+ * @public
2488
+ */
2294
2489
  export interface UpdatePermissionGroupRequest {
2295
2490
  /**
2296
2491
  * <p>The unique identifier for the permission group to update.</p>
@@ -2346,12 +2541,18 @@ export interface UpdatePermissionGroupRequest {
2346
2541
  */
2347
2542
  clientToken?: string;
2348
2543
  }
2544
+ /**
2545
+ * @public
2546
+ */
2349
2547
  export interface UpdatePermissionGroupResponse {
2350
2548
  /**
2351
2549
  * <p>The unique identifier for the updated permission group.</p>
2352
2550
  */
2353
2551
  permissionGroupId?: string;
2354
2552
  }
2553
+ /**
2554
+ * @public
2555
+ */
2355
2556
  export interface UpdateUserRequest {
2356
2557
  /**
2357
2558
  * <p>The unique identifier for the user account to update.</p>
@@ -2402,6 +2603,9 @@ export interface UpdateUserRequest {
2402
2603
  */
2403
2604
  clientToken?: string;
2404
2605
  }
2606
+ /**
2607
+ * @public
2608
+ */
2405
2609
  export interface UpdateUserResponse {
2406
2610
  /**
2407
2611
  * <p>The unique identifier of the updated user account.</p>