@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.
- package/README.md +24 -0
- package/dist-cjs/index.js +298 -41
- package/dist-es/DataZone.js +6 -0
- package/dist-es/commands/GetLineageNodeCommand.js +25 -0
- package/dist-es/commands/ListLineageNodeHistoryCommand.js +24 -0
- package/dist-es/commands/ListNotificationsCommand.js +1 -1
- package/dist-es/commands/PostLineageEventCommand.js +25 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +12 -29
- package/dist-es/models/models_1.js +41 -1
- package/dist-es/pagination/ListLineageNodeHistoryPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +169 -5
- package/dist-types/DataZone.d.ts +21 -0
- package/dist-types/DataZoneClient.d.ts +5 -2
- package/dist-types/commands/GetLineageNodeCommand.d.ts +111 -0
- package/dist-types/commands/ListLineageNodeHistoryCommand.d.ts +101 -0
- package/dist-types/commands/ListNotificationsCommand.d.ts +2 -1
- package/dist-types/commands/PostLineageEventCommand.d.ts +90 -0
- package/dist-types/commands/SearchTypesCommand.d.ts +18 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +256 -145
- package/dist-types/models/models_1.d.ts +271 -2
- package/dist-types/pagination/ListLineageNodeHistoryPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/DataZone.d.ts +51 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/GetLineageNodeCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListLineageNodeHistoryCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListNotificationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/PostLineageEventCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +67 -57
- package/dist-types/ts3.4/models/models_1.d.ts +90 -1
- package/dist-types/ts3.4/pagination/ListLineageNodeHistoryPaginator.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 +36 -0
- package/package.json +35 -35
|
@@ -1,4 +1,164 @@
|
|
|
1
|
-
import { ActionParameters, AssetItem, AssetListingItem, AssetTypeItem, ConfigurableEnvironmentAction, CustomParameter, DataProductSummary, Deployment, DeploymentProperties, EnvironmentParameter, EnvironmentStatus, FailureCause, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GrantedEntity, GroupProfileStatus, Import, Model, ProjectDeletionError, ProjectStatus, ProvisioningProperties, Resource,
|
|
1
|
+
import { ActionParameters, AssetItem, AssetListingItem, AssetTypeItem, ConfigurableEnvironmentAction, CustomParameter, DataProductSummary, Deployment, DeploymentProperties, EnvironmentParameter, EnvironmentStatus, FailureCause, FormEntryOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GrantedEntity, GroupProfileStatus, Import, Model, NotificationType, ProjectDeletionError, ProjectStatus, ProvisioningProperties, Resource, SortOrder, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, SubscriptionTargetForm, TaskStatus, TermRelations, TimeSeriesDataPointFormOutput, TimeSeriesDataPointSummaryFormOutput, TimeSeriesEntityType, UserDesignation, UserProfileDetails, UserProfileStatus, UserProfileType } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
* @enum
|
|
5
|
+
*/
|
|
6
|
+
export declare const NotificationResourceType: {
|
|
7
|
+
readonly PROJECT: "PROJECT";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type NotificationResourceType = (typeof NotificationResourceType)[keyof typeof NotificationResourceType];
|
|
13
|
+
/**
|
|
14
|
+
* <p>The details of the resource mentioned in a notification.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
export interface NotificationResource {
|
|
18
|
+
/**
|
|
19
|
+
* <p>The type of the resource mentioned in a notification.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
type: NotificationResourceType | undefined;
|
|
23
|
+
/**
|
|
24
|
+
* <p>The ID of the resource mentioned in a notification.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
id: string | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* <p>The name of the resource mentioned in a notification.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
name?: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
* @enum
|
|
37
|
+
*/
|
|
38
|
+
export declare const NotificationRole: {
|
|
39
|
+
readonly DOMAIN_OWNER: "DOMAIN_OWNER";
|
|
40
|
+
readonly PROJECT_CONTRIBUTOR: "PROJECT_CONTRIBUTOR";
|
|
41
|
+
readonly PROJECT_OWNER: "PROJECT_OWNER";
|
|
42
|
+
readonly PROJECT_SUBSCRIBER: "PROJECT_SUBSCRIBER";
|
|
43
|
+
readonly PROJECT_VIEWER: "PROJECT_VIEWER";
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
export type NotificationRole = (typeof NotificationRole)[keyof typeof NotificationRole];
|
|
49
|
+
/**
|
|
50
|
+
* <p>The topic of the notification.</p>
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
export interface Topic {
|
|
54
|
+
/**
|
|
55
|
+
* <p>The subject of the resource mentioned in a notification.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
subject: string | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* <p>The details of the resource mentioned in a notification.</p>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
resource: NotificationResource | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* <p>The role of the resource mentioned in a notification.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
role: NotificationRole | undefined;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* <p>The details of a notification generated in Amazon DataZone.</p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export interface NotificationOutput {
|
|
75
|
+
/**
|
|
76
|
+
* <p>The identifier of the notification.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
identifier: string | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* <p>The identifier of a Amazon DataZone domain in which the notification exists.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
domainIdentifier: string | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* <p>The type of the notification.</p>
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
type: NotificationType | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* <p>The topic of the notification.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
topic: Topic | undefined;
|
|
95
|
+
/**
|
|
96
|
+
* <p>The title of the notification.</p>
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
title: string | undefined;
|
|
100
|
+
/**
|
|
101
|
+
* <p>The message included in the notification.</p>
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
message: string | undefined;
|
|
105
|
+
/**
|
|
106
|
+
* <p>The status included in the notification.</p>
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
109
|
+
status?: TaskStatus;
|
|
110
|
+
/**
|
|
111
|
+
* <p>The action link included in the notification.</p>
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
114
|
+
actionLink: string | undefined;
|
|
115
|
+
/**
|
|
116
|
+
* <p>The timestamp of when a notification was created.</p>
|
|
117
|
+
* @public
|
|
118
|
+
*/
|
|
119
|
+
creationTimestamp: Date | undefined;
|
|
120
|
+
/**
|
|
121
|
+
* <p>The timestamp of when the notification was last updated.</p>
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
124
|
+
lastUpdatedTimestamp: Date | undefined;
|
|
125
|
+
/**
|
|
126
|
+
* <p>The metadata included in the notification.</p>
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
129
|
+
metadata?: Record<string, string>;
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
export interface ListNotificationsOutput {
|
|
135
|
+
/**
|
|
136
|
+
* <p>The results of the <code>ListNotifications</code> action.</p>
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
notifications?: NotificationOutput[];
|
|
140
|
+
/**
|
|
141
|
+
* <p>When the number of notifications is greater than the default value for the
|
|
142
|
+
* <code>MaxResults</code> parameter, or if you explicitly specify a value for
|
|
143
|
+
* <code>MaxResults</code> that is less than the number of notifications, the response
|
|
144
|
+
* includes a pagination token named <code>NextToken</code>. You can specify this
|
|
145
|
+
* <code>NextToken</code> value in a subsequent call to <code>ListNotifications</code> to
|
|
146
|
+
* list the next set of notifications.</p>
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
149
|
+
nextToken?: string;
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* @public
|
|
153
|
+
* @enum
|
|
154
|
+
*/
|
|
155
|
+
export declare const SortFieldProject: {
|
|
156
|
+
readonly NAME: "NAME";
|
|
157
|
+
};
|
|
158
|
+
/**
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
export type SortFieldProject = (typeof SortFieldProject)[keyof typeof SortFieldProject];
|
|
2
162
|
/**
|
|
3
163
|
* @public
|
|
4
164
|
*/
|
|
@@ -1250,6 +1410,33 @@ export interface StartMetadataGenerationRunOutput {
|
|
|
1250
1410
|
*/
|
|
1251
1411
|
owningProjectId?: string;
|
|
1252
1412
|
}
|
|
1413
|
+
/**
|
|
1414
|
+
* @public
|
|
1415
|
+
*/
|
|
1416
|
+
export interface PostLineageEventInput {
|
|
1417
|
+
/**
|
|
1418
|
+
* <p>The ID of the domain where you want to post a data lineage event.</p>
|
|
1419
|
+
* @public
|
|
1420
|
+
*/
|
|
1421
|
+
domainIdentifier: string | undefined;
|
|
1422
|
+
/**
|
|
1423
|
+
* <p>The data lineage event that you want to post. Only open-lineage run event are supported
|
|
1424
|
+
* as events. </p>
|
|
1425
|
+
* @public
|
|
1426
|
+
*/
|
|
1427
|
+
event: Uint8Array | undefined;
|
|
1428
|
+
/**
|
|
1429
|
+
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
1430
|
+
* request.</p>
|
|
1431
|
+
* @public
|
|
1432
|
+
*/
|
|
1433
|
+
clientToken?: string;
|
|
1434
|
+
}
|
|
1435
|
+
/**
|
|
1436
|
+
* @public
|
|
1437
|
+
*/
|
|
1438
|
+
export interface PostLineageEventOutput {
|
|
1439
|
+
}
|
|
1253
1440
|
/**
|
|
1254
1441
|
* <p>The time series data points form.</p>
|
|
1255
1442
|
* @public
|
|
@@ -2056,6 +2243,7 @@ export interface SearchListingsOutput {
|
|
|
2056
2243
|
export declare const TypesSearchScope: {
|
|
2057
2244
|
readonly ASSET_TYPE: "ASSET_TYPE";
|
|
2058
2245
|
readonly FORM_TYPE: "FORM_TYPE";
|
|
2246
|
+
readonly LINEAGE_NODE_TYPE: "LINEAGE_NODE_TYPE";
|
|
2059
2247
|
};
|
|
2060
2248
|
/**
|
|
2061
2249
|
* @public
|
|
@@ -2128,11 +2316,62 @@ export interface FormTypeData {
|
|
|
2128
2316
|
*/
|
|
2129
2317
|
imports?: Import[];
|
|
2130
2318
|
}
|
|
2319
|
+
/**
|
|
2320
|
+
* <p>The details of a data lineage node type.</p>
|
|
2321
|
+
* @public
|
|
2322
|
+
*/
|
|
2323
|
+
export interface LineageNodeTypeItem {
|
|
2324
|
+
/**
|
|
2325
|
+
* <p>The ID of the domain where the data lineage node type lives.</p>
|
|
2326
|
+
* @public
|
|
2327
|
+
*/
|
|
2328
|
+
domainId: string | undefined;
|
|
2329
|
+
/**
|
|
2330
|
+
* <p>The name of the data lineage node type.</p>
|
|
2331
|
+
* @public
|
|
2332
|
+
*/
|
|
2333
|
+
name?: string;
|
|
2334
|
+
/**
|
|
2335
|
+
* <p>The description of the data lineage node type.</p>
|
|
2336
|
+
* @public
|
|
2337
|
+
*/
|
|
2338
|
+
description?: string;
|
|
2339
|
+
/**
|
|
2340
|
+
* <p>The timestamp at which the data lineage node type was created.</p>
|
|
2341
|
+
* @public
|
|
2342
|
+
*/
|
|
2343
|
+
createdAt?: Date;
|
|
2344
|
+
/**
|
|
2345
|
+
* <p>The user who created the data lineage node type.</p>
|
|
2346
|
+
* @public
|
|
2347
|
+
*/
|
|
2348
|
+
createdBy?: string;
|
|
2349
|
+
/**
|
|
2350
|
+
* <p>The timestamp at which the data lineage node type was updated.</p>
|
|
2351
|
+
* @public
|
|
2352
|
+
*/
|
|
2353
|
+
updatedAt?: Date;
|
|
2354
|
+
/**
|
|
2355
|
+
* <p>The user who updated the data lineage node type.</p>
|
|
2356
|
+
* @public
|
|
2357
|
+
*/
|
|
2358
|
+
updatedBy?: string;
|
|
2359
|
+
/**
|
|
2360
|
+
* <p>The revision of the data lineage node type.</p>
|
|
2361
|
+
* @public
|
|
2362
|
+
*/
|
|
2363
|
+
revision: string | undefined;
|
|
2364
|
+
/**
|
|
2365
|
+
* <p>The forms output of the data lineage node type.</p>
|
|
2366
|
+
* @public
|
|
2367
|
+
*/
|
|
2368
|
+
formsOutput: Record<string, FormEntryOutput> | undefined;
|
|
2369
|
+
}
|
|
2131
2370
|
/**
|
|
2132
2371
|
* <p>The details of the results of the <code>SearchTypes</code> action.</p>
|
|
2133
2372
|
* @public
|
|
2134
2373
|
*/
|
|
2135
|
-
export type SearchTypesResultItem = SearchTypesResultItem.AssetTypeItemMember | SearchTypesResultItem.FormTypeItemMember | SearchTypesResultItem.$UnknownMember;
|
|
2374
|
+
export type SearchTypesResultItem = SearchTypesResultItem.AssetTypeItemMember | SearchTypesResultItem.FormTypeItemMember | SearchTypesResultItem.LineageNodeTypeItemMember | SearchTypesResultItem.$UnknownMember;
|
|
2136
2375
|
/**
|
|
2137
2376
|
* @public
|
|
2138
2377
|
*/
|
|
@@ -2144,6 +2383,7 @@ export declare namespace SearchTypesResultItem {
|
|
|
2144
2383
|
interface AssetTypeItemMember {
|
|
2145
2384
|
assetTypeItem: AssetTypeItem;
|
|
2146
2385
|
formTypeItem?: never;
|
|
2386
|
+
lineageNodeTypeItem?: never;
|
|
2147
2387
|
$unknown?: never;
|
|
2148
2388
|
}
|
|
2149
2389
|
/**
|
|
@@ -2153,6 +2393,17 @@ export declare namespace SearchTypesResultItem {
|
|
|
2153
2393
|
interface FormTypeItemMember {
|
|
2154
2394
|
assetTypeItem?: never;
|
|
2155
2395
|
formTypeItem: FormTypeData;
|
|
2396
|
+
lineageNodeTypeItem?: never;
|
|
2397
|
+
$unknown?: never;
|
|
2398
|
+
}
|
|
2399
|
+
/**
|
|
2400
|
+
* <p>The details of a data lineage node type.</p>
|
|
2401
|
+
* @public
|
|
2402
|
+
*/
|
|
2403
|
+
interface LineageNodeTypeItemMember {
|
|
2404
|
+
assetTypeItem?: never;
|
|
2405
|
+
formTypeItem?: never;
|
|
2406
|
+
lineageNodeTypeItem: LineageNodeTypeItem;
|
|
2156
2407
|
$unknown?: never;
|
|
2157
2408
|
}
|
|
2158
2409
|
/**
|
|
@@ -2161,11 +2412,13 @@ export declare namespace SearchTypesResultItem {
|
|
|
2161
2412
|
interface $UnknownMember {
|
|
2162
2413
|
assetTypeItem?: never;
|
|
2163
2414
|
formTypeItem?: never;
|
|
2415
|
+
lineageNodeTypeItem?: never;
|
|
2164
2416
|
$unknown: [string, any];
|
|
2165
2417
|
}
|
|
2166
2418
|
interface Visitor<T> {
|
|
2167
2419
|
assetTypeItem: (value: AssetTypeItem) => T;
|
|
2168
2420
|
formTypeItem: (value: FormTypeData) => T;
|
|
2421
|
+
lineageNodeTypeItem: (value: LineageNodeTypeItem) => T;
|
|
2169
2422
|
_: (name: string, value: any) => T;
|
|
2170
2423
|
}
|
|
2171
2424
|
const visit: <T>(value: SearchTypesResultItem, visitor: Visitor<T>) => T;
|
|
@@ -3434,6 +3687,14 @@ export interface SearchTypesInput {
|
|
|
3434
3687
|
*/
|
|
3435
3688
|
managed: boolean | undefined;
|
|
3436
3689
|
}
|
|
3690
|
+
/**
|
|
3691
|
+
* @internal
|
|
3692
|
+
*/
|
|
3693
|
+
export declare const NotificationOutputFilterSensitiveLog: (obj: NotificationOutput) => any;
|
|
3694
|
+
/**
|
|
3695
|
+
* @internal
|
|
3696
|
+
*/
|
|
3697
|
+
export declare const ListNotificationsOutputFilterSensitiveLog: (obj: ListNotificationsOutput) => any;
|
|
3437
3698
|
/**
|
|
3438
3699
|
* @internal
|
|
3439
3700
|
*/
|
|
@@ -3470,6 +3731,10 @@ export declare const SubscriptionTargetSummaryFilterSensitiveLog: (obj: Subscrip
|
|
|
3470
3731
|
* @internal
|
|
3471
3732
|
*/
|
|
3472
3733
|
export declare const ListSubscriptionTargetsOutputFilterSensitiveLog: (obj: ListSubscriptionTargetsOutput) => any;
|
|
3734
|
+
/**
|
|
3735
|
+
* @internal
|
|
3736
|
+
*/
|
|
3737
|
+
export declare const PostLineageEventInputFilterSensitiveLog: (obj: PostLineageEventInput) => any;
|
|
3473
3738
|
/**
|
|
3474
3739
|
* @internal
|
|
3475
3740
|
*/
|
|
@@ -3522,6 +3787,10 @@ export declare const SearchListingsOutputFilterSensitiveLog: (obj: SearchListing
|
|
|
3522
3787
|
* @internal
|
|
3523
3788
|
*/
|
|
3524
3789
|
export declare const FormTypeDataFilterSensitiveLog: (obj: FormTypeData) => any;
|
|
3790
|
+
/**
|
|
3791
|
+
* @internal
|
|
3792
|
+
*/
|
|
3793
|
+
export declare const LineageNodeTypeItemFilterSensitiveLog: (obj: LineageNodeTypeItem) => any;
|
|
3525
3794
|
/**
|
|
3526
3795
|
* @internal
|
|
3527
3796
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListLineageNodeHistoryCommandInput, ListLineageNodeHistoryCommandOutput } from "../commands/ListLineageNodeHistoryCommand";
|
|
3
|
+
import { DataZonePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListLineageNodeHistory: (config: DataZonePaginationConfiguration, input: ListLineageNodeHistoryCommandInput, ...rest: any[]) => 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";
|
|
@@ -58,6 +58,7 @@ import { GetGlossaryCommandInput, GetGlossaryCommandOutput } from "../commands/G
|
|
|
58
58
|
import { GetGlossaryTermCommandInput, GetGlossaryTermCommandOutput } from "../commands/GetGlossaryTermCommand";
|
|
59
59
|
import { GetGroupProfileCommandInput, GetGroupProfileCommandOutput } from "../commands/GetGroupProfileCommand";
|
|
60
60
|
import { GetIamPortalLoginUrlCommandInput, GetIamPortalLoginUrlCommandOutput } from "../commands/GetIamPortalLoginUrlCommand";
|
|
61
|
+
import { GetLineageNodeCommandInput, GetLineageNodeCommandOutput } from "../commands/GetLineageNodeCommand";
|
|
61
62
|
import { GetListingCommandInput, GetListingCommandOutput } from "../commands/GetListingCommand";
|
|
62
63
|
import { GetMetadataGenerationRunCommandInput, GetMetadataGenerationRunCommandOutput } from "../commands/GetMetadataGenerationRunCommand";
|
|
63
64
|
import { GetProjectCommandInput, GetProjectCommandOutput } from "../commands/GetProjectCommand";
|
|
@@ -77,6 +78,7 @@ import { ListEnvironmentBlueprintConfigurationsCommandInput, ListEnvironmentBlue
|
|
|
77
78
|
import { ListEnvironmentBlueprintsCommandInput, ListEnvironmentBlueprintsCommandOutput } from "../commands/ListEnvironmentBlueprintsCommand";
|
|
78
79
|
import { ListEnvironmentProfilesCommandInput, ListEnvironmentProfilesCommandOutput } from "../commands/ListEnvironmentProfilesCommand";
|
|
79
80
|
import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
|
|
81
|
+
import { ListLineageNodeHistoryCommandInput, ListLineageNodeHistoryCommandOutput } from "../commands/ListLineageNodeHistoryCommand";
|
|
80
82
|
import { ListMetadataGenerationRunsCommandInput, ListMetadataGenerationRunsCommandOutput } from "../commands/ListMetadataGenerationRunsCommand";
|
|
81
83
|
import { ListNotificationsCommandInput, ListNotificationsCommandOutput } from "../commands/ListNotificationsCommand";
|
|
82
84
|
import { ListProjectMembershipsCommandInput, ListProjectMembershipsCommandOutput } from "../commands/ListProjectMembershipsCommand";
|
|
@@ -87,6 +89,7 @@ import { ListSubscriptionsCommandInput, ListSubscriptionsCommandOutput } from ".
|
|
|
87
89
|
import { ListSubscriptionTargetsCommandInput, ListSubscriptionTargetsCommandOutput } from "../commands/ListSubscriptionTargetsCommand";
|
|
88
90
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
89
91
|
import { ListTimeSeriesDataPointsCommandInput, ListTimeSeriesDataPointsCommandOutput } from "../commands/ListTimeSeriesDataPointsCommand";
|
|
92
|
+
import { PostLineageEventCommandInput, PostLineageEventCommandOutput } from "../commands/PostLineageEventCommand";
|
|
90
93
|
import { PostTimeSeriesDataPointsCommandInput, PostTimeSeriesDataPointsCommandOutput } from "../commands/PostTimeSeriesDataPointsCommand";
|
|
91
94
|
import { PutEnvironmentBlueprintConfigurationCommandInput, PutEnvironmentBlueprintConfigurationCommandOutput } from "../commands/PutEnvironmentBlueprintConfigurationCommand";
|
|
92
95
|
import { RejectPredictionsCommandInput, RejectPredictionsCommandOutput } from "../commands/RejectPredictionsCommand";
|
|
@@ -346,6 +349,10 @@ export declare const se_GetGroupProfileCommand: (input: GetGroupProfileCommandIn
|
|
|
346
349
|
* serializeAws_restJson1GetIamPortalLoginUrlCommand
|
|
347
350
|
*/
|
|
348
351
|
export declare const se_GetIamPortalLoginUrlCommand: (input: GetIamPortalLoginUrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
352
|
+
/**
|
|
353
|
+
* serializeAws_restJson1GetLineageNodeCommand
|
|
354
|
+
*/
|
|
355
|
+
export declare const se_GetLineageNodeCommand: (input: GetLineageNodeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
349
356
|
/**
|
|
350
357
|
* serializeAws_restJson1GetListingCommand
|
|
351
358
|
*/
|
|
@@ -422,6 +429,10 @@ export declare const se_ListEnvironmentProfilesCommand: (input: ListEnvironmentP
|
|
|
422
429
|
* serializeAws_restJson1ListEnvironmentsCommand
|
|
423
430
|
*/
|
|
424
431
|
export declare const se_ListEnvironmentsCommand: (input: ListEnvironmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
432
|
+
/**
|
|
433
|
+
* serializeAws_restJson1ListLineageNodeHistoryCommand
|
|
434
|
+
*/
|
|
435
|
+
export declare const se_ListLineageNodeHistoryCommand: (input: ListLineageNodeHistoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
425
436
|
/**
|
|
426
437
|
* serializeAws_restJson1ListMetadataGenerationRunsCommand
|
|
427
438
|
*/
|
|
@@ -462,6 +473,10 @@ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceC
|
|
|
462
473
|
* serializeAws_restJson1ListTimeSeriesDataPointsCommand
|
|
463
474
|
*/
|
|
464
475
|
export declare const se_ListTimeSeriesDataPointsCommand: (input: ListTimeSeriesDataPointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
476
|
+
/**
|
|
477
|
+
* serializeAws_restJson1PostLineageEventCommand
|
|
478
|
+
*/
|
|
479
|
+
export declare const se_PostLineageEventCommand: (input: PostLineageEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
465
480
|
/**
|
|
466
481
|
* serializeAws_restJson1PostTimeSeriesDataPointsCommand
|
|
467
482
|
*/
|
|
@@ -802,6 +817,10 @@ export declare const de_GetGroupProfileCommand: (output: __HttpResponse, context
|
|
|
802
817
|
* deserializeAws_restJson1GetIamPortalLoginUrlCommand
|
|
803
818
|
*/
|
|
804
819
|
export declare const de_GetIamPortalLoginUrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIamPortalLoginUrlCommandOutput>;
|
|
820
|
+
/**
|
|
821
|
+
* deserializeAws_restJson1GetLineageNodeCommand
|
|
822
|
+
*/
|
|
823
|
+
export declare const de_GetLineageNodeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLineageNodeCommandOutput>;
|
|
805
824
|
/**
|
|
806
825
|
* deserializeAws_restJson1GetListingCommand
|
|
807
826
|
*/
|
|
@@ -878,6 +897,10 @@ export declare const de_ListEnvironmentProfilesCommand: (output: __HttpResponse,
|
|
|
878
897
|
* deserializeAws_restJson1ListEnvironmentsCommand
|
|
879
898
|
*/
|
|
880
899
|
export declare const de_ListEnvironmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentsCommandOutput>;
|
|
900
|
+
/**
|
|
901
|
+
* deserializeAws_restJson1ListLineageNodeHistoryCommand
|
|
902
|
+
*/
|
|
903
|
+
export declare const de_ListLineageNodeHistoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLineageNodeHistoryCommandOutput>;
|
|
881
904
|
/**
|
|
882
905
|
* deserializeAws_restJson1ListMetadataGenerationRunsCommand
|
|
883
906
|
*/
|
|
@@ -918,6 +941,10 @@ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, con
|
|
|
918
941
|
* deserializeAws_restJson1ListTimeSeriesDataPointsCommand
|
|
919
942
|
*/
|
|
920
943
|
export declare const de_ListTimeSeriesDataPointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTimeSeriesDataPointsCommandOutput>;
|
|
944
|
+
/**
|
|
945
|
+
* deserializeAws_restJson1PostLineageEventCommand
|
|
946
|
+
*/
|
|
947
|
+
export declare const de_PostLineageEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PostLineageEventCommandOutput>;
|
|
921
948
|
/**
|
|
922
949
|
* deserializeAws_restJson1PostTimeSeriesDataPointsCommand
|
|
923
950
|
*/
|
|
@@ -231,6 +231,10 @@ import {
|
|
|
231
231
|
GetIamPortalLoginUrlCommandInput,
|
|
232
232
|
GetIamPortalLoginUrlCommandOutput,
|
|
233
233
|
} from "./commands/GetIamPortalLoginUrlCommand";
|
|
234
|
+
import {
|
|
235
|
+
GetLineageNodeCommandInput,
|
|
236
|
+
GetLineageNodeCommandOutput,
|
|
237
|
+
} from "./commands/GetLineageNodeCommand";
|
|
234
238
|
import {
|
|
235
239
|
GetListingCommandInput,
|
|
236
240
|
GetListingCommandOutput,
|
|
@@ -307,6 +311,10 @@ import {
|
|
|
307
311
|
ListEnvironmentsCommandInput,
|
|
308
312
|
ListEnvironmentsCommandOutput,
|
|
309
313
|
} from "./commands/ListEnvironmentsCommand";
|
|
314
|
+
import {
|
|
315
|
+
ListLineageNodeHistoryCommandInput,
|
|
316
|
+
ListLineageNodeHistoryCommandOutput,
|
|
317
|
+
} from "./commands/ListLineageNodeHistoryCommand";
|
|
310
318
|
import {
|
|
311
319
|
ListMetadataGenerationRunsCommandInput,
|
|
312
320
|
ListMetadataGenerationRunsCommandOutput,
|
|
@@ -347,6 +355,10 @@ import {
|
|
|
347
355
|
ListTimeSeriesDataPointsCommandInput,
|
|
348
356
|
ListTimeSeriesDataPointsCommandOutput,
|
|
349
357
|
} from "./commands/ListTimeSeriesDataPointsCommand";
|
|
358
|
+
import {
|
|
359
|
+
PostLineageEventCommandInput,
|
|
360
|
+
PostLineageEventCommandOutput,
|
|
361
|
+
} from "./commands/PostLineageEventCommand";
|
|
350
362
|
import {
|
|
351
363
|
PostTimeSeriesDataPointsCommandInput,
|
|
352
364
|
PostTimeSeriesDataPointsCommandOutput,
|
|
@@ -1223,6 +1235,19 @@ export interface DataZone {
|
|
|
1223
1235
|
options: __HttpHandlerOptions,
|
|
1224
1236
|
cb: (err: any, data?: GetIamPortalLoginUrlCommandOutput) => void
|
|
1225
1237
|
): void;
|
|
1238
|
+
getLineageNode(
|
|
1239
|
+
args: GetLineageNodeCommandInput,
|
|
1240
|
+
options?: __HttpHandlerOptions
|
|
1241
|
+
): Promise<GetLineageNodeCommandOutput>;
|
|
1242
|
+
getLineageNode(
|
|
1243
|
+
args: GetLineageNodeCommandInput,
|
|
1244
|
+
cb: (err: any, data?: GetLineageNodeCommandOutput) => void
|
|
1245
|
+
): void;
|
|
1246
|
+
getLineageNode(
|
|
1247
|
+
args: GetLineageNodeCommandInput,
|
|
1248
|
+
options: __HttpHandlerOptions,
|
|
1249
|
+
cb: (err: any, data?: GetLineageNodeCommandOutput) => void
|
|
1250
|
+
): void;
|
|
1226
1251
|
getListing(
|
|
1227
1252
|
args: GetListingCommandInput,
|
|
1228
1253
|
options?: __HttpHandlerOptions
|
|
@@ -1477,6 +1502,19 @@ export interface DataZone {
|
|
|
1477
1502
|
options: __HttpHandlerOptions,
|
|
1478
1503
|
cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
|
|
1479
1504
|
): void;
|
|
1505
|
+
listLineageNodeHistory(
|
|
1506
|
+
args: ListLineageNodeHistoryCommandInput,
|
|
1507
|
+
options?: __HttpHandlerOptions
|
|
1508
|
+
): Promise<ListLineageNodeHistoryCommandOutput>;
|
|
1509
|
+
listLineageNodeHistory(
|
|
1510
|
+
args: ListLineageNodeHistoryCommandInput,
|
|
1511
|
+
cb: (err: any, data?: ListLineageNodeHistoryCommandOutput) => void
|
|
1512
|
+
): void;
|
|
1513
|
+
listLineageNodeHistory(
|
|
1514
|
+
args: ListLineageNodeHistoryCommandInput,
|
|
1515
|
+
options: __HttpHandlerOptions,
|
|
1516
|
+
cb: (err: any, data?: ListLineageNodeHistoryCommandOutput) => void
|
|
1517
|
+
): void;
|
|
1480
1518
|
listMetadataGenerationRuns(
|
|
1481
1519
|
args: ListMetadataGenerationRunsCommandInput,
|
|
1482
1520
|
options?: __HttpHandlerOptions
|
|
@@ -1607,6 +1645,19 @@ export interface DataZone {
|
|
|
1607
1645
|
options: __HttpHandlerOptions,
|
|
1608
1646
|
cb: (err: any, data?: ListTimeSeriesDataPointsCommandOutput) => void
|
|
1609
1647
|
): void;
|
|
1648
|
+
postLineageEvent(
|
|
1649
|
+
args: PostLineageEventCommandInput,
|
|
1650
|
+
options?: __HttpHandlerOptions
|
|
1651
|
+
): Promise<PostLineageEventCommandOutput>;
|
|
1652
|
+
postLineageEvent(
|
|
1653
|
+
args: PostLineageEventCommandInput,
|
|
1654
|
+
cb: (err: any, data?: PostLineageEventCommandOutput) => void
|
|
1655
|
+
): void;
|
|
1656
|
+
postLineageEvent(
|
|
1657
|
+
args: PostLineageEventCommandInput,
|
|
1658
|
+
options: __HttpHandlerOptions,
|
|
1659
|
+
cb: (err: any, data?: PostLineageEventCommandOutput) => void
|
|
1660
|
+
): void;
|
|
1610
1661
|
postTimeSeriesDataPoints(
|
|
1611
1662
|
args: PostTimeSeriesDataPointsCommandInput,
|
|
1612
1663
|
options?: __HttpHandlerOptions
|
|
@@ -277,6 +277,10 @@ import {
|
|
|
277
277
|
GetIamPortalLoginUrlCommandInput,
|
|
278
278
|
GetIamPortalLoginUrlCommandOutput,
|
|
279
279
|
} from "./commands/GetIamPortalLoginUrlCommand";
|
|
280
|
+
import {
|
|
281
|
+
GetLineageNodeCommandInput,
|
|
282
|
+
GetLineageNodeCommandOutput,
|
|
283
|
+
} from "./commands/GetLineageNodeCommand";
|
|
280
284
|
import {
|
|
281
285
|
GetListingCommandInput,
|
|
282
286
|
GetListingCommandOutput,
|
|
@@ -353,6 +357,10 @@ import {
|
|
|
353
357
|
ListEnvironmentsCommandInput,
|
|
354
358
|
ListEnvironmentsCommandOutput,
|
|
355
359
|
} from "./commands/ListEnvironmentsCommand";
|
|
360
|
+
import {
|
|
361
|
+
ListLineageNodeHistoryCommandInput,
|
|
362
|
+
ListLineageNodeHistoryCommandOutput,
|
|
363
|
+
} from "./commands/ListLineageNodeHistoryCommand";
|
|
356
364
|
import {
|
|
357
365
|
ListMetadataGenerationRunsCommandInput,
|
|
358
366
|
ListMetadataGenerationRunsCommandOutput,
|
|
@@ -393,6 +401,10 @@ import {
|
|
|
393
401
|
ListTimeSeriesDataPointsCommandInput,
|
|
394
402
|
ListTimeSeriesDataPointsCommandOutput,
|
|
395
403
|
} from "./commands/ListTimeSeriesDataPointsCommand";
|
|
404
|
+
import {
|
|
405
|
+
PostLineageEventCommandInput,
|
|
406
|
+
PostLineageEventCommandOutput,
|
|
407
|
+
} from "./commands/PostLineageEventCommand";
|
|
396
408
|
import {
|
|
397
409
|
PostTimeSeriesDataPointsCommandInput,
|
|
398
410
|
PostTimeSeriesDataPointsCommandOutput,
|
|
@@ -567,6 +579,7 @@ export type ServiceInputTypes =
|
|
|
567
579
|
| GetGlossaryTermCommandInput
|
|
568
580
|
| GetGroupProfileCommandInput
|
|
569
581
|
| GetIamPortalLoginUrlCommandInput
|
|
582
|
+
| GetLineageNodeCommandInput
|
|
570
583
|
| GetListingCommandInput
|
|
571
584
|
| GetMetadataGenerationRunCommandInput
|
|
572
585
|
| GetProjectCommandInput
|
|
@@ -586,6 +599,7 @@ export type ServiceInputTypes =
|
|
|
586
599
|
| ListEnvironmentBlueprintsCommandInput
|
|
587
600
|
| ListEnvironmentProfilesCommandInput
|
|
588
601
|
| ListEnvironmentsCommandInput
|
|
602
|
+
| ListLineageNodeHistoryCommandInput
|
|
589
603
|
| ListMetadataGenerationRunsCommandInput
|
|
590
604
|
| ListNotificationsCommandInput
|
|
591
605
|
| ListProjectMembershipsCommandInput
|
|
@@ -596,6 +610,7 @@ export type ServiceInputTypes =
|
|
|
596
610
|
| ListSubscriptionsCommandInput
|
|
597
611
|
| ListTagsForResourceCommandInput
|
|
598
612
|
| ListTimeSeriesDataPointsCommandInput
|
|
613
|
+
| PostLineageEventCommandInput
|
|
599
614
|
| PostTimeSeriesDataPointsCommandInput
|
|
600
615
|
| PutEnvironmentBlueprintConfigurationCommandInput
|
|
601
616
|
| RejectPredictionsCommandInput
|
|
@@ -682,6 +697,7 @@ export type ServiceOutputTypes =
|
|
|
682
697
|
| GetGlossaryTermCommandOutput
|
|
683
698
|
| GetGroupProfileCommandOutput
|
|
684
699
|
| GetIamPortalLoginUrlCommandOutput
|
|
700
|
+
| GetLineageNodeCommandOutput
|
|
685
701
|
| GetListingCommandOutput
|
|
686
702
|
| GetMetadataGenerationRunCommandOutput
|
|
687
703
|
| GetProjectCommandOutput
|
|
@@ -701,6 +717,7 @@ export type ServiceOutputTypes =
|
|
|
701
717
|
| ListEnvironmentBlueprintsCommandOutput
|
|
702
718
|
| ListEnvironmentProfilesCommandOutput
|
|
703
719
|
| ListEnvironmentsCommandOutput
|
|
720
|
+
| ListLineageNodeHistoryCommandOutput
|
|
704
721
|
| ListMetadataGenerationRunsCommandOutput
|
|
705
722
|
| ListNotificationsCommandOutput
|
|
706
723
|
| ListProjectMembershipsCommandOutput
|
|
@@ -711,6 +728,7 @@ export type ServiceOutputTypes =
|
|
|
711
728
|
| ListSubscriptionsCommandOutput
|
|
712
729
|
| ListTagsForResourceCommandOutput
|
|
713
730
|
| ListTimeSeriesDataPointsCommandOutput
|
|
731
|
+
| PostLineageEventCommandOutput
|
|
714
732
|
| PostTimeSeriesDataPointsCommandOutput
|
|
715
733
|
| PutEnvironmentBlueprintConfigurationCommandOutput
|
|
716
734
|
| RejectPredictionsCommandOutput
|
|
@@ -0,0 +1,36 @@
|
|
|
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 { GetLineageNodeInput, GetLineageNodeOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetLineageNodeCommandInput extends GetLineageNodeInput {}
|
|
12
|
+
export interface GetLineageNodeCommandOutput
|
|
13
|
+
extends GetLineageNodeOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetLineageNodeCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetLineageNodeCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetLineageNodeCommandInput,
|
|
20
|
+
GetLineageNodeCommandOutput,
|
|
21
|
+
DataZoneClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: GetLineageNodeCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetLineageNodeCommandInput,
|
|
29
|
+
GetLineageNodeCommandOutput,
|
|
30
|
+
DataZoneClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetLineageNodeCommand extends GetLineageNodeCommand_base {}
|