@aws-sdk/client-datazone 3.1046.0 → 3.1048.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 +56 -0
- package/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/dist-cjs/index.js +143 -15
- package/dist-cjs/runtimeConfig.browser.js +5 -5
- package/dist-cjs/runtimeConfig.js +2 -3
- package/dist-cjs/schemas/schemas_0.js +225 -43
- package/dist-es/DataZone.js +18 -0
- package/dist-es/DataZoneClient.js +1 -4
- package/dist-es/commands/CreateNotebookCommand.js +16 -0
- package/dist-es/commands/DeleteNotebookCommand.js +16 -0
- package/dist-es/commands/GetNotebookCommand.js +16 -0
- package/dist-es/commands/GetNotebookExportCommand.js +16 -0
- package/dist-es/commands/ListNotebooksCommand.js +16 -0
- package/dist-es/commands/StartNotebookExportCommand.js +16 -0
- package/dist-es/commands/StartNotebookImportCommand.js +16 -0
- package/dist-es/commands/UpdateNotebookCommand.js +16 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/models/enums.js +15 -2
- package/dist-es/pagination/ListNotebooksPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/runtimeConfig.browser.js +1 -1
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeExtensions.js +1 -1
- package/dist-es/schemas/schemas_0.js +209 -27
- package/dist-types/DataZone.d.ts +63 -0
- package/dist-types/DataZoneClient.d.ts +11 -4
- package/dist-types/commands/CreateNotebookCommand.d.ts +142 -0
- package/dist-types/commands/CreateSubscriptionGrantCommand.d.ts +2 -1
- package/dist-types/commands/DeleteNotebookCommand.d.ts +93 -0
- package/dist-types/commands/GetNotebookCommand.d.ts +127 -0
- package/dist-types/commands/GetNotebookExportCommand.d.ts +111 -0
- package/dist-types/commands/GetNotebookRunCommand.d.ts +1 -1
- package/dist-types/commands/ListNotebookRunsCommand.d.ts +1 -1
- package/dist-types/commands/ListNotebooksCommand.d.ts +111 -0
- package/dist-types/commands/PostTimeSeriesDataPointsCommand.d.ts +1 -1
- package/dist-types/commands/PutDataExportConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/QueryGraphCommand.d.ts +1 -2
- package/dist-types/commands/RejectPredictionsCommand.d.ts +1 -1
- package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/commands/RemoveEntityOwnerCommand.d.ts +1 -1
- package/dist-types/commands/RemovePolicyGrantCommand.d.ts +1 -2
- package/dist-types/commands/StartNotebookExportCommand.d.ts +111 -0
- package/dist-types/commands/StartNotebookImportCommand.d.ts +117 -0
- package/dist-types/commands/StartNotebookRunCommand.d.ts +1 -1
- package/dist-types/commands/StopNotebookRunCommand.d.ts +1 -1
- package/dist-types/commands/UpdateNotebookCommand.d.ts +150 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/enums.d.ts +62 -4
- package/dist-types/models/models_0.d.ts +186 -136
- package/dist-types/models/models_1.d.ts +695 -537
- package/dist-types/models/models_2.d.ts +670 -3
- package/dist-types/pagination/ListNotebooksPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +30 -0
- package/dist-types/ts3.4/DataZone.d.ts +143 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +49 -3
- package/dist-types/ts3.4/commands/CreateNotebookCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/CreateSubscriptionGrantCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeleteNotebookCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/GetNotebookCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/GetNotebookExportCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListNotebooksCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/PostTimeSeriesDataPointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutDataExportConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/QueryGraphCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/RejectPredictionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RejectSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RemoveEntityOwnerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RemovePolicyGrantCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/StartNotebookExportCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/StartNotebookImportCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdateNotebookCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/enums.d.ts +22 -4
- package/dist-types/ts3.4/models/models_0.d.ts +43 -41
- package/dist-types/ts3.4/models/models_1.d.ts +189 -151
- package/dist-types/ts3.4/models/models_2.d.ts +185 -3
- package/dist-types/ts3.4/pagination/ListNotebooksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +30 -0
- package/package.json +6 -14
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
EdgeDirection,
|
|
14
14
|
EnableSetting,
|
|
15
15
|
EnvironmentStatus,
|
|
16
|
-
|
|
16
|
+
FileFormat,
|
|
17
17
|
FilterStatus,
|
|
18
18
|
FormTypeStatus,
|
|
19
19
|
GlossaryStatus,
|
|
@@ -32,16 +32,14 @@ import {
|
|
|
32
32
|
MetadataGenerationRunType,
|
|
33
33
|
MetadataGenerationTargetType,
|
|
34
34
|
NetworkAccessType,
|
|
35
|
+
NotebookExportStatus,
|
|
35
36
|
NotebookRunStatus,
|
|
37
|
+
NotebookStatus,
|
|
36
38
|
NotificationResourceType,
|
|
37
39
|
NotificationRole,
|
|
38
40
|
NotificationType,
|
|
39
41
|
OpenLineageRunState,
|
|
40
|
-
PackageManager,
|
|
41
42
|
ProjectStatus,
|
|
42
|
-
RejectRuleBehavior,
|
|
43
|
-
RelationDirection,
|
|
44
|
-
RelationType,
|
|
45
43
|
ResolutionStrategy,
|
|
46
44
|
SelfGrantStatus,
|
|
47
45
|
SortFieldAccountPool,
|
|
@@ -89,16 +87,17 @@ import {
|
|
|
89
87
|
DeploymentProperties,
|
|
90
88
|
DetailedGlossaryTerm,
|
|
91
89
|
DomainUnitOwnerProperties,
|
|
90
|
+
EnvironmentConfig,
|
|
92
91
|
EnvironmentConfiguration,
|
|
93
92
|
EnvironmentConfigurationUserParameter,
|
|
94
93
|
EnvironmentDeploymentDetails,
|
|
95
94
|
FormInput,
|
|
96
95
|
FormOutput,
|
|
97
|
-
|
|
96
|
+
ListingRevision,
|
|
98
97
|
MatchRationaleItem,
|
|
99
98
|
Member,
|
|
100
99
|
Model,
|
|
101
|
-
|
|
100
|
+
NotebookError,
|
|
102
101
|
PhysicalEndpoint,
|
|
103
102
|
PolicyGrantDetail,
|
|
104
103
|
PolicyGrantPrincipal,
|
|
@@ -111,15 +110,52 @@ import {
|
|
|
111
110
|
ScheduleConfiguration,
|
|
112
111
|
SingleSignOn,
|
|
113
112
|
SubscribedAsset,
|
|
114
|
-
SubscribedGroupInput,
|
|
115
|
-
SubscribedIamPrincipalInput,
|
|
116
113
|
SubscribedListing,
|
|
117
|
-
SubscribedListingInput,
|
|
118
114
|
SubscribedPrincipal,
|
|
119
115
|
TermRelations,
|
|
120
116
|
TimeSeriesDataPointSummaryFormOutput,
|
|
121
117
|
UserProfileDetails,
|
|
122
118
|
} from "./models_0";
|
|
119
|
+
export type GrantedEntity =
|
|
120
|
+
| GrantedEntity.ListingMember
|
|
121
|
+
| GrantedEntity.$UnknownMember;
|
|
122
|
+
export declare namespace GrantedEntity {
|
|
123
|
+
interface ListingMember {
|
|
124
|
+
listing: ListingRevision;
|
|
125
|
+
$unknown?: never;
|
|
126
|
+
}
|
|
127
|
+
interface $UnknownMember {
|
|
128
|
+
listing?: never;
|
|
129
|
+
$unknown: [string, any];
|
|
130
|
+
}
|
|
131
|
+
interface Visitor<T> {
|
|
132
|
+
listing: (value: ListingRevision) => T;
|
|
133
|
+
_: (name: string, value: any) => T;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
export interface CreateSubscriptionGrantOutput {
|
|
137
|
+
id: string | undefined;
|
|
138
|
+
createdBy: string | undefined;
|
|
139
|
+
updatedBy?: string | undefined;
|
|
140
|
+
domainId: string | undefined;
|
|
141
|
+
createdAt: Date | undefined;
|
|
142
|
+
updatedAt: Date | undefined;
|
|
143
|
+
environmentId?: string | undefined;
|
|
144
|
+
subscriptionTargetId: string | undefined;
|
|
145
|
+
grantedEntity: GrantedEntity | undefined;
|
|
146
|
+
status: SubscriptionGrantOverallStatus | undefined;
|
|
147
|
+
assets?: SubscribedAsset[] | undefined;
|
|
148
|
+
subscriptionId?: string | undefined;
|
|
149
|
+
}
|
|
150
|
+
export interface SubscribedListingInput {
|
|
151
|
+
identifier: string | undefined;
|
|
152
|
+
}
|
|
153
|
+
export interface SubscribedGroupInput {
|
|
154
|
+
identifier?: string | undefined;
|
|
155
|
+
}
|
|
156
|
+
export interface SubscribedIamPrincipalInput {
|
|
157
|
+
identifier?: string | undefined;
|
|
158
|
+
}
|
|
123
159
|
export interface SubscribedProjectInput {
|
|
124
160
|
identifier?: string | undefined;
|
|
125
161
|
}
|
|
@@ -2174,13 +2210,150 @@ export interface StartMetadataGenerationRunOutput {
|
|
|
2174
2210
|
createdBy?: string | undefined;
|
|
2175
2211
|
owningProjectId?: string | undefined;
|
|
2176
2212
|
}
|
|
2177
|
-
export interface
|
|
2178
|
-
|
|
2179
|
-
|
|
2213
|
+
export interface DeleteNotebookInput {
|
|
2214
|
+
domainIdentifier: string | undefined;
|
|
2215
|
+
identifier: string | undefined;
|
|
2216
|
+
}
|
|
2217
|
+
export interface DeleteNotebookOutput {}
|
|
2218
|
+
export interface GetNotebookInput {
|
|
2219
|
+
domainIdentifier: string | undefined;
|
|
2220
|
+
identifier: string | undefined;
|
|
2221
|
+
}
|
|
2222
|
+
export interface GetNotebookOutput {
|
|
2223
|
+
id: string | undefined;
|
|
2224
|
+
name: string | undefined;
|
|
2225
|
+
owningProjectId: string | undefined;
|
|
2226
|
+
domainId: string | undefined;
|
|
2227
|
+
cellOrder: CellInformation[] | undefined;
|
|
2228
|
+
status: NotebookStatus | undefined;
|
|
2229
|
+
description?: string | undefined;
|
|
2230
|
+
createdAt?: Date | undefined;
|
|
2231
|
+
createdBy?: string | undefined;
|
|
2232
|
+
updatedAt?: Date | undefined;
|
|
2233
|
+
updatedBy?: string | undefined;
|
|
2234
|
+
lockedBy?: string | undefined;
|
|
2235
|
+
lockedAt?: Date | undefined;
|
|
2236
|
+
lockExpiresAt?: Date | undefined;
|
|
2237
|
+
computeId?: string | undefined;
|
|
2238
|
+
metadata?: Record<string, string> | undefined;
|
|
2239
|
+
parameters?: Record<string, string> | undefined;
|
|
2240
|
+
environmentConfiguration?: EnvironmentConfig | undefined;
|
|
2241
|
+
error?: NotebookError | undefined;
|
|
2242
|
+
}
|
|
2243
|
+
export interface ListNotebooksInput {
|
|
2244
|
+
domainIdentifier: string | undefined;
|
|
2245
|
+
owningProjectIdentifier: string | undefined;
|
|
2246
|
+
maxResults?: number | undefined;
|
|
2247
|
+
sortOrder?: SortOrder | undefined;
|
|
2248
|
+
sortBy?: SortKey | undefined;
|
|
2249
|
+
status?: NotebookStatus | undefined;
|
|
2250
|
+
nextToken?: string | undefined;
|
|
2251
|
+
}
|
|
2252
|
+
export interface NotebookSummary {
|
|
2253
|
+
id: string | undefined;
|
|
2254
|
+
name: string | undefined;
|
|
2255
|
+
owningProjectId: string | undefined;
|
|
2256
|
+
domainId: string | undefined;
|
|
2257
|
+
status: NotebookStatus | undefined;
|
|
2258
|
+
description?: string | undefined;
|
|
2259
|
+
createdAt?: Date | undefined;
|
|
2260
|
+
createdBy?: string | undefined;
|
|
2261
|
+
updatedAt?: Date | undefined;
|
|
2262
|
+
updatedBy?: string | undefined;
|
|
2263
|
+
}
|
|
2264
|
+
export interface ListNotebooksOutput {
|
|
2265
|
+
items?: NotebookSummary[] | undefined;
|
|
2266
|
+
nextToken?: string | undefined;
|
|
2267
|
+
}
|
|
2268
|
+
export interface UpdateNotebookInput {
|
|
2269
|
+
domainIdentifier: string | undefined;
|
|
2270
|
+
identifier: string | undefined;
|
|
2271
|
+
description?: string | undefined;
|
|
2272
|
+
status?: NotebookStatus | undefined;
|
|
2273
|
+
name?: string | undefined;
|
|
2274
|
+
cellOrder?: CellInformation[] | undefined;
|
|
2275
|
+
metadata?: Record<string, string> | undefined;
|
|
2276
|
+
parameters?: Record<string, string> | undefined;
|
|
2277
|
+
environmentConfiguration?: EnvironmentConfig | undefined;
|
|
2278
|
+
clientToken?: string | undefined;
|
|
2279
|
+
}
|
|
2280
|
+
export interface UpdateNotebookOutput {
|
|
2281
|
+
id: string | undefined;
|
|
2282
|
+
name: string | undefined;
|
|
2283
|
+
owningProjectId: string | undefined;
|
|
2284
|
+
domainId: string | undefined;
|
|
2285
|
+
cellOrder: CellInformation[] | undefined;
|
|
2286
|
+
status: NotebookStatus | undefined;
|
|
2287
|
+
description?: string | undefined;
|
|
2288
|
+
createdAt?: Date | undefined;
|
|
2289
|
+
createdBy?: string | undefined;
|
|
2290
|
+
updatedAt?: Date | undefined;
|
|
2291
|
+
updatedBy?: string | undefined;
|
|
2292
|
+
lockedBy?: string | undefined;
|
|
2293
|
+
lockedAt?: Date | undefined;
|
|
2294
|
+
lockExpiresAt?: Date | undefined;
|
|
2295
|
+
computeId?: string | undefined;
|
|
2296
|
+
metadata?: Record<string, string> | undefined;
|
|
2297
|
+
parameters?: Record<string, string> | undefined;
|
|
2298
|
+
environmentConfiguration?: EnvironmentConfig | undefined;
|
|
2299
|
+
error?: NotebookError | undefined;
|
|
2300
|
+
}
|
|
2301
|
+
export interface GetNotebookExportInput {
|
|
2302
|
+
domainIdentifier: string | undefined;
|
|
2303
|
+
identifier: string | undefined;
|
|
2304
|
+
}
|
|
2305
|
+
export interface NotebookExportError {
|
|
2306
|
+
message: string | undefined;
|
|
2307
|
+
}
|
|
2308
|
+
export interface S3Destination {
|
|
2309
|
+
uri?: string | undefined;
|
|
2310
|
+
}
|
|
2311
|
+
export type OutputLocation =
|
|
2312
|
+
| OutputLocation.S3Member
|
|
2313
|
+
| OutputLocation.$UnknownMember;
|
|
2314
|
+
export declare namespace OutputLocation {
|
|
2315
|
+
interface S3Member {
|
|
2316
|
+
s3: S3Destination;
|
|
2317
|
+
$unknown?: never;
|
|
2318
|
+
}
|
|
2319
|
+
interface $UnknownMember {
|
|
2320
|
+
s3?: never;
|
|
2321
|
+
$unknown: [string, any];
|
|
2322
|
+
}
|
|
2323
|
+
interface Visitor<T> {
|
|
2324
|
+
s3: (value: S3Destination) => T;
|
|
2325
|
+
_: (name: string, value: any) => T;
|
|
2326
|
+
}
|
|
2327
|
+
}
|
|
2328
|
+
export interface GetNotebookExportOutput {
|
|
2329
|
+
id: string | undefined;
|
|
2330
|
+
domainId: string | undefined;
|
|
2331
|
+
owningProjectId: string | undefined;
|
|
2332
|
+
notebookId: string | undefined;
|
|
2333
|
+
fileFormat: FileFormat | undefined;
|
|
2334
|
+
status: NotebookExportStatus | undefined;
|
|
2335
|
+
outputLocation?: OutputLocation | undefined;
|
|
2336
|
+
error?: NotebookExportError | undefined;
|
|
2337
|
+
completedAt?: Date | undefined;
|
|
2338
|
+
createdAt?: Date | undefined;
|
|
2339
|
+
createdBy?: string | undefined;
|
|
2340
|
+
}
|
|
2341
|
+
export interface StartNotebookExportInput {
|
|
2342
|
+
domainIdentifier: string | undefined;
|
|
2343
|
+
notebookIdentifier: string | undefined;
|
|
2344
|
+
owningProjectIdentifier: string | undefined;
|
|
2345
|
+
fileFormat: FileFormat | undefined;
|
|
2346
|
+
clientToken?: string | undefined;
|
|
2180
2347
|
}
|
|
2181
|
-
export interface
|
|
2182
|
-
|
|
2183
|
-
|
|
2348
|
+
export interface StartNotebookExportOutput {
|
|
2349
|
+
id: string | undefined;
|
|
2350
|
+
domainId: string | undefined;
|
|
2351
|
+
owningProjectId: string | undefined;
|
|
2352
|
+
notebookId: string | undefined;
|
|
2353
|
+
fileFormat: FileFormat | undefined;
|
|
2354
|
+
status: NotebookExportStatus | undefined;
|
|
2355
|
+
createdAt?: Date | undefined;
|
|
2356
|
+
createdBy?: string | undefined;
|
|
2184
2357
|
}
|
|
2185
2358
|
export interface GetNotebookRunInput {
|
|
2186
2359
|
domainIdentifier: string | undefined;
|
|
@@ -2316,138 +2489,3 @@ export interface PostLineageEventOutput {
|
|
|
2316
2489
|
id?: string | undefined;
|
|
2317
2490
|
domainId?: string | undefined;
|
|
2318
2491
|
}
|
|
2319
|
-
export interface TimeSeriesDataPointFormInput {
|
|
2320
|
-
formName: string | undefined;
|
|
2321
|
-
typeIdentifier: string | undefined;
|
|
2322
|
-
typeRevision?: string | undefined;
|
|
2323
|
-
timestamp: Date | undefined;
|
|
2324
|
-
content?: string | undefined;
|
|
2325
|
-
}
|
|
2326
|
-
export interface PostTimeSeriesDataPointsInput {
|
|
2327
|
-
domainIdentifier: string | undefined;
|
|
2328
|
-
entityIdentifier: string | undefined;
|
|
2329
|
-
entityType: TimeSeriesEntityType | undefined;
|
|
2330
|
-
forms: TimeSeriesDataPointFormInput[] | undefined;
|
|
2331
|
-
clientToken?: string | undefined;
|
|
2332
|
-
}
|
|
2333
|
-
export interface PostTimeSeriesDataPointsOutput {
|
|
2334
|
-
domainId?: string | undefined;
|
|
2335
|
-
entityId?: string | undefined;
|
|
2336
|
-
entityType?: TimeSeriesEntityType | undefined;
|
|
2337
|
-
forms?: TimeSeriesDataPointFormOutput[] | undefined;
|
|
2338
|
-
}
|
|
2339
|
-
export interface PutDataExportConfigurationInput {
|
|
2340
|
-
domainIdentifier: string | undefined;
|
|
2341
|
-
enableExport: boolean | undefined;
|
|
2342
|
-
encryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
2343
|
-
clientToken?: string | undefined;
|
|
2344
|
-
}
|
|
2345
|
-
export interface PutDataExportConfigurationOutput {}
|
|
2346
|
-
export interface Filter {
|
|
2347
|
-
attribute: string | undefined;
|
|
2348
|
-
value?: string | undefined;
|
|
2349
|
-
intValue?: number | undefined;
|
|
2350
|
-
operator?: FilterOperator | undefined;
|
|
2351
|
-
}
|
|
2352
|
-
export interface RelationPattern {
|
|
2353
|
-
relationType: RelationType | undefined;
|
|
2354
|
-
relationDirection: RelationDirection | undefined;
|
|
2355
|
-
maxPathLength?: number | undefined;
|
|
2356
|
-
}
|
|
2357
|
-
export interface LineageNodeItem {
|
|
2358
|
-
domainId: string | undefined;
|
|
2359
|
-
name?: string | undefined;
|
|
2360
|
-
description?: string | undefined;
|
|
2361
|
-
createdAt?: Date | undefined;
|
|
2362
|
-
createdBy?: string | undefined;
|
|
2363
|
-
updatedAt?: Date | undefined;
|
|
2364
|
-
updatedBy?: string | undefined;
|
|
2365
|
-
id: string | undefined;
|
|
2366
|
-
typeName: string | undefined;
|
|
2367
|
-
typeRevision?: string | undefined;
|
|
2368
|
-
sourceIdentifier?: string | undefined;
|
|
2369
|
-
eventTimestamp?: Date | undefined;
|
|
2370
|
-
formsOutput?: FormOutput[] | undefined;
|
|
2371
|
-
upstreamLineageNodeIds?: string[] | undefined;
|
|
2372
|
-
downstreamLineageNodeIds?: string[] | undefined;
|
|
2373
|
-
}
|
|
2374
|
-
export type ResultItem =
|
|
2375
|
-
| ResultItem.LineageNodeMember
|
|
2376
|
-
| ResultItem.$UnknownMember;
|
|
2377
|
-
export declare namespace ResultItem {
|
|
2378
|
-
interface LineageNodeMember {
|
|
2379
|
-
lineageNode: LineageNodeItem;
|
|
2380
|
-
$unknown?: never;
|
|
2381
|
-
}
|
|
2382
|
-
interface $UnknownMember {
|
|
2383
|
-
lineageNode?: never;
|
|
2384
|
-
$unknown: [string, any];
|
|
2385
|
-
}
|
|
2386
|
-
interface Visitor<T> {
|
|
2387
|
-
lineageNode: (value: LineageNodeItem) => T;
|
|
2388
|
-
_: (name: string, value: any) => T;
|
|
2389
|
-
}
|
|
2390
|
-
}
|
|
2391
|
-
export interface QueryGraphOutput {
|
|
2392
|
-
items?: ResultItem[] | undefined;
|
|
2393
|
-
nextToken?: string | undefined;
|
|
2394
|
-
}
|
|
2395
|
-
export interface RejectChoice {
|
|
2396
|
-
predictionTarget: string | undefined;
|
|
2397
|
-
predictionChoices?: number[] | undefined;
|
|
2398
|
-
}
|
|
2399
|
-
export interface RejectRule {
|
|
2400
|
-
rule?: RejectRuleBehavior | undefined;
|
|
2401
|
-
threshold?: number | undefined;
|
|
2402
|
-
}
|
|
2403
|
-
export interface RejectPredictionsInput {
|
|
2404
|
-
domainIdentifier: string | undefined;
|
|
2405
|
-
identifier: string | undefined;
|
|
2406
|
-
revision?: string | undefined;
|
|
2407
|
-
rejectRule?: RejectRule | undefined;
|
|
2408
|
-
rejectChoices?: RejectChoice[] | undefined;
|
|
2409
|
-
clientToken?: string | undefined;
|
|
2410
|
-
}
|
|
2411
|
-
export interface RejectPredictionsOutput {
|
|
2412
|
-
domainId: string | undefined;
|
|
2413
|
-
assetId: string | undefined;
|
|
2414
|
-
assetRevision: string | undefined;
|
|
2415
|
-
}
|
|
2416
|
-
export interface RejectSubscriptionRequestInput {
|
|
2417
|
-
domainIdentifier: string | undefined;
|
|
2418
|
-
identifier: string | undefined;
|
|
2419
|
-
decisionComment?: string | undefined;
|
|
2420
|
-
}
|
|
2421
|
-
export interface RejectSubscriptionRequestOutput {
|
|
2422
|
-
id: string | undefined;
|
|
2423
|
-
createdBy: string | undefined;
|
|
2424
|
-
updatedBy?: string | undefined;
|
|
2425
|
-
domainId: string | undefined;
|
|
2426
|
-
status: SubscriptionRequestStatus | undefined;
|
|
2427
|
-
createdAt: Date | undefined;
|
|
2428
|
-
updatedAt: Date | undefined;
|
|
2429
|
-
requestReason: string | undefined;
|
|
2430
|
-
subscribedPrincipals: SubscribedPrincipal[] | undefined;
|
|
2431
|
-
subscribedListings: SubscribedListing[] | undefined;
|
|
2432
|
-
reviewerId?: string | undefined;
|
|
2433
|
-
decisionComment?: string | undefined;
|
|
2434
|
-
existingSubscriptionId?: string | undefined;
|
|
2435
|
-
metadataForms?: FormOutput[] | undefined;
|
|
2436
|
-
}
|
|
2437
|
-
export interface RemoveEntityOwnerInput {
|
|
2438
|
-
domainIdentifier: string | undefined;
|
|
2439
|
-
entityType: DataZoneEntityType | undefined;
|
|
2440
|
-
entityIdentifier: string | undefined;
|
|
2441
|
-
owner: OwnerProperties | undefined;
|
|
2442
|
-
clientToken?: string | undefined;
|
|
2443
|
-
}
|
|
2444
|
-
export interface RemoveEntityOwnerOutput {}
|
|
2445
|
-
export interface RemovePolicyGrantInput {
|
|
2446
|
-
domainIdentifier: string | undefined;
|
|
2447
|
-
entityType: TargetEntityType | undefined;
|
|
2448
|
-
entityIdentifier: string | undefined;
|
|
2449
|
-
policyType: ManagedPolicyType | undefined;
|
|
2450
|
-
principal: PolicyGrantPrincipal | undefined;
|
|
2451
|
-
grantIdentifier?: string | undefined;
|
|
2452
|
-
clientToken?: string | undefined;
|
|
2453
|
-
}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ConnectionScope,
|
|
3
3
|
ConnectionType,
|
|
4
|
+
DataZoneEntityType,
|
|
4
5
|
EnvironmentStatus,
|
|
6
|
+
FilterOperator,
|
|
5
7
|
FilterStatus,
|
|
6
8
|
FormTypeStatus,
|
|
7
9
|
GlossaryStatus,
|
|
@@ -11,7 +13,12 @@ import {
|
|
|
11
13
|
GroupProfileStatus,
|
|
12
14
|
GroupSearchType,
|
|
13
15
|
InventorySearchScope,
|
|
16
|
+
ManagedPolicyType,
|
|
17
|
+
NotebookStatus,
|
|
14
18
|
ProjectStatus,
|
|
19
|
+
RejectRuleBehavior,
|
|
20
|
+
RelationDirection,
|
|
21
|
+
RelationType,
|
|
15
22
|
ResolutionStrategy,
|
|
16
23
|
RuleAction,
|
|
17
24
|
RuleTargetType,
|
|
@@ -24,6 +31,8 @@ import {
|
|
|
24
31
|
SubscriptionGrantStatus,
|
|
25
32
|
SubscriptionRequestStatus,
|
|
26
33
|
SubscriptionStatus,
|
|
34
|
+
TargetEntityType,
|
|
35
|
+
TimeSeriesEntityType,
|
|
27
36
|
TypesSearchScope,
|
|
28
37
|
UserProfileStatus,
|
|
29
38
|
UserProfileType,
|
|
@@ -54,10 +63,11 @@ import {
|
|
|
54
63
|
FailureCause,
|
|
55
64
|
FormEntryOutput,
|
|
56
65
|
FormOutput,
|
|
57
|
-
GrantedEntity,
|
|
58
66
|
MatchRationaleItem,
|
|
59
67
|
Model,
|
|
68
|
+
OwnerProperties,
|
|
60
69
|
PhysicalEndpoint,
|
|
70
|
+
PolicyGrantPrincipal,
|
|
61
71
|
ProjectDeletionError,
|
|
62
72
|
ProvisioningProperties,
|
|
63
73
|
Resource,
|
|
@@ -76,11 +86,147 @@ import {
|
|
|
76
86
|
import {
|
|
77
87
|
DataProductListingItem,
|
|
78
88
|
DataProductResultItem,
|
|
79
|
-
|
|
89
|
+
EncryptionConfiguration,
|
|
90
|
+
GrantedEntity,
|
|
80
91
|
Import,
|
|
81
|
-
RelationPattern,
|
|
82
92
|
SubscriptionTargetForm,
|
|
93
|
+
TimeSeriesDataPointFormOutput,
|
|
83
94
|
} from "./models_1";
|
|
95
|
+
export interface TimeSeriesDataPointFormInput {
|
|
96
|
+
formName: string | undefined;
|
|
97
|
+
typeIdentifier: string | undefined;
|
|
98
|
+
typeRevision?: string | undefined;
|
|
99
|
+
timestamp: Date | undefined;
|
|
100
|
+
content?: string | undefined;
|
|
101
|
+
}
|
|
102
|
+
export interface PostTimeSeriesDataPointsInput {
|
|
103
|
+
domainIdentifier: string | undefined;
|
|
104
|
+
entityIdentifier: string | undefined;
|
|
105
|
+
entityType: TimeSeriesEntityType | undefined;
|
|
106
|
+
forms: TimeSeriesDataPointFormInput[] | undefined;
|
|
107
|
+
clientToken?: string | undefined;
|
|
108
|
+
}
|
|
109
|
+
export interface PostTimeSeriesDataPointsOutput {
|
|
110
|
+
domainId?: string | undefined;
|
|
111
|
+
entityId?: string | undefined;
|
|
112
|
+
entityType?: TimeSeriesEntityType | undefined;
|
|
113
|
+
forms?: TimeSeriesDataPointFormOutput[] | undefined;
|
|
114
|
+
}
|
|
115
|
+
export interface PutDataExportConfigurationInput {
|
|
116
|
+
domainIdentifier: string | undefined;
|
|
117
|
+
enableExport: boolean | undefined;
|
|
118
|
+
encryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
119
|
+
clientToken?: string | undefined;
|
|
120
|
+
}
|
|
121
|
+
export interface PutDataExportConfigurationOutput {}
|
|
122
|
+
export interface Filter {
|
|
123
|
+
attribute: string | undefined;
|
|
124
|
+
value?: string | undefined;
|
|
125
|
+
intValue?: number | undefined;
|
|
126
|
+
operator?: FilterOperator | undefined;
|
|
127
|
+
}
|
|
128
|
+
export interface RelationPattern {
|
|
129
|
+
relationType: RelationType | undefined;
|
|
130
|
+
relationDirection: RelationDirection | undefined;
|
|
131
|
+
maxPathLength?: number | undefined;
|
|
132
|
+
}
|
|
133
|
+
export interface LineageNodeItem {
|
|
134
|
+
domainId: string | undefined;
|
|
135
|
+
name?: string | undefined;
|
|
136
|
+
description?: string | undefined;
|
|
137
|
+
createdAt?: Date | undefined;
|
|
138
|
+
createdBy?: string | undefined;
|
|
139
|
+
updatedAt?: Date | undefined;
|
|
140
|
+
updatedBy?: string | undefined;
|
|
141
|
+
id: string | undefined;
|
|
142
|
+
typeName: string | undefined;
|
|
143
|
+
typeRevision?: string | undefined;
|
|
144
|
+
sourceIdentifier?: string | undefined;
|
|
145
|
+
eventTimestamp?: Date | undefined;
|
|
146
|
+
formsOutput?: FormOutput[] | undefined;
|
|
147
|
+
upstreamLineageNodeIds?: string[] | undefined;
|
|
148
|
+
downstreamLineageNodeIds?: string[] | undefined;
|
|
149
|
+
}
|
|
150
|
+
export type ResultItem =
|
|
151
|
+
| ResultItem.LineageNodeMember
|
|
152
|
+
| ResultItem.$UnknownMember;
|
|
153
|
+
export declare namespace ResultItem {
|
|
154
|
+
interface LineageNodeMember {
|
|
155
|
+
lineageNode: LineageNodeItem;
|
|
156
|
+
$unknown?: never;
|
|
157
|
+
}
|
|
158
|
+
interface $UnknownMember {
|
|
159
|
+
lineageNode?: never;
|
|
160
|
+
$unknown: [string, any];
|
|
161
|
+
}
|
|
162
|
+
interface Visitor<T> {
|
|
163
|
+
lineageNode: (value: LineageNodeItem) => T;
|
|
164
|
+
_: (name: string, value: any) => T;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
export interface QueryGraphOutput {
|
|
168
|
+
items?: ResultItem[] | undefined;
|
|
169
|
+
nextToken?: string | undefined;
|
|
170
|
+
}
|
|
171
|
+
export interface RejectChoice {
|
|
172
|
+
predictionTarget: string | undefined;
|
|
173
|
+
predictionChoices?: number[] | undefined;
|
|
174
|
+
}
|
|
175
|
+
export interface RejectRule {
|
|
176
|
+
rule?: RejectRuleBehavior | undefined;
|
|
177
|
+
threshold?: number | undefined;
|
|
178
|
+
}
|
|
179
|
+
export interface RejectPredictionsInput {
|
|
180
|
+
domainIdentifier: string | undefined;
|
|
181
|
+
identifier: string | undefined;
|
|
182
|
+
revision?: string | undefined;
|
|
183
|
+
rejectRule?: RejectRule | undefined;
|
|
184
|
+
rejectChoices?: RejectChoice[] | undefined;
|
|
185
|
+
clientToken?: string | undefined;
|
|
186
|
+
}
|
|
187
|
+
export interface RejectPredictionsOutput {
|
|
188
|
+
domainId: string | undefined;
|
|
189
|
+
assetId: string | undefined;
|
|
190
|
+
assetRevision: string | undefined;
|
|
191
|
+
}
|
|
192
|
+
export interface RejectSubscriptionRequestInput {
|
|
193
|
+
domainIdentifier: string | undefined;
|
|
194
|
+
identifier: string | undefined;
|
|
195
|
+
decisionComment?: string | undefined;
|
|
196
|
+
}
|
|
197
|
+
export interface RejectSubscriptionRequestOutput {
|
|
198
|
+
id: string | undefined;
|
|
199
|
+
createdBy: string | undefined;
|
|
200
|
+
updatedBy?: string | undefined;
|
|
201
|
+
domainId: string | undefined;
|
|
202
|
+
status: SubscriptionRequestStatus | undefined;
|
|
203
|
+
createdAt: Date | undefined;
|
|
204
|
+
updatedAt: Date | undefined;
|
|
205
|
+
requestReason: string | undefined;
|
|
206
|
+
subscribedPrincipals: SubscribedPrincipal[] | undefined;
|
|
207
|
+
subscribedListings: SubscribedListing[] | undefined;
|
|
208
|
+
reviewerId?: string | undefined;
|
|
209
|
+
decisionComment?: string | undefined;
|
|
210
|
+
existingSubscriptionId?: string | undefined;
|
|
211
|
+
metadataForms?: FormOutput[] | undefined;
|
|
212
|
+
}
|
|
213
|
+
export interface RemoveEntityOwnerInput {
|
|
214
|
+
domainIdentifier: string | undefined;
|
|
215
|
+
entityType: DataZoneEntityType | undefined;
|
|
216
|
+
entityIdentifier: string | undefined;
|
|
217
|
+
owner: OwnerProperties | undefined;
|
|
218
|
+
clientToken?: string | undefined;
|
|
219
|
+
}
|
|
220
|
+
export interface RemoveEntityOwnerOutput {}
|
|
221
|
+
export interface RemovePolicyGrantInput {
|
|
222
|
+
domainIdentifier: string | undefined;
|
|
223
|
+
entityType: TargetEntityType | undefined;
|
|
224
|
+
entityIdentifier: string | undefined;
|
|
225
|
+
policyType: ManagedPolicyType | undefined;
|
|
226
|
+
principal: PolicyGrantPrincipal | undefined;
|
|
227
|
+
grantIdentifier?: string | undefined;
|
|
228
|
+
clientToken?: string | undefined;
|
|
229
|
+
}
|
|
84
230
|
export interface RemovePolicyGrantOutput {}
|
|
85
231
|
export interface RevokeSubscriptionInput {
|
|
86
232
|
domainIdentifier: string | undefined;
|
|
@@ -413,6 +559,42 @@ export interface SearchUserProfilesOutput {
|
|
|
413
559
|
items?: UserProfileSummary[] | undefined;
|
|
414
560
|
nextToken?: string | undefined;
|
|
415
561
|
}
|
|
562
|
+
export type SourceLocation =
|
|
563
|
+
| SourceLocation.S3Member
|
|
564
|
+
| SourceLocation.$UnknownMember;
|
|
565
|
+
export declare namespace SourceLocation {
|
|
566
|
+
interface S3Member {
|
|
567
|
+
s3: string;
|
|
568
|
+
$unknown?: never;
|
|
569
|
+
}
|
|
570
|
+
interface $UnknownMember {
|
|
571
|
+
s3?: never;
|
|
572
|
+
$unknown: [string, any];
|
|
573
|
+
}
|
|
574
|
+
interface Visitor<T> {
|
|
575
|
+
s3: (value: string) => T;
|
|
576
|
+
_: (name: string, value: any) => T;
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
export interface StartNotebookImportInput {
|
|
580
|
+
domainIdentifier: string | undefined;
|
|
581
|
+
owningProjectIdentifier: string | undefined;
|
|
582
|
+
sourceLocation: SourceLocation | undefined;
|
|
583
|
+
name: string | undefined;
|
|
584
|
+
description?: string | undefined;
|
|
585
|
+
clientToken?: string | undefined;
|
|
586
|
+
}
|
|
587
|
+
export interface StartNotebookImportOutput {
|
|
588
|
+
notebookId?: string | undefined;
|
|
589
|
+
status?: NotebookStatus | undefined;
|
|
590
|
+
domainId?: string | undefined;
|
|
591
|
+
owningProjectId?: string | undefined;
|
|
592
|
+
name?: string | undefined;
|
|
593
|
+
description?: string | undefined;
|
|
594
|
+
sourceLocation?: SourceLocation | undefined;
|
|
595
|
+
createdAt?: Date | undefined;
|
|
596
|
+
createdBy?: string | undefined;
|
|
597
|
+
}
|
|
416
598
|
export interface TagResourceRequest {
|
|
417
599
|
resourceArn: string | undefined;
|
|
418
600
|
tags: Record<string, string> | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListNotebooksCommandInput,
|
|
4
|
+
ListNotebooksCommandOutput,
|
|
5
|
+
} from "../commands/ListNotebooksCommand";
|
|
6
|
+
import { DataZonePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListNotebooks: (
|
|
8
|
+
config: DataZonePaginationConfiguration,
|
|
9
|
+
input: ListNotebooksCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListNotebooksCommandOutput>;
|
|
@@ -21,6 +21,7 @@ export * from "./ListLineageEventsPaginator";
|
|
|
21
21
|
export * from "./ListLineageNodeHistoryPaginator";
|
|
22
22
|
export * from "./ListMetadataGenerationRunsPaginator";
|
|
23
23
|
export * from "./ListNotebookRunsPaginator";
|
|
24
|
+
export * from "./ListNotebooksPaginator";
|
|
24
25
|
export * from "./ListNotificationsPaginator";
|
|
25
26
|
export * from "./ListPolicyGrantsPaginator";
|
|
26
27
|
export * from "./ListProjectMembershipsPaginator";
|
|
@@ -12,7 +12,7 @@ export declare const getRuntimeConfig: (config: DataZoneClientConfig) => {
|
|
|
12
12
|
_: unknown
|
|
13
13
|
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
14
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/
|
|
15
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
16
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
17
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
18
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -13,7 +13,7 @@ export declare const getRuntimeConfig: (config: DataZoneClientConfig) => {
|
|
|
13
13
|
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
14
|
) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
15
|
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
17
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -34,7 +34,7 @@ export declare const getRuntimeConfig: (config: DataZoneClientConfig) => {
|
|
|
34
34
|
region: string | import("@smithy/types").Provider<any>;
|
|
35
35
|
profile?: string;
|
|
36
36
|
defaultUserAgentProvider: (
|
|
37
|
-
config?: import("@aws-sdk/
|
|
37
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
38
38
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
39
39
|
credentialDefaultProvider:
|
|
40
40
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|