@aws-sdk/client-datazone 3.614.0 → 3.617.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.
- package/README.md +40 -0
- package/dist-cjs/index.js +578 -84
- package/dist-es/DataZone.js +10 -0
- package/dist-es/DataZoneClient.js +5 -5
- package/dist-es/commands/CreateAssetFilterCommand.js +25 -0
- package/dist-es/commands/DeleteAssetFilterCommand.js +24 -0
- package/dist-es/commands/GetAssetFilterCommand.js +25 -0
- package/dist-es/commands/GetListingCommand.js +1 -1
- package/dist-es/commands/ListAssetFiltersCommand.js +25 -0
- package/dist-es/commands/ListEnvironmentBlueprintsCommand.js +1 -1
- package/dist-es/commands/ListEnvironmentProfilesCommand.js +1 -1
- package/dist-es/commands/ListEnvironmentsCommand.js +1 -1
- package/dist-es/commands/ListNotificationsCommand.js +1 -1
- package/dist-es/commands/UpdateAssetFilterCommand.js +25 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +49 -64
- package/dist-es/models/models_1.js +118 -1
- package/dist-es/pagination/ListAssetFiltersPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +270 -1
- package/dist-types/DataZone.d.ts +35 -0
- package/dist-types/DataZoneClient.d.ts +9 -4
- package/dist-types/commands/CreateAssetFilterCommand.d.ts +357 -0
- package/dist-types/commands/DeleteAssetFilterCommand.d.ts +81 -0
- package/dist-types/commands/DeleteListingCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetFilterCommand.d.ts +221 -0
- package/dist-types/commands/GetEnvironmentBlueprintConfigurationCommand.d.ts +10 -0
- package/dist-types/commands/GetListingCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetFiltersCommand.d.ts +98 -0
- package/dist-types/commands/ListEnvironmentBlueprintConfigurationsCommand.d.ts +10 -0
- package/dist-types/commands/ListEnvironmentBlueprintsCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListLineageNodeHistoryCommand.d.ts +1 -1
- package/dist-types/commands/ListNotificationsCommand.d.ts +1 -2
- package/dist-types/commands/PutEnvironmentBlueprintConfigurationCommand.d.ts +20 -0
- package/dist-types/commands/UpdateAssetFilterCommand.d.ts +354 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +725 -829
- package/dist-types/models/models_1.d.ts +1199 -1
- package/dist-types/pagination/ListAssetFiltersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/DataZone.d.ts +85 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +32 -2
- package/dist-types/ts3.4/commands/CreateAssetFilterCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteAssetFilterCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteListingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetAssetFilterCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetListingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetFiltersCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListEnvironmentBlueprintsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEnvironmentProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListLineageNodeHistoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListNotificationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateAssetFilterCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +346 -204
- package/dist-types/ts3.4/models/models_1.d.ts +348 -3
- package/dist-types/ts3.4/pagination/ListAssetFiltersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +17 -17
|
@@ -323,6 +323,299 @@ export interface GetAssetOutput {
|
|
|
323
323
|
readOnlyFormsOutput?: FormOutput[];
|
|
324
324
|
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[];
|
|
325
325
|
}
|
|
326
|
+
export interface ColumnFilterConfiguration {
|
|
327
|
+
includedColumnNames?: string[];
|
|
328
|
+
}
|
|
329
|
+
export interface EqualToExpression {
|
|
330
|
+
columnName: string | undefined;
|
|
331
|
+
value: string | undefined;
|
|
332
|
+
}
|
|
333
|
+
export interface GreaterThanExpression {
|
|
334
|
+
columnName: string | undefined;
|
|
335
|
+
value: string | undefined;
|
|
336
|
+
}
|
|
337
|
+
export interface GreaterThanOrEqualToExpression {
|
|
338
|
+
columnName: string | undefined;
|
|
339
|
+
value: string | undefined;
|
|
340
|
+
}
|
|
341
|
+
export interface InExpression {
|
|
342
|
+
columnName: string | undefined;
|
|
343
|
+
values: string[] | undefined;
|
|
344
|
+
}
|
|
345
|
+
export interface IsNotNullExpression {
|
|
346
|
+
columnName: string | undefined;
|
|
347
|
+
}
|
|
348
|
+
export interface IsNullExpression {
|
|
349
|
+
columnName: string | undefined;
|
|
350
|
+
}
|
|
351
|
+
export interface LessThanExpression {
|
|
352
|
+
columnName: string | undefined;
|
|
353
|
+
value: string | undefined;
|
|
354
|
+
}
|
|
355
|
+
export interface LessThanOrEqualToExpression {
|
|
356
|
+
columnName: string | undefined;
|
|
357
|
+
value: string | undefined;
|
|
358
|
+
}
|
|
359
|
+
export interface LikeExpression {
|
|
360
|
+
columnName: string | undefined;
|
|
361
|
+
value: string | undefined;
|
|
362
|
+
}
|
|
363
|
+
export interface NotEqualToExpression {
|
|
364
|
+
columnName: string | undefined;
|
|
365
|
+
value: string | undefined;
|
|
366
|
+
}
|
|
367
|
+
export interface NotInExpression {
|
|
368
|
+
columnName: string | undefined;
|
|
369
|
+
values: string[] | undefined;
|
|
370
|
+
}
|
|
371
|
+
export interface NotLikeExpression {
|
|
372
|
+
columnName: string | undefined;
|
|
373
|
+
value: string | undefined;
|
|
374
|
+
}
|
|
375
|
+
export type RowFilterExpression =
|
|
376
|
+
| RowFilterExpression.EqualToMember
|
|
377
|
+
| RowFilterExpression.GreaterThanMember
|
|
378
|
+
| RowFilterExpression.GreaterThanOrEqualToMember
|
|
379
|
+
| RowFilterExpression.InMember
|
|
380
|
+
| RowFilterExpression.IsNotNullMember
|
|
381
|
+
| RowFilterExpression.IsNullMember
|
|
382
|
+
| RowFilterExpression.LessThanMember
|
|
383
|
+
| RowFilterExpression.LessThanOrEqualToMember
|
|
384
|
+
| RowFilterExpression.LikeMember
|
|
385
|
+
| RowFilterExpression.NotEqualToMember
|
|
386
|
+
| RowFilterExpression.NotInMember
|
|
387
|
+
| RowFilterExpression.NotLikeMember
|
|
388
|
+
| RowFilterExpression.$UnknownMember;
|
|
389
|
+
export declare namespace RowFilterExpression {
|
|
390
|
+
interface EqualToMember {
|
|
391
|
+
equalTo: EqualToExpression;
|
|
392
|
+
notEqualTo?: never;
|
|
393
|
+
greaterThan?: never;
|
|
394
|
+
lessThan?: never;
|
|
395
|
+
greaterThanOrEqualTo?: never;
|
|
396
|
+
lessThanOrEqualTo?: never;
|
|
397
|
+
isNull?: never;
|
|
398
|
+
isNotNull?: never;
|
|
399
|
+
in?: never;
|
|
400
|
+
notIn?: never;
|
|
401
|
+
like?: never;
|
|
402
|
+
notLike?: never;
|
|
403
|
+
$unknown?: never;
|
|
404
|
+
}
|
|
405
|
+
interface NotEqualToMember {
|
|
406
|
+
equalTo?: never;
|
|
407
|
+
notEqualTo: NotEqualToExpression;
|
|
408
|
+
greaterThan?: never;
|
|
409
|
+
lessThan?: never;
|
|
410
|
+
greaterThanOrEqualTo?: never;
|
|
411
|
+
lessThanOrEqualTo?: never;
|
|
412
|
+
isNull?: never;
|
|
413
|
+
isNotNull?: never;
|
|
414
|
+
in?: never;
|
|
415
|
+
notIn?: never;
|
|
416
|
+
like?: never;
|
|
417
|
+
notLike?: never;
|
|
418
|
+
$unknown?: never;
|
|
419
|
+
}
|
|
420
|
+
interface GreaterThanMember {
|
|
421
|
+
equalTo?: never;
|
|
422
|
+
notEqualTo?: never;
|
|
423
|
+
greaterThan: GreaterThanExpression;
|
|
424
|
+
lessThan?: never;
|
|
425
|
+
greaterThanOrEqualTo?: never;
|
|
426
|
+
lessThanOrEqualTo?: never;
|
|
427
|
+
isNull?: never;
|
|
428
|
+
isNotNull?: never;
|
|
429
|
+
in?: never;
|
|
430
|
+
notIn?: never;
|
|
431
|
+
like?: never;
|
|
432
|
+
notLike?: never;
|
|
433
|
+
$unknown?: never;
|
|
434
|
+
}
|
|
435
|
+
interface LessThanMember {
|
|
436
|
+
equalTo?: never;
|
|
437
|
+
notEqualTo?: never;
|
|
438
|
+
greaterThan?: never;
|
|
439
|
+
lessThan: LessThanExpression;
|
|
440
|
+
greaterThanOrEqualTo?: never;
|
|
441
|
+
lessThanOrEqualTo?: never;
|
|
442
|
+
isNull?: never;
|
|
443
|
+
isNotNull?: never;
|
|
444
|
+
in?: never;
|
|
445
|
+
notIn?: never;
|
|
446
|
+
like?: never;
|
|
447
|
+
notLike?: never;
|
|
448
|
+
$unknown?: never;
|
|
449
|
+
}
|
|
450
|
+
interface GreaterThanOrEqualToMember {
|
|
451
|
+
equalTo?: never;
|
|
452
|
+
notEqualTo?: never;
|
|
453
|
+
greaterThan?: never;
|
|
454
|
+
lessThan?: never;
|
|
455
|
+
greaterThanOrEqualTo: GreaterThanOrEqualToExpression;
|
|
456
|
+
lessThanOrEqualTo?: never;
|
|
457
|
+
isNull?: never;
|
|
458
|
+
isNotNull?: never;
|
|
459
|
+
in?: never;
|
|
460
|
+
notIn?: never;
|
|
461
|
+
like?: never;
|
|
462
|
+
notLike?: never;
|
|
463
|
+
$unknown?: never;
|
|
464
|
+
}
|
|
465
|
+
interface LessThanOrEqualToMember {
|
|
466
|
+
equalTo?: never;
|
|
467
|
+
notEqualTo?: never;
|
|
468
|
+
greaterThan?: never;
|
|
469
|
+
lessThan?: never;
|
|
470
|
+
greaterThanOrEqualTo?: never;
|
|
471
|
+
lessThanOrEqualTo: LessThanOrEqualToExpression;
|
|
472
|
+
isNull?: never;
|
|
473
|
+
isNotNull?: never;
|
|
474
|
+
in?: never;
|
|
475
|
+
notIn?: never;
|
|
476
|
+
like?: never;
|
|
477
|
+
notLike?: never;
|
|
478
|
+
$unknown?: never;
|
|
479
|
+
}
|
|
480
|
+
interface IsNullMember {
|
|
481
|
+
equalTo?: never;
|
|
482
|
+
notEqualTo?: never;
|
|
483
|
+
greaterThan?: never;
|
|
484
|
+
lessThan?: never;
|
|
485
|
+
greaterThanOrEqualTo?: never;
|
|
486
|
+
lessThanOrEqualTo?: never;
|
|
487
|
+
isNull: IsNullExpression;
|
|
488
|
+
isNotNull?: never;
|
|
489
|
+
in?: never;
|
|
490
|
+
notIn?: never;
|
|
491
|
+
like?: never;
|
|
492
|
+
notLike?: never;
|
|
493
|
+
$unknown?: never;
|
|
494
|
+
}
|
|
495
|
+
interface IsNotNullMember {
|
|
496
|
+
equalTo?: never;
|
|
497
|
+
notEqualTo?: never;
|
|
498
|
+
greaterThan?: never;
|
|
499
|
+
lessThan?: never;
|
|
500
|
+
greaterThanOrEqualTo?: never;
|
|
501
|
+
lessThanOrEqualTo?: never;
|
|
502
|
+
isNull?: never;
|
|
503
|
+
isNotNull: IsNotNullExpression;
|
|
504
|
+
in?: never;
|
|
505
|
+
notIn?: never;
|
|
506
|
+
like?: never;
|
|
507
|
+
notLike?: never;
|
|
508
|
+
$unknown?: never;
|
|
509
|
+
}
|
|
510
|
+
interface InMember {
|
|
511
|
+
equalTo?: never;
|
|
512
|
+
notEqualTo?: never;
|
|
513
|
+
greaterThan?: never;
|
|
514
|
+
lessThan?: never;
|
|
515
|
+
greaterThanOrEqualTo?: never;
|
|
516
|
+
lessThanOrEqualTo?: never;
|
|
517
|
+
isNull?: never;
|
|
518
|
+
isNotNull?: never;
|
|
519
|
+
in: InExpression;
|
|
520
|
+
notIn?: never;
|
|
521
|
+
like?: never;
|
|
522
|
+
notLike?: never;
|
|
523
|
+
$unknown?: never;
|
|
524
|
+
}
|
|
525
|
+
interface NotInMember {
|
|
526
|
+
equalTo?: never;
|
|
527
|
+
notEqualTo?: never;
|
|
528
|
+
greaterThan?: never;
|
|
529
|
+
lessThan?: never;
|
|
530
|
+
greaterThanOrEqualTo?: never;
|
|
531
|
+
lessThanOrEqualTo?: never;
|
|
532
|
+
isNull?: never;
|
|
533
|
+
isNotNull?: never;
|
|
534
|
+
in?: never;
|
|
535
|
+
notIn: NotInExpression;
|
|
536
|
+
like?: never;
|
|
537
|
+
notLike?: never;
|
|
538
|
+
$unknown?: never;
|
|
539
|
+
}
|
|
540
|
+
interface LikeMember {
|
|
541
|
+
equalTo?: never;
|
|
542
|
+
notEqualTo?: never;
|
|
543
|
+
greaterThan?: never;
|
|
544
|
+
lessThan?: never;
|
|
545
|
+
greaterThanOrEqualTo?: never;
|
|
546
|
+
lessThanOrEqualTo?: never;
|
|
547
|
+
isNull?: never;
|
|
548
|
+
isNotNull?: never;
|
|
549
|
+
in?: never;
|
|
550
|
+
notIn?: never;
|
|
551
|
+
like: LikeExpression;
|
|
552
|
+
notLike?: never;
|
|
553
|
+
$unknown?: never;
|
|
554
|
+
}
|
|
555
|
+
interface NotLikeMember {
|
|
556
|
+
equalTo?: never;
|
|
557
|
+
notEqualTo?: never;
|
|
558
|
+
greaterThan?: never;
|
|
559
|
+
lessThan?: never;
|
|
560
|
+
greaterThanOrEqualTo?: never;
|
|
561
|
+
lessThanOrEqualTo?: never;
|
|
562
|
+
isNull?: never;
|
|
563
|
+
isNotNull?: never;
|
|
564
|
+
in?: never;
|
|
565
|
+
notIn?: never;
|
|
566
|
+
like?: never;
|
|
567
|
+
notLike: NotLikeExpression;
|
|
568
|
+
$unknown?: never;
|
|
569
|
+
}
|
|
570
|
+
interface $UnknownMember {
|
|
571
|
+
equalTo?: never;
|
|
572
|
+
notEqualTo?: never;
|
|
573
|
+
greaterThan?: never;
|
|
574
|
+
lessThan?: never;
|
|
575
|
+
greaterThanOrEqualTo?: never;
|
|
576
|
+
lessThanOrEqualTo?: never;
|
|
577
|
+
isNull?: never;
|
|
578
|
+
isNotNull?: never;
|
|
579
|
+
in?: never;
|
|
580
|
+
notIn?: never;
|
|
581
|
+
like?: never;
|
|
582
|
+
notLike?: never;
|
|
583
|
+
$unknown: [string, any];
|
|
584
|
+
}
|
|
585
|
+
interface Visitor<T> {
|
|
586
|
+
equalTo: (value: EqualToExpression) => T;
|
|
587
|
+
notEqualTo: (value: NotEqualToExpression) => T;
|
|
588
|
+
greaterThan: (value: GreaterThanExpression) => T;
|
|
589
|
+
lessThan: (value: LessThanExpression) => T;
|
|
590
|
+
greaterThanOrEqualTo: (value: GreaterThanOrEqualToExpression) => T;
|
|
591
|
+
lessThanOrEqualTo: (value: LessThanOrEqualToExpression) => T;
|
|
592
|
+
isNull: (value: IsNullExpression) => T;
|
|
593
|
+
isNotNull: (value: IsNotNullExpression) => T;
|
|
594
|
+
in: (value: InExpression) => T;
|
|
595
|
+
notIn: (value: NotInExpression) => T;
|
|
596
|
+
like: (value: LikeExpression) => T;
|
|
597
|
+
notLike: (value: NotLikeExpression) => T;
|
|
598
|
+
_: (name: string, value: any) => T;
|
|
599
|
+
}
|
|
600
|
+
const visit: <T>(value: RowFilterExpression, visitor: Visitor<T>) => T;
|
|
601
|
+
}
|
|
602
|
+
export declare const FilterStatus: {
|
|
603
|
+
readonly INVALID: "INVALID";
|
|
604
|
+
readonly VALID: "VALID";
|
|
605
|
+
};
|
|
606
|
+
export type FilterStatus = (typeof FilterStatus)[keyof typeof FilterStatus];
|
|
607
|
+
export interface AssetFilterSummary {
|
|
608
|
+
id: string | undefined;
|
|
609
|
+
domainId: string | undefined;
|
|
610
|
+
assetId: string | undefined;
|
|
611
|
+
name: string | undefined;
|
|
612
|
+
description?: string;
|
|
613
|
+
status?: FilterStatus;
|
|
614
|
+
effectiveColumnNames?: string[];
|
|
615
|
+
effectiveRowFilter?: string;
|
|
616
|
+
createdAt?: Date;
|
|
617
|
+
errorMessage?: string;
|
|
618
|
+
}
|
|
326
619
|
export interface AssetItemAdditionalAttributes {
|
|
327
620
|
formsOutput?: FormOutput[];
|
|
328
621
|
readOnlyFormsOutput?: FormOutput[];
|
|
@@ -1733,6 +2026,11 @@ export interface DataSourceRunActivity {
|
|
|
1733
2026
|
createdAt: Date | undefined;
|
|
1734
2027
|
updatedAt: Date | undefined;
|
|
1735
2028
|
}
|
|
2029
|
+
export interface DeleteAssetFilterInput {
|
|
2030
|
+
domainIdentifier: string | undefined;
|
|
2031
|
+
assetIdentifier: string | undefined;
|
|
2032
|
+
identifier: string | undefined;
|
|
2033
|
+
}
|
|
1736
2034
|
export interface DeleteEnvironmentInput {
|
|
1737
2035
|
domainIdentifier: string | undefined;
|
|
1738
2036
|
identifier: string | undefined;
|
|
@@ -1874,6 +2172,28 @@ export interface GetEnvironmentBlueprintConfigurationInput {
|
|
|
1874
2172
|
domainIdentifier: string | undefined;
|
|
1875
2173
|
environmentBlueprintIdentifier: string | undefined;
|
|
1876
2174
|
}
|
|
2175
|
+
export interface LakeFormationConfiguration {
|
|
2176
|
+
locationRegistrationRole?: string;
|
|
2177
|
+
locationRegistrationExcludeS3Locations?: string[];
|
|
2178
|
+
}
|
|
2179
|
+
export type ProvisioningConfiguration =
|
|
2180
|
+
| ProvisioningConfiguration.LakeFormationConfigurationMember
|
|
2181
|
+
| ProvisioningConfiguration.$UnknownMember;
|
|
2182
|
+
export declare namespace ProvisioningConfiguration {
|
|
2183
|
+
interface LakeFormationConfigurationMember {
|
|
2184
|
+
lakeFormationConfiguration: LakeFormationConfiguration;
|
|
2185
|
+
$unknown?: never;
|
|
2186
|
+
}
|
|
2187
|
+
interface $UnknownMember {
|
|
2188
|
+
lakeFormationConfiguration?: never;
|
|
2189
|
+
$unknown: [string, any];
|
|
2190
|
+
}
|
|
2191
|
+
interface Visitor<T> {
|
|
2192
|
+
lakeFormationConfiguration: (value: LakeFormationConfiguration) => T;
|
|
2193
|
+
_: (name: string, value: any) => T;
|
|
2194
|
+
}
|
|
2195
|
+
const visit: <T>(value: ProvisioningConfiguration, visitor: Visitor<T>) => T;
|
|
2196
|
+
}
|
|
1877
2197
|
export interface GetEnvironmentBlueprintConfigurationOutput {
|
|
1878
2198
|
domainId: string | undefined;
|
|
1879
2199
|
environmentBlueprintId: string | undefined;
|
|
@@ -1883,6 +2203,7 @@ export interface GetEnvironmentBlueprintConfigurationOutput {
|
|
|
1883
2203
|
regionalParameters?: Record<string, Record<string, string>>;
|
|
1884
2204
|
createdAt?: Date;
|
|
1885
2205
|
updatedAt?: Date;
|
|
2206
|
+
provisioningConfigurations?: ProvisioningConfiguration[];
|
|
1886
2207
|
}
|
|
1887
2208
|
export interface ListEnvironmentBlueprintConfigurationsInput {
|
|
1888
2209
|
domainIdentifier: string | undefined;
|
|
@@ -1898,6 +2219,7 @@ export interface EnvironmentBlueprintConfigurationItem {
|
|
|
1898
2219
|
regionalParameters?: Record<string, Record<string, string>>;
|
|
1899
2220
|
createdAt?: Date;
|
|
1900
2221
|
updatedAt?: Date;
|
|
2222
|
+
provisioningConfigurations?: ProvisioningConfiguration[];
|
|
1901
2223
|
}
|
|
1902
2224
|
export interface ListEnvironmentBlueprintConfigurationsOutput {
|
|
1903
2225
|
items?: EnvironmentBlueprintConfigurationItem[];
|
|
@@ -1910,6 +2232,7 @@ export interface PutEnvironmentBlueprintConfigurationInput {
|
|
|
1910
2232
|
manageAccessRoleArn?: string;
|
|
1911
2233
|
enabledRegions: string[] | undefined;
|
|
1912
2234
|
regionalParameters?: Record<string, Record<string, string>>;
|
|
2235
|
+
provisioningConfigurations?: ProvisioningConfiguration[];
|
|
1913
2236
|
}
|
|
1914
2237
|
export interface PutEnvironmentBlueprintConfigurationOutput {
|
|
1915
2238
|
domainId: string | undefined;
|
|
@@ -1920,6 +2243,7 @@ export interface PutEnvironmentBlueprintConfigurationOutput {
|
|
|
1920
2243
|
regionalParameters?: Record<string, Record<string, string>>;
|
|
1921
2244
|
createdAt?: Date;
|
|
1922
2245
|
updatedAt?: Date;
|
|
2246
|
+
provisioningConfigurations?: ProvisioningConfiguration[];
|
|
1923
2247
|
}
|
|
1924
2248
|
export interface DeleteFormTypeInput {
|
|
1925
2249
|
domainIdentifier: string | undefined;
|
|
@@ -1949,6 +2273,11 @@ export interface GetFormTypeOutput {
|
|
|
1949
2273
|
description?: string;
|
|
1950
2274
|
imports?: Import[];
|
|
1951
2275
|
}
|
|
2276
|
+
export interface GetAssetFilterInput {
|
|
2277
|
+
domainIdentifier: string | undefined;
|
|
2278
|
+
assetIdentifier: string | undefined;
|
|
2279
|
+
identifier: string | undefined;
|
|
2280
|
+
}
|
|
1952
2281
|
export interface GetEnvironmentInput {
|
|
1953
2282
|
domainIdentifier: string | undefined;
|
|
1954
2283
|
identifier: string | undefined;
|
|
@@ -2270,6 +2599,17 @@ export interface UpdateGlossaryTermOutput {
|
|
|
2270
2599
|
longDescription?: string;
|
|
2271
2600
|
termRelations?: TermRelations;
|
|
2272
2601
|
}
|
|
2602
|
+
export interface ListAssetFiltersInput {
|
|
2603
|
+
domainIdentifier: string | undefined;
|
|
2604
|
+
assetIdentifier: string | undefined;
|
|
2605
|
+
status?: FilterStatus;
|
|
2606
|
+
nextToken?: string;
|
|
2607
|
+
maxResults?: number;
|
|
2608
|
+
}
|
|
2609
|
+
export interface ListAssetFiltersOutput {
|
|
2610
|
+
items: AssetFilterSummary[] | undefined;
|
|
2611
|
+
nextToken?: string;
|
|
2612
|
+
}
|
|
2273
2613
|
export interface ListAssetRevisionsInput {
|
|
2274
2614
|
domainIdentifier: string | undefined;
|
|
2275
2615
|
identifier: string | undefined;
|
|
@@ -2309,185 +2649,6 @@ export interface ListEnvironmentActionsOutput {
|
|
|
2309
2649
|
items?: EnvironmentActionSummary[];
|
|
2310
2650
|
nextToken?: string;
|
|
2311
2651
|
}
|
|
2312
|
-
export interface ListEnvironmentBlueprintsInput {
|
|
2313
|
-
domainIdentifier: string | undefined;
|
|
2314
|
-
maxResults?: number;
|
|
2315
|
-
nextToken?: string;
|
|
2316
|
-
name?: string;
|
|
2317
|
-
managed?: boolean;
|
|
2318
|
-
}
|
|
2319
|
-
export interface EnvironmentBlueprintSummary {
|
|
2320
|
-
id: string | undefined;
|
|
2321
|
-
name: string | undefined;
|
|
2322
|
-
description?: string;
|
|
2323
|
-
provider: string | undefined;
|
|
2324
|
-
provisioningProperties: ProvisioningProperties | undefined;
|
|
2325
|
-
createdAt?: Date;
|
|
2326
|
-
updatedAt?: Date;
|
|
2327
|
-
}
|
|
2328
|
-
export interface ListEnvironmentBlueprintsOutput {
|
|
2329
|
-
items: EnvironmentBlueprintSummary[] | undefined;
|
|
2330
|
-
nextToken?: string;
|
|
2331
|
-
}
|
|
2332
|
-
export interface ListEnvironmentProfilesInput {
|
|
2333
|
-
domainIdentifier: string | undefined;
|
|
2334
|
-
awsAccountId?: string;
|
|
2335
|
-
awsAccountRegion?: string;
|
|
2336
|
-
environmentBlueprintIdentifier?: string;
|
|
2337
|
-
projectIdentifier?: string;
|
|
2338
|
-
name?: string;
|
|
2339
|
-
nextToken?: string;
|
|
2340
|
-
maxResults?: number;
|
|
2341
|
-
}
|
|
2342
|
-
export interface EnvironmentProfileSummary {
|
|
2343
|
-
id: string | undefined;
|
|
2344
|
-
domainId: string | undefined;
|
|
2345
|
-
awsAccountId?: string;
|
|
2346
|
-
awsAccountRegion?: string;
|
|
2347
|
-
createdBy: string | undefined;
|
|
2348
|
-
createdAt?: Date;
|
|
2349
|
-
updatedAt?: Date;
|
|
2350
|
-
name: string | undefined;
|
|
2351
|
-
description?: string;
|
|
2352
|
-
environmentBlueprintId: string | undefined;
|
|
2353
|
-
projectId?: string;
|
|
2354
|
-
}
|
|
2355
|
-
export interface ListEnvironmentProfilesOutput {
|
|
2356
|
-
items: EnvironmentProfileSummary[] | undefined;
|
|
2357
|
-
nextToken?: string;
|
|
2358
|
-
}
|
|
2359
|
-
export interface ListEnvironmentsInput {
|
|
2360
|
-
domainIdentifier: string | undefined;
|
|
2361
|
-
awsAccountId?: string;
|
|
2362
|
-
status?: EnvironmentStatus;
|
|
2363
|
-
awsAccountRegion?: string;
|
|
2364
|
-
projectIdentifier: string | undefined;
|
|
2365
|
-
environmentProfileIdentifier?: string;
|
|
2366
|
-
environmentBlueprintIdentifier?: string;
|
|
2367
|
-
provider?: string;
|
|
2368
|
-
name?: string;
|
|
2369
|
-
maxResults?: number;
|
|
2370
|
-
nextToken?: string;
|
|
2371
|
-
}
|
|
2372
|
-
export interface EnvironmentSummary {
|
|
2373
|
-
projectId: string | undefined;
|
|
2374
|
-
id?: string;
|
|
2375
|
-
domainId: string | undefined;
|
|
2376
|
-
createdBy: string | undefined;
|
|
2377
|
-
createdAt?: Date;
|
|
2378
|
-
updatedAt?: Date;
|
|
2379
|
-
name: string | undefined;
|
|
2380
|
-
description?: string;
|
|
2381
|
-
environmentProfileId?: string;
|
|
2382
|
-
awsAccountId?: string;
|
|
2383
|
-
awsAccountRegion?: string;
|
|
2384
|
-
provider: string | undefined;
|
|
2385
|
-
status?: EnvironmentStatus;
|
|
2386
|
-
}
|
|
2387
|
-
export interface ListEnvironmentsOutput {
|
|
2388
|
-
items: EnvironmentSummary[] | undefined;
|
|
2389
|
-
nextToken?: string;
|
|
2390
|
-
}
|
|
2391
|
-
export interface DeleteListingInput {
|
|
2392
|
-
domainIdentifier: string | undefined;
|
|
2393
|
-
identifier: string | undefined;
|
|
2394
|
-
}
|
|
2395
|
-
export interface DeleteListingOutput {}
|
|
2396
|
-
export interface GetListingInput {
|
|
2397
|
-
domainIdentifier: string | undefined;
|
|
2398
|
-
identifier: string | undefined;
|
|
2399
|
-
listingRevision?: string;
|
|
2400
|
-
}
|
|
2401
|
-
export type ListingItem =
|
|
2402
|
-
| ListingItem.AssetListingMember
|
|
2403
|
-
| ListingItem.$UnknownMember;
|
|
2404
|
-
export declare namespace ListingItem {
|
|
2405
|
-
interface AssetListingMember {
|
|
2406
|
-
assetListing: AssetListing;
|
|
2407
|
-
$unknown?: never;
|
|
2408
|
-
}
|
|
2409
|
-
interface $UnknownMember {
|
|
2410
|
-
assetListing?: never;
|
|
2411
|
-
$unknown: [string, any];
|
|
2412
|
-
}
|
|
2413
|
-
interface Visitor<T> {
|
|
2414
|
-
assetListing: (value: AssetListing) => T;
|
|
2415
|
-
_: (name: string, value: any) => T;
|
|
2416
|
-
}
|
|
2417
|
-
const visit: <T>(value: ListingItem, visitor: Visitor<T>) => T;
|
|
2418
|
-
}
|
|
2419
|
-
export interface GetListingOutput {
|
|
2420
|
-
domainId: string | undefined;
|
|
2421
|
-
id: string | undefined;
|
|
2422
|
-
listingRevision: string | undefined;
|
|
2423
|
-
createdAt?: Date;
|
|
2424
|
-
updatedAt?: Date;
|
|
2425
|
-
createdBy?: string;
|
|
2426
|
-
updatedBy?: string;
|
|
2427
|
-
item?: ListingItem;
|
|
2428
|
-
name?: string;
|
|
2429
|
-
description?: string;
|
|
2430
|
-
status?: ListingStatus;
|
|
2431
|
-
}
|
|
2432
|
-
export declare const EdgeDirection: {
|
|
2433
|
-
readonly DOWNSTREAM: "DOWNSTREAM";
|
|
2434
|
-
readonly UPSTREAM: "UPSTREAM";
|
|
2435
|
-
};
|
|
2436
|
-
export type EdgeDirection = (typeof EdgeDirection)[keyof typeof EdgeDirection];
|
|
2437
|
-
export declare const SortOrder: {
|
|
2438
|
-
readonly ASCENDING: "ASCENDING";
|
|
2439
|
-
readonly DESCENDING: "DESCENDING";
|
|
2440
|
-
};
|
|
2441
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
2442
|
-
export interface ListLineageNodeHistoryInput {
|
|
2443
|
-
domainIdentifier: string | undefined;
|
|
2444
|
-
maxResults?: number;
|
|
2445
|
-
nextToken?: string;
|
|
2446
|
-
identifier: string | undefined;
|
|
2447
|
-
direction?: EdgeDirection;
|
|
2448
|
-
eventTimestampGTE?: Date;
|
|
2449
|
-
eventTimestampLTE?: Date;
|
|
2450
|
-
sortOrder?: SortOrder;
|
|
2451
|
-
}
|
|
2452
|
-
export interface LineageNodeSummary {
|
|
2453
|
-
domainId: string | undefined;
|
|
2454
|
-
name?: string;
|
|
2455
|
-
description?: string;
|
|
2456
|
-
createdAt?: Date;
|
|
2457
|
-
createdBy?: string;
|
|
2458
|
-
updatedAt?: Date;
|
|
2459
|
-
updatedBy?: string;
|
|
2460
|
-
id: string | undefined;
|
|
2461
|
-
typeName: string | undefined;
|
|
2462
|
-
typeRevision?: string;
|
|
2463
|
-
sourceIdentifier?: string;
|
|
2464
|
-
eventTimestamp?: Date;
|
|
2465
|
-
}
|
|
2466
|
-
export interface ListLineageNodeHistoryOutput {
|
|
2467
|
-
nodes?: LineageNodeSummary[];
|
|
2468
|
-
nextToken?: string;
|
|
2469
|
-
}
|
|
2470
|
-
export declare const TaskStatus: {
|
|
2471
|
-
readonly ACTIVE: "ACTIVE";
|
|
2472
|
-
readonly INACTIVE: "INACTIVE";
|
|
2473
|
-
};
|
|
2474
|
-
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
2475
|
-
export declare const NotificationType: {
|
|
2476
|
-
readonly EVENT: "EVENT";
|
|
2477
|
-
readonly TASK: "TASK";
|
|
2478
|
-
};
|
|
2479
|
-
export type NotificationType =
|
|
2480
|
-
(typeof NotificationType)[keyof typeof NotificationType];
|
|
2481
|
-
export interface ListNotificationsInput {
|
|
2482
|
-
domainIdentifier: string | undefined;
|
|
2483
|
-
type: NotificationType | undefined;
|
|
2484
|
-
afterTimestamp?: Date;
|
|
2485
|
-
beforeTimestamp?: Date;
|
|
2486
|
-
subjects?: string[];
|
|
2487
|
-
taskStatus?: TaskStatus;
|
|
2488
|
-
maxResults?: number;
|
|
2489
|
-
nextToken?: string;
|
|
2490
|
-
}
|
|
2491
2652
|
export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
|
|
2492
2653
|
export declare const AcceptPredictionsInputFilterSensitiveLog: (
|
|
2493
2654
|
obj: AcceptPredictionsInput
|
|
@@ -2533,6 +2694,9 @@ export declare const CreateAssetRevisionOutputFilterSensitiveLog: (
|
|
|
2533
2694
|
export declare const GetAssetOutputFilterSensitiveLog: (
|
|
2534
2695
|
obj: GetAssetOutput
|
|
2535
2696
|
) => any;
|
|
2697
|
+
export declare const AssetFilterSummaryFilterSensitiveLog: (
|
|
2698
|
+
obj: AssetFilterSummary
|
|
2699
|
+
) => any;
|
|
2536
2700
|
export declare const AssetItemAdditionalAttributesFilterSensitiveLog: (
|
|
2537
2701
|
obj: AssetItemAdditionalAttributes
|
|
2538
2702
|
) => any;
|
|
@@ -2714,31 +2878,9 @@ export declare const UpdateGlossaryTermInputFilterSensitiveLog: (
|
|
|
2714
2878
|
export declare const UpdateGlossaryTermOutputFilterSensitiveLog: (
|
|
2715
2879
|
obj: UpdateGlossaryTermOutput
|
|
2716
2880
|
) => any;
|
|
2881
|
+
export declare const ListAssetFiltersOutputFilterSensitiveLog: (
|
|
2882
|
+
obj: ListAssetFiltersOutput
|
|
2883
|
+
) => any;
|
|
2717
2884
|
export declare const ListDataSourceRunActivitiesOutputFilterSensitiveLog: (
|
|
2718
2885
|
obj: ListDataSourceRunActivitiesOutput
|
|
2719
2886
|
) => any;
|
|
2720
|
-
export declare const EnvironmentBlueprintSummaryFilterSensitiveLog: (
|
|
2721
|
-
obj: EnvironmentBlueprintSummary
|
|
2722
|
-
) => any;
|
|
2723
|
-
export declare const ListEnvironmentBlueprintsOutputFilterSensitiveLog: (
|
|
2724
|
-
obj: ListEnvironmentBlueprintsOutput
|
|
2725
|
-
) => any;
|
|
2726
|
-
export declare const ListEnvironmentProfilesInputFilterSensitiveLog: (
|
|
2727
|
-
obj: ListEnvironmentProfilesInput
|
|
2728
|
-
) => any;
|
|
2729
|
-
export declare const EnvironmentProfileSummaryFilterSensitiveLog: (
|
|
2730
|
-
obj: EnvironmentProfileSummary
|
|
2731
|
-
) => any;
|
|
2732
|
-
export declare const ListEnvironmentProfilesOutputFilterSensitiveLog: (
|
|
2733
|
-
obj: ListEnvironmentProfilesOutput
|
|
2734
|
-
) => any;
|
|
2735
|
-
export declare const EnvironmentSummaryFilterSensitiveLog: (
|
|
2736
|
-
obj: EnvironmentSummary
|
|
2737
|
-
) => any;
|
|
2738
|
-
export declare const ListEnvironmentsOutputFilterSensitiveLog: (
|
|
2739
|
-
obj: ListEnvironmentsOutput
|
|
2740
|
-
) => any;
|
|
2741
|
-
export declare const ListingItemFilterSensitiveLog: (obj: ListingItem) => any;
|
|
2742
|
-
export declare const GetListingOutputFilterSensitiveLog: (
|
|
2743
|
-
obj: GetListingOutput
|
|
2744
|
-
) => any;
|