@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
package/dist-es/DataZone.js
CHANGED
|
@@ -29,6 +29,7 @@ import { CreateGlossaryCommand, } from "./commands/CreateGlossaryCommand";
|
|
|
29
29
|
import { CreateGlossaryTermCommand, } from "./commands/CreateGlossaryTermCommand";
|
|
30
30
|
import { CreateGroupProfileCommand, } from "./commands/CreateGroupProfileCommand";
|
|
31
31
|
import { CreateListingChangeSetCommand, } from "./commands/CreateListingChangeSetCommand";
|
|
32
|
+
import { CreateNotebookCommand, } from "./commands/CreateNotebookCommand";
|
|
32
33
|
import { CreateProjectCommand, } from "./commands/CreateProjectCommand";
|
|
33
34
|
import { CreateProjectMembershipCommand, } from "./commands/CreateProjectMembershipCommand";
|
|
34
35
|
import { CreateProjectProfileCommand, } from "./commands/CreateProjectProfileCommand";
|
|
@@ -56,6 +57,7 @@ import { DeleteFormTypeCommand, } from "./commands/DeleteFormTypeCommand";
|
|
|
56
57
|
import { DeleteGlossaryCommand, } from "./commands/DeleteGlossaryCommand";
|
|
57
58
|
import { DeleteGlossaryTermCommand, } from "./commands/DeleteGlossaryTermCommand";
|
|
58
59
|
import { DeleteListingCommand, } from "./commands/DeleteListingCommand";
|
|
60
|
+
import { DeleteNotebookCommand, } from "./commands/DeleteNotebookCommand";
|
|
59
61
|
import { DeleteProjectCommand, } from "./commands/DeleteProjectCommand";
|
|
60
62
|
import { DeleteProjectMembershipCommand, } from "./commands/DeleteProjectMembershipCommand";
|
|
61
63
|
import { DeleteProjectProfileCommand, } from "./commands/DeleteProjectProfileCommand";
|
|
@@ -93,6 +95,8 @@ import { GetLineageEventCommand, } from "./commands/GetLineageEventCommand";
|
|
|
93
95
|
import { GetLineageNodeCommand, } from "./commands/GetLineageNodeCommand";
|
|
94
96
|
import { GetListingCommand, } from "./commands/GetListingCommand";
|
|
95
97
|
import { GetMetadataGenerationRunCommand, } from "./commands/GetMetadataGenerationRunCommand";
|
|
98
|
+
import { GetNotebookCommand, } from "./commands/GetNotebookCommand";
|
|
99
|
+
import { GetNotebookExportCommand, } from "./commands/GetNotebookExportCommand";
|
|
96
100
|
import { GetNotebookRunCommand, } from "./commands/GetNotebookRunCommand";
|
|
97
101
|
import { GetProjectCommand, } from "./commands/GetProjectCommand";
|
|
98
102
|
import { GetProjectProfileCommand, } from "./commands/GetProjectProfileCommand";
|
|
@@ -125,6 +129,7 @@ import { ListLineageEventsCommand, } from "./commands/ListLineageEventsCommand";
|
|
|
125
129
|
import { ListLineageNodeHistoryCommand, } from "./commands/ListLineageNodeHistoryCommand";
|
|
126
130
|
import { ListMetadataGenerationRunsCommand, } from "./commands/ListMetadataGenerationRunsCommand";
|
|
127
131
|
import { ListNotebookRunsCommand, } from "./commands/ListNotebookRunsCommand";
|
|
132
|
+
import { ListNotebooksCommand, } from "./commands/ListNotebooksCommand";
|
|
128
133
|
import { ListNotificationsCommand, } from "./commands/ListNotificationsCommand";
|
|
129
134
|
import { ListPolicyGrantsCommand, } from "./commands/ListPolicyGrantsCommand";
|
|
130
135
|
import { ListProjectMembershipsCommand, } from "./commands/ListProjectMembershipsCommand";
|
|
@@ -154,6 +159,8 @@ import { SearchTypesCommand, } from "./commands/SearchTypesCommand";
|
|
|
154
159
|
import { SearchUserProfilesCommand, } from "./commands/SearchUserProfilesCommand";
|
|
155
160
|
import { StartDataSourceRunCommand, } from "./commands/StartDataSourceRunCommand";
|
|
156
161
|
import { StartMetadataGenerationRunCommand, } from "./commands/StartMetadataGenerationRunCommand";
|
|
162
|
+
import { StartNotebookExportCommand, } from "./commands/StartNotebookExportCommand";
|
|
163
|
+
import { StartNotebookImportCommand, } from "./commands/StartNotebookImportCommand";
|
|
157
164
|
import { StartNotebookRunCommand, } from "./commands/StartNotebookRunCommand";
|
|
158
165
|
import { StopNotebookRunCommand, } from "./commands/StopNotebookRunCommand";
|
|
159
166
|
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
@@ -171,6 +178,7 @@ import { UpdateEnvironmentProfileCommand, } from "./commands/UpdateEnvironmentPr
|
|
|
171
178
|
import { UpdateGlossaryCommand, } from "./commands/UpdateGlossaryCommand";
|
|
172
179
|
import { UpdateGlossaryTermCommand, } from "./commands/UpdateGlossaryTermCommand";
|
|
173
180
|
import { UpdateGroupProfileCommand, } from "./commands/UpdateGroupProfileCommand";
|
|
181
|
+
import { UpdateNotebookCommand, } from "./commands/UpdateNotebookCommand";
|
|
174
182
|
import { UpdateProjectCommand, } from "./commands/UpdateProjectCommand";
|
|
175
183
|
import { UpdateProjectProfileCommand, } from "./commands/UpdateProjectProfileCommand";
|
|
176
184
|
import { UpdateRootDomainUnitOwnerCommand, } from "./commands/UpdateRootDomainUnitOwnerCommand";
|
|
@@ -202,6 +210,7 @@ import { paginateListLineageEvents } from "./pagination/ListLineageEventsPaginat
|
|
|
202
210
|
import { paginateListLineageNodeHistory } from "./pagination/ListLineageNodeHistoryPaginator";
|
|
203
211
|
import { paginateListMetadataGenerationRuns } from "./pagination/ListMetadataGenerationRunsPaginator";
|
|
204
212
|
import { paginateListNotebookRuns } from "./pagination/ListNotebookRunsPaginator";
|
|
213
|
+
import { paginateListNotebooks } from "./pagination/ListNotebooksPaginator";
|
|
205
214
|
import { paginateListNotifications } from "./pagination/ListNotificationsPaginator";
|
|
206
215
|
import { paginateListPolicyGrants } from "./pagination/ListPolicyGrantsPaginator";
|
|
207
216
|
import { paginateListProjectMemberships } from "./pagination/ListProjectMembershipsPaginator";
|
|
@@ -250,6 +259,7 @@ const commands = {
|
|
|
250
259
|
CreateGlossaryTermCommand,
|
|
251
260
|
CreateGroupProfileCommand,
|
|
252
261
|
CreateListingChangeSetCommand,
|
|
262
|
+
CreateNotebookCommand,
|
|
253
263
|
CreateProjectCommand,
|
|
254
264
|
CreateProjectMembershipCommand,
|
|
255
265
|
CreateProjectProfileCommand,
|
|
@@ -277,6 +287,7 @@ const commands = {
|
|
|
277
287
|
DeleteGlossaryCommand,
|
|
278
288
|
DeleteGlossaryTermCommand,
|
|
279
289
|
DeleteListingCommand,
|
|
290
|
+
DeleteNotebookCommand,
|
|
280
291
|
DeleteProjectCommand,
|
|
281
292
|
DeleteProjectMembershipCommand,
|
|
282
293
|
DeleteProjectProfileCommand,
|
|
@@ -314,6 +325,8 @@ const commands = {
|
|
|
314
325
|
GetLineageNodeCommand,
|
|
315
326
|
GetListingCommand,
|
|
316
327
|
GetMetadataGenerationRunCommand,
|
|
328
|
+
GetNotebookCommand,
|
|
329
|
+
GetNotebookExportCommand,
|
|
317
330
|
GetNotebookRunCommand,
|
|
318
331
|
GetProjectCommand,
|
|
319
332
|
GetProjectProfileCommand,
|
|
@@ -346,6 +359,7 @@ const commands = {
|
|
|
346
359
|
ListLineageNodeHistoryCommand,
|
|
347
360
|
ListMetadataGenerationRunsCommand,
|
|
348
361
|
ListNotebookRunsCommand,
|
|
362
|
+
ListNotebooksCommand,
|
|
349
363
|
ListNotificationsCommand,
|
|
350
364
|
ListPolicyGrantsCommand,
|
|
351
365
|
ListProjectMembershipsCommand,
|
|
@@ -375,6 +389,8 @@ const commands = {
|
|
|
375
389
|
SearchUserProfilesCommand,
|
|
376
390
|
StartDataSourceRunCommand,
|
|
377
391
|
StartMetadataGenerationRunCommand,
|
|
392
|
+
StartNotebookExportCommand,
|
|
393
|
+
StartNotebookImportCommand,
|
|
378
394
|
StartNotebookRunCommand,
|
|
379
395
|
StopNotebookRunCommand,
|
|
380
396
|
TagResourceCommand,
|
|
@@ -392,6 +408,7 @@ const commands = {
|
|
|
392
408
|
UpdateGlossaryCommand,
|
|
393
409
|
UpdateGlossaryTermCommand,
|
|
394
410
|
UpdateGroupProfileCommand,
|
|
411
|
+
UpdateNotebookCommand,
|
|
395
412
|
UpdateProjectCommand,
|
|
396
413
|
UpdateProjectProfileCommand,
|
|
397
414
|
UpdateRootDomainUnitOwnerCommand,
|
|
@@ -424,6 +441,7 @@ const paginators = {
|
|
|
424
441
|
paginateListLineageNodeHistory,
|
|
425
442
|
paginateListMetadataGenerationRuns,
|
|
426
443
|
paginateListNotebookRuns,
|
|
444
|
+
paginateListNotebooks,
|
|
427
445
|
paginateListNotifications,
|
|
428
446
|
paginateListPolicyGrants,
|
|
429
447
|
paginateListProjectMemberships,
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/
|
|
2
|
-
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
3
|
-
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
4
|
-
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
1
|
+
import { getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin, getUserAgentPlugin, resolveHostHeaderConfig, resolveUserAgentConfig, } from "@aws-sdk/core/client";
|
|
5
2
|
import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
|
|
6
3
|
import { Client as __Client, } from "@smithy/core/client";
|
|
7
4
|
import { resolveRegionConfig } from "@smithy/core/config";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateNotebook$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateNotebookCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("DataZone", "CreateNotebook", {})
|
|
13
|
+
.n("DataZoneClient", "CreateNotebookCommand")
|
|
14
|
+
.sc(CreateNotebook$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteNotebook$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteNotebookCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("DataZone", "DeleteNotebook", {})
|
|
13
|
+
.n("DataZoneClient", "DeleteNotebookCommand")
|
|
14
|
+
.sc(DeleteNotebook$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetNotebook$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetNotebookCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("DataZone", "GetNotebook", {})
|
|
13
|
+
.n("DataZoneClient", "GetNotebookCommand")
|
|
14
|
+
.sc(GetNotebook$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetNotebookExport$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetNotebookExportCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("DataZone", "GetNotebookExport", {})
|
|
13
|
+
.n("DataZoneClient", "GetNotebookExportCommand")
|
|
14
|
+
.sc(GetNotebookExport$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListNotebooks$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListNotebooksCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("DataZone", "ListNotebooks", {})
|
|
13
|
+
.n("DataZoneClient", "ListNotebooksCommand")
|
|
14
|
+
.sc(ListNotebooks$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { StartNotebookExport$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class StartNotebookExportCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("DataZone", "StartNotebookExport", {})
|
|
13
|
+
.n("DataZoneClient", "StartNotebookExportCommand")
|
|
14
|
+
.sc(StartNotebookExport$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { StartNotebookImport$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class StartNotebookImportCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("DataZone", "StartNotebookImport", {})
|
|
13
|
+
.n("DataZoneClient", "StartNotebookImportCommand")
|
|
14
|
+
.sc(StartNotebookImport$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateNotebook$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateNotebookCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("DataZone", "UpdateNotebook", {})
|
|
13
|
+
.n("DataZoneClient", "UpdateNotebookCommand")
|
|
14
|
+
.sc(UpdateNotebook$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -28,6 +28,7 @@ export * from "./CreateGlossaryCommand";
|
|
|
28
28
|
export * from "./CreateGlossaryTermCommand";
|
|
29
29
|
export * from "./CreateGroupProfileCommand";
|
|
30
30
|
export * from "./CreateListingChangeSetCommand";
|
|
31
|
+
export * from "./CreateNotebookCommand";
|
|
31
32
|
export * from "./CreateProjectCommand";
|
|
32
33
|
export * from "./CreateProjectMembershipCommand";
|
|
33
34
|
export * from "./CreateProjectProfileCommand";
|
|
@@ -55,6 +56,7 @@ export * from "./DeleteFormTypeCommand";
|
|
|
55
56
|
export * from "./DeleteGlossaryCommand";
|
|
56
57
|
export * from "./DeleteGlossaryTermCommand";
|
|
57
58
|
export * from "./DeleteListingCommand";
|
|
59
|
+
export * from "./DeleteNotebookCommand";
|
|
58
60
|
export * from "./DeleteProjectCommand";
|
|
59
61
|
export * from "./DeleteProjectMembershipCommand";
|
|
60
62
|
export * from "./DeleteProjectProfileCommand";
|
|
@@ -92,6 +94,8 @@ export * from "./GetLineageEventCommand";
|
|
|
92
94
|
export * from "./GetLineageNodeCommand";
|
|
93
95
|
export * from "./GetListingCommand";
|
|
94
96
|
export * from "./GetMetadataGenerationRunCommand";
|
|
97
|
+
export * from "./GetNotebookCommand";
|
|
98
|
+
export * from "./GetNotebookExportCommand";
|
|
95
99
|
export * from "./GetNotebookRunCommand";
|
|
96
100
|
export * from "./GetProjectCommand";
|
|
97
101
|
export * from "./GetProjectProfileCommand";
|
|
@@ -124,6 +128,7 @@ export * from "./ListLineageEventsCommand";
|
|
|
124
128
|
export * from "./ListLineageNodeHistoryCommand";
|
|
125
129
|
export * from "./ListMetadataGenerationRunsCommand";
|
|
126
130
|
export * from "./ListNotebookRunsCommand";
|
|
131
|
+
export * from "./ListNotebooksCommand";
|
|
127
132
|
export * from "./ListNotificationsCommand";
|
|
128
133
|
export * from "./ListPolicyGrantsCommand";
|
|
129
134
|
export * from "./ListProjectMembershipsCommand";
|
|
@@ -153,6 +158,8 @@ export * from "./SearchTypesCommand";
|
|
|
153
158
|
export * from "./SearchUserProfilesCommand";
|
|
154
159
|
export * from "./StartDataSourceRunCommand";
|
|
155
160
|
export * from "./StartMetadataGenerationRunCommand";
|
|
161
|
+
export * from "./StartNotebookExportCommand";
|
|
162
|
+
export * from "./StartNotebookImportCommand";
|
|
156
163
|
export * from "./StartNotebookRunCommand";
|
|
157
164
|
export * from "./StopNotebookRunCommand";
|
|
158
165
|
export * from "./TagResourceCommand";
|
|
@@ -170,6 +177,7 @@ export * from "./UpdateEnvironmentProfileCommand";
|
|
|
170
177
|
export * from "./UpdateGlossaryCommand";
|
|
171
178
|
export * from "./UpdateGlossaryTermCommand";
|
|
172
179
|
export * from "./UpdateGroupProfileCommand";
|
|
180
|
+
export * from "./UpdateNotebookCommand";
|
|
173
181
|
export * from "./UpdateProjectCommand";
|
|
174
182
|
export * from "./UpdateProjectProfileCommand";
|
|
175
183
|
export * from "./UpdateRootDomainUnitOwnerCommand";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { awsEndpointFunctions } from "@aws-sdk/
|
|
1
|
+
import { awsEndpointFunctions } from "@aws-sdk/core/client";
|
|
2
2
|
import { customEndpointFunctions, decideEndpoint, EndpointCache } from "@smithy/core/endpoints";
|
|
3
3
|
import { bdd } from "./bdd";
|
|
4
4
|
const cache = new EndpointCache({
|
package/dist-es/models/enums.js
CHANGED
|
@@ -346,6 +346,13 @@ export const EntityType = {
|
|
|
346
346
|
ASSET: "ASSET",
|
|
347
347
|
DATA_PRODUCT: "DATA_PRODUCT",
|
|
348
348
|
};
|
|
349
|
+
export const PackageManager = {
|
|
350
|
+
UV: "UV",
|
|
351
|
+
};
|
|
352
|
+
export const NotebookStatus = {
|
|
353
|
+
ACTIVE: "ACTIVE",
|
|
354
|
+
ARCHIVED: "ARCHIVED",
|
|
355
|
+
};
|
|
349
356
|
export const UserDesignation = {
|
|
350
357
|
PROJECT_CATALOG_CONSUMER: "PROJECT_CATALOG_CONSUMER",
|
|
351
358
|
PROJECT_CATALOG_STEWARD: "PROJECT_CATALOG_STEWARD",
|
|
@@ -549,8 +556,14 @@ export const MetadataGenerationRunStatus = {
|
|
|
549
556
|
export const MetadataGenerationTargetType = {
|
|
550
557
|
ASSET: "ASSET",
|
|
551
558
|
};
|
|
552
|
-
export const
|
|
553
|
-
|
|
559
|
+
export const FileFormat = {
|
|
560
|
+
IPYNB: "IPYNB",
|
|
561
|
+
PDF: "PDF",
|
|
562
|
+
};
|
|
563
|
+
export const NotebookExportStatus = {
|
|
564
|
+
FAILED: "FAILED",
|
|
565
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
566
|
+
SUCCEEDED: "SUCCEEDED",
|
|
554
567
|
};
|
|
555
568
|
export const NetworkAccessType = {
|
|
556
569
|
PUBLIC_INTERNET_ONLY: "PUBLIC_INTERNET_ONLY",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListNotebooksCommand, } from "../commands/ListNotebooksCommand";
|
|
3
|
+
import { DataZoneClient } from "../DataZoneClient";
|
|
4
|
+
export const paginateListNotebooks = createPaginator(DataZoneClient, ListNotebooksCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -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";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
2
|
import { Sha256 } from "@aws-crypto/sha256-browser";
|
|
3
|
-
import { createDefaultUserAgentProvider } from "@aws-sdk/
|
|
3
|
+
import { createDefaultUserAgentProvider } from "@aws-sdk/core/client";
|
|
4
4
|
import { invalidProvider, loadConfigsForDefaultMode } from "@smithy/core/client";
|
|
5
5
|
import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig, } from "@smithy/core/config";
|
|
6
6
|
import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/core/retry";
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
|
|
2
|
+
import { createDefaultUserAgentProvider, emitWarningIfUnsupportedVersion as awsCheckVersion, NODE_APP_ID_CONFIG_OPTIONS, } from "@aws-sdk/core/client";
|
|
3
3
|
import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
|
|
4
4
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
5
|
-
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
6
5
|
import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/core/client";
|
|
7
6
|
import { loadConfig as loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig, } from "@smithy/core/config";
|
|
8
7
|
import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/core/retry";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration
|
|
1
|
+
import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration } from "@aws-sdk/core/client";
|
|
2
2
|
import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/core/client";
|
|
3
3
|
import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/core/protocols";
|
|
4
4
|
import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration";
|