@aws-sdk/client-datazone 3.1000.0 → 3.1001.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 (37) hide show
  1. package/README.md +7 -0
  2. package/dist-cjs/index.js +39 -8
  3. package/dist-cjs/schemas/schemas_0.js +113 -40
  4. package/dist-es/DataZone.js +4 -0
  5. package/dist-es/commands/QueryGraphCommand.js +16 -0
  6. package/dist-es/commands/index.js +1 -0
  7. package/dist-es/models/enums.js +18 -8
  8. package/dist-es/pagination/QueryGraphPaginator.js +4 -0
  9. package/dist-es/pagination/index.js +1 -0
  10. package/dist-es/schemas/schemas_0.js +96 -23
  11. package/dist-types/DataZone.d.ts +14 -0
  12. package/dist-types/DataZoneClient.d.ts +3 -2
  13. package/dist-types/commands/CreateSubscriptionTargetCommand.d.ts +2 -1
  14. package/dist-types/commands/QueryGraphCommand.d.ts +169 -0
  15. package/dist-types/commands/SearchListingsCommand.d.ts +1 -2
  16. package/dist-types/commands/index.d.ts +1 -0
  17. package/dist-types/models/enums.d.ts +50 -16
  18. package/dist-types/models/models_0.d.ts +11 -85
  19. package/dist-types/models/models_1.d.ts +263 -274
  20. package/dist-types/models/models_2.d.ts +345 -3
  21. package/dist-types/pagination/QueryGraphPaginator.d.ts +7 -0
  22. package/dist-types/pagination/index.d.ts +1 -0
  23. package/dist-types/schemas/schemas_0.d.ts +9 -0
  24. package/dist-types/ts3.4/DataZone.d.ts +24 -0
  25. package/dist-types/ts3.4/DataZoneClient.d.ts +6 -0
  26. package/dist-types/ts3.4/commands/CreateSubscriptionTargetCommand.d.ts +2 -4
  27. package/dist-types/ts3.4/commands/QueryGraphCommand.d.ts +48 -0
  28. package/dist-types/ts3.4/commands/SearchListingsCommand.d.ts +1 -2
  29. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  30. package/dist-types/ts3.4/models/enums.d.ts +25 -10
  31. package/dist-types/ts3.4/models/models_0.d.ts +3 -18
  32. package/dist-types/ts3.4/models/models_1.d.ts +69 -104
  33. package/dist-types/ts3.4/models/models_2.d.ts +143 -1
  34. package/dist-types/ts3.4/pagination/QueryGraphPaginator.d.ts +11 -0
  35. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  36. package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
  37. package/package.json +14 -14
@@ -1,6 +1,252 @@
1
- import { ConnectionScope, ConnectionType, EnvironmentStatus, FilterStatus, GroupProfileStatus, InventorySearchScope, ProjectStatus, ResolutionStrategy, SearchOutputAdditionalAttribute, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, TypesSearchScope, UserProfileStatus, UserProfileType, UserSearchType } from "./enums";
2
- import { type AccountSource, type ActionParameters, type AwsLocation, type ConnectionPropertiesOutput, type ConnectionPropertiesPatch, type Deployment, type DeploymentProperties, type EnvironmentDeploymentDetails, type FailureCause, type GrantedEntity, type ProvisioningProperties, type UserProfileDetails, AggregationListItem, ColumnFilterConfiguration, ConfigurableEnvironmentAction, CustomParameter, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentParameter, FormOutput, PhysicalEndpoint, ProjectDeletionError, Resource, ResourceTag, ResourceTagParameter, RowFilterExpression, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionTargetForm } from "./models_0";
3
- import { type SearchSort, Filter, SearchInItem, SearchTypesResultItem } from "./models_1";
1
+ import { ConnectionScope, ConnectionType, EnvironmentStatus, FilterStatus, FormTypeStatus, GraphEntityType, GroupProfileStatus, InventorySearchScope, ProjectStatus, ResolutionStrategy, SearchOutputAdditionalAttribute, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, TypesSearchScope, UserProfileStatus, UserProfileType, UserSearchType } from "./enums";
2
+ import { type AccountSource, type ActionParameters, type AdditionalAttributes, type AwsLocation, type ConnectionPropertiesOutput, type ConnectionPropertiesPatch, type Deployment, type DeploymentProperties, type EnvironmentDeploymentDetails, type FailureCause, type GrantedEntity, type Model, type ProvisioningProperties, type UserProfileDetails, AggregationListItem, AggregationOutput, AssetListingItem, AssetTypeItem, ColumnFilterConfiguration, ConfigurableEnvironmentAction, CustomParameter, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentParameter, FormEntryOutput, FormOutput, PhysicalEndpoint, ProjectDeletionError, Resource, ResourceTag, ResourceTagParameter, RowFilterExpression, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionTargetForm } from "./models_0";
3
+ import { type SearchSort, DataProductListingItem, Filter, Import, RelationPattern, SearchInItem } from "./models_1";
4
+ /**
5
+ * <p>The details of the results of the <code>SearchListings</code> action.</p>
6
+ * @public
7
+ */
8
+ export type SearchResultItem = SearchResultItem.AssetListingMember | SearchResultItem.DataProductListingMember | SearchResultItem.$UnknownMember;
9
+ /**
10
+ * @public
11
+ */
12
+ export declare namespace SearchResultItem {
13
+ /**
14
+ * <p>The asset listing included in the results of the <code>SearchListings</code> action.</p>
15
+ * @public
16
+ */
17
+ interface AssetListingMember {
18
+ assetListing: AssetListingItem;
19
+ dataProductListing?: never;
20
+ $unknown?: never;
21
+ }
22
+ /**
23
+ * <p>The data product listing.</p>
24
+ * @public
25
+ */
26
+ interface DataProductListingMember {
27
+ assetListing?: never;
28
+ dataProductListing: DataProductListingItem;
29
+ $unknown?: never;
30
+ }
31
+ /**
32
+ * @public
33
+ */
34
+ interface $UnknownMember {
35
+ assetListing?: never;
36
+ dataProductListing?: never;
37
+ $unknown: [string, any];
38
+ }
39
+ /**
40
+ * @deprecated unused in schema-serde mode.
41
+ *
42
+ */
43
+ interface Visitor<T> {
44
+ assetListing: (value: AssetListingItem) => T;
45
+ dataProductListing: (value: DataProductListingItem) => T;
46
+ _: (name: string, value: any) => T;
47
+ }
48
+ }
49
+ /**
50
+ * @public
51
+ */
52
+ export interface SearchListingsOutput {
53
+ /**
54
+ * <p>The results of the <code>SearchListings</code> action.</p>
55
+ * @public
56
+ */
57
+ items?: SearchResultItem[] | undefined;
58
+ /**
59
+ * <p>When the number of results is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of results, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>SearchListings</code> to list the next set of results.</p>
60
+ * @public
61
+ */
62
+ nextToken?: string | undefined;
63
+ /**
64
+ * <p>Total number of search results.</p>
65
+ * @public
66
+ */
67
+ totalMatchCount?: number | undefined;
68
+ /**
69
+ * <p>Contains computed counts grouped by field values based on the requested aggregation attributes for the matching listings.</p>
70
+ * @public
71
+ */
72
+ aggregates?: AggregationOutput[] | undefined;
73
+ }
74
+ /**
75
+ * <p>The details of the metadata form type.</p>
76
+ * @public
77
+ */
78
+ export interface FormTypeData {
79
+ /**
80
+ * <p>The identifier of the Amazon DataZone domain in which the form type exists.</p>
81
+ * @public
82
+ */
83
+ domainId: string | undefined;
84
+ /**
85
+ * <p>The name of the form type.</p>
86
+ * @public
87
+ */
88
+ name: string | undefined;
89
+ /**
90
+ * <p>The revision of the form type.</p>
91
+ * @public
92
+ */
93
+ revision: string | undefined;
94
+ /**
95
+ * <p>The model of the form type.</p>
96
+ * @public
97
+ */
98
+ model?: Model | undefined;
99
+ /**
100
+ * <p>The status of the form type.</p>
101
+ * @public
102
+ */
103
+ status?: FormTypeStatus | undefined;
104
+ /**
105
+ * <p>The identifier of the project that owns the form type.</p>
106
+ * @public
107
+ */
108
+ owningProjectId?: string | undefined;
109
+ /**
110
+ * <p>The identifier of the Amazon DataZone domain in which the form type was originally created.</p>
111
+ * @public
112
+ */
113
+ originDomainId?: string | undefined;
114
+ /**
115
+ * <p>The identifier of the project in which the form type was originally created.</p>
116
+ * @public
117
+ */
118
+ originProjectId?: string | undefined;
119
+ /**
120
+ * <p>The timestamp of when the metadata form type was created.</p>
121
+ * @public
122
+ */
123
+ createdAt?: Date | undefined;
124
+ /**
125
+ * <p>The Amazon DataZone user who created teh metadata form type.</p>
126
+ * @public
127
+ */
128
+ createdBy?: string | undefined;
129
+ /**
130
+ * <p>The description of the metadata form type.</p>
131
+ * @public
132
+ */
133
+ description?: string | undefined;
134
+ /**
135
+ * <p>The imports specified in the form type.</p>
136
+ * @public
137
+ */
138
+ imports?: Import[] | undefined;
139
+ }
140
+ /**
141
+ * <p>The details of a data lineage node type.</p>
142
+ * @public
143
+ */
144
+ export interface LineageNodeTypeItem {
145
+ /**
146
+ * <p>The ID of the domain where the data lineage node type lives.</p>
147
+ * @public
148
+ */
149
+ domainId: string | undefined;
150
+ /**
151
+ * <p>The name of the data lineage node type.</p>
152
+ * @public
153
+ */
154
+ name?: string | undefined;
155
+ /**
156
+ * <p>The description of the data lineage node type.</p>
157
+ * @public
158
+ */
159
+ description?: string | undefined;
160
+ /**
161
+ * <p>The timestamp at which the data lineage node type was created.</p>
162
+ * @public
163
+ */
164
+ createdAt?: Date | undefined;
165
+ /**
166
+ * <p>The user who created the data lineage node type.</p>
167
+ * @public
168
+ */
169
+ createdBy?: string | undefined;
170
+ /**
171
+ * <p>The timestamp at which the data lineage node type was updated.</p>
172
+ * @public
173
+ */
174
+ updatedAt?: Date | undefined;
175
+ /**
176
+ * <p>The user who updated the data lineage node type.</p>
177
+ * @public
178
+ */
179
+ updatedBy?: string | undefined;
180
+ /**
181
+ * <p>The revision of the data lineage node type.</p>
182
+ * @public
183
+ */
184
+ revision: string | undefined;
185
+ /**
186
+ * <p>The forms output of the data lineage node type.</p>
187
+ * @public
188
+ */
189
+ formsOutput: Record<string, FormEntryOutput> | undefined;
190
+ }
191
+ /**
192
+ * <p>The details of the results of the <code>SearchTypes</code> action.</p>
193
+ * @public
194
+ */
195
+ export type SearchTypesResultItem = SearchTypesResultItem.AssetTypeItemMember | SearchTypesResultItem.FormTypeItemMember | SearchTypesResultItem.LineageNodeTypeItemMember | SearchTypesResultItem.$UnknownMember;
196
+ /**
197
+ * @public
198
+ */
199
+ export declare namespace SearchTypesResultItem {
200
+ /**
201
+ * <p>The asset type included in the results of the <code>SearchTypes</code> action.</p>
202
+ * @public
203
+ */
204
+ interface AssetTypeItemMember {
205
+ assetTypeItem: AssetTypeItem;
206
+ formTypeItem?: never;
207
+ lineageNodeTypeItem?: never;
208
+ $unknown?: never;
209
+ }
210
+ /**
211
+ * <p>The form type included in the results of the <code>SearchTypes</code> action.</p>
212
+ * @public
213
+ */
214
+ interface FormTypeItemMember {
215
+ assetTypeItem?: never;
216
+ formTypeItem: FormTypeData;
217
+ lineageNodeTypeItem?: never;
218
+ $unknown?: never;
219
+ }
220
+ /**
221
+ * <p>The details of a data lineage node type.</p>
222
+ * @public
223
+ */
224
+ interface LineageNodeTypeItemMember {
225
+ assetTypeItem?: never;
226
+ formTypeItem?: never;
227
+ lineageNodeTypeItem: LineageNodeTypeItem;
228
+ $unknown?: never;
229
+ }
230
+ /**
231
+ * @public
232
+ */
233
+ interface $UnknownMember {
234
+ assetTypeItem?: never;
235
+ formTypeItem?: never;
236
+ lineageNodeTypeItem?: never;
237
+ $unknown: [string, any];
238
+ }
239
+ /**
240
+ * @deprecated unused in schema-serde mode.
241
+ *
242
+ */
243
+ interface Visitor<T> {
244
+ assetTypeItem: (value: AssetTypeItem) => T;
245
+ formTypeItem: (value: FormTypeData) => T;
246
+ lineageNodeTypeItem: (value: LineageNodeTypeItem) => T;
247
+ _: (name: string, value: any) => T;
248
+ }
249
+ }
4
250
  /**
5
251
  * @public
6
252
  */
@@ -1582,6 +1828,27 @@ export declare namespace RowFilter {
1582
1828
  _: (name: string, value: any) => T;
1583
1829
  }
1584
1830
  }
1831
+ /**
1832
+ * <p>The pattern describing the entities to be matched during the graph query.</p>
1833
+ * @public
1834
+ */
1835
+ export interface EntityPattern {
1836
+ /**
1837
+ * <p>The type of entity to be matched during the graph query.</p>
1838
+ * @public
1839
+ */
1840
+ entityType: GraphEntityType | undefined;
1841
+ /**
1842
+ * <p>The identifier of the root entity to start traversal from during the graph query.</p>
1843
+ * @public
1844
+ */
1845
+ identifier: string | undefined;
1846
+ /**
1847
+ * <p>A search filter clause in Amazon DataZone.</p>
1848
+ * @public
1849
+ */
1850
+ filters?: FilterClause | undefined;
1851
+ }
1585
1852
  /**
1586
1853
  * <p>The row filter configuration details.</p>
1587
1854
  * @public
@@ -1798,6 +2065,51 @@ export declare namespace AssetFilterConfiguration {
1798
2065
  _: (name: string, value: any) => T;
1799
2066
  }
1800
2067
  }
2068
+ /**
2069
+ * <p>A clause to match a query pattern</p>
2070
+ * @public
2071
+ */
2072
+ export type MatchClause = MatchClause.EntityPatternMember | MatchClause.RelationPatternMember | MatchClause.$UnknownMember;
2073
+ /**
2074
+ * @public
2075
+ */
2076
+ export declare namespace MatchClause {
2077
+ /**
2078
+ * <p>The pattern describing the query's relational traversal.</p>
2079
+ * @public
2080
+ */
2081
+ interface RelationPatternMember {
2082
+ relationPattern: RelationPattern;
2083
+ entityPattern?: never;
2084
+ $unknown?: never;
2085
+ }
2086
+ /**
2087
+ * <p>The pattern describing the entities for the query to traverse.</p>
2088
+ * @public
2089
+ */
2090
+ interface EntityPatternMember {
2091
+ relationPattern?: never;
2092
+ entityPattern: EntityPattern;
2093
+ $unknown?: never;
2094
+ }
2095
+ /**
2096
+ * @public
2097
+ */
2098
+ interface $UnknownMember {
2099
+ relationPattern?: never;
2100
+ entityPattern?: never;
2101
+ $unknown: [string, any];
2102
+ }
2103
+ /**
2104
+ * @deprecated unused in schema-serde mode.
2105
+ *
2106
+ */
2107
+ interface Visitor<T> {
2108
+ relationPattern: (value: RelationPattern) => T;
2109
+ entityPattern: (value: EntityPattern) => T;
2110
+ _: (name: string, value: any) => T;
2111
+ }
2112
+ }
1801
2113
  /**
1802
2114
  * @public
1803
2115
  */
@@ -2048,3 +2360,33 @@ export interface UpdateAssetFilterOutput {
2048
2360
  */
2049
2361
  effectiveRowFilter?: string | undefined;
2050
2362
  }
2363
+ /**
2364
+ * @public
2365
+ */
2366
+ export interface QueryGraphInput {
2367
+ /**
2368
+ * <p>The identifier of the Amazon DataZone domain.</p>
2369
+ * @public
2370
+ */
2371
+ domainIdentifier: string | undefined;
2372
+ /**
2373
+ * <p>List of query match clauses.</p>
2374
+ * @public
2375
+ */
2376
+ match: MatchClause[] | undefined;
2377
+ /**
2378
+ * <p>The maximum number of entities to return in a single call to <code>QueryGraph</code>. When the number of entities to be listed is greater than the value of <code>MaxResults</code>, the response contains a <code>NextToken</code> value that you can use in a subsequent call to <code>QueryGraph</code> to list the next set of entities.</p>
2379
+ * @public
2380
+ */
2381
+ maxResults?: number | undefined;
2382
+ /**
2383
+ * <p>When the number of entities is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of entities, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>QueryGraph</code> to list the next set of entities.</p>
2384
+ * @public
2385
+ */
2386
+ nextToken?: string | undefined;
2387
+ /**
2388
+ * <p>Additional details on the queried entity that can be requested in the response.</p>
2389
+ * @public
2390
+ */
2391
+ additionalAttributes?: AdditionalAttributes | undefined;
2392
+ }
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { QueryGraphCommandInput, QueryGraphCommandOutput } from "../commands/QueryGraphCommand";
3
+ import { DataZonePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateQueryGraph: (config: DataZonePaginationConfiguration, input: QueryGraphCommandInput, ...rest: any[]) => Paginator<QueryGraphCommandOutput>;
@@ -31,6 +31,7 @@ export * from "./ListSubscriptionRequestsPaginator";
31
31
  export * from "./ListSubscriptionsPaginator";
32
32
  export * from "./ListSubscriptionTargetsPaginator";
33
33
  export * from "./ListTimeSeriesDataPointsPaginator";
34
+ export * from "./QueryGraphPaginator";
34
35
  export * from "./SearchPaginator";
35
36
  export * from "./SearchGroupProfilesPaginator";
36
37
  export * from "./SearchListingsPaginator";
@@ -26,6 +26,7 @@ export declare var AccountInfo$: StaticStructureSchema;
26
26
  export declare var AccountPoolSummary$: StaticStructureSchema;
27
27
  export declare var AddEntityOwnerInput$: StaticStructureSchema;
28
28
  export declare var AddEntityOwnerOutput$: StaticStructureSchema;
29
+ export declare var AdditionalAttributes$: StaticStructureSchema;
29
30
  export declare var AddPolicyGrantInput$: StaticStructureSchema;
30
31
  export declare var AddPolicyGrantOutput$: StaticStructureSchema;
31
32
  export declare var AddToProjectMemberPoolPolicyGrantDetail$: StaticStructureSchema;
@@ -223,6 +224,7 @@ export declare var DomainUnitSummary$: StaticStructureSchema;
223
224
  export declare var DomainUnitTarget$: StaticStructureSchema;
224
225
  export declare var DomainUnitUserProperties$: StaticStructureSchema;
225
226
  export declare var EncryptionConfiguration$: StaticStructureSchema;
227
+ export declare var EntityPattern$: StaticStructureSchema;
226
228
  export declare var EnvironmentActionSummary$: StaticStructureSchema;
227
229
  export declare var EnvironmentBlueprintConfigurationItem$: StaticStructureSchema;
228
230
  export declare var EnvironmentBlueprintSummary$: StaticStructureSchema;
@@ -354,6 +356,7 @@ export declare var LessThanOrEqualToExpression$: StaticStructureSchema;
354
356
  export declare var LikeExpression$: StaticStructureSchema;
355
357
  export declare var LineageEventSummary$: StaticStructureSchema;
356
358
  export declare var LineageInfo$: StaticStructureSchema;
359
+ export declare var LineageNodeItem$: StaticStructureSchema;
357
360
  export declare var LineageNodeReference$: StaticStructureSchema;
358
361
  export declare var LineageNodeSummary$: StaticStructureSchema;
359
362
  export declare var LineageNodeTypeItem$: StaticStructureSchema;
@@ -474,6 +477,8 @@ export declare var PutDataExportConfigurationInput$: StaticStructureSchema;
474
477
  export declare var PutDataExportConfigurationOutput$: StaticStructureSchema;
475
478
  export declare var PutEnvironmentBlueprintConfigurationInput$: StaticStructureSchema;
476
479
  export declare var PutEnvironmentBlueprintConfigurationOutput$: StaticStructureSchema;
480
+ export declare var QueryGraphInput$: StaticStructureSchema;
481
+ export declare var QueryGraphOutput$: StaticStructureSchema;
477
482
  export declare var RecommendationConfiguration$: StaticStructureSchema;
478
483
  export declare var RedshiftClusterStorage$: StaticStructureSchema;
479
484
  export declare var RedshiftCredentialConfiguration$: StaticStructureSchema;
@@ -493,6 +498,7 @@ export declare var RejectRule$: StaticStructureSchema;
493
498
  export declare var RejectSubscriptionRequestInput$: StaticStructureSchema;
494
499
  export declare var RejectSubscriptionRequestOutput$: StaticStructureSchema;
495
500
  export declare var RelationalFilterConfiguration$: StaticStructureSchema;
501
+ export declare var RelationPattern$: StaticStructureSchema;
496
502
  export declare var RemoveEntityOwnerInput$: StaticStructureSchema;
497
503
  export declare var RemoveEntityOwnerOutput$: StaticStructureSchema;
498
504
  export declare var RemovePolicyGrantInput$: StaticStructureSchema;
@@ -634,6 +640,7 @@ export declare var GrantedEntityInput$: StaticUnionSchema;
634
640
  export declare var GroupPolicyGrantPrincipal$: StaticUnionSchema;
635
641
  export declare var JobRunDetails$: StaticUnionSchema;
636
642
  export declare var ListingItem$: StaticUnionSchema;
643
+ export declare var MatchClause$: StaticUnionSchema;
637
644
  export declare var MatchRationaleItem$: StaticUnionSchema;
638
645
  export declare var Member$: StaticUnionSchema;
639
646
  export declare var MemberDetails$: StaticUnionSchema;
@@ -650,6 +657,7 @@ export declare var RedshiftCredentials$: StaticUnionSchema;
650
657
  export declare var RedshiftStorage$: StaticUnionSchema;
651
658
  export declare var RedshiftStorageProperties$: StaticUnionSchema;
652
659
  export declare var Region$: StaticUnionSchema;
660
+ export declare var ResultItem$: StaticUnionSchema;
653
661
  export declare var RowFilter$: StaticUnionSchema;
654
662
  export declare var RowFilterExpression$: StaticUnionSchema;
655
663
  export declare var RuleDetail$: StaticUnionSchema;
@@ -803,6 +811,7 @@ export declare var PostLineageEvent$: StaticOperationSchema;
803
811
  export declare var PostTimeSeriesDataPoints$: StaticOperationSchema;
804
812
  export declare var PutDataExportConfiguration$: StaticOperationSchema;
805
813
  export declare var PutEnvironmentBlueprintConfiguration$: StaticOperationSchema;
814
+ export declare var QueryGraph$: StaticOperationSchema;
806
815
  export declare var RejectPredictions$: StaticOperationSchema;
807
816
  export declare var RejectSubscriptionRequest$: StaticOperationSchema;
808
817
  export declare var RemoveEntityOwner$: StaticOperationSchema;
@@ -563,6 +563,10 @@ import {
563
563
  PutEnvironmentBlueprintConfigurationCommandInput,
564
564
  PutEnvironmentBlueprintConfigurationCommandOutput,
565
565
  } from "./commands/PutEnvironmentBlueprintConfigurationCommand";
566
+ import {
567
+ QueryGraphCommandInput,
568
+ QueryGraphCommandOutput,
569
+ } from "./commands/QueryGraphCommand";
566
570
  import {
567
571
  RejectPredictionsCommandInput,
568
572
  RejectPredictionsCommandOutput,
@@ -2550,6 +2554,19 @@ export interface DataZone {
2550
2554
  data?: PutEnvironmentBlueprintConfigurationCommandOutput
2551
2555
  ) => void
2552
2556
  ): void;
2557
+ queryGraph(
2558
+ args: QueryGraphCommandInput,
2559
+ options?: __HttpHandlerOptions
2560
+ ): Promise<QueryGraphCommandOutput>;
2561
+ queryGraph(
2562
+ args: QueryGraphCommandInput,
2563
+ cb: (err: any, data?: QueryGraphCommandOutput) => void
2564
+ ): void;
2565
+ queryGraph(
2566
+ args: QueryGraphCommandInput,
2567
+ options: __HttpHandlerOptions,
2568
+ cb: (err: any, data?: QueryGraphCommandOutput) => void
2569
+ ): void;
2553
2570
  rejectPredictions(
2554
2571
  args: RejectPredictionsCommandInput,
2555
2572
  options?: __HttpHandlerOptions
@@ -3229,6 +3246,13 @@ export interface DataZone {
3229
3246
  Exclude<keyof PaginationConfiguration, "client">
3230
3247
  >
3231
3248
  ): Paginator<ListTimeSeriesDataPointsCommandOutput>;
3249
+ paginateQueryGraph(
3250
+ args: QueryGraphCommandInput,
3251
+ paginationConfig?: Pick<
3252
+ PaginationConfiguration,
3253
+ Exclude<keyof PaginationConfiguration, "client">
3254
+ >
3255
+ ): Paginator<QueryGraphCommandOutput>;
3232
3256
  paginateSearch(
3233
3257
  args: SearchCommandInput,
3234
3258
  paginationConfig?: Pick<
@@ -605,6 +605,10 @@ import {
605
605
  PutEnvironmentBlueprintConfigurationCommandInput,
606
606
  PutEnvironmentBlueprintConfigurationCommandOutput,
607
607
  } from "./commands/PutEnvironmentBlueprintConfigurationCommand";
608
+ import {
609
+ QueryGraphCommandInput,
610
+ QueryGraphCommandOutput,
611
+ } from "./commands/QueryGraphCommand";
608
612
  import {
609
613
  RejectPredictionsCommandInput,
610
614
  RejectPredictionsCommandOutput,
@@ -893,6 +897,7 @@ export type ServiceInputTypes =
893
897
  | PostTimeSeriesDataPointsCommandInput
894
898
  | PutDataExportConfigurationCommandInput
895
899
  | PutEnvironmentBlueprintConfigurationCommandInput
900
+ | QueryGraphCommandInput
896
901
  | RejectPredictionsCommandInput
897
902
  | RejectSubscriptionRequestCommandInput
898
903
  | RemoveEntityOwnerCommandInput
@@ -1069,6 +1074,7 @@ export type ServiceOutputTypes =
1069
1074
  | PostTimeSeriesDataPointsCommandOutput
1070
1075
  | PutDataExportConfigurationCommandOutput
1071
1076
  | PutEnvironmentBlueprintConfigurationCommandOutput
1077
+ | QueryGraphCommandOutput
1072
1078
  | RejectPredictionsCommandOutput
1073
1079
  | RejectSubscriptionRequestCommandOutput
1074
1080
  | RemoveEntityOwnerCommandOutput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../DataZoneClient";
8
- import {
9
- CreateSubscriptionTargetInput,
10
- CreateSubscriptionTargetOutput,
11
- } from "../models/models_0";
8
+ import { CreateSubscriptionTargetInput } from "../models/models_0";
9
+ import { CreateSubscriptionTargetOutput } from "../models/models_1";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface CreateSubscriptionTargetCommandInput
@@ -0,0 +1,48 @@
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 { QueryGraphOutput } from "../models/models_1";
9
+ import { QueryGraphInput } from "../models/models_2";
10
+ export { __MetadataBearer };
11
+ export { $Command };
12
+ export interface QueryGraphCommandInput extends QueryGraphInput {}
13
+ export interface QueryGraphCommandOutput
14
+ extends QueryGraphOutput,
15
+ __MetadataBearer {}
16
+ declare const QueryGraphCommand_base: {
17
+ new (
18
+ input: QueryGraphCommandInput
19
+ ): import("@smithy/smithy-client").CommandImpl<
20
+ QueryGraphCommandInput,
21
+ QueryGraphCommandOutput,
22
+ DataZoneClientResolvedConfig,
23
+ ServiceInputTypes,
24
+ ServiceOutputTypes
25
+ >;
26
+ new (
27
+ input: QueryGraphCommandInput
28
+ ): import("@smithy/smithy-client").CommandImpl<
29
+ QueryGraphCommandInput,
30
+ QueryGraphCommandOutput,
31
+ DataZoneClientResolvedConfig,
32
+ ServiceInputTypes,
33
+ ServiceOutputTypes
34
+ >;
35
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
36
+ };
37
+ export declare class QueryGraphCommand extends QueryGraphCommand_base {
38
+ protected static __types: {
39
+ api: {
40
+ input: QueryGraphInput;
41
+ output: QueryGraphOutput;
42
+ };
43
+ sdk: {
44
+ input: QueryGraphCommandInput;
45
+ output: QueryGraphCommandOutput;
46
+ };
47
+ };
48
+ }
@@ -5,8 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../DataZoneClient";
8
- import { SearchListingsOutput } from "../models/models_1";
9
- import { SearchListingsInput } from "../models/models_2";
8
+ import { SearchListingsInput, SearchListingsOutput } from "../models/models_2";
10
9
  export { __MetadataBearer };
11
10
  export { $Command };
12
11
  export interface SearchListingsCommandInput extends SearchListingsInput {}
@@ -138,6 +138,7 @@ export * from "./PostLineageEventCommand";
138
138
  export * from "./PostTimeSeriesDataPointsCommand";
139
139
  export * from "./PutDataExportConfigurationCommand";
140
140
  export * from "./PutEnvironmentBlueprintConfigurationCommand";
141
+ export * from "./QueryGraphCommand";
141
142
  export * from "./RejectPredictionsCommand";
142
143
  export * from "./RejectSubscriptionRequestCommand";
143
144
  export * from "./RemoveEntityOwnerCommand";
@@ -699,6 +699,31 @@ export declare const MetadataGenerationTargetType: {
699
699
  };
700
700
  export type MetadataGenerationTargetType =
701
701
  (typeof MetadataGenerationTargetType)[keyof typeof MetadataGenerationTargetType];
702
+ export declare const GraphEntityType: {
703
+ readonly LINEAGE_NODE: "LINEAGE_NODE";
704
+ };
705
+ export type GraphEntityType =
706
+ (typeof GraphEntityType)[keyof typeof GraphEntityType];
707
+ export declare const FilterOperator: {
708
+ readonly EQ: "EQ";
709
+ readonly GE: "GE";
710
+ readonly GT: "GT";
711
+ readonly LE: "LE";
712
+ readonly LT: "LT";
713
+ readonly TEXT_SEARCH: "TEXT_SEARCH";
714
+ };
715
+ export type FilterOperator =
716
+ (typeof FilterOperator)[keyof typeof FilterOperator];
717
+ export declare const RelationDirection: {
718
+ readonly IN: "IN";
719
+ readonly OUT: "OUT";
720
+ };
721
+ export type RelationDirection =
722
+ (typeof RelationDirection)[keyof typeof RelationDirection];
723
+ export declare const RelationType: {
724
+ readonly LINEAGE: "LINEAGE";
725
+ };
726
+ export type RelationType = (typeof RelationType)[keyof typeof RelationType];
702
727
  export declare const RejectRuleBehavior: {
703
728
  readonly ALL: "ALL";
704
729
  readonly NONE: "NONE";
@@ -712,16 +737,6 @@ export declare const SearchOutputAdditionalAttribute: {
712
737
  };
713
738
  export type SearchOutputAdditionalAttribute =
714
739
  (typeof SearchOutputAdditionalAttribute)[keyof typeof SearchOutputAdditionalAttribute];
715
- export declare const FilterOperator: {
716
- readonly EQ: "EQ";
717
- readonly GE: "GE";
718
- readonly GT: "GT";
719
- readonly LE: "LE";
720
- readonly LT: "LT";
721
- readonly TEXT_SEARCH: "TEXT_SEARCH";
722
- };
723
- export type FilterOperator =
724
- (typeof FilterOperator)[keyof typeof FilterOperator];
725
740
  export declare const InventorySearchScope: {
726
741
  readonly ASSET: "ASSET";
727
742
  readonly DATA_PRODUCT: "DATA_PRODUCT";
@@ -405,6 +405,9 @@ export interface AddEntityOwnerInput {
405
405
  clientToken?: string | undefined;
406
406
  }
407
407
  export interface AddEntityOwnerOutput {}
408
+ export interface AdditionalAttributes {
409
+ formNames?: string[] | undefined;
410
+ }
408
411
  export interface AddToProjectMemberPoolPolicyGrantDetail {
409
412
  includeChildDomainUnits?: boolean | undefined;
410
413
  }
@@ -3620,21 +3623,3 @@ export interface CreateSubscriptionTargetInput {
3620
3623
  clientToken?: string | undefined;
3621
3624
  subscriptionGrantCreationMode?: SubscriptionGrantCreationMode | undefined;
3622
3625
  }
3623
- export interface CreateSubscriptionTargetOutput {
3624
- id: string | undefined;
3625
- authorizedPrincipals: string[] | undefined;
3626
- domainId: string | undefined;
3627
- projectId: string | undefined;
3628
- environmentId: string | undefined;
3629
- name: string | undefined;
3630
- type: string | undefined;
3631
- createdBy: string | undefined;
3632
- updatedBy?: string | undefined;
3633
- createdAt: Date | undefined;
3634
- updatedAt?: Date | undefined;
3635
- manageAccessRole?: string | undefined;
3636
- applicableAssetTypes: string[] | undefined;
3637
- subscriptionTargetConfig: SubscriptionTargetForm[] | undefined;
3638
- provider: string | undefined;
3639
- subscriptionGrantCreationMode?: SubscriptionGrantCreationMode | undefined;
3640
- }