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