@aws-sdk/client-finspace-data 3.50.0 → 3.53.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 (45) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/FinspaceDataServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +94 -1
  5. package/dist-cjs/protocols/Aws_restJson1.js +194 -675
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/FinspaceDataServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +86 -1
  9. package/dist-es/protocols/Aws_restJson1.js +373 -739
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/FinspaceDataServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +51 -28
  13. package/dist-types/ts3.4/FinspaceData.d.ts +75 -0
  14. package/dist-types/ts3.4/FinspaceDataClient.d.ts +87 -0
  15. package/dist-types/ts3.4/commands/CreateChangesetCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateDataViewCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/GetChangesetCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/GetDataViewCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/GetProgrammaticAccessCredentialsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/GetWorkingLocationCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListChangesetsCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListDataViewsCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/UpdateChangesetCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/UpdateDatasetCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +14 -0
  30. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  31. package/dist-types/ts3.4/index.d.ts +6 -0
  32. package/dist-types/ts3.4/models/FinspaceDataServiceException.d.ts +6 -0
  33. package/dist-types/ts3.4/models/index.d.ts +1 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +741 -0
  35. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  36. package/dist-types/ts3.4/pagination/ListChangesetsPaginator.d.ts +4 -0
  37. package/dist-types/ts3.4/pagination/ListDataViewsPaginator.d.ts +4 -0
  38. package/dist-types/ts3.4/pagination/ListDatasetsPaginator.d.ts +4 -0
  39. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  40. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +44 -0
  41. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  42. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  43. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  44. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  45. package/package.json +33 -33
@@ -0,0 +1,741 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { FinspaceDataServiceException as __BaseException } from "./FinspaceDataServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+
8
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
+ }
10
+
11
+ export declare class ConflictException extends __BaseException {
12
+ readonly name: "ConflictException";
13
+ readonly $fault: "client";
14
+
15
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
16
+ }
17
+ export declare enum ChangeType {
18
+ APPEND = "APPEND",
19
+ MODIFY = "MODIFY",
20
+ REPLACE = "REPLACE"
21
+ }
22
+
23
+ export interface CreateChangesetRequest {
24
+
25
+ clientToken?: string;
26
+
27
+ datasetId: string | undefined;
28
+
29
+ changeType: ChangeType | string | undefined;
30
+
31
+ sourceParams: {
32
+ [key: string]: string;
33
+ } | undefined;
34
+
35
+ formatParams: {
36
+ [key: string]: string;
37
+ } | undefined;
38
+ }
39
+ export declare namespace CreateChangesetRequest {
40
+
41
+ const filterSensitiveLog: (obj: CreateChangesetRequest) => any;
42
+ }
43
+
44
+ export interface CreateChangesetResponse {
45
+
46
+ datasetId?: string;
47
+
48
+ changesetId?: string;
49
+ }
50
+ export declare namespace CreateChangesetResponse {
51
+
52
+ const filterSensitiveLog: (obj: CreateChangesetResponse) => any;
53
+ }
54
+
55
+ export declare class InternalServerException extends __BaseException {
56
+ readonly name: "InternalServerException";
57
+ readonly $fault: "server";
58
+
59
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
60
+ }
61
+
62
+ export declare class LimitExceededException extends __BaseException {
63
+ readonly name: "LimitExceededException";
64
+ readonly $fault: "client";
65
+
66
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
67
+ }
68
+
69
+ export declare class ResourceNotFoundException extends __BaseException {
70
+ readonly name: "ResourceNotFoundException";
71
+ readonly $fault: "client";
72
+
73
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
74
+ }
75
+
76
+ export declare class ThrottlingException extends __BaseException {
77
+ readonly name: "ThrottlingException";
78
+ readonly $fault: "client";
79
+
80
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
81
+ }
82
+
83
+ export declare class ValidationException extends __BaseException {
84
+ readonly name: "ValidationException";
85
+ readonly $fault: "client";
86
+
87
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
88
+ }
89
+ export declare enum DatasetKind {
90
+ NON_TABULAR = "NON_TABULAR",
91
+ TABULAR = "TABULAR"
92
+ }
93
+
94
+ export interface DatasetOwnerInfo {
95
+
96
+ name?: string;
97
+
98
+ phoneNumber?: string;
99
+
100
+ email?: string;
101
+ }
102
+ export declare namespace DatasetOwnerInfo {
103
+
104
+ const filterSensitiveLog: (obj: DatasetOwnerInfo) => any;
105
+ }
106
+
107
+ export interface ResourcePermission {
108
+
109
+ permission?: string;
110
+ }
111
+ export declare namespace ResourcePermission {
112
+
113
+ const filterSensitiveLog: (obj: ResourcePermission) => any;
114
+ }
115
+
116
+ export interface PermissionGroupParams {
117
+
118
+ permissionGroupId?: string;
119
+
120
+ datasetPermissions?: ResourcePermission[];
121
+ }
122
+ export declare namespace PermissionGroupParams {
123
+
124
+ const filterSensitiveLog: (obj: PermissionGroupParams) => any;
125
+ }
126
+ export declare enum ColumnDataType {
127
+ BIGINT = "BIGINT",
128
+ BINARY = "BINARY",
129
+ BOOLEAN = "BOOLEAN",
130
+ CHAR = "CHAR",
131
+ DATE = "DATE",
132
+ DATETIME = "DATETIME",
133
+ DOUBLE = "DOUBLE",
134
+ FLOAT = "FLOAT",
135
+ INTEGER = "INTEGER",
136
+ SMALLINT = "SMALLINT",
137
+ STRING = "STRING",
138
+ TINYINT = "TINYINT"
139
+ }
140
+
141
+ export interface ColumnDefinition {
142
+
143
+ dataType?: ColumnDataType | string;
144
+
145
+ columnName?: string;
146
+
147
+ columnDescription?: string;
148
+ }
149
+ export declare namespace ColumnDefinition {
150
+
151
+ const filterSensitiveLog: (obj: ColumnDefinition) => any;
152
+ }
153
+
154
+ export interface SchemaDefinition {
155
+
156
+ columns?: ColumnDefinition[];
157
+
158
+ primaryKeyColumns?: string[];
159
+ }
160
+ export declare namespace SchemaDefinition {
161
+
162
+ const filterSensitiveLog: (obj: SchemaDefinition) => any;
163
+ }
164
+
165
+ export interface SchemaUnion {
166
+
167
+ tabularSchemaConfig?: SchemaDefinition;
168
+ }
169
+ export declare namespace SchemaUnion {
170
+
171
+ const filterSensitiveLog: (obj: SchemaUnion) => any;
172
+ }
173
+
174
+ export interface CreateDatasetRequest {
175
+
176
+ clientToken?: string;
177
+
178
+ datasetTitle: string | undefined;
179
+
180
+ kind: DatasetKind | string | undefined;
181
+
182
+ datasetDescription?: string;
183
+
184
+ ownerInfo?: DatasetOwnerInfo;
185
+
186
+ permissionGroupParams: PermissionGroupParams | undefined;
187
+
188
+ alias?: string;
189
+
190
+ schemaDefinition?: SchemaUnion;
191
+ }
192
+ export declare namespace CreateDatasetRequest {
193
+
194
+ const filterSensitiveLog: (obj: CreateDatasetRequest) => any;
195
+ }
196
+
197
+ export interface CreateDatasetResponse {
198
+
199
+ datasetId?: string;
200
+ }
201
+ export declare namespace CreateDatasetResponse {
202
+
203
+ const filterSensitiveLog: (obj: CreateDatasetResponse) => any;
204
+ }
205
+ export declare enum ExportFileFormat {
206
+ DELIMITED_TEXT = "DELIMITED_TEXT",
207
+ PARQUET = "PARQUET"
208
+ }
209
+
210
+ export interface DataViewDestinationTypeParams {
211
+
212
+ destinationType: string | undefined;
213
+
214
+ s3DestinationExportFileFormat?: ExportFileFormat | string;
215
+
216
+ s3DestinationExportFileFormatOptions?: {
217
+ [key: string]: string;
218
+ };
219
+ }
220
+ export declare namespace DataViewDestinationTypeParams {
221
+
222
+ const filterSensitiveLog: (obj: DataViewDestinationTypeParams) => any;
223
+ }
224
+
225
+ export interface CreateDataViewRequest {
226
+
227
+ clientToken?: string;
228
+
229
+ datasetId: string | undefined;
230
+
231
+ autoUpdate?: boolean;
232
+
233
+ sortColumns?: string[];
234
+
235
+ partitionColumns?: string[];
236
+
237
+ asOfTimestamp?: number;
238
+
239
+ destinationTypeParams: DataViewDestinationTypeParams | undefined;
240
+ }
241
+ export declare namespace CreateDataViewRequest {
242
+
243
+ const filterSensitiveLog: (obj: CreateDataViewRequest) => any;
244
+ }
245
+
246
+ export interface CreateDataViewResponse {
247
+
248
+ datasetId?: string;
249
+
250
+ dataViewId?: string;
251
+ }
252
+ export declare namespace CreateDataViewResponse {
253
+
254
+ const filterSensitiveLog: (obj: CreateDataViewResponse) => any;
255
+ }
256
+
257
+ export interface DeleteDatasetRequest {
258
+
259
+ clientToken?: string;
260
+
261
+ datasetId: string | undefined;
262
+ }
263
+ export declare namespace DeleteDatasetRequest {
264
+
265
+ const filterSensitiveLog: (obj: DeleteDatasetRequest) => any;
266
+ }
267
+
268
+ export interface DeleteDatasetResponse {
269
+
270
+ datasetId?: string;
271
+ }
272
+ export declare namespace DeleteDatasetResponse {
273
+
274
+ const filterSensitiveLog: (obj: DeleteDatasetResponse) => any;
275
+ }
276
+
277
+ export interface GetChangesetRequest {
278
+
279
+ datasetId: string | undefined;
280
+
281
+ changesetId: string | undefined;
282
+ }
283
+ export declare namespace GetChangesetRequest {
284
+
285
+ const filterSensitiveLog: (obj: GetChangesetRequest) => any;
286
+ }
287
+ export declare enum ErrorCategory {
288
+ ACCESS_DENIED = "ACCESS_DENIED",
289
+ CANCELLED = "CANCELLED",
290
+ INTERNAL_SERVICE_EXCEPTION = "INTERNAL_SERVICE_EXCEPTION",
291
+ RESOURCE_NOT_FOUND = "RESOURCE_NOT_FOUND",
292
+ SERVICE_QUOTA_EXCEEDED = "SERVICE_QUOTA_EXCEEDED",
293
+ THROTTLING = "THROTTLING",
294
+ USER_RECOVERABLE = "USER_RECOVERABLE",
295
+ VALIDATION = "VALIDATION"
296
+ }
297
+
298
+ export interface ChangesetErrorInfo {
299
+
300
+ errorMessage?: string;
301
+
302
+ errorCategory?: ErrorCategory | string;
303
+ }
304
+ export declare namespace ChangesetErrorInfo {
305
+
306
+ const filterSensitiveLog: (obj: ChangesetErrorInfo) => any;
307
+ }
308
+ export declare enum IngestionStatus {
309
+ FAILED = "FAILED",
310
+ PENDING = "PENDING",
311
+ RUNNING = "RUNNING",
312
+ STOP_REQUESTED = "STOP_REQUESTED",
313
+ SUCCESS = "SUCCESS"
314
+ }
315
+
316
+ export interface GetChangesetResponse {
317
+
318
+ changesetId?: string;
319
+
320
+ changesetArn?: string;
321
+
322
+ datasetId?: string;
323
+
324
+ changeType?: ChangeType | string;
325
+
326
+ sourceParams?: {
327
+ [key: string]: string;
328
+ };
329
+
330
+ formatParams?: {
331
+ [key: string]: string;
332
+ };
333
+
334
+ createTime?: number;
335
+
336
+ status?: IngestionStatus | string;
337
+
338
+ errorInfo?: ChangesetErrorInfo;
339
+
340
+ activeUntilTimestamp?: number;
341
+
342
+ activeFromTimestamp?: number;
343
+
344
+ updatesChangesetId?: string;
345
+
346
+ updatedByChangesetId?: string;
347
+ }
348
+ export declare namespace GetChangesetResponse {
349
+
350
+ const filterSensitiveLog: (obj: GetChangesetResponse) => any;
351
+ }
352
+
353
+ export interface GetDatasetRequest {
354
+
355
+ datasetId: string | undefined;
356
+ }
357
+ export declare namespace GetDatasetRequest {
358
+
359
+ const filterSensitiveLog: (obj: GetDatasetRequest) => any;
360
+ }
361
+ export declare enum DatasetStatus {
362
+ FAILED = "FAILED",
363
+ PENDING = "PENDING",
364
+ RUNNING = "RUNNING",
365
+ SUCCESS = "SUCCESS"
366
+ }
367
+
368
+ export interface GetDatasetResponse {
369
+
370
+ datasetId?: string;
371
+
372
+ datasetArn?: string;
373
+
374
+ datasetTitle?: string;
375
+
376
+ kind?: DatasetKind | string;
377
+
378
+ datasetDescription?: string;
379
+
380
+ createTime?: number;
381
+
382
+ lastModifiedTime?: number;
383
+
384
+ schemaDefinition?: SchemaUnion;
385
+
386
+ alias?: string;
387
+
388
+ status?: DatasetStatus | string;
389
+ }
390
+ export declare namespace GetDatasetResponse {
391
+
392
+ const filterSensitiveLog: (obj: GetDatasetResponse) => any;
393
+ }
394
+
395
+ export interface GetDataViewRequest {
396
+
397
+ dataViewId: string | undefined;
398
+
399
+ datasetId: string | undefined;
400
+ }
401
+ export declare namespace GetDataViewRequest {
402
+
403
+ const filterSensitiveLog: (obj: GetDataViewRequest) => any;
404
+ }
405
+
406
+ export interface DataViewErrorInfo {
407
+
408
+ errorMessage?: string;
409
+
410
+ errorCategory?: ErrorCategory | string;
411
+ }
412
+ export declare namespace DataViewErrorInfo {
413
+
414
+ const filterSensitiveLog: (obj: DataViewErrorInfo) => any;
415
+ }
416
+ export declare enum DataViewStatus {
417
+ CANCELLED = "CANCELLED",
418
+ FAILED = "FAILED",
419
+ FAILED_CLEANUP_FAILED = "FAILED_CLEANUP_FAILED",
420
+ PENDING = "PENDING",
421
+ RUNNING = "RUNNING",
422
+ STARTING = "STARTING",
423
+ SUCCESS = "SUCCESS",
424
+ TIMEOUT = "TIMEOUT"
425
+ }
426
+
427
+ export interface GetDataViewResponse {
428
+
429
+ autoUpdate?: boolean;
430
+
431
+ partitionColumns?: string[];
432
+
433
+ datasetId?: string;
434
+
435
+ asOfTimestamp?: number;
436
+
437
+ errorInfo?: DataViewErrorInfo;
438
+
439
+ lastModifiedTime?: number;
440
+
441
+ createTime?: number;
442
+
443
+ sortColumns?: string[];
444
+
445
+ dataViewId?: string;
446
+
447
+ dataViewArn?: string;
448
+
449
+ destinationTypeParams?: DataViewDestinationTypeParams;
450
+
451
+ status?: DataViewStatus | string;
452
+ }
453
+ export declare namespace GetDataViewResponse {
454
+
455
+ const filterSensitiveLog: (obj: GetDataViewResponse) => any;
456
+ }
457
+
458
+ export interface GetProgrammaticAccessCredentialsRequest {
459
+
460
+ durationInMinutes?: number;
461
+
462
+ environmentId: string | undefined;
463
+ }
464
+ export declare namespace GetProgrammaticAccessCredentialsRequest {
465
+
466
+ const filterSensitiveLog: (obj: GetProgrammaticAccessCredentialsRequest) => any;
467
+ }
468
+
469
+ export interface Credentials {
470
+
471
+ accessKeyId?: string;
472
+
473
+ secretAccessKey?: string;
474
+
475
+ sessionToken?: string;
476
+ }
477
+ export declare namespace Credentials {
478
+
479
+ const filterSensitiveLog: (obj: Credentials) => any;
480
+ }
481
+
482
+ export interface GetProgrammaticAccessCredentialsResponse {
483
+
484
+ credentials?: Credentials;
485
+
486
+ durationInMinutes?: number;
487
+ }
488
+ export declare namespace GetProgrammaticAccessCredentialsResponse {
489
+
490
+ const filterSensitiveLog: (obj: GetProgrammaticAccessCredentialsResponse) => any;
491
+ }
492
+ export declare enum LocationType {
493
+ INGESTION = "INGESTION",
494
+ SAGEMAKER = "SAGEMAKER"
495
+ }
496
+ export interface GetWorkingLocationRequest {
497
+
498
+ locationType?: LocationType | string;
499
+ }
500
+ export declare namespace GetWorkingLocationRequest {
501
+
502
+ const filterSensitiveLog: (obj: GetWorkingLocationRequest) => any;
503
+ }
504
+ export interface GetWorkingLocationResponse {
505
+
506
+ s3Uri?: string;
507
+
508
+ s3Path?: string;
509
+
510
+ s3Bucket?: string;
511
+ }
512
+ export declare namespace GetWorkingLocationResponse {
513
+
514
+ const filterSensitiveLog: (obj: GetWorkingLocationResponse) => any;
515
+ }
516
+
517
+ export interface ListChangesetsRequest {
518
+
519
+ datasetId: string | undefined;
520
+
521
+ maxResults?: number;
522
+
523
+ nextToken?: string;
524
+ }
525
+ export declare namespace ListChangesetsRequest {
526
+
527
+ const filterSensitiveLog: (obj: ListChangesetsRequest) => any;
528
+ }
529
+
530
+ export interface ChangesetSummary {
531
+
532
+ changesetId?: string;
533
+
534
+ changesetArn?: string;
535
+
536
+ datasetId?: string;
537
+
538
+ changeType?: ChangeType | string;
539
+
540
+ sourceParams?: {
541
+ [key: string]: string;
542
+ };
543
+
544
+ formatParams?: {
545
+ [key: string]: string;
546
+ };
547
+
548
+ createTime?: number;
549
+
550
+ status?: IngestionStatus | string;
551
+
552
+ errorInfo?: ChangesetErrorInfo;
553
+
554
+ activeUntilTimestamp?: number;
555
+
556
+ activeFromTimestamp?: number;
557
+
558
+ updatesChangesetId?: string;
559
+
560
+ updatedByChangesetId?: string;
561
+ }
562
+ export declare namespace ChangesetSummary {
563
+
564
+ const filterSensitiveLog: (obj: ChangesetSummary) => any;
565
+ }
566
+
567
+ export interface ListChangesetsResponse {
568
+
569
+ changesets?: ChangesetSummary[];
570
+
571
+ nextToken?: string;
572
+ }
573
+ export declare namespace ListChangesetsResponse {
574
+
575
+ const filterSensitiveLog: (obj: ListChangesetsResponse) => any;
576
+ }
577
+
578
+ export interface ListDatasetsRequest {
579
+
580
+ nextToken?: string;
581
+
582
+ maxResults?: number;
583
+ }
584
+ export declare namespace ListDatasetsRequest {
585
+
586
+ const filterSensitiveLog: (obj: ListDatasetsRequest) => any;
587
+ }
588
+
589
+ export interface Dataset {
590
+
591
+ datasetId?: string;
592
+
593
+ datasetArn?: string;
594
+
595
+ datasetTitle?: string;
596
+
597
+ kind?: DatasetKind | string;
598
+
599
+ datasetDescription?: string;
600
+
601
+ ownerInfo?: DatasetOwnerInfo;
602
+
603
+ createTime?: number;
604
+
605
+ lastModifiedTime?: number;
606
+
607
+ schemaDefinition?: SchemaUnion;
608
+
609
+ alias?: string;
610
+ }
611
+ export declare namespace Dataset {
612
+
613
+ const filterSensitiveLog: (obj: Dataset) => any;
614
+ }
615
+
616
+ export interface ListDatasetsResponse {
617
+
618
+ datasets?: Dataset[];
619
+
620
+ nextToken?: string;
621
+ }
622
+ export declare namespace ListDatasetsResponse {
623
+
624
+ const filterSensitiveLog: (obj: ListDatasetsResponse) => any;
625
+ }
626
+
627
+ export interface ListDataViewsRequest {
628
+
629
+ datasetId: string | undefined;
630
+
631
+ nextToken?: string;
632
+
633
+ maxResults?: number;
634
+ }
635
+ export declare namespace ListDataViewsRequest {
636
+
637
+ const filterSensitiveLog: (obj: ListDataViewsRequest) => any;
638
+ }
639
+
640
+ export interface DataViewSummary {
641
+
642
+ dataViewId?: string;
643
+
644
+ dataViewArn?: string;
645
+
646
+ datasetId?: string;
647
+
648
+ asOfTimestamp?: number;
649
+
650
+ partitionColumns?: string[];
651
+
652
+ sortColumns?: string[];
653
+
654
+ status?: DataViewStatus | string;
655
+
656
+ errorInfo?: DataViewErrorInfo;
657
+
658
+ destinationTypeProperties?: DataViewDestinationTypeParams;
659
+
660
+ autoUpdate?: boolean;
661
+
662
+ createTime?: number;
663
+
664
+ lastModifiedTime?: number;
665
+ }
666
+ export declare namespace DataViewSummary {
667
+
668
+ const filterSensitiveLog: (obj: DataViewSummary) => any;
669
+ }
670
+ export interface ListDataViewsResponse {
671
+
672
+ nextToken?: string;
673
+
674
+ dataViews?: DataViewSummary[];
675
+ }
676
+ export declare namespace ListDataViewsResponse {
677
+
678
+ const filterSensitiveLog: (obj: ListDataViewsResponse) => any;
679
+ }
680
+
681
+ export interface UpdateChangesetRequest {
682
+
683
+ clientToken?: string;
684
+
685
+ datasetId: string | undefined;
686
+
687
+ changesetId: string | undefined;
688
+
689
+ sourceParams: {
690
+ [key: string]: string;
691
+ } | undefined;
692
+
693
+ formatParams: {
694
+ [key: string]: string;
695
+ } | undefined;
696
+ }
697
+ export declare namespace UpdateChangesetRequest {
698
+
699
+ const filterSensitiveLog: (obj: UpdateChangesetRequest) => any;
700
+ }
701
+
702
+ export interface UpdateChangesetResponse {
703
+
704
+ changesetId?: string;
705
+
706
+ datasetId?: string;
707
+ }
708
+ export declare namespace UpdateChangesetResponse {
709
+
710
+ const filterSensitiveLog: (obj: UpdateChangesetResponse) => any;
711
+ }
712
+
713
+ export interface UpdateDatasetRequest {
714
+
715
+ clientToken?: string;
716
+
717
+ datasetId: string | undefined;
718
+
719
+ datasetTitle: string | undefined;
720
+
721
+ kind: DatasetKind | string | undefined;
722
+
723
+ datasetDescription?: string;
724
+
725
+ alias?: string;
726
+
727
+ schemaDefinition?: SchemaUnion;
728
+ }
729
+ export declare namespace UpdateDatasetRequest {
730
+
731
+ const filterSensitiveLog: (obj: UpdateDatasetRequest) => any;
732
+ }
733
+
734
+ export interface UpdateDatasetResponse {
735
+
736
+ datasetId?: string;
737
+ }
738
+ export declare namespace UpdateDatasetResponse {
739
+
740
+ const filterSensitiveLog: (obj: UpdateDatasetResponse) => any;
741
+ }