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