@aws-sdk/client-datazone 3.1000.0 → 3.1002.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 +7 -0
- package/dist-cjs/index.js +39 -8
- package/dist-cjs/schemas/schemas_0.js +113 -40
- package/dist-es/DataZone.js +4 -0
- package/dist-es/commands/QueryGraphCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +18 -8
- package/dist-es/pagination/QueryGraphPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +96 -23
- package/dist-types/DataZone.d.ts +14 -0
- package/dist-types/DataZoneClient.d.ts +3 -2
- package/dist-types/commands/CreateSubscriptionTargetCommand.d.ts +2 -1
- package/dist-types/commands/QueryGraphCommand.d.ts +169 -0
- package/dist-types/commands/SearchListingsCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +50 -16
- package/dist-types/models/models_0.d.ts +11 -85
- package/dist-types/models/models_1.d.ts +263 -274
- package/dist-types/models/models_2.d.ts +345 -3
- package/dist-types/pagination/QueryGraphPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +9 -0
- package/dist-types/ts3.4/DataZone.d.ts +24 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/CreateSubscriptionTargetCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/QueryGraphCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/SearchListingsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +25 -10
- package/dist-types/ts3.4/models/models_0.d.ts +3 -18
- package/dist-types/ts3.4/models/models_1.d.ts +69 -104
- package/dist-types/ts3.4/models/models_2.d.ts +143 -1
- package/dist-types/ts3.4/pagination/QueryGraphPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
- package/package.json +14 -14
|
@@ -38,6 +38,8 @@ import {
|
|
|
38
38
|
OpenLineageRunState,
|
|
39
39
|
ProjectStatus,
|
|
40
40
|
RejectRuleBehavior,
|
|
41
|
+
RelationDirection,
|
|
42
|
+
RelationType,
|
|
41
43
|
ResolutionStrategy,
|
|
42
44
|
RuleAction,
|
|
43
45
|
RuleTargetType,
|
|
@@ -89,13 +91,10 @@ import {
|
|
|
89
91
|
UserProfileDetails,
|
|
90
92
|
AccountInfo,
|
|
91
93
|
AccountPoolSummary,
|
|
92
|
-
AggregationOutput,
|
|
93
94
|
AssetFilterSummary,
|
|
94
95
|
AssetItem,
|
|
95
96
|
AssetListing,
|
|
96
|
-
AssetListingItem,
|
|
97
97
|
AssetRevision,
|
|
98
|
-
AssetTypeItem,
|
|
99
98
|
ConfigurableEnvironmentAction,
|
|
100
99
|
ConnectionSummary,
|
|
101
100
|
CustomParameter,
|
|
@@ -104,7 +103,6 @@ import {
|
|
|
104
103
|
DomainUnitOwnerProperties,
|
|
105
104
|
EnvironmentConfiguration,
|
|
106
105
|
EnvironmentConfigurationUserParameter,
|
|
107
|
-
FormEntryOutput,
|
|
108
106
|
FormInput,
|
|
109
107
|
FormOutput,
|
|
110
108
|
MatchRationaleItem,
|
|
@@ -119,6 +117,24 @@ import {
|
|
|
119
117
|
SubscriptionTargetForm,
|
|
120
118
|
TimeSeriesDataPointSummaryFormOutput,
|
|
121
119
|
} from "./models_0";
|
|
120
|
+
export interface CreateSubscriptionTargetOutput {
|
|
121
|
+
id: string | undefined;
|
|
122
|
+
authorizedPrincipals: string[] | undefined;
|
|
123
|
+
domainId: string | undefined;
|
|
124
|
+
projectId: string | undefined;
|
|
125
|
+
environmentId: string | undefined;
|
|
126
|
+
name: string | undefined;
|
|
127
|
+
type: string | undefined;
|
|
128
|
+
createdBy: string | undefined;
|
|
129
|
+
updatedBy?: string | undefined;
|
|
130
|
+
createdAt: Date | undefined;
|
|
131
|
+
updatedAt?: Date | undefined;
|
|
132
|
+
manageAccessRole?: string | undefined;
|
|
133
|
+
applicableAssetTypes: string[] | undefined;
|
|
134
|
+
subscriptionTargetConfig: SubscriptionTargetForm[] | undefined;
|
|
135
|
+
provider: string | undefined;
|
|
136
|
+
subscriptionGrantCreationMode?: SubscriptionGrantCreationMode | undefined;
|
|
137
|
+
}
|
|
122
138
|
export interface CreateUserProfileInput {
|
|
123
139
|
domainIdentifier: string | undefined;
|
|
124
140
|
userIdentifier: string | undefined;
|
|
@@ -2082,6 +2098,55 @@ export interface PutDataExportConfigurationInput {
|
|
|
2082
2098
|
clientToken?: string | undefined;
|
|
2083
2099
|
}
|
|
2084
2100
|
export interface PutDataExportConfigurationOutput {}
|
|
2101
|
+
export interface Filter {
|
|
2102
|
+
attribute: string | undefined;
|
|
2103
|
+
value?: string | undefined;
|
|
2104
|
+
intValue?: number | undefined;
|
|
2105
|
+
operator?: FilterOperator | undefined;
|
|
2106
|
+
}
|
|
2107
|
+
export interface RelationPattern {
|
|
2108
|
+
relationType: RelationType | undefined;
|
|
2109
|
+
relationDirection: RelationDirection | undefined;
|
|
2110
|
+
maxPathLength?: number | undefined;
|
|
2111
|
+
}
|
|
2112
|
+
export interface LineageNodeItem {
|
|
2113
|
+
domainId: string | undefined;
|
|
2114
|
+
name?: string | undefined;
|
|
2115
|
+
description?: string | undefined;
|
|
2116
|
+
createdAt?: Date | undefined;
|
|
2117
|
+
createdBy?: string | undefined;
|
|
2118
|
+
updatedAt?: Date | undefined;
|
|
2119
|
+
updatedBy?: string | undefined;
|
|
2120
|
+
id: string | undefined;
|
|
2121
|
+
typeName: string | undefined;
|
|
2122
|
+
typeRevision?: string | undefined;
|
|
2123
|
+
sourceIdentifier?: string | undefined;
|
|
2124
|
+
eventTimestamp?: Date | undefined;
|
|
2125
|
+
formsOutput?: FormOutput[] | undefined;
|
|
2126
|
+
upstreamLineageNodeIds?: string[] | undefined;
|
|
2127
|
+
downstreamLineageNodeIds?: string[] | undefined;
|
|
2128
|
+
}
|
|
2129
|
+
export type ResultItem =
|
|
2130
|
+
| ResultItem.LineageNodeMember
|
|
2131
|
+
| ResultItem.$UnknownMember;
|
|
2132
|
+
export declare namespace ResultItem {
|
|
2133
|
+
interface LineageNodeMember {
|
|
2134
|
+
lineageNode: LineageNodeItem;
|
|
2135
|
+
$unknown?: never;
|
|
2136
|
+
}
|
|
2137
|
+
interface $UnknownMember {
|
|
2138
|
+
lineageNode?: never;
|
|
2139
|
+
$unknown: [string, any];
|
|
2140
|
+
}
|
|
2141
|
+
interface Visitor<T> {
|
|
2142
|
+
lineageNode: (value: LineageNodeItem) => T;
|
|
2143
|
+
_: (name: string, value: any) => T;
|
|
2144
|
+
}
|
|
2145
|
+
}
|
|
2146
|
+
export interface QueryGraphOutput {
|
|
2147
|
+
items?: ResultItem[] | undefined;
|
|
2148
|
+
nextToken?: string | undefined;
|
|
2149
|
+
}
|
|
2085
2150
|
export interface RejectChoice {
|
|
2086
2151
|
predictionTarget: string | undefined;
|
|
2087
2152
|
predictionChoices?: number[] | undefined;
|
|
@@ -2239,12 +2304,6 @@ export interface UpdateRuleOutput {
|
|
|
2239
2304
|
createdBy: string | undefined;
|
|
2240
2305
|
lastUpdatedBy: string | undefined;
|
|
2241
2306
|
}
|
|
2242
|
-
export interface Filter {
|
|
2243
|
-
attribute: string | undefined;
|
|
2244
|
-
value?: string | undefined;
|
|
2245
|
-
intValue?: number | undefined;
|
|
2246
|
-
operator?: FilterOperator | undefined;
|
|
2247
|
-
}
|
|
2248
2307
|
export interface SearchInItem {
|
|
2249
2308
|
attribute: string | undefined;
|
|
2250
2309
|
}
|
|
@@ -2360,97 +2419,3 @@ export interface SearchGroupProfilesOutput {
|
|
|
2360
2419
|
items?: GroupProfileSummary[] | undefined;
|
|
2361
2420
|
nextToken?: string | undefined;
|
|
2362
2421
|
}
|
|
2363
|
-
export type SearchResultItem =
|
|
2364
|
-
| SearchResultItem.AssetListingMember
|
|
2365
|
-
| SearchResultItem.DataProductListingMember
|
|
2366
|
-
| SearchResultItem.$UnknownMember;
|
|
2367
|
-
export declare namespace SearchResultItem {
|
|
2368
|
-
interface AssetListingMember {
|
|
2369
|
-
assetListing: AssetListingItem;
|
|
2370
|
-
dataProductListing?: never;
|
|
2371
|
-
$unknown?: never;
|
|
2372
|
-
}
|
|
2373
|
-
interface DataProductListingMember {
|
|
2374
|
-
assetListing?: never;
|
|
2375
|
-
dataProductListing: DataProductListingItem;
|
|
2376
|
-
$unknown?: never;
|
|
2377
|
-
}
|
|
2378
|
-
interface $UnknownMember {
|
|
2379
|
-
assetListing?: never;
|
|
2380
|
-
dataProductListing?: never;
|
|
2381
|
-
$unknown: [string, any];
|
|
2382
|
-
}
|
|
2383
|
-
interface Visitor<T> {
|
|
2384
|
-
assetListing: (value: AssetListingItem) => T;
|
|
2385
|
-
dataProductListing: (value: DataProductListingItem) => T;
|
|
2386
|
-
_: (name: string, value: any) => T;
|
|
2387
|
-
}
|
|
2388
|
-
}
|
|
2389
|
-
export interface SearchListingsOutput {
|
|
2390
|
-
items?: SearchResultItem[] | undefined;
|
|
2391
|
-
nextToken?: string | undefined;
|
|
2392
|
-
totalMatchCount?: number | undefined;
|
|
2393
|
-
aggregates?: AggregationOutput[] | undefined;
|
|
2394
|
-
}
|
|
2395
|
-
export interface FormTypeData {
|
|
2396
|
-
domainId: string | undefined;
|
|
2397
|
-
name: string | undefined;
|
|
2398
|
-
revision: string | undefined;
|
|
2399
|
-
model?: Model | undefined;
|
|
2400
|
-
status?: FormTypeStatus | undefined;
|
|
2401
|
-
owningProjectId?: string | undefined;
|
|
2402
|
-
originDomainId?: string | undefined;
|
|
2403
|
-
originProjectId?: string | undefined;
|
|
2404
|
-
createdAt?: Date | undefined;
|
|
2405
|
-
createdBy?: string | undefined;
|
|
2406
|
-
description?: string | undefined;
|
|
2407
|
-
imports?: Import[] | undefined;
|
|
2408
|
-
}
|
|
2409
|
-
export interface LineageNodeTypeItem {
|
|
2410
|
-
domainId: string | undefined;
|
|
2411
|
-
name?: string | undefined;
|
|
2412
|
-
description?: string | undefined;
|
|
2413
|
-
createdAt?: Date | undefined;
|
|
2414
|
-
createdBy?: string | undefined;
|
|
2415
|
-
updatedAt?: Date | undefined;
|
|
2416
|
-
updatedBy?: string | undefined;
|
|
2417
|
-
revision: string | undefined;
|
|
2418
|
-
formsOutput: Record<string, FormEntryOutput> | undefined;
|
|
2419
|
-
}
|
|
2420
|
-
export type SearchTypesResultItem =
|
|
2421
|
-
| SearchTypesResultItem.AssetTypeItemMember
|
|
2422
|
-
| SearchTypesResultItem.FormTypeItemMember
|
|
2423
|
-
| SearchTypesResultItem.LineageNodeTypeItemMember
|
|
2424
|
-
| SearchTypesResultItem.$UnknownMember;
|
|
2425
|
-
export declare namespace SearchTypesResultItem {
|
|
2426
|
-
interface AssetTypeItemMember {
|
|
2427
|
-
assetTypeItem: AssetTypeItem;
|
|
2428
|
-
formTypeItem?: never;
|
|
2429
|
-
lineageNodeTypeItem?: never;
|
|
2430
|
-
$unknown?: never;
|
|
2431
|
-
}
|
|
2432
|
-
interface FormTypeItemMember {
|
|
2433
|
-
assetTypeItem?: never;
|
|
2434
|
-
formTypeItem: FormTypeData;
|
|
2435
|
-
lineageNodeTypeItem?: never;
|
|
2436
|
-
$unknown?: never;
|
|
2437
|
-
}
|
|
2438
|
-
interface LineageNodeTypeItemMember {
|
|
2439
|
-
assetTypeItem?: never;
|
|
2440
|
-
formTypeItem?: never;
|
|
2441
|
-
lineageNodeTypeItem: LineageNodeTypeItem;
|
|
2442
|
-
$unknown?: never;
|
|
2443
|
-
}
|
|
2444
|
-
interface $UnknownMember {
|
|
2445
|
-
assetTypeItem?: never;
|
|
2446
|
-
formTypeItem?: never;
|
|
2447
|
-
lineageNodeTypeItem?: never;
|
|
2448
|
-
$unknown: [string, any];
|
|
2449
|
-
}
|
|
2450
|
-
interface Visitor<T> {
|
|
2451
|
-
assetTypeItem: (value: AssetTypeItem) => T;
|
|
2452
|
-
formTypeItem: (value: FormTypeData) => T;
|
|
2453
|
-
lineageNodeTypeItem: (value: LineageNodeTypeItem) => T;
|
|
2454
|
-
_: (name: string, value: any) => T;
|
|
2455
|
-
}
|
|
2456
|
-
}
|
|
@@ -3,6 +3,8 @@ import {
|
|
|
3
3
|
ConnectionType,
|
|
4
4
|
EnvironmentStatus,
|
|
5
5
|
FilterStatus,
|
|
6
|
+
FormTypeStatus,
|
|
7
|
+
GraphEntityType,
|
|
6
8
|
GroupProfileStatus,
|
|
7
9
|
InventorySearchScope,
|
|
8
10
|
ProjectStatus,
|
|
@@ -21,6 +23,7 @@ import {
|
|
|
21
23
|
import {
|
|
22
24
|
AccountSource,
|
|
23
25
|
ActionParameters,
|
|
26
|
+
AdditionalAttributes,
|
|
24
27
|
AwsLocation,
|
|
25
28
|
ConnectionPropertiesOutput,
|
|
26
29
|
ConnectionPropertiesPatch,
|
|
@@ -29,15 +32,20 @@ import {
|
|
|
29
32
|
EnvironmentDeploymentDetails,
|
|
30
33
|
FailureCause,
|
|
31
34
|
GrantedEntity,
|
|
35
|
+
Model,
|
|
32
36
|
ProvisioningProperties,
|
|
33
37
|
UserProfileDetails,
|
|
34
38
|
AggregationListItem,
|
|
39
|
+
AggregationOutput,
|
|
40
|
+
AssetListingItem,
|
|
41
|
+
AssetTypeItem,
|
|
35
42
|
ColumnFilterConfiguration,
|
|
36
43
|
ConfigurableEnvironmentAction,
|
|
37
44
|
CustomParameter,
|
|
38
45
|
EnvironmentConfiguration,
|
|
39
46
|
EnvironmentConfigurationUserParameter,
|
|
40
47
|
EnvironmentParameter,
|
|
48
|
+
FormEntryOutput,
|
|
41
49
|
FormOutput,
|
|
42
50
|
PhysicalEndpoint,
|
|
43
51
|
ProjectDeletionError,
|
|
@@ -52,10 +60,106 @@ import {
|
|
|
52
60
|
} from "./models_0";
|
|
53
61
|
import {
|
|
54
62
|
SearchSort,
|
|
63
|
+
DataProductListingItem,
|
|
55
64
|
Filter,
|
|
65
|
+
Import,
|
|
66
|
+
RelationPattern,
|
|
56
67
|
SearchInItem,
|
|
57
|
-
SearchTypesResultItem,
|
|
58
68
|
} from "./models_1";
|
|
69
|
+
export type SearchResultItem =
|
|
70
|
+
| SearchResultItem.AssetListingMember
|
|
71
|
+
| SearchResultItem.DataProductListingMember
|
|
72
|
+
| SearchResultItem.$UnknownMember;
|
|
73
|
+
export declare namespace SearchResultItem {
|
|
74
|
+
interface AssetListingMember {
|
|
75
|
+
assetListing: AssetListingItem;
|
|
76
|
+
dataProductListing?: never;
|
|
77
|
+
$unknown?: never;
|
|
78
|
+
}
|
|
79
|
+
interface DataProductListingMember {
|
|
80
|
+
assetListing?: never;
|
|
81
|
+
dataProductListing: DataProductListingItem;
|
|
82
|
+
$unknown?: never;
|
|
83
|
+
}
|
|
84
|
+
interface $UnknownMember {
|
|
85
|
+
assetListing?: never;
|
|
86
|
+
dataProductListing?: never;
|
|
87
|
+
$unknown: [string, any];
|
|
88
|
+
}
|
|
89
|
+
interface Visitor<T> {
|
|
90
|
+
assetListing: (value: AssetListingItem) => T;
|
|
91
|
+
dataProductListing: (value: DataProductListingItem) => T;
|
|
92
|
+
_: (name: string, value: any) => T;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
export interface SearchListingsOutput {
|
|
96
|
+
items?: SearchResultItem[] | undefined;
|
|
97
|
+
nextToken?: string | undefined;
|
|
98
|
+
totalMatchCount?: number | undefined;
|
|
99
|
+
aggregates?: AggregationOutput[] | undefined;
|
|
100
|
+
}
|
|
101
|
+
export interface FormTypeData {
|
|
102
|
+
domainId: string | undefined;
|
|
103
|
+
name: string | undefined;
|
|
104
|
+
revision: string | undefined;
|
|
105
|
+
model?: Model | undefined;
|
|
106
|
+
status?: FormTypeStatus | undefined;
|
|
107
|
+
owningProjectId?: string | undefined;
|
|
108
|
+
originDomainId?: string | undefined;
|
|
109
|
+
originProjectId?: string | undefined;
|
|
110
|
+
createdAt?: Date | undefined;
|
|
111
|
+
createdBy?: string | undefined;
|
|
112
|
+
description?: string | undefined;
|
|
113
|
+
imports?: Import[] | undefined;
|
|
114
|
+
}
|
|
115
|
+
export interface LineageNodeTypeItem {
|
|
116
|
+
domainId: string | undefined;
|
|
117
|
+
name?: string | undefined;
|
|
118
|
+
description?: string | undefined;
|
|
119
|
+
createdAt?: Date | undefined;
|
|
120
|
+
createdBy?: string | undefined;
|
|
121
|
+
updatedAt?: Date | undefined;
|
|
122
|
+
updatedBy?: string | undefined;
|
|
123
|
+
revision: string | undefined;
|
|
124
|
+
formsOutput: Record<string, FormEntryOutput> | undefined;
|
|
125
|
+
}
|
|
126
|
+
export type SearchTypesResultItem =
|
|
127
|
+
| SearchTypesResultItem.AssetTypeItemMember
|
|
128
|
+
| SearchTypesResultItem.FormTypeItemMember
|
|
129
|
+
| SearchTypesResultItem.LineageNodeTypeItemMember
|
|
130
|
+
| SearchTypesResultItem.$UnknownMember;
|
|
131
|
+
export declare namespace SearchTypesResultItem {
|
|
132
|
+
interface AssetTypeItemMember {
|
|
133
|
+
assetTypeItem: AssetTypeItem;
|
|
134
|
+
formTypeItem?: never;
|
|
135
|
+
lineageNodeTypeItem?: never;
|
|
136
|
+
$unknown?: never;
|
|
137
|
+
}
|
|
138
|
+
interface FormTypeItemMember {
|
|
139
|
+
assetTypeItem?: never;
|
|
140
|
+
formTypeItem: FormTypeData;
|
|
141
|
+
lineageNodeTypeItem?: never;
|
|
142
|
+
$unknown?: never;
|
|
143
|
+
}
|
|
144
|
+
interface LineageNodeTypeItemMember {
|
|
145
|
+
assetTypeItem?: never;
|
|
146
|
+
formTypeItem?: never;
|
|
147
|
+
lineageNodeTypeItem: LineageNodeTypeItem;
|
|
148
|
+
$unknown?: never;
|
|
149
|
+
}
|
|
150
|
+
interface $UnknownMember {
|
|
151
|
+
assetTypeItem?: never;
|
|
152
|
+
formTypeItem?: never;
|
|
153
|
+
lineageNodeTypeItem?: never;
|
|
154
|
+
$unknown: [string, any];
|
|
155
|
+
}
|
|
156
|
+
interface Visitor<T> {
|
|
157
|
+
assetTypeItem: (value: AssetTypeItem) => T;
|
|
158
|
+
formTypeItem: (value: FormTypeData) => T;
|
|
159
|
+
lineageNodeTypeItem: (value: LineageNodeTypeItem) => T;
|
|
160
|
+
_: (name: string, value: any) => T;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
59
163
|
export interface SearchTypesOutput {
|
|
60
164
|
items?: SearchTypesResultItem[] | undefined;
|
|
61
165
|
nextToken?: string | undefined;
|
|
@@ -455,6 +559,11 @@ export declare namespace RowFilter {
|
|
|
455
559
|
_: (name: string, value: any) => T;
|
|
456
560
|
}
|
|
457
561
|
}
|
|
562
|
+
export interface EntityPattern {
|
|
563
|
+
entityType: GraphEntityType | undefined;
|
|
564
|
+
identifier: string | undefined;
|
|
565
|
+
filters?: FilterClause | undefined;
|
|
566
|
+
}
|
|
458
567
|
export interface RowFilterConfiguration {
|
|
459
568
|
rowFilter: RowFilter | undefined;
|
|
460
569
|
sensitive?: boolean | undefined;
|
|
@@ -519,6 +628,32 @@ export declare namespace AssetFilterConfiguration {
|
|
|
519
628
|
_: (name: string, value: any) => T;
|
|
520
629
|
}
|
|
521
630
|
}
|
|
631
|
+
export type MatchClause =
|
|
632
|
+
| MatchClause.EntityPatternMember
|
|
633
|
+
| MatchClause.RelationPatternMember
|
|
634
|
+
| MatchClause.$UnknownMember;
|
|
635
|
+
export declare namespace MatchClause {
|
|
636
|
+
interface RelationPatternMember {
|
|
637
|
+
relationPattern: RelationPattern;
|
|
638
|
+
entityPattern?: never;
|
|
639
|
+
$unknown?: never;
|
|
640
|
+
}
|
|
641
|
+
interface EntityPatternMember {
|
|
642
|
+
relationPattern?: never;
|
|
643
|
+
entityPattern: EntityPattern;
|
|
644
|
+
$unknown?: never;
|
|
645
|
+
}
|
|
646
|
+
interface $UnknownMember {
|
|
647
|
+
relationPattern?: never;
|
|
648
|
+
entityPattern?: never;
|
|
649
|
+
$unknown: [string, any];
|
|
650
|
+
}
|
|
651
|
+
interface Visitor<T> {
|
|
652
|
+
relationPattern: (value: RelationPattern) => T;
|
|
653
|
+
entityPattern: (value: EntityPattern) => T;
|
|
654
|
+
_: (name: string, value: any) => T;
|
|
655
|
+
}
|
|
656
|
+
}
|
|
522
657
|
export interface CreateAssetFilterInput {
|
|
523
658
|
domainIdentifier: string | undefined;
|
|
524
659
|
assetIdentifier: string | undefined;
|
|
@@ -574,3 +709,10 @@ export interface UpdateAssetFilterOutput {
|
|
|
574
709
|
effectiveColumnNames?: string[] | undefined;
|
|
575
710
|
effectiveRowFilter?: string | undefined;
|
|
576
711
|
}
|
|
712
|
+
export interface QueryGraphInput {
|
|
713
|
+
domainIdentifier: string | undefined;
|
|
714
|
+
match: MatchClause[] | undefined;
|
|
715
|
+
maxResults?: number | undefined;
|
|
716
|
+
nextToken?: string | undefined;
|
|
717
|
+
additionalAttributes?: AdditionalAttributes | undefined;
|
|
718
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
QueryGraphCommandInput,
|
|
4
|
+
QueryGraphCommandOutput,
|
|
5
|
+
} from "../commands/QueryGraphCommand";
|
|
6
|
+
import { DataZonePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateQueryGraph: (
|
|
8
|
+
config: DataZonePaginationConfiguration,
|
|
9
|
+
input: QueryGraphCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => 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;
|
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.
|
|
4
|
+
"version": "3.1002.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-datazone",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.17",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.16",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.6",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.6",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.6",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.17",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.6",
|
|
31
31
|
"@aws-sdk/types": "^3.973.4",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.3",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.6",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.9",
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
36
|
+
"@smithy/core": "^3.23.7",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.12",
|
|
38
38
|
"@smithy/hash-node": "^4.2.10",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.10",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.10",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.21",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.38",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.11",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.10",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.10",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.13",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.10",
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
48
|
+
"@smithy/smithy-client": "^4.12.1",
|
|
49
49
|
"@smithy/types": "^4.13.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.10",
|
|
51
51
|
"@smithy/util-base64": "^4.3.1",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.1",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.2",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.37",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.40",
|
|
56
56
|
"@smithy/util-endpoints": "^3.3.1",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.10",
|
|
58
58
|
"@smithy/util-retry": "^4.2.10",
|
|
59
|
-
"@smithy/util-stream": "^4.5.
|
|
59
|
+
"@smithy/util-stream": "^4.5.16",
|
|
60
60
|
"@smithy/util-utf8": "^4.2.1",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|