@aws-sdk/client-datazone 3.600.0 → 3.609.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 (39) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/index.js +298 -41
  3. package/dist-es/DataZone.js +6 -0
  4. package/dist-es/commands/GetLineageNodeCommand.js +25 -0
  5. package/dist-es/commands/ListLineageNodeHistoryCommand.js +24 -0
  6. package/dist-es/commands/ListNotificationsCommand.js +1 -1
  7. package/dist-es/commands/PostLineageEventCommand.js +25 -0
  8. package/dist-es/commands/index.js +3 -0
  9. package/dist-es/models/models_0.js +12 -29
  10. package/dist-es/models/models_1.js +41 -1
  11. package/dist-es/pagination/ListLineageNodeHistoryPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/protocols/Aws_restJson1.js +169 -5
  14. package/dist-types/DataZone.d.ts +21 -0
  15. package/dist-types/DataZoneClient.d.ts +5 -2
  16. package/dist-types/commands/GetLineageNodeCommand.d.ts +111 -0
  17. package/dist-types/commands/ListLineageNodeHistoryCommand.d.ts +101 -0
  18. package/dist-types/commands/ListNotificationsCommand.d.ts +2 -1
  19. package/dist-types/commands/PostLineageEventCommand.d.ts +90 -0
  20. package/dist-types/commands/SearchTypesCommand.d.ts +18 -1
  21. package/dist-types/commands/index.d.ts +3 -0
  22. package/dist-types/models/models_0.d.ts +256 -145
  23. package/dist-types/models/models_1.d.ts +271 -2
  24. package/dist-types/pagination/ListLineageNodeHistoryPaginator.d.ts +7 -0
  25. package/dist-types/pagination/index.d.ts +1 -0
  26. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  27. package/dist-types/ts3.4/DataZone.d.ts +51 -0
  28. package/dist-types/ts3.4/DataZoneClient.d.ts +18 -0
  29. package/dist-types/ts3.4/commands/GetLineageNodeCommand.d.ts +36 -0
  30. package/dist-types/ts3.4/commands/ListLineageNodeHistoryCommand.d.ts +40 -0
  31. package/dist-types/ts3.4/commands/ListNotificationsCommand.d.ts +2 -4
  32. package/dist-types/ts3.4/commands/PostLineageEventCommand.d.ts +49 -0
  33. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +67 -57
  35. package/dist-types/ts3.4/models/models_1.d.ts +90 -1
  36. package/dist-types/ts3.4/pagination/ListLineageNodeHistoryPaginator.d.ts +11 -0
  37. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  38. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  39. package/package.json +35 -35
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DataZoneClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DataZoneClient";
8
+ import {
9
+ ListLineageNodeHistoryInput,
10
+ ListLineageNodeHistoryOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListLineageNodeHistoryCommandInput
15
+ extends ListLineageNodeHistoryInput {}
16
+ export interface ListLineageNodeHistoryCommandOutput
17
+ extends ListLineageNodeHistoryOutput,
18
+ __MetadataBearer {}
19
+ declare const ListLineageNodeHistoryCommand_base: {
20
+ new (
21
+ input: ListLineageNodeHistoryCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListLineageNodeHistoryCommandInput,
24
+ ListLineageNodeHistoryCommandOutput,
25
+ DataZoneClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListLineageNodeHistoryCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListLineageNodeHistoryCommandInput,
33
+ ListLineageNodeHistoryCommandOutput,
34
+ DataZoneClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListLineageNodeHistoryCommand extends ListLineageNodeHistoryCommand_base {}
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../DataZoneClient";
8
- import {
9
- ListNotificationsInput,
10
- ListNotificationsOutput,
11
- } from "../models/models_0";
8
+ import { ListNotificationsInput } from "../models/models_0";
9
+ import { ListNotificationsOutput } from "../models/models_1";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface ListNotificationsCommandInput extends ListNotificationsInput {}
@@ -0,0 +1,49 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import {
3
+ BlobPayloadInputTypes,
4
+ MetadataBearer as __MetadataBearer,
5
+ } from "@smithy/types";
6
+ import {
7
+ DataZoneClientResolvedConfig,
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ } from "../DataZoneClient";
11
+ import {
12
+ PostLineageEventInput,
13
+ PostLineageEventOutput,
14
+ } from "../models/models_1";
15
+ export { __MetadataBearer };
16
+ export { $Command };
17
+ export type PostLineageEventCommandInputType = Pick<
18
+ PostLineageEventInput,
19
+ Exclude<keyof PostLineageEventInput, "event">
20
+ > & {
21
+ event: BlobPayloadInputTypes;
22
+ };
23
+ export interface PostLineageEventCommandInput
24
+ extends PostLineageEventCommandInputType {}
25
+ export interface PostLineageEventCommandOutput
26
+ extends PostLineageEventOutput,
27
+ __MetadataBearer {}
28
+ declare const PostLineageEventCommand_base: {
29
+ new (
30
+ input: PostLineageEventCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ PostLineageEventCommandInput,
33
+ PostLineageEventCommandOutput,
34
+ DataZoneClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ new (
39
+ __0_0: PostLineageEventCommandInput
40
+ ): import("@smithy/smithy-client").CommandImpl<
41
+ PostLineageEventCommandInput,
42
+ PostLineageEventCommandOutput,
43
+ DataZoneClientResolvedConfig,
44
+ ServiceInputTypes,
45
+ ServiceOutputTypes
46
+ >;
47
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
48
+ };
49
+ export declare class PostLineageEventCommand extends PostLineageEventCommand_base {}
@@ -56,6 +56,7 @@ export * from "./GetGlossaryCommand";
56
56
  export * from "./GetGlossaryTermCommand";
57
57
  export * from "./GetGroupProfileCommand";
58
58
  export * from "./GetIamPortalLoginUrlCommand";
59
+ export * from "./GetLineageNodeCommand";
59
60
  export * from "./GetListingCommand";
60
61
  export * from "./GetMetadataGenerationRunCommand";
61
62
  export * from "./GetProjectCommand";
@@ -75,6 +76,7 @@ export * from "./ListEnvironmentBlueprintConfigurationsCommand";
75
76
  export * from "./ListEnvironmentBlueprintsCommand";
76
77
  export * from "./ListEnvironmentProfilesCommand";
77
78
  export * from "./ListEnvironmentsCommand";
79
+ export * from "./ListLineageNodeHistoryCommand";
78
80
  export * from "./ListMetadataGenerationRunsCommand";
79
81
  export * from "./ListNotificationsCommand";
80
82
  export * from "./ListProjectMembershipsCommand";
@@ -85,6 +87,7 @@ export * from "./ListSubscriptionTargetsCommand";
85
87
  export * from "./ListSubscriptionsCommand";
86
88
  export * from "./ListTagsForResourceCommand";
87
89
  export * from "./ListTimeSeriesDataPointsCommand";
90
+ export * from "./PostLineageEventCommand";
88
91
  export * from "./PostTimeSeriesDataPointsCommand";
89
92
  export * from "./PutEnvironmentBlueprintConfigurationCommand";
90
93
  export * from "./RejectPredictionsCommand";
@@ -2040,6 +2040,32 @@ export interface GetIamPortalLoginUrlOutput {
2040
2040
  authCodeUrl?: string;
2041
2041
  userProfileId: string | undefined;
2042
2042
  }
2043
+ export interface GetLineageNodeInput {
2044
+ domainIdentifier: string | undefined;
2045
+ identifier: string | undefined;
2046
+ eventTimestamp?: Date;
2047
+ }
2048
+ export interface LineageNodeReference {
2049
+ id?: string;
2050
+ eventTimestamp?: Date;
2051
+ }
2052
+ export interface GetLineageNodeOutput {
2053
+ domainId: string | undefined;
2054
+ name?: string;
2055
+ description?: string;
2056
+ createdAt?: Date;
2057
+ createdBy?: string;
2058
+ updatedAt?: Date;
2059
+ updatedBy?: string;
2060
+ id: string | undefined;
2061
+ typeName: string | undefined;
2062
+ typeRevision?: string;
2063
+ sourceIdentifier?: string;
2064
+ eventTimestamp?: Date;
2065
+ formsOutput?: FormOutput[];
2066
+ upstreamNodes?: LineageNodeReference[];
2067
+ downstreamNodes?: LineageNodeReference[];
2068
+ }
2043
2069
  export interface GetProjectInput {
2044
2070
  domainIdentifier: string | undefined;
2045
2071
  identifier: string | undefined;
@@ -2403,6 +2429,44 @@ export interface GetListingOutput {
2403
2429
  description?: string;
2404
2430
  status?: ListingStatus;
2405
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
+ }
2406
2470
  export declare const TaskStatus: {
2407
2471
  readonly ACTIVE: "ACTIVE";
2408
2472
  readonly INACTIVE: "INACTIVE";
@@ -2424,57 +2488,6 @@ export interface ListNotificationsInput {
2424
2488
  maxResults?: number;
2425
2489
  nextToken?: string;
2426
2490
  }
2427
- export declare const NotificationResourceType: {
2428
- readonly PROJECT: "PROJECT";
2429
- };
2430
- export type NotificationResourceType =
2431
- (typeof NotificationResourceType)[keyof typeof NotificationResourceType];
2432
- export interface NotificationResource {
2433
- type: NotificationResourceType | undefined;
2434
- id: string | undefined;
2435
- name?: string;
2436
- }
2437
- export declare const NotificationRole: {
2438
- readonly DOMAIN_OWNER: "DOMAIN_OWNER";
2439
- readonly PROJECT_CONTRIBUTOR: "PROJECT_CONTRIBUTOR";
2440
- readonly PROJECT_OWNER: "PROJECT_OWNER";
2441
- readonly PROJECT_SUBSCRIBER: "PROJECT_SUBSCRIBER";
2442
- readonly PROJECT_VIEWER: "PROJECT_VIEWER";
2443
- };
2444
- export type NotificationRole =
2445
- (typeof NotificationRole)[keyof typeof NotificationRole];
2446
- export interface Topic {
2447
- subject: string | undefined;
2448
- resource: NotificationResource | undefined;
2449
- role: NotificationRole | undefined;
2450
- }
2451
- export interface NotificationOutput {
2452
- identifier: string | undefined;
2453
- domainIdentifier: string | undefined;
2454
- type: NotificationType | undefined;
2455
- topic: Topic | undefined;
2456
- title: string | undefined;
2457
- message: string | undefined;
2458
- status?: TaskStatus;
2459
- actionLink: string | undefined;
2460
- creationTimestamp: Date | undefined;
2461
- lastUpdatedTimestamp: Date | undefined;
2462
- metadata?: Record<string, string>;
2463
- }
2464
- export interface ListNotificationsOutput {
2465
- notifications?: NotificationOutput[];
2466
- nextToken?: string;
2467
- }
2468
- export declare const SortFieldProject: {
2469
- readonly NAME: "NAME";
2470
- };
2471
- export type SortFieldProject =
2472
- (typeof SortFieldProject)[keyof typeof SortFieldProject];
2473
- export declare const SortOrder: {
2474
- readonly ASCENDING: "ASCENDING";
2475
- readonly DESCENDING: "DESCENDING";
2476
- };
2477
- export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
2478
2491
  export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
2479
2492
  export declare const AcceptPredictionsInputFilterSensitiveLog: (
2480
2493
  obj: AcceptPredictionsInput
@@ -2665,6 +2678,9 @@ export declare const GetEnvironmentProfileOutputFilterSensitiveLog: (
2665
2678
  export declare const GetGroupProfileOutputFilterSensitiveLog: (
2666
2679
  obj: GetGroupProfileOutput
2667
2680
  ) => any;
2681
+ export declare const GetLineageNodeOutputFilterSensitiveLog: (
2682
+ obj: GetLineageNodeOutput
2683
+ ) => any;
2668
2684
  export declare const GetProjectOutputFilterSensitiveLog: (
2669
2685
  obj: GetProjectOutput
2670
2686
  ) => any;
@@ -2726,9 +2742,3 @@ export declare const ListingItemFilterSensitiveLog: (obj: ListingItem) => any;
2726
2742
  export declare const GetListingOutputFilterSensitiveLog: (
2727
2743
  obj: GetListingOutput
2728
2744
  ) => any;
2729
- export declare const NotificationOutputFilterSensitiveLog: (
2730
- obj: NotificationOutput
2731
- ) => any;
2732
- export declare const ListNotificationsOutputFilterSensitiveLog: (
2733
- obj: ListNotificationsOutput
2734
- ) => any;
@@ -11,6 +11,7 @@ import {
11
11
  EnvironmentParameter,
12
12
  EnvironmentStatus,
13
13
  FailureCause,
14
+ FormEntryOutput,
14
15
  FormTypeStatus,
15
16
  GlossaryStatus,
16
17
  GlossaryTermStatus,
@@ -18,11 +19,11 @@ import {
18
19
  GroupProfileStatus,
19
20
  Import,
20
21
  Model,
22
+ NotificationType,
21
23
  ProjectDeletionError,
22
24
  ProjectStatus,
23
25
  ProvisioningProperties,
24
26
  Resource,
25
- SortFieldProject,
26
27
  SortOrder,
27
28
  SubscribedAsset,
28
29
  SubscribedListing,
@@ -32,6 +33,7 @@ import {
32
33
  SubscriptionRequestStatus,
33
34
  SubscriptionStatus,
34
35
  SubscriptionTargetForm,
36
+ TaskStatus,
35
37
  TermRelations,
36
38
  TimeSeriesDataPointFormOutput,
37
39
  TimeSeriesDataPointSummaryFormOutput,
@@ -41,6 +43,52 @@ import {
41
43
  UserProfileStatus,
42
44
  UserProfileType,
43
45
  } from "./models_0";
46
+ export declare const NotificationResourceType: {
47
+ readonly PROJECT: "PROJECT";
48
+ };
49
+ export type NotificationResourceType =
50
+ (typeof NotificationResourceType)[keyof typeof NotificationResourceType];
51
+ export interface NotificationResource {
52
+ type: NotificationResourceType | undefined;
53
+ id: string | undefined;
54
+ name?: string;
55
+ }
56
+ export declare const NotificationRole: {
57
+ readonly DOMAIN_OWNER: "DOMAIN_OWNER";
58
+ readonly PROJECT_CONTRIBUTOR: "PROJECT_CONTRIBUTOR";
59
+ readonly PROJECT_OWNER: "PROJECT_OWNER";
60
+ readonly PROJECT_SUBSCRIBER: "PROJECT_SUBSCRIBER";
61
+ readonly PROJECT_VIEWER: "PROJECT_VIEWER";
62
+ };
63
+ export type NotificationRole =
64
+ (typeof NotificationRole)[keyof typeof NotificationRole];
65
+ export interface Topic {
66
+ subject: string | undefined;
67
+ resource: NotificationResource | undefined;
68
+ role: NotificationRole | undefined;
69
+ }
70
+ export interface NotificationOutput {
71
+ identifier: string | undefined;
72
+ domainIdentifier: string | undefined;
73
+ type: NotificationType | undefined;
74
+ topic: Topic | undefined;
75
+ title: string | undefined;
76
+ message: string | undefined;
77
+ status?: TaskStatus;
78
+ actionLink: string | undefined;
79
+ creationTimestamp: Date | undefined;
80
+ lastUpdatedTimestamp: Date | undefined;
81
+ metadata?: Record<string, string>;
82
+ }
83
+ export interface ListNotificationsOutput {
84
+ notifications?: NotificationOutput[];
85
+ nextToken?: string;
86
+ }
87
+ export declare const SortFieldProject: {
88
+ readonly NAME: "NAME";
89
+ };
90
+ export type SortFieldProject =
91
+ (typeof SortFieldProject)[keyof typeof SortFieldProject];
44
92
  export interface ListProjectMembershipsInput {
45
93
  domainIdentifier: string | undefined;
46
94
  projectIdentifier: string | undefined;
@@ -328,6 +376,12 @@ export interface StartMetadataGenerationRunOutput {
328
376
  createdBy?: string;
329
377
  owningProjectId?: string;
330
378
  }
379
+ export interface PostLineageEventInput {
380
+ domainIdentifier: string | undefined;
381
+ event: Uint8Array | undefined;
382
+ clientToken?: string;
383
+ }
384
+ export interface PostLineageEventOutput {}
331
385
  export interface TimeSeriesDataPointFormInput {
332
386
  formName: string | undefined;
333
387
  typeIdentifier: string | undefined;
@@ -567,6 +621,7 @@ export interface SearchListingsOutput {
567
621
  export declare const TypesSearchScope: {
568
622
  readonly ASSET_TYPE: "ASSET_TYPE";
569
623
  readonly FORM_TYPE: "FORM_TYPE";
624
+ readonly LINEAGE_NODE_TYPE: "LINEAGE_NODE_TYPE";
570
625
  };
571
626
  export type TypesSearchScope =
572
627
  (typeof TypesSearchScope)[keyof typeof TypesSearchScope];
@@ -584,29 +639,51 @@ export interface FormTypeData {
584
639
  description?: string;
585
640
  imports?: Import[];
586
641
  }
642
+ export interface LineageNodeTypeItem {
643
+ domainId: string | undefined;
644
+ name?: string;
645
+ description?: string;
646
+ createdAt?: Date;
647
+ createdBy?: string;
648
+ updatedAt?: Date;
649
+ updatedBy?: string;
650
+ revision: string | undefined;
651
+ formsOutput: Record<string, FormEntryOutput> | undefined;
652
+ }
587
653
  export type SearchTypesResultItem =
588
654
  | SearchTypesResultItem.AssetTypeItemMember
589
655
  | SearchTypesResultItem.FormTypeItemMember
656
+ | SearchTypesResultItem.LineageNodeTypeItemMember
590
657
  | SearchTypesResultItem.$UnknownMember;
591
658
  export declare namespace SearchTypesResultItem {
592
659
  interface AssetTypeItemMember {
593
660
  assetTypeItem: AssetTypeItem;
594
661
  formTypeItem?: never;
662
+ lineageNodeTypeItem?: never;
595
663
  $unknown?: never;
596
664
  }
597
665
  interface FormTypeItemMember {
598
666
  assetTypeItem?: never;
599
667
  formTypeItem: FormTypeData;
668
+ lineageNodeTypeItem?: never;
669
+ $unknown?: never;
670
+ }
671
+ interface LineageNodeTypeItemMember {
672
+ assetTypeItem?: never;
673
+ formTypeItem?: never;
674
+ lineageNodeTypeItem: LineageNodeTypeItem;
600
675
  $unknown?: never;
601
676
  }
602
677
  interface $UnknownMember {
603
678
  assetTypeItem?: never;
604
679
  formTypeItem?: never;
680
+ lineageNodeTypeItem?: never;
605
681
  $unknown: [string, any];
606
682
  }
607
683
  interface Visitor<T> {
608
684
  assetTypeItem: (value: AssetTypeItem) => T;
609
685
  formTypeItem: (value: FormTypeData) => T;
686
+ lineageNodeTypeItem: (value: LineageNodeTypeItem) => T;
610
687
  _: (name: string, value: any) => T;
611
688
  }
612
689
  const visit: <T>(value: SearchTypesResultItem, visitor: Visitor<T>) => T;
@@ -903,6 +980,12 @@ export interface SearchTypesInput {
903
980
  sort?: SearchSort;
904
981
  managed: boolean | undefined;
905
982
  }
983
+ export declare const NotificationOutputFilterSensitiveLog: (
984
+ obj: NotificationOutput
985
+ ) => any;
986
+ export declare const ListNotificationsOutputFilterSensitiveLog: (
987
+ obj: ListNotificationsOutput
988
+ ) => any;
906
989
  export declare const ListProjectsInputFilterSensitiveLog: (
907
990
  obj: ListProjectsInput
908
991
  ) => any;
@@ -930,6 +1013,9 @@ export declare const SubscriptionTargetSummaryFilterSensitiveLog: (
930
1013
  export declare const ListSubscriptionTargetsOutputFilterSensitiveLog: (
931
1014
  obj: ListSubscriptionTargetsOutput
932
1015
  ) => any;
1016
+ export declare const PostLineageEventInputFilterSensitiveLog: (
1017
+ obj: PostLineageEventInput
1018
+ ) => any;
933
1019
  export declare const RejectSubscriptionRequestInputFilterSensitiveLog: (
934
1020
  obj: RejectSubscriptionRequestInput
935
1021
  ) => any;
@@ -963,6 +1049,9 @@ export declare const SearchListingsOutputFilterSensitiveLog: (
963
1049
  obj: SearchListingsOutput
964
1050
  ) => any;
965
1051
  export declare const FormTypeDataFilterSensitiveLog: (obj: FormTypeData) => any;
1052
+ export declare const LineageNodeTypeItemFilterSensitiveLog: (
1053
+ obj: LineageNodeTypeItem
1054
+ ) => any;
966
1055
  export declare const SearchTypesResultItemFilterSensitiveLog: (
967
1056
  obj: SearchTypesResultItem
968
1057
  ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListLineageNodeHistoryCommandInput,
4
+ ListLineageNodeHistoryCommandOutput,
5
+ } from "../commands/ListLineageNodeHistoryCommand";
6
+ import { DataZonePaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListLineageNodeHistory: (
8
+ config: DataZonePaginationConfiguration,
9
+ input: ListLineageNodeHistoryCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListLineageNodeHistoryCommandOutput>;
@@ -9,6 +9,7 @@ export * from "./ListEnvironmentBlueprintConfigurationsPaginator";
9
9
  export * from "./ListEnvironmentBlueprintsPaginator";
10
10
  export * from "./ListEnvironmentProfilesPaginator";
11
11
  export * from "./ListEnvironmentsPaginator";
12
+ export * from "./ListLineageNodeHistoryPaginator";
12
13
  export * from "./ListMetadataGenerationRunsPaginator";
13
14
  export * from "./ListNotificationsPaginator";
14
15
  export * from "./ListProjectMembershipsPaginator";
@@ -235,6 +235,10 @@ import {
235
235
  GetIamPortalLoginUrlCommandInput,
236
236
  GetIamPortalLoginUrlCommandOutput,
237
237
  } from "../commands/GetIamPortalLoginUrlCommand";
238
+ import {
239
+ GetLineageNodeCommandInput,
240
+ GetLineageNodeCommandOutput,
241
+ } from "../commands/GetLineageNodeCommand";
238
242
  import {
239
243
  GetListingCommandInput,
240
244
  GetListingCommandOutput,
@@ -311,6 +315,10 @@ import {
311
315
  ListEnvironmentsCommandInput,
312
316
  ListEnvironmentsCommandOutput,
313
317
  } from "../commands/ListEnvironmentsCommand";
318
+ import {
319
+ ListLineageNodeHistoryCommandInput,
320
+ ListLineageNodeHistoryCommandOutput,
321
+ } from "../commands/ListLineageNodeHistoryCommand";
314
322
  import {
315
323
  ListMetadataGenerationRunsCommandInput,
316
324
  ListMetadataGenerationRunsCommandOutput,
@@ -351,6 +359,10 @@ import {
351
359
  ListTimeSeriesDataPointsCommandInput,
352
360
  ListTimeSeriesDataPointsCommandOutput,
353
361
  } from "../commands/ListTimeSeriesDataPointsCommand";
362
+ import {
363
+ PostLineageEventCommandInput,
364
+ PostLineageEventCommandOutput,
365
+ } from "../commands/PostLineageEventCommand";
354
366
  import {
355
367
  PostTimeSeriesDataPointsCommandInput,
356
368
  PostTimeSeriesDataPointsCommandOutput,
@@ -691,6 +703,10 @@ export declare const se_GetIamPortalLoginUrlCommand: (
691
703
  input: GetIamPortalLoginUrlCommandInput,
692
704
  context: __SerdeContext
693
705
  ) => Promise<__HttpRequest>;
706
+ export declare const se_GetLineageNodeCommand: (
707
+ input: GetLineageNodeCommandInput,
708
+ context: __SerdeContext
709
+ ) => Promise<__HttpRequest>;
694
710
  export declare const se_GetListingCommand: (
695
711
  input: GetListingCommandInput,
696
712
  context: __SerdeContext
@@ -767,6 +783,10 @@ export declare const se_ListEnvironmentsCommand: (
767
783
  input: ListEnvironmentsCommandInput,
768
784
  context: __SerdeContext
769
785
  ) => Promise<__HttpRequest>;
786
+ export declare const se_ListLineageNodeHistoryCommand: (
787
+ input: ListLineageNodeHistoryCommandInput,
788
+ context: __SerdeContext
789
+ ) => Promise<__HttpRequest>;
770
790
  export declare const se_ListMetadataGenerationRunsCommand: (
771
791
  input: ListMetadataGenerationRunsCommandInput,
772
792
  context: __SerdeContext
@@ -807,6 +827,10 @@ export declare const se_ListTimeSeriesDataPointsCommand: (
807
827
  input: ListTimeSeriesDataPointsCommandInput,
808
828
  context: __SerdeContext
809
829
  ) => Promise<__HttpRequest>;
830
+ export declare const se_PostLineageEventCommand: (
831
+ input: PostLineageEventCommandInput,
832
+ context: __SerdeContext
833
+ ) => Promise<__HttpRequest>;
810
834
  export declare const se_PostTimeSeriesDataPointsCommand: (
811
835
  input: PostTimeSeriesDataPointsCommandInput,
812
836
  context: __SerdeContext
@@ -1147,6 +1171,10 @@ export declare const de_GetIamPortalLoginUrlCommand: (
1147
1171
  output: __HttpResponse,
1148
1172
  context: __SerdeContext
1149
1173
  ) => Promise<GetIamPortalLoginUrlCommandOutput>;
1174
+ export declare const de_GetLineageNodeCommand: (
1175
+ output: __HttpResponse,
1176
+ context: __SerdeContext
1177
+ ) => Promise<GetLineageNodeCommandOutput>;
1150
1178
  export declare const de_GetListingCommand: (
1151
1179
  output: __HttpResponse,
1152
1180
  context: __SerdeContext
@@ -1223,6 +1251,10 @@ export declare const de_ListEnvironmentsCommand: (
1223
1251
  output: __HttpResponse,
1224
1252
  context: __SerdeContext
1225
1253
  ) => Promise<ListEnvironmentsCommandOutput>;
1254
+ export declare const de_ListLineageNodeHistoryCommand: (
1255
+ output: __HttpResponse,
1256
+ context: __SerdeContext
1257
+ ) => Promise<ListLineageNodeHistoryCommandOutput>;
1226
1258
  export declare const de_ListMetadataGenerationRunsCommand: (
1227
1259
  output: __HttpResponse,
1228
1260
  context: __SerdeContext
@@ -1263,6 +1295,10 @@ export declare const de_ListTimeSeriesDataPointsCommand: (
1263
1295
  output: __HttpResponse,
1264
1296
  context: __SerdeContext
1265
1297
  ) => Promise<ListTimeSeriesDataPointsCommandOutput>;
1298
+ export declare const de_PostLineageEventCommand: (
1299
+ output: __HttpResponse,
1300
+ context: __SerdeContext
1301
+ ) => Promise<PostLineageEventCommandOutput>;
1266
1302
  export declare const de_PostTimeSeriesDataPointsCommand: (
1267
1303
  output: __HttpResponse,
1268
1304
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-datazone",
3
3
  "description": "AWS SDK for JavaScript Datazone Client for Node.js, Browser and React Native",
4
- "version": "3.600.0",
4
+ "version": "3.609.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-datazone",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.600.0",
24
- "@aws-sdk/client-sts": "3.600.0",
25
- "@aws-sdk/core": "3.598.0",
26
- "@aws-sdk/credential-provider-node": "3.600.0",
27
- "@aws-sdk/middleware-host-header": "3.598.0",
28
- "@aws-sdk/middleware-logger": "3.598.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.598.0",
30
- "@aws-sdk/middleware-user-agent": "3.598.0",
31
- "@aws-sdk/region-config-resolver": "3.598.0",
32
- "@aws-sdk/types": "3.598.0",
33
- "@aws-sdk/util-endpoints": "3.598.0",
34
- "@aws-sdk/util-user-agent-browser": "3.598.0",
35
- "@aws-sdk/util-user-agent-node": "3.598.0",
36
- "@smithy/config-resolver": "^3.0.2",
37
- "@smithy/core": "^2.2.1",
38
- "@smithy/fetch-http-handler": "^3.0.2",
39
- "@smithy/hash-node": "^3.0.1",
40
- "@smithy/invalid-dependency": "^3.0.1",
41
- "@smithy/middleware-content-length": "^3.0.1",
42
- "@smithy/middleware-endpoint": "^3.0.2",
43
- "@smithy/middleware-retry": "^3.0.4",
44
- "@smithy/middleware-serde": "^3.0.1",
45
- "@smithy/middleware-stack": "^3.0.1",
46
- "@smithy/node-config-provider": "^3.1.1",
47
- "@smithy/node-http-handler": "^3.0.1",
48
- "@smithy/protocol-http": "^4.0.1",
49
- "@smithy/smithy-client": "^3.1.2",
50
- "@smithy/types": "^3.1.0",
51
- "@smithy/url-parser": "^3.0.1",
23
+ "@aws-sdk/client-sso-oidc": "3.609.0",
24
+ "@aws-sdk/client-sts": "3.609.0",
25
+ "@aws-sdk/core": "3.609.0",
26
+ "@aws-sdk/credential-provider-node": "3.609.0",
27
+ "@aws-sdk/middleware-host-header": "3.609.0",
28
+ "@aws-sdk/middleware-logger": "3.609.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.609.0",
30
+ "@aws-sdk/middleware-user-agent": "3.609.0",
31
+ "@aws-sdk/region-config-resolver": "3.609.0",
32
+ "@aws-sdk/types": "3.609.0",
33
+ "@aws-sdk/util-endpoints": "3.609.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.609.0",
35
+ "@aws-sdk/util-user-agent-node": "3.609.0",
36
+ "@smithy/config-resolver": "^3.0.4",
37
+ "@smithy/core": "^2.2.4",
38
+ "@smithy/fetch-http-handler": "^3.2.0",
39
+ "@smithy/hash-node": "^3.0.3",
40
+ "@smithy/invalid-dependency": "^3.0.3",
41
+ "@smithy/middleware-content-length": "^3.0.3",
42
+ "@smithy/middleware-endpoint": "^3.0.4",
43
+ "@smithy/middleware-retry": "^3.0.7",
44
+ "@smithy/middleware-serde": "^3.0.3",
45
+ "@smithy/middleware-stack": "^3.0.3",
46
+ "@smithy/node-config-provider": "^3.1.3",
47
+ "@smithy/node-http-handler": "^3.1.1",
48
+ "@smithy/protocol-http": "^4.0.3",
49
+ "@smithy/smithy-client": "^3.1.5",
50
+ "@smithy/types": "^3.3.0",
51
+ "@smithy/url-parser": "^3.0.3",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.4",
56
- "@smithy/util-defaults-mode-node": "^3.0.4",
57
- "@smithy/util-endpoints": "^2.0.2",
58
- "@smithy/util-middleware": "^3.0.1",
59
- "@smithy/util-retry": "^3.0.1",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.7",
56
+ "@smithy/util-defaults-mode-node": "^3.0.7",
57
+ "@smithy/util-endpoints": "^2.0.4",
58
+ "@smithy/util-middleware": "^3.0.3",
59
+ "@smithy/util-retry": "^3.0.3",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2",
62
62
  "uuid": "^9.0.1"