@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.
Files changed (88) hide show
  1. package/README.md +56 -0
  2. package/dist-cjs/endpoint/endpointResolver.js +2 -2
  3. package/dist-cjs/index.js +143 -15
  4. package/dist-cjs/runtimeConfig.browser.js +5 -5
  5. package/dist-cjs/runtimeConfig.js +2 -3
  6. package/dist-cjs/schemas/schemas_0.js +225 -43
  7. package/dist-es/DataZone.js +18 -0
  8. package/dist-es/DataZoneClient.js +1 -4
  9. package/dist-es/commands/CreateNotebookCommand.js +16 -0
  10. package/dist-es/commands/DeleteNotebookCommand.js +16 -0
  11. package/dist-es/commands/GetNotebookCommand.js +16 -0
  12. package/dist-es/commands/GetNotebookExportCommand.js +16 -0
  13. package/dist-es/commands/ListNotebooksCommand.js +16 -0
  14. package/dist-es/commands/StartNotebookExportCommand.js +16 -0
  15. package/dist-es/commands/StartNotebookImportCommand.js +16 -0
  16. package/dist-es/commands/UpdateNotebookCommand.js +16 -0
  17. package/dist-es/commands/index.js +8 -0
  18. package/dist-es/endpoint/endpointResolver.js +1 -1
  19. package/dist-es/models/enums.js +15 -2
  20. package/dist-es/pagination/ListNotebooksPaginator.js +4 -0
  21. package/dist-es/pagination/index.js +1 -0
  22. package/dist-es/runtimeConfig.browser.js +1 -1
  23. package/dist-es/runtimeConfig.js +1 -2
  24. package/dist-es/runtimeExtensions.js +1 -1
  25. package/dist-es/schemas/schemas_0.js +209 -27
  26. package/dist-types/DataZone.d.ts +63 -0
  27. package/dist-types/DataZoneClient.d.ts +11 -4
  28. package/dist-types/commands/CreateNotebookCommand.d.ts +142 -0
  29. package/dist-types/commands/CreateSubscriptionGrantCommand.d.ts +2 -1
  30. package/dist-types/commands/DeleteNotebookCommand.d.ts +93 -0
  31. package/dist-types/commands/GetNotebookCommand.d.ts +127 -0
  32. package/dist-types/commands/GetNotebookExportCommand.d.ts +111 -0
  33. package/dist-types/commands/GetNotebookRunCommand.d.ts +1 -1
  34. package/dist-types/commands/ListNotebookRunsCommand.d.ts +1 -1
  35. package/dist-types/commands/ListNotebooksCommand.d.ts +111 -0
  36. package/dist-types/commands/PostTimeSeriesDataPointsCommand.d.ts +1 -1
  37. package/dist-types/commands/PutDataExportConfigurationCommand.d.ts +1 -1
  38. package/dist-types/commands/QueryGraphCommand.d.ts +1 -2
  39. package/dist-types/commands/RejectPredictionsCommand.d.ts +1 -1
  40. package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +1 -1
  41. package/dist-types/commands/RemoveEntityOwnerCommand.d.ts +1 -1
  42. package/dist-types/commands/RemovePolicyGrantCommand.d.ts +1 -2
  43. package/dist-types/commands/StartNotebookExportCommand.d.ts +111 -0
  44. package/dist-types/commands/StartNotebookImportCommand.d.ts +117 -0
  45. package/dist-types/commands/StartNotebookRunCommand.d.ts +1 -1
  46. package/dist-types/commands/StopNotebookRunCommand.d.ts +1 -1
  47. package/dist-types/commands/UpdateNotebookCommand.d.ts +150 -0
  48. package/dist-types/commands/index.d.ts +8 -0
  49. package/dist-types/models/enums.d.ts +62 -4
  50. package/dist-types/models/models_0.d.ts +186 -136
  51. package/dist-types/models/models_1.d.ts +695 -537
  52. package/dist-types/models/models_2.d.ts +670 -3
  53. package/dist-types/pagination/ListNotebooksPaginator.d.ts +7 -0
  54. package/dist-types/pagination/index.d.ts +1 -0
  55. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  56. package/dist-types/runtimeConfig.d.ts +1 -1
  57. package/dist-types/runtimeConfig.native.d.ts +1 -1
  58. package/dist-types/schemas/schemas_0.d.ts +30 -0
  59. package/dist-types/ts3.4/DataZone.d.ts +143 -0
  60. package/dist-types/ts3.4/DataZoneClient.d.ts +49 -3
  61. package/dist-types/ts3.4/commands/CreateNotebookCommand.d.ts +49 -0
  62. package/dist-types/ts3.4/commands/CreateSubscriptionGrantCommand.d.ts +2 -4
  63. package/dist-types/ts3.4/commands/DeleteNotebookCommand.d.ts +49 -0
  64. package/dist-types/ts3.4/commands/GetNotebookCommand.d.ts +49 -0
  65. package/dist-types/ts3.4/commands/GetNotebookExportCommand.d.ts +52 -0
  66. package/dist-types/ts3.4/commands/ListNotebooksCommand.d.ts +49 -0
  67. package/dist-types/ts3.4/commands/PostTimeSeriesDataPointsCommand.d.ts +1 -1
  68. package/dist-types/ts3.4/commands/PutDataExportConfigurationCommand.d.ts +1 -1
  69. package/dist-types/ts3.4/commands/QueryGraphCommand.d.ts +1 -2
  70. package/dist-types/ts3.4/commands/RejectPredictionsCommand.d.ts +1 -1
  71. package/dist-types/ts3.4/commands/RejectSubscriptionRequestCommand.d.ts +1 -1
  72. package/dist-types/ts3.4/commands/RemoveEntityOwnerCommand.d.ts +1 -1
  73. package/dist-types/ts3.4/commands/RemovePolicyGrantCommand.d.ts +4 -2
  74. package/dist-types/ts3.4/commands/StartNotebookExportCommand.d.ts +53 -0
  75. package/dist-types/ts3.4/commands/StartNotebookImportCommand.d.ts +53 -0
  76. package/dist-types/ts3.4/commands/UpdateNotebookCommand.d.ts +49 -0
  77. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  78. package/dist-types/ts3.4/models/enums.d.ts +22 -4
  79. package/dist-types/ts3.4/models/models_0.d.ts +43 -41
  80. package/dist-types/ts3.4/models/models_1.d.ts +189 -151
  81. package/dist-types/ts3.4/models/models_2.d.ts +185 -3
  82. package/dist-types/ts3.4/pagination/ListNotebooksPaginator.d.ts +11 -0
  83. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  84. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  85. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  86. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  87. package/dist-types/ts3.4/schemas/schemas_0.d.ts +30 -0
  88. package/package.json +6 -14
@@ -1,6 +1,555 @@
1
- import type { ConnectionScope, ConnectionType, EnvironmentStatus, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GraphEntityType, GroupProfileStatus, GroupSearchType, InventorySearchScope, ProjectStatus, ResolutionStrategy, RuleAction, RuleTargetType, RuleType, SearchOutputAdditionalAttribute, SortOrder, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, TypesSearchScope, UserProfileStatus, UserProfileType, UserSearchType } from "./enums";
2
- import type { AccountSource, ActionParameters, AdditionalAttributes, AggregationListItem, AggregationOutput, AssetItem, AssetListingItem, AssetTypeItem, AwsLocation, ColumnFilterConfiguration, ConfigurableEnvironmentAction, Configuration, ConnectionPropertiesOutput, ConnectionPropertiesPatch, CustomParameter, Deployment, DeploymentProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentParameter, FailureCause, FormEntryOutput, FormOutput, GrantedEntity, MatchRationaleItem, Model, PhysicalEndpoint, ProjectDeletionError, ProvisioningProperties, Resource, ResourceTag, ResourceTagParameter, RowFilterExpression, RuleDetail, RuleScope, RuleTarget, SubscribedAsset, SubscribedListing, SubscribedPrincipal, TermRelations, UserProfileDetails } from "./models_0";
3
- import type { DataProductListingItem, DataProductResultItem, Filter, Import, RelationPattern, SubscriptionTargetForm } from "./models_1";
1
+ import type { ConnectionScope, ConnectionType, DataZoneEntityType, EnvironmentStatus, FilterOperator, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GraphEntityType, GroupProfileStatus, GroupSearchType, InventorySearchScope, ManagedPolicyType, NotebookStatus, ProjectStatus, RejectRuleBehavior, RelationDirection, RelationType, ResolutionStrategy, RuleAction, RuleTargetType, RuleType, SearchOutputAdditionalAttribute, SortOrder, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TimeSeriesEntityType, TypesSearchScope, UserProfileStatus, UserProfileType, UserSearchType } from "./enums";
2
+ import type { AccountSource, ActionParameters, AdditionalAttributes, AggregationListItem, AggregationOutput, AssetItem, AssetListingItem, AssetTypeItem, AwsLocation, ColumnFilterConfiguration, ConfigurableEnvironmentAction, Configuration, ConnectionPropertiesOutput, ConnectionPropertiesPatch, CustomParameter, Deployment, DeploymentProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentParameter, FailureCause, FormEntryOutput, FormOutput, MatchRationaleItem, Model, OwnerProperties, PhysicalEndpoint, PolicyGrantPrincipal, ProjectDeletionError, ProvisioningProperties, Resource, ResourceTag, ResourceTagParameter, RowFilterExpression, RuleDetail, RuleScope, RuleTarget, SubscribedAsset, SubscribedListing, SubscribedPrincipal, TermRelations, UserProfileDetails } from "./models_0";
3
+ import type { DataProductListingItem, DataProductResultItem, EncryptionConfiguration, GrantedEntity, Import, SubscriptionTargetForm, TimeSeriesDataPointFormOutput } from "./models_1";
4
+ /**
5
+ * <p>The time series data points form.</p>
6
+ * @public
7
+ */
8
+ export interface TimeSeriesDataPointFormInput {
9
+ /**
10
+ * <p>The name of the time series data points form.</p>
11
+ * @public
12
+ */
13
+ formName: string | undefined;
14
+ /**
15
+ * <p>The ID of the type of the time series data points form.</p>
16
+ * @public
17
+ */
18
+ typeIdentifier: string | undefined;
19
+ /**
20
+ * <p>The revision type of the time series data points form.</p>
21
+ * @public
22
+ */
23
+ typeRevision?: string | undefined;
24
+ /**
25
+ * <p>The timestamp of the time series data points form.</p>
26
+ * @public
27
+ */
28
+ timestamp: Date | undefined;
29
+ /**
30
+ * <p>The content of the time series data points form.</p>
31
+ * @public
32
+ */
33
+ content?: string | undefined;
34
+ }
35
+ /**
36
+ * @public
37
+ */
38
+ export interface PostTimeSeriesDataPointsInput {
39
+ /**
40
+ * <p>The ID of the Amazon DataZone domain in which you want to post time series data points.</p>
41
+ * @public
42
+ */
43
+ domainIdentifier: string | undefined;
44
+ /**
45
+ * <p>The ID of the asset for which you want to post time series data points.</p>
46
+ * @public
47
+ */
48
+ entityIdentifier: string | undefined;
49
+ /**
50
+ * <p>The type of the asset for which you want to post data points.</p>
51
+ * @public
52
+ */
53
+ entityType: TimeSeriesEntityType | undefined;
54
+ /**
55
+ * <p>The forms that contain the data points that you want to post.</p>
56
+ * @public
57
+ */
58
+ forms: TimeSeriesDataPointFormInput[] | undefined;
59
+ /**
60
+ * <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.</p>
61
+ * @public
62
+ */
63
+ clientToken?: string | undefined;
64
+ }
65
+ /**
66
+ * @public
67
+ */
68
+ export interface PostTimeSeriesDataPointsOutput {
69
+ /**
70
+ * <p>The ID of the Amazon DataZone domain in which you want to post time series data points.</p>
71
+ * @public
72
+ */
73
+ domainId?: string | undefined;
74
+ /**
75
+ * <p>The ID of the asset for which you want to post time series data points.</p>
76
+ * @public
77
+ */
78
+ entityId?: string | undefined;
79
+ /**
80
+ * <p>The type of the asset for which you want to post data points.</p>
81
+ * @public
82
+ */
83
+ entityType?: TimeSeriesEntityType | undefined;
84
+ /**
85
+ * <p>The forms that contain the data points that you have posted.</p>
86
+ * @public
87
+ */
88
+ forms?: TimeSeriesDataPointFormOutput[] | undefined;
89
+ }
90
+ /**
91
+ * @public
92
+ */
93
+ export interface PutDataExportConfigurationInput {
94
+ /**
95
+ * <p>The domain ID for which you want to create data export configuration details.</p>
96
+ * @public
97
+ */
98
+ domainIdentifier: string | undefined;
99
+ /**
100
+ * <p>Specifies that the export is to be enabled as part of creating data export configuration details.</p>
101
+ * @public
102
+ */
103
+ enableExport: boolean | undefined;
104
+ /**
105
+ * <p>The encryption configuration as part of creating data export configuration details.</p> <p>The KMS key provided here as part of encryptionConfiguration must have the required permissions as described in <a href="https://docs.aws.amazon.com/sagemaker-unified-studio/latest/adminguide/sagemaker-unified-studio-export-asset-metadata-kms-permissions.html">KMS permissions for exporting asset metadata in Amazon SageMaker Unified Studio</a>.</p>
106
+ * @public
107
+ */
108
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
109
+ /**
110
+ * <p>A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.</p>
111
+ * @public
112
+ */
113
+ clientToken?: string | undefined;
114
+ }
115
+ /**
116
+ * @public
117
+ */
118
+ export interface PutDataExportConfigurationOutput {
119
+ }
120
+ /**
121
+ * <p>A search filter in Amazon DataZone.</p>
122
+ * @public
123
+ */
124
+ export interface Filter {
125
+ /**
126
+ * <p>A search filter attribute in Amazon DataZone.</p>
127
+ * @public
128
+ */
129
+ attribute: string | undefined;
130
+ /**
131
+ * <p>A search filter string value in Amazon DataZone.</p>
132
+ * @public
133
+ */
134
+ value?: string | undefined;
135
+ /**
136
+ * <p>A search filter integer value in Amazon DataZone.</p>
137
+ * @public
138
+ */
139
+ intValue?: number | undefined;
140
+ /**
141
+ * <p>Specifies the search filter operator.</p>
142
+ * @public
143
+ */
144
+ operator?: FilterOperator | undefined;
145
+ }
146
+ /**
147
+ * <p>The pattern describing the query's relational traversal.</p>
148
+ * @public
149
+ */
150
+ export interface RelationPattern {
151
+ /**
152
+ * <p>The type of relation to query.</p>
153
+ * @public
154
+ */
155
+ relationType: RelationType | undefined;
156
+ /**
157
+ * <p>The direction to query.</p>
158
+ * @public
159
+ */
160
+ relationDirection: RelationDirection | undefined;
161
+ /**
162
+ * <p>The number of hops to query.</p>
163
+ * @public
164
+ */
165
+ maxPathLength?: number | undefined;
166
+ }
167
+ /**
168
+ * <p>The summary and output forms of a LineageNode</p>
169
+ * @public
170
+ */
171
+ export interface LineageNodeItem {
172
+ /**
173
+ * <p>The ID of the domain of the data lineage node.</p>
174
+ * @public
175
+ */
176
+ domainId: string | undefined;
177
+ /**
178
+ * <p>The name of the data lineage node.</p>
179
+ * @public
180
+ */
181
+ name?: string | undefined;
182
+ /**
183
+ * <p>The description of the data lineage node.</p>
184
+ * @public
185
+ */
186
+ description?: string | undefined;
187
+ /**
188
+ * <p>The timestamp at which the data lineage node was created.</p>
189
+ * @public
190
+ */
191
+ createdAt?: Date | undefined;
192
+ /**
193
+ * <p>The user who created the data lineage node.</p>
194
+ * @public
195
+ */
196
+ createdBy?: string | undefined;
197
+ /**
198
+ * <p>The timestamp at which the data lineage node was updated.</p>
199
+ * @public
200
+ */
201
+ updatedAt?: Date | undefined;
202
+ /**
203
+ * <p>The user who updated the data lineage node.</p>
204
+ * @public
205
+ */
206
+ updatedBy?: string | undefined;
207
+ /**
208
+ * <p>The ID of the data lineage node.</p>
209
+ * @public
210
+ */
211
+ id: string | undefined;
212
+ /**
213
+ * <p>The name of the type of the data lineage node.</p>
214
+ * @public
215
+ */
216
+ typeName: string | undefined;
217
+ /**
218
+ * <p>The type of the revision of the data lineage node.</p>
219
+ * @public
220
+ */
221
+ typeRevision?: string | undefined;
222
+ /**
223
+ * <p>The alternate ID of the data lineage node.</p>
224
+ * @public
225
+ */
226
+ sourceIdentifier?: string | undefined;
227
+ /**
228
+ * <p>The event timestamp of the data lineage node.</p>
229
+ * @public
230
+ */
231
+ eventTimestamp?: Date | undefined;
232
+ /**
233
+ * <p>The forms included in the additional attributes of a data lineage node.</p>
234
+ * @public
235
+ */
236
+ formsOutput?: FormOutput[] | undefined;
237
+ /**
238
+ * <p>The IDs of the upstream data lineage nodes.</p>
239
+ * @public
240
+ */
241
+ upstreamLineageNodeIds?: string[] | undefined;
242
+ /**
243
+ * <p>The IDs of the downstream data lineage nodes.</p>
244
+ * @public
245
+ */
246
+ downstreamLineageNodeIds?: string[] | undefined;
247
+ }
248
+ /**
249
+ * <p>Resulting entity from the query.</p>
250
+ * @public
251
+ */
252
+ export type ResultItem = ResultItem.LineageNodeMember | ResultItem.$UnknownMember;
253
+ /**
254
+ * @public
255
+ */
256
+ export declare namespace ResultItem {
257
+ /**
258
+ * <p>Resulting data lineage node from the query.</p>
259
+ * @public
260
+ */
261
+ interface LineageNodeMember {
262
+ lineageNode: LineageNodeItem;
263
+ $unknown?: never;
264
+ }
265
+ /**
266
+ * @public
267
+ */
268
+ interface $UnknownMember {
269
+ lineageNode?: never;
270
+ $unknown: [string, any];
271
+ }
272
+ /**
273
+ * @deprecated unused in schema-serde mode.
274
+ *
275
+ */
276
+ interface Visitor<T> {
277
+ lineageNode: (value: LineageNodeItem) => T;
278
+ _: (name: string, value: any) => T;
279
+ }
280
+ }
281
+ /**
282
+ * @public
283
+ */
284
+ export interface QueryGraphOutput {
285
+ /**
286
+ * <p>The results of the <code>QueryGraph</code> action.</p>
287
+ * @public
288
+ */
289
+ items?: ResultItem[] | undefined;
290
+ /**
291
+ * <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>
292
+ * @public
293
+ */
294
+ nextToken?: string | undefined;
295
+ }
296
+ /**
297
+ * <p>The details of the automatically generated business metadata that is rejected.</p>
298
+ * @public
299
+ */
300
+ export interface RejectChoice {
301
+ /**
302
+ * <p>Specifies the target (for example, a column name) where a prediction can be rejected.</p>
303
+ * @public
304
+ */
305
+ predictionTarget: string | undefined;
306
+ /**
307
+ * <p>Specifies the the automatically generated business metadata that can be rejected.</p>
308
+ * @public
309
+ */
310
+ predictionChoices?: number[] | undefined;
311
+ }
312
+ /**
313
+ * <p>Specifies the rule and the threshold under which a prediction can be rejected.</p>
314
+ * @public
315
+ */
316
+ export interface RejectRule {
317
+ /**
318
+ * <p>Specifies whether you want to reject the top prediction for all targets or none.</p>
319
+ * @public
320
+ */
321
+ rule?: RejectRuleBehavior | undefined;
322
+ /**
323
+ * <p>The confidence score that specifies the condition at which a prediction can be rejected.</p>
324
+ * @public
325
+ */
326
+ threshold?: number | undefined;
327
+ }
328
+ /**
329
+ * @public
330
+ */
331
+ export interface RejectPredictionsInput {
332
+ /**
333
+ * <p>The identifier of the Amazon DataZone domain.</p>
334
+ * @public
335
+ */
336
+ domainIdentifier: string | undefined;
337
+ /**
338
+ * <p>The identifier of the prediction.</p>
339
+ * @public
340
+ */
341
+ identifier: string | undefined;
342
+ /**
343
+ * <p>The revision that is to be made to the asset.</p>
344
+ * @public
345
+ */
346
+ revision?: string | undefined;
347
+ /**
348
+ * <p>Specifies the rule (or the conditions) under which a prediction can be rejected.</p>
349
+ * @public
350
+ */
351
+ rejectRule?: RejectRule | undefined;
352
+ /**
353
+ * <p>Specifies the prediction (aka, the automatically generated piece of metadata) and the target (for example, a column name) that can be rejected.</p>
354
+ * @public
355
+ */
356
+ rejectChoices?: RejectChoice[] | undefined;
357
+ /**
358
+ * <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.</p>
359
+ * @public
360
+ */
361
+ clientToken?: string | undefined;
362
+ }
363
+ /**
364
+ * @public
365
+ */
366
+ export interface RejectPredictionsOutput {
367
+ /**
368
+ * <p>The ID of the Amazon DataZone domain.</p>
369
+ * @public
370
+ */
371
+ domainId: string | undefined;
372
+ /**
373
+ * <p>The ID of the asset.</p>
374
+ * @public
375
+ */
376
+ assetId: string | undefined;
377
+ /**
378
+ * <p>The revision that is to be made to the asset.</p>
379
+ * @public
380
+ */
381
+ assetRevision: string | undefined;
382
+ }
383
+ /**
384
+ * @public
385
+ */
386
+ export interface RejectSubscriptionRequestInput {
387
+ /**
388
+ * <p>The identifier of the Amazon DataZone domain in which the subscription request was rejected.</p>
389
+ * @public
390
+ */
391
+ domainIdentifier: string | undefined;
392
+ /**
393
+ * <p>The identifier of the subscription request that was rejected.</p>
394
+ * @public
395
+ */
396
+ identifier: string | undefined;
397
+ /**
398
+ * <p>The decision comment of the rejected subscription request.</p>
399
+ * @public
400
+ */
401
+ decisionComment?: string | undefined;
402
+ }
403
+ /**
404
+ * @public
405
+ */
406
+ export interface RejectSubscriptionRequestOutput {
407
+ /**
408
+ * <p>The identifier of the subscription request that was rejected.</p>
409
+ * @public
410
+ */
411
+ id: string | undefined;
412
+ /**
413
+ * <p>The timestamp of when the subscription request was rejected.</p>
414
+ * @public
415
+ */
416
+ createdBy: string | undefined;
417
+ /**
418
+ * <p>The Amazon DataZone user who updated the subscription request.</p>
419
+ * @public
420
+ */
421
+ updatedBy?: string | undefined;
422
+ /**
423
+ * <p>The identifier of the Amazon DataZone domain in which the subscription request was rejected.</p>
424
+ * @public
425
+ */
426
+ domainId: string | undefined;
427
+ /**
428
+ * <p>The status of the subscription request.</p>
429
+ * @public
430
+ */
431
+ status: SubscriptionRequestStatus | undefined;
432
+ /**
433
+ * <p>The timestamp of when the subscription request was rejected.</p>
434
+ * @public
435
+ */
436
+ createdAt: Date | undefined;
437
+ /**
438
+ * <p>The timestamp of when the subscription request was updated.</p>
439
+ * @public
440
+ */
441
+ updatedAt: Date | undefined;
442
+ /**
443
+ * <p>The reason for the subscription request.</p>
444
+ * @public
445
+ */
446
+ requestReason: string | undefined;
447
+ /**
448
+ * <p>The subscribed principals of the subscription request.</p>
449
+ * @public
450
+ */
451
+ subscribedPrincipals: SubscribedPrincipal[] | undefined;
452
+ /**
453
+ * <p>The subscribed listings of the subscription request.</p>
454
+ * @public
455
+ */
456
+ subscribedListings: SubscribedListing[] | undefined;
457
+ /**
458
+ * <p>The identifier of the subscription request reviewer.</p>
459
+ * @public
460
+ */
461
+ reviewerId?: string | undefined;
462
+ /**
463
+ * <p>The decision comment of the rejected subscription request.</p>
464
+ * @public
465
+ */
466
+ decisionComment?: string | undefined;
467
+ /**
468
+ * <p>The ID of the existing subscription.</p>
469
+ * @public
470
+ */
471
+ existingSubscriptionId?: string | undefined;
472
+ /**
473
+ * <p>Metadata forms included in the subscription request.</p>
474
+ * @public
475
+ */
476
+ metadataForms?: FormOutput[] | undefined;
477
+ }
478
+ /**
479
+ * @public
480
+ */
481
+ export interface RemoveEntityOwnerInput {
482
+ /**
483
+ * <p>The ID of the domain where you want to remove an owner from an entity.</p>
484
+ * @public
485
+ */
486
+ domainIdentifier: string | undefined;
487
+ /**
488
+ * <p>The type of the entity from which you want to remove an owner.</p>
489
+ * @public
490
+ */
491
+ entityType: DataZoneEntityType | undefined;
492
+ /**
493
+ * <p>The ID of the entity from which you want to remove an owner.</p>
494
+ * @public
495
+ */
496
+ entityIdentifier: string | undefined;
497
+ /**
498
+ * <p>The owner that you want to remove from an entity.</p>
499
+ * @public
500
+ */
501
+ owner: OwnerProperties | undefined;
502
+ /**
503
+ * <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.</p>
504
+ * @public
505
+ */
506
+ clientToken?: string | undefined;
507
+ }
508
+ /**
509
+ * @public
510
+ */
511
+ export interface RemoveEntityOwnerOutput {
512
+ }
513
+ /**
514
+ * @public
515
+ */
516
+ export interface RemovePolicyGrantInput {
517
+ /**
518
+ * <p>The ID of the domain where you want to remove a policy grant.</p>
519
+ * @public
520
+ */
521
+ domainIdentifier: string | undefined;
522
+ /**
523
+ * <p>The type of the entity from which you want to remove a policy grant.</p>
524
+ * @public
525
+ */
526
+ entityType: TargetEntityType | undefined;
527
+ /**
528
+ * <p>The ID of the entity from which you want to remove a policy grant.</p>
529
+ * @public
530
+ */
531
+ entityIdentifier: string | undefined;
532
+ /**
533
+ * <p>The type of the policy that you want to remove.</p>
534
+ * @public
535
+ */
536
+ policyType: ManagedPolicyType | undefined;
537
+ /**
538
+ * <p>The principal from which you want to remove a policy grant.</p>
539
+ * @public
540
+ */
541
+ principal: PolicyGrantPrincipal | undefined;
542
+ /**
543
+ * <p>The ID of the policy grant that is to be removed from a specified entity.</p>
544
+ * @public
545
+ */
546
+ grantIdentifier?: string | undefined;
547
+ /**
548
+ * <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.</p>
549
+ * @public
550
+ */
551
+ clientToken?: string | undefined;
552
+ }
4
553
  /**
5
554
  * @public
6
555
  */
@@ -1151,6 +1700,124 @@ export interface SearchUserProfilesOutput {
1151
1700
  */
1152
1701
  nextToken?: string | undefined;
1153
1702
  }
1703
+ /**
1704
+ * <p>The source location for a notebook import in Amazon SageMaker Unified Studio.</p>
1705
+ * @public
1706
+ */
1707
+ export type SourceLocation = SourceLocation.S3Member | SourceLocation.$UnknownMember;
1708
+ /**
1709
+ * @public
1710
+ */
1711
+ export declare namespace SourceLocation {
1712
+ /**
1713
+ * <p>The Amazon Simple Storage Service URI of the notebook source file.</p>
1714
+ * @public
1715
+ */
1716
+ interface S3Member {
1717
+ s3: string;
1718
+ $unknown?: never;
1719
+ }
1720
+ /**
1721
+ * @public
1722
+ */
1723
+ interface $UnknownMember {
1724
+ s3?: never;
1725
+ $unknown: [string, any];
1726
+ }
1727
+ /**
1728
+ * @deprecated unused in schema-serde mode.
1729
+ *
1730
+ */
1731
+ interface Visitor<T> {
1732
+ s3: (value: string) => T;
1733
+ _: (name: string, value: any) => T;
1734
+ }
1735
+ }
1736
+ /**
1737
+ * @public
1738
+ */
1739
+ export interface StartNotebookImportInput {
1740
+ /**
1741
+ * <p>The identifier of the Amazon SageMaker Unified Studio domain in which to import the notebook.</p>
1742
+ * @public
1743
+ */
1744
+ domainIdentifier: string | undefined;
1745
+ /**
1746
+ * <p>The identifier of the project that will own the imported notebook.</p>
1747
+ * @public
1748
+ */
1749
+ owningProjectIdentifier: string | undefined;
1750
+ /**
1751
+ * <p>The source location of the notebook to import. This specifies the Amazon Simple Storage Service URI of the notebook file.</p>
1752
+ * @public
1753
+ */
1754
+ sourceLocation: SourceLocation | undefined;
1755
+ /**
1756
+ * <p>The name of the imported notebook. The name must be between 1 and 256 characters.</p>
1757
+ * @public
1758
+ */
1759
+ name: string | undefined;
1760
+ /**
1761
+ * <p>The description of the imported notebook.</p>
1762
+ * @public
1763
+ */
1764
+ description?: string | undefined;
1765
+ /**
1766
+ * <p>A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.</p>
1767
+ * @public
1768
+ */
1769
+ clientToken?: string | undefined;
1770
+ }
1771
+ /**
1772
+ * @public
1773
+ */
1774
+ export interface StartNotebookImportOutput {
1775
+ /**
1776
+ * <p>The identifier of the imported notebook.</p>
1777
+ * @public
1778
+ */
1779
+ notebookId?: string | undefined;
1780
+ /**
1781
+ * <p>The status of the notebook import.</p>
1782
+ * @public
1783
+ */
1784
+ status?: NotebookStatus | undefined;
1785
+ /**
1786
+ * <p>The identifier of the Amazon SageMaker Unified Studio domain.</p>
1787
+ * @public
1788
+ */
1789
+ domainId?: string | undefined;
1790
+ /**
1791
+ * <p>The identifier of the project that owns the imported notebook.</p>
1792
+ * @public
1793
+ */
1794
+ owningProjectId?: string | undefined;
1795
+ /**
1796
+ * <p>The name of the imported notebook.</p>
1797
+ * @public
1798
+ */
1799
+ name?: string | undefined;
1800
+ /**
1801
+ * <p>The description of the imported notebook.</p>
1802
+ * @public
1803
+ */
1804
+ description?: string | undefined;
1805
+ /**
1806
+ * <p>The source location from which the notebook was imported.</p>
1807
+ * @public
1808
+ */
1809
+ sourceLocation?: SourceLocation | undefined;
1810
+ /**
1811
+ * <p>The timestamp of when the notebook import was started.</p>
1812
+ * @public
1813
+ */
1814
+ createdAt?: Date | undefined;
1815
+ /**
1816
+ * <p>The identifier of the user who started the notebook import.</p>
1817
+ * @public
1818
+ */
1819
+ createdBy?: string | undefined;
1820
+ }
1154
1821
  /**
1155
1822
  * @public
1156
1823
  */
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListNotebooksCommandInput, ListNotebooksCommandOutput } from "../commands/ListNotebooksCommand";
3
+ import type { DataZonePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListNotebooks: (config: DataZonePaginationConfiguration, input: ListNotebooksCommandInput, ...rest: any[]) => 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";