@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-types/DataZone.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ import { type CreateGlossaryCommandInput, type CreateGlossaryCommandOutput } fro
|
|
|
29
29
|
import { type CreateGlossaryTermCommandInput, type CreateGlossaryTermCommandOutput } from "./commands/CreateGlossaryTermCommand";
|
|
30
30
|
import { type CreateGroupProfileCommandInput, type CreateGroupProfileCommandOutput } from "./commands/CreateGroupProfileCommand";
|
|
31
31
|
import { type CreateListingChangeSetCommandInput, type CreateListingChangeSetCommandOutput } from "./commands/CreateListingChangeSetCommand";
|
|
32
|
+
import { type CreateNotebookCommandInput, type CreateNotebookCommandOutput } from "./commands/CreateNotebookCommand";
|
|
32
33
|
import { type CreateProjectCommandInput, type CreateProjectCommandOutput } from "./commands/CreateProjectCommand";
|
|
33
34
|
import { type CreateProjectMembershipCommandInput, type CreateProjectMembershipCommandOutput } from "./commands/CreateProjectMembershipCommand";
|
|
34
35
|
import { type CreateProjectProfileCommandInput, type CreateProjectProfileCommandOutput } from "./commands/CreateProjectProfileCommand";
|
|
@@ -56,6 +57,7 @@ import { type DeleteFormTypeCommandInput, type DeleteFormTypeCommandOutput } fro
|
|
|
56
57
|
import { type DeleteGlossaryCommandInput, type DeleteGlossaryCommandOutput } from "./commands/DeleteGlossaryCommand";
|
|
57
58
|
import { type DeleteGlossaryTermCommandInput, type DeleteGlossaryTermCommandOutput } from "./commands/DeleteGlossaryTermCommand";
|
|
58
59
|
import { type DeleteListingCommandInput, type DeleteListingCommandOutput } from "./commands/DeleteListingCommand";
|
|
60
|
+
import { type DeleteNotebookCommandInput, type DeleteNotebookCommandOutput } from "./commands/DeleteNotebookCommand";
|
|
59
61
|
import { type DeleteProjectCommandInput, type DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
60
62
|
import { type DeleteProjectMembershipCommandInput, type DeleteProjectMembershipCommandOutput } from "./commands/DeleteProjectMembershipCommand";
|
|
61
63
|
import { type DeleteProjectProfileCommandInput, type DeleteProjectProfileCommandOutput } from "./commands/DeleteProjectProfileCommand";
|
|
@@ -93,6 +95,8 @@ import { type GetLineageEventCommandInput, type GetLineageEventCommandOutput } f
|
|
|
93
95
|
import { type GetLineageNodeCommandInput, type GetLineageNodeCommandOutput } from "./commands/GetLineageNodeCommand";
|
|
94
96
|
import { type GetListingCommandInput, type GetListingCommandOutput } from "./commands/GetListingCommand";
|
|
95
97
|
import { type GetMetadataGenerationRunCommandInput, type GetMetadataGenerationRunCommandOutput } from "./commands/GetMetadataGenerationRunCommand";
|
|
98
|
+
import { type GetNotebookCommandInput, type GetNotebookCommandOutput } from "./commands/GetNotebookCommand";
|
|
99
|
+
import { type GetNotebookExportCommandInput, type GetNotebookExportCommandOutput } from "./commands/GetNotebookExportCommand";
|
|
96
100
|
import { type GetNotebookRunCommandInput, type GetNotebookRunCommandOutput } from "./commands/GetNotebookRunCommand";
|
|
97
101
|
import { type GetProjectCommandInput, type GetProjectCommandOutput } from "./commands/GetProjectCommand";
|
|
98
102
|
import { type GetProjectProfileCommandInput, type GetProjectProfileCommandOutput } from "./commands/GetProjectProfileCommand";
|
|
@@ -125,6 +129,7 @@ import { type ListLineageEventsCommandInput, type ListLineageEventsCommandOutput
|
|
|
125
129
|
import { type ListLineageNodeHistoryCommandInput, type ListLineageNodeHistoryCommandOutput } from "./commands/ListLineageNodeHistoryCommand";
|
|
126
130
|
import { type ListMetadataGenerationRunsCommandInput, type ListMetadataGenerationRunsCommandOutput } from "./commands/ListMetadataGenerationRunsCommand";
|
|
127
131
|
import { type ListNotebookRunsCommandInput, type ListNotebookRunsCommandOutput } from "./commands/ListNotebookRunsCommand";
|
|
132
|
+
import { type ListNotebooksCommandInput, type ListNotebooksCommandOutput } from "./commands/ListNotebooksCommand";
|
|
128
133
|
import { type ListNotificationsCommandInput, type ListNotificationsCommandOutput } from "./commands/ListNotificationsCommand";
|
|
129
134
|
import { type ListPolicyGrantsCommandInput, type ListPolicyGrantsCommandOutput } from "./commands/ListPolicyGrantsCommand";
|
|
130
135
|
import { type ListProjectMembershipsCommandInput, type ListProjectMembershipsCommandOutput } from "./commands/ListProjectMembershipsCommand";
|
|
@@ -154,6 +159,8 @@ import { type SearchTypesCommandInput, type SearchTypesCommandOutput } from "./c
|
|
|
154
159
|
import { type SearchUserProfilesCommandInput, type SearchUserProfilesCommandOutput } from "./commands/SearchUserProfilesCommand";
|
|
155
160
|
import { type StartDataSourceRunCommandInput, type StartDataSourceRunCommandOutput } from "./commands/StartDataSourceRunCommand";
|
|
156
161
|
import { type StartMetadataGenerationRunCommandInput, type StartMetadataGenerationRunCommandOutput } from "./commands/StartMetadataGenerationRunCommand";
|
|
162
|
+
import { type StartNotebookExportCommandInput, type StartNotebookExportCommandOutput } from "./commands/StartNotebookExportCommand";
|
|
163
|
+
import { type StartNotebookImportCommandInput, type StartNotebookImportCommandOutput } from "./commands/StartNotebookImportCommand";
|
|
157
164
|
import { type StartNotebookRunCommandInput, type StartNotebookRunCommandOutput } from "./commands/StartNotebookRunCommand";
|
|
158
165
|
import { type StopNotebookRunCommandInput, type StopNotebookRunCommandOutput } from "./commands/StopNotebookRunCommand";
|
|
159
166
|
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
@@ -171,6 +178,7 @@ import { type UpdateEnvironmentProfileCommandInput, type UpdateEnvironmentProfil
|
|
|
171
178
|
import { type UpdateGlossaryCommandInput, type UpdateGlossaryCommandOutput } from "./commands/UpdateGlossaryCommand";
|
|
172
179
|
import { type UpdateGlossaryTermCommandInput, type UpdateGlossaryTermCommandOutput } from "./commands/UpdateGlossaryTermCommand";
|
|
173
180
|
import { type UpdateGroupProfileCommandInput, type UpdateGroupProfileCommandOutput } from "./commands/UpdateGroupProfileCommand";
|
|
181
|
+
import { type UpdateNotebookCommandInput, type UpdateNotebookCommandOutput } from "./commands/UpdateNotebookCommand";
|
|
174
182
|
import { type UpdateProjectCommandInput, type UpdateProjectCommandOutput } from "./commands/UpdateProjectCommand";
|
|
175
183
|
import { type UpdateProjectProfileCommandInput, type UpdateProjectProfileCommandOutput } from "./commands/UpdateProjectProfileCommand";
|
|
176
184
|
import { type UpdateRootDomainUnitOwnerCommandInput, type UpdateRootDomainUnitOwnerCommandOutput } from "./commands/UpdateRootDomainUnitOwnerCommand";
|
|
@@ -361,6 +369,12 @@ export interface DataZone {
|
|
|
361
369
|
createListingChangeSet(args: CreateListingChangeSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateListingChangeSetCommandOutput>;
|
|
362
370
|
createListingChangeSet(args: CreateListingChangeSetCommandInput, cb: (err: any, data?: CreateListingChangeSetCommandOutput) => void): void;
|
|
363
371
|
createListingChangeSet(args: CreateListingChangeSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateListingChangeSetCommandOutput) => void): void;
|
|
372
|
+
/**
|
|
373
|
+
* @see {@link CreateNotebookCommand}
|
|
374
|
+
*/
|
|
375
|
+
createNotebook(args: CreateNotebookCommandInput, options?: __HttpHandlerOptions): Promise<CreateNotebookCommandOutput>;
|
|
376
|
+
createNotebook(args: CreateNotebookCommandInput, cb: (err: any, data?: CreateNotebookCommandOutput) => void): void;
|
|
377
|
+
createNotebook(args: CreateNotebookCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNotebookCommandOutput) => void): void;
|
|
364
378
|
/**
|
|
365
379
|
* @see {@link CreateProjectCommand}
|
|
366
380
|
*/
|
|
@@ -523,6 +537,12 @@ export interface DataZone {
|
|
|
523
537
|
deleteListing(args: DeleteListingCommandInput, options?: __HttpHandlerOptions): Promise<DeleteListingCommandOutput>;
|
|
524
538
|
deleteListing(args: DeleteListingCommandInput, cb: (err: any, data?: DeleteListingCommandOutput) => void): void;
|
|
525
539
|
deleteListing(args: DeleteListingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteListingCommandOutput) => void): void;
|
|
540
|
+
/**
|
|
541
|
+
* @see {@link DeleteNotebookCommand}
|
|
542
|
+
*/
|
|
543
|
+
deleteNotebook(args: DeleteNotebookCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNotebookCommandOutput>;
|
|
544
|
+
deleteNotebook(args: DeleteNotebookCommandInput, cb: (err: any, data?: DeleteNotebookCommandOutput) => void): void;
|
|
545
|
+
deleteNotebook(args: DeleteNotebookCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNotebookCommandOutput) => void): void;
|
|
526
546
|
/**
|
|
527
547
|
* @see {@link DeleteProjectCommand}
|
|
528
548
|
*/
|
|
@@ -745,6 +765,18 @@ export interface DataZone {
|
|
|
745
765
|
getMetadataGenerationRun(args: GetMetadataGenerationRunCommandInput, options?: __HttpHandlerOptions): Promise<GetMetadataGenerationRunCommandOutput>;
|
|
746
766
|
getMetadataGenerationRun(args: GetMetadataGenerationRunCommandInput, cb: (err: any, data?: GetMetadataGenerationRunCommandOutput) => void): void;
|
|
747
767
|
getMetadataGenerationRun(args: GetMetadataGenerationRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMetadataGenerationRunCommandOutput) => void): void;
|
|
768
|
+
/**
|
|
769
|
+
* @see {@link GetNotebookCommand}
|
|
770
|
+
*/
|
|
771
|
+
getNotebook(args: GetNotebookCommandInput, options?: __HttpHandlerOptions): Promise<GetNotebookCommandOutput>;
|
|
772
|
+
getNotebook(args: GetNotebookCommandInput, cb: (err: any, data?: GetNotebookCommandOutput) => void): void;
|
|
773
|
+
getNotebook(args: GetNotebookCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNotebookCommandOutput) => void): void;
|
|
774
|
+
/**
|
|
775
|
+
* @see {@link GetNotebookExportCommand}
|
|
776
|
+
*/
|
|
777
|
+
getNotebookExport(args: GetNotebookExportCommandInput, options?: __HttpHandlerOptions): Promise<GetNotebookExportCommandOutput>;
|
|
778
|
+
getNotebookExport(args: GetNotebookExportCommandInput, cb: (err: any, data?: GetNotebookExportCommandOutput) => void): void;
|
|
779
|
+
getNotebookExport(args: GetNotebookExportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNotebookExportCommandOutput) => void): void;
|
|
748
780
|
/**
|
|
749
781
|
* @see {@link GetNotebookRunCommand}
|
|
750
782
|
*/
|
|
@@ -938,6 +970,12 @@ export interface DataZone {
|
|
|
938
970
|
listNotebookRuns(args: ListNotebookRunsCommandInput, options?: __HttpHandlerOptions): Promise<ListNotebookRunsCommandOutput>;
|
|
939
971
|
listNotebookRuns(args: ListNotebookRunsCommandInput, cb: (err: any, data?: ListNotebookRunsCommandOutput) => void): void;
|
|
940
972
|
listNotebookRuns(args: ListNotebookRunsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNotebookRunsCommandOutput) => void): void;
|
|
973
|
+
/**
|
|
974
|
+
* @see {@link ListNotebooksCommand}
|
|
975
|
+
*/
|
|
976
|
+
listNotebooks(args: ListNotebooksCommandInput, options?: __HttpHandlerOptions): Promise<ListNotebooksCommandOutput>;
|
|
977
|
+
listNotebooks(args: ListNotebooksCommandInput, cb: (err: any, data?: ListNotebooksCommandOutput) => void): void;
|
|
978
|
+
listNotebooks(args: ListNotebooksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNotebooksCommandOutput) => void): void;
|
|
941
979
|
/**
|
|
942
980
|
* @see {@link ListNotificationsCommand}
|
|
943
981
|
*/
|
|
@@ -1112,6 +1150,18 @@ export interface DataZone {
|
|
|
1112
1150
|
startMetadataGenerationRun(args: StartMetadataGenerationRunCommandInput, options?: __HttpHandlerOptions): Promise<StartMetadataGenerationRunCommandOutput>;
|
|
1113
1151
|
startMetadataGenerationRun(args: StartMetadataGenerationRunCommandInput, cb: (err: any, data?: StartMetadataGenerationRunCommandOutput) => void): void;
|
|
1114
1152
|
startMetadataGenerationRun(args: StartMetadataGenerationRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMetadataGenerationRunCommandOutput) => void): void;
|
|
1153
|
+
/**
|
|
1154
|
+
* @see {@link StartNotebookExportCommand}
|
|
1155
|
+
*/
|
|
1156
|
+
startNotebookExport(args: StartNotebookExportCommandInput, options?: __HttpHandlerOptions): Promise<StartNotebookExportCommandOutput>;
|
|
1157
|
+
startNotebookExport(args: StartNotebookExportCommandInput, cb: (err: any, data?: StartNotebookExportCommandOutput) => void): void;
|
|
1158
|
+
startNotebookExport(args: StartNotebookExportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartNotebookExportCommandOutput) => void): void;
|
|
1159
|
+
/**
|
|
1160
|
+
* @see {@link StartNotebookImportCommand}
|
|
1161
|
+
*/
|
|
1162
|
+
startNotebookImport(args: StartNotebookImportCommandInput, options?: __HttpHandlerOptions): Promise<StartNotebookImportCommandOutput>;
|
|
1163
|
+
startNotebookImport(args: StartNotebookImportCommandInput, cb: (err: any, data?: StartNotebookImportCommandOutput) => void): void;
|
|
1164
|
+
startNotebookImport(args: StartNotebookImportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartNotebookImportCommandOutput) => void): void;
|
|
1115
1165
|
/**
|
|
1116
1166
|
* @see {@link StartNotebookRunCommand}
|
|
1117
1167
|
*/
|
|
@@ -1214,6 +1264,12 @@ export interface DataZone {
|
|
|
1214
1264
|
updateGroupProfile(args: UpdateGroupProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGroupProfileCommandOutput>;
|
|
1215
1265
|
updateGroupProfile(args: UpdateGroupProfileCommandInput, cb: (err: any, data?: UpdateGroupProfileCommandOutput) => void): void;
|
|
1216
1266
|
updateGroupProfile(args: UpdateGroupProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGroupProfileCommandOutput) => void): void;
|
|
1267
|
+
/**
|
|
1268
|
+
* @see {@link UpdateNotebookCommand}
|
|
1269
|
+
*/
|
|
1270
|
+
updateNotebook(args: UpdateNotebookCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNotebookCommandOutput>;
|
|
1271
|
+
updateNotebook(args: UpdateNotebookCommandInput, cb: (err: any, data?: UpdateNotebookCommandOutput) => void): void;
|
|
1272
|
+
updateNotebook(args: UpdateNotebookCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNotebookCommandOutput) => void): void;
|
|
1217
1273
|
/**
|
|
1218
1274
|
* @see {@link UpdateProjectCommand}
|
|
1219
1275
|
*/
|
|
@@ -1416,6 +1472,13 @@ export interface DataZone {
|
|
|
1416
1472
|
* @returns AsyncIterable of {@link ListNotebookRunsCommandOutput}.
|
|
1417
1473
|
*/
|
|
1418
1474
|
paginateListNotebookRuns(args: ListNotebookRunsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListNotebookRunsCommandOutput>;
|
|
1475
|
+
/**
|
|
1476
|
+
* @see {@link ListNotebooksCommand}
|
|
1477
|
+
* @param args - command input.
|
|
1478
|
+
* @param paginationConfig - optional pagination config.
|
|
1479
|
+
* @returns AsyncIterable of {@link ListNotebooksCommandOutput}.
|
|
1480
|
+
*/
|
|
1481
|
+
paginateListNotebooks(args: ListNotebooksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListNotebooksCommandOutput>;
|
|
1419
1482
|
/**
|
|
1420
1483
|
* @see {@link ListNotificationsCommand}
|
|
1421
1484
|
* @param args - command input.
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { type HostHeaderInputConfig, type HostHeaderResolvedConfig } from "@aws-sdk/
|
|
2
|
-
import { type UserAgentInputConfig, type UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
1
|
+
import { type HostHeaderInputConfig, type HostHeaderResolvedConfig, type UserAgentInputConfig, type UserAgentResolvedConfig } from "@aws-sdk/core/client";
|
|
3
2
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/core/client";
|
|
4
3
|
import { type RegionInputConfig, type RegionResolvedConfig } from "@smithy/core/config";
|
|
5
4
|
import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
@@ -37,6 +36,7 @@ import type { CreateGlossaryCommandInput, CreateGlossaryCommandOutput } from "./
|
|
|
37
36
|
import type { CreateGlossaryTermCommandInput, CreateGlossaryTermCommandOutput } from "./commands/CreateGlossaryTermCommand";
|
|
38
37
|
import type { CreateGroupProfileCommandInput, CreateGroupProfileCommandOutput } from "./commands/CreateGroupProfileCommand";
|
|
39
38
|
import type { CreateListingChangeSetCommandInput, CreateListingChangeSetCommandOutput } from "./commands/CreateListingChangeSetCommand";
|
|
39
|
+
import type { CreateNotebookCommandInput, CreateNotebookCommandOutput } from "./commands/CreateNotebookCommand";
|
|
40
40
|
import type { CreateProjectCommandInput, CreateProjectCommandOutput } from "./commands/CreateProjectCommand";
|
|
41
41
|
import type { CreateProjectMembershipCommandInput, CreateProjectMembershipCommandOutput } from "./commands/CreateProjectMembershipCommand";
|
|
42
42
|
import type { CreateProjectProfileCommandInput, CreateProjectProfileCommandOutput } from "./commands/CreateProjectProfileCommand";
|
|
@@ -64,6 +64,7 @@ import type { DeleteFormTypeCommandInput, DeleteFormTypeCommandOutput } from "./
|
|
|
64
64
|
import type { DeleteGlossaryCommandInput, DeleteGlossaryCommandOutput } from "./commands/DeleteGlossaryCommand";
|
|
65
65
|
import type { DeleteGlossaryTermCommandInput, DeleteGlossaryTermCommandOutput } from "./commands/DeleteGlossaryTermCommand";
|
|
66
66
|
import type { DeleteListingCommandInput, DeleteListingCommandOutput } from "./commands/DeleteListingCommand";
|
|
67
|
+
import type { DeleteNotebookCommandInput, DeleteNotebookCommandOutput } from "./commands/DeleteNotebookCommand";
|
|
67
68
|
import type { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
68
69
|
import type { DeleteProjectMembershipCommandInput, DeleteProjectMembershipCommandOutput } from "./commands/DeleteProjectMembershipCommand";
|
|
69
70
|
import type { DeleteProjectProfileCommandInput, DeleteProjectProfileCommandOutput } from "./commands/DeleteProjectProfileCommand";
|
|
@@ -101,6 +102,8 @@ import type { GetLineageEventCommandInput, GetLineageEventCommandOutput } from "
|
|
|
101
102
|
import type { GetLineageNodeCommandInput, GetLineageNodeCommandOutput } from "./commands/GetLineageNodeCommand";
|
|
102
103
|
import type { GetListingCommandInput, GetListingCommandOutput } from "./commands/GetListingCommand";
|
|
103
104
|
import type { GetMetadataGenerationRunCommandInput, GetMetadataGenerationRunCommandOutput } from "./commands/GetMetadataGenerationRunCommand";
|
|
105
|
+
import type { GetNotebookCommandInput, GetNotebookCommandOutput } from "./commands/GetNotebookCommand";
|
|
106
|
+
import type { GetNotebookExportCommandInput, GetNotebookExportCommandOutput } from "./commands/GetNotebookExportCommand";
|
|
104
107
|
import type { GetNotebookRunCommandInput, GetNotebookRunCommandOutput } from "./commands/GetNotebookRunCommand";
|
|
105
108
|
import type { GetProjectCommandInput, GetProjectCommandOutput } from "./commands/GetProjectCommand";
|
|
106
109
|
import type { GetProjectProfileCommandInput, GetProjectProfileCommandOutput } from "./commands/GetProjectProfileCommand";
|
|
@@ -133,6 +136,7 @@ import type { ListLineageEventsCommandInput, ListLineageEventsCommandOutput } fr
|
|
|
133
136
|
import type { ListLineageNodeHistoryCommandInput, ListLineageNodeHistoryCommandOutput } from "./commands/ListLineageNodeHistoryCommand";
|
|
134
137
|
import type { ListMetadataGenerationRunsCommandInput, ListMetadataGenerationRunsCommandOutput } from "./commands/ListMetadataGenerationRunsCommand";
|
|
135
138
|
import type { ListNotebookRunsCommandInput, ListNotebookRunsCommandOutput } from "./commands/ListNotebookRunsCommand";
|
|
139
|
+
import type { ListNotebooksCommandInput, ListNotebooksCommandOutput } from "./commands/ListNotebooksCommand";
|
|
136
140
|
import type { ListNotificationsCommandInput, ListNotificationsCommandOutput } from "./commands/ListNotificationsCommand";
|
|
137
141
|
import type { ListPolicyGrantsCommandInput, ListPolicyGrantsCommandOutput } from "./commands/ListPolicyGrantsCommand";
|
|
138
142
|
import type { ListProjectMembershipsCommandInput, ListProjectMembershipsCommandOutput } from "./commands/ListProjectMembershipsCommand";
|
|
@@ -162,6 +166,8 @@ import type { SearchTypesCommandInput, SearchTypesCommandOutput } from "./comman
|
|
|
162
166
|
import type { SearchUserProfilesCommandInput, SearchUserProfilesCommandOutput } from "./commands/SearchUserProfilesCommand";
|
|
163
167
|
import type { StartDataSourceRunCommandInput, StartDataSourceRunCommandOutput } from "./commands/StartDataSourceRunCommand";
|
|
164
168
|
import type { StartMetadataGenerationRunCommandInput, StartMetadataGenerationRunCommandOutput } from "./commands/StartMetadataGenerationRunCommand";
|
|
169
|
+
import type { StartNotebookExportCommandInput, StartNotebookExportCommandOutput } from "./commands/StartNotebookExportCommand";
|
|
170
|
+
import type { StartNotebookImportCommandInput, StartNotebookImportCommandOutput } from "./commands/StartNotebookImportCommand";
|
|
165
171
|
import type { StartNotebookRunCommandInput, StartNotebookRunCommandOutput } from "./commands/StartNotebookRunCommand";
|
|
166
172
|
import type { StopNotebookRunCommandInput, StopNotebookRunCommandOutput } from "./commands/StopNotebookRunCommand";
|
|
167
173
|
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
@@ -179,6 +185,7 @@ import type { UpdateEnvironmentProfileCommandInput, UpdateEnvironmentProfileComm
|
|
|
179
185
|
import type { UpdateGlossaryCommandInput, UpdateGlossaryCommandOutput } from "./commands/UpdateGlossaryCommand";
|
|
180
186
|
import type { UpdateGlossaryTermCommandInput, UpdateGlossaryTermCommandOutput } from "./commands/UpdateGlossaryTermCommand";
|
|
181
187
|
import type { UpdateGroupProfileCommandInput, UpdateGroupProfileCommandOutput } from "./commands/UpdateGroupProfileCommand";
|
|
188
|
+
import type { UpdateNotebookCommandInput, UpdateNotebookCommandOutput } from "./commands/UpdateNotebookCommand";
|
|
182
189
|
import type { UpdateProjectCommandInput, UpdateProjectCommandOutput } from "./commands/UpdateProjectCommand";
|
|
183
190
|
import type { UpdateProjectProfileCommandInput, UpdateProjectProfileCommandOutput } from "./commands/UpdateProjectProfileCommand";
|
|
184
191
|
import type { UpdateRootDomainUnitOwnerCommandInput, UpdateRootDomainUnitOwnerCommandOutput } from "./commands/UpdateRootDomainUnitOwnerCommand";
|
|
@@ -193,11 +200,11 @@ export { __Client };
|
|
|
193
200
|
/**
|
|
194
201
|
* @public
|
|
195
202
|
*/
|
|
196
|
-
export type ServiceInputTypes = AcceptPredictionsCommandInput | AcceptSubscriptionRequestCommandInput | AddEntityOwnerCommandInput | AddPolicyGrantCommandInput | AssociateEnvironmentRoleCommandInput | AssociateGovernedTermsCommandInput | BatchGetAttributesMetadataCommandInput | BatchPutAttributesMetadataCommandInput | CancelMetadataGenerationRunCommandInput | CancelSubscriptionCommandInput | CreateAccountPoolCommandInput | CreateAssetCommandInput | CreateAssetFilterCommandInput | CreateAssetRevisionCommandInput | CreateAssetTypeCommandInput | CreateConnectionCommandInput | CreateDataProductCommandInput | CreateDataProductRevisionCommandInput | CreateDataSourceCommandInput | CreateDomainCommandInput | CreateDomainUnitCommandInput | CreateEnvironmentActionCommandInput | CreateEnvironmentBlueprintCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentProfileCommandInput | CreateFormTypeCommandInput | CreateGlossaryCommandInput | CreateGlossaryTermCommandInput | CreateGroupProfileCommandInput | CreateListingChangeSetCommandInput | CreateProjectCommandInput | CreateProjectMembershipCommandInput | CreateProjectProfileCommandInput | CreateRuleCommandInput | CreateSubscriptionGrantCommandInput | CreateSubscriptionRequestCommandInput | CreateSubscriptionTargetCommandInput | CreateUserProfileCommandInput | DeleteAccountPoolCommandInput | DeleteAssetCommandInput | DeleteAssetFilterCommandInput | DeleteAssetTypeCommandInput | DeleteConnectionCommandInput | DeleteDataExportConfigurationCommandInput | DeleteDataProductCommandInput | DeleteDataSourceCommandInput | DeleteDomainCommandInput | DeleteDomainUnitCommandInput | DeleteEnvironmentActionCommandInput | DeleteEnvironmentBlueprintCommandInput | DeleteEnvironmentBlueprintConfigurationCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentProfileCommandInput | DeleteFormTypeCommandInput | DeleteGlossaryCommandInput | DeleteGlossaryTermCommandInput | DeleteListingCommandInput | DeleteProjectCommandInput | DeleteProjectMembershipCommandInput | DeleteProjectProfileCommandInput | DeleteRuleCommandInput | DeleteSubscriptionGrantCommandInput | DeleteSubscriptionRequestCommandInput | DeleteSubscriptionTargetCommandInput | DeleteTimeSeriesDataPointsCommandInput | DisassociateEnvironmentRoleCommandInput | DisassociateGovernedTermsCommandInput | GetAccountPoolCommandInput | GetAssetCommandInput | GetAssetFilterCommandInput | GetAssetTypeCommandInput | GetConnectionCommandInput | GetDataExportConfigurationCommandInput | GetDataProductCommandInput | GetDataSourceCommandInput | GetDataSourceRunCommandInput | GetDomainCommandInput | GetDomainUnitCommandInput | GetEnvironmentActionCommandInput | GetEnvironmentBlueprintCommandInput | GetEnvironmentBlueprintConfigurationCommandInput | GetEnvironmentCommandInput | GetEnvironmentCredentialsCommandInput | GetEnvironmentProfileCommandInput | GetFormTypeCommandInput | GetGlossaryCommandInput | GetGlossaryTermCommandInput | GetGroupProfileCommandInput | GetIamPortalLoginUrlCommandInput | GetJobRunCommandInput | GetLineageEventCommandInput | GetLineageNodeCommandInput | GetListingCommandInput | GetMetadataGenerationRunCommandInput | GetNotebookRunCommandInput | GetProjectCommandInput | GetProjectProfileCommandInput | GetRuleCommandInput | GetSubscriptionCommandInput | GetSubscriptionGrantCommandInput | GetSubscriptionRequestDetailsCommandInput | GetSubscriptionTargetCommandInput | GetTimeSeriesDataPointCommandInput | GetUserProfileCommandInput | ListAccountPoolsCommandInput | ListAccountsInAccountPoolCommandInput | ListAssetFiltersCommandInput | ListAssetRevisionsCommandInput | ListConnectionsCommandInput | ListDataProductRevisionsCommandInput | ListDataSourceRunActivitiesCommandInput | ListDataSourceRunsCommandInput | ListDataSourcesCommandInput | ListDomainUnitsForParentCommandInput | ListDomainsCommandInput | ListEntityOwnersCommandInput | ListEnvironmentActionsCommandInput | ListEnvironmentBlueprintConfigurationsCommandInput | ListEnvironmentBlueprintsCommandInput | ListEnvironmentProfilesCommandInput | ListEnvironmentsCommandInput | ListJobRunsCommandInput | ListLineageEventsCommandInput | ListLineageNodeHistoryCommandInput | ListMetadataGenerationRunsCommandInput | ListNotebookRunsCommandInput | ListNotificationsCommandInput | ListPolicyGrantsCommandInput | ListProjectMembershipsCommandInput | ListProjectProfilesCommandInput | ListProjectsCommandInput | ListRulesCommandInput | ListSubscriptionGrantsCommandInput | ListSubscriptionRequestsCommandInput | ListSubscriptionTargetsCommandInput | ListSubscriptionsCommandInput | ListTagsForResourceCommandInput | ListTimeSeriesDataPointsCommandInput | PostLineageEventCommandInput | PostTimeSeriesDataPointsCommandInput | PutDataExportConfigurationCommandInput | PutEnvironmentBlueprintConfigurationCommandInput | QueryGraphCommandInput | RejectPredictionsCommandInput | RejectSubscriptionRequestCommandInput | RemoveEntityOwnerCommandInput | RemovePolicyGrantCommandInput | RevokeSubscriptionCommandInput | SearchCommandInput | SearchGroupProfilesCommandInput | SearchListingsCommandInput | SearchTypesCommandInput | SearchUserProfilesCommandInput | StartDataSourceRunCommandInput | StartMetadataGenerationRunCommandInput | StartNotebookRunCommandInput | StopNotebookRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountPoolCommandInput | UpdateAssetFilterCommandInput | UpdateConnectionCommandInput | UpdateDataSourceCommandInput | UpdateDomainCommandInput | UpdateDomainUnitCommandInput | UpdateEnvironmentActionCommandInput | UpdateEnvironmentBlueprintCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentProfileCommandInput | UpdateGlossaryCommandInput | UpdateGlossaryTermCommandInput | UpdateGroupProfileCommandInput | UpdateProjectCommandInput | UpdateProjectProfileCommandInput | UpdateRootDomainUnitOwnerCommandInput | UpdateRuleCommandInput | UpdateSubscriptionGrantStatusCommandInput | UpdateSubscriptionRequestCommandInput | UpdateSubscriptionTargetCommandInput | UpdateUserProfileCommandInput;
|
|
203
|
+
export type ServiceInputTypes = AcceptPredictionsCommandInput | AcceptSubscriptionRequestCommandInput | AddEntityOwnerCommandInput | AddPolicyGrantCommandInput | AssociateEnvironmentRoleCommandInput | AssociateGovernedTermsCommandInput | BatchGetAttributesMetadataCommandInput | BatchPutAttributesMetadataCommandInput | CancelMetadataGenerationRunCommandInput | CancelSubscriptionCommandInput | CreateAccountPoolCommandInput | CreateAssetCommandInput | CreateAssetFilterCommandInput | CreateAssetRevisionCommandInput | CreateAssetTypeCommandInput | CreateConnectionCommandInput | CreateDataProductCommandInput | CreateDataProductRevisionCommandInput | CreateDataSourceCommandInput | CreateDomainCommandInput | CreateDomainUnitCommandInput | CreateEnvironmentActionCommandInput | CreateEnvironmentBlueprintCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentProfileCommandInput | CreateFormTypeCommandInput | CreateGlossaryCommandInput | CreateGlossaryTermCommandInput | CreateGroupProfileCommandInput | CreateListingChangeSetCommandInput | CreateNotebookCommandInput | CreateProjectCommandInput | CreateProjectMembershipCommandInput | CreateProjectProfileCommandInput | CreateRuleCommandInput | CreateSubscriptionGrantCommandInput | CreateSubscriptionRequestCommandInput | CreateSubscriptionTargetCommandInput | CreateUserProfileCommandInput | DeleteAccountPoolCommandInput | DeleteAssetCommandInput | DeleteAssetFilterCommandInput | DeleteAssetTypeCommandInput | DeleteConnectionCommandInput | DeleteDataExportConfigurationCommandInput | DeleteDataProductCommandInput | DeleteDataSourceCommandInput | DeleteDomainCommandInput | DeleteDomainUnitCommandInput | DeleteEnvironmentActionCommandInput | DeleteEnvironmentBlueprintCommandInput | DeleteEnvironmentBlueprintConfigurationCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentProfileCommandInput | DeleteFormTypeCommandInput | DeleteGlossaryCommandInput | DeleteGlossaryTermCommandInput | DeleteListingCommandInput | DeleteNotebookCommandInput | DeleteProjectCommandInput | DeleteProjectMembershipCommandInput | DeleteProjectProfileCommandInput | DeleteRuleCommandInput | DeleteSubscriptionGrantCommandInput | DeleteSubscriptionRequestCommandInput | DeleteSubscriptionTargetCommandInput | DeleteTimeSeriesDataPointsCommandInput | DisassociateEnvironmentRoleCommandInput | DisassociateGovernedTermsCommandInput | GetAccountPoolCommandInput | GetAssetCommandInput | GetAssetFilterCommandInput | GetAssetTypeCommandInput | GetConnectionCommandInput | GetDataExportConfigurationCommandInput | GetDataProductCommandInput | GetDataSourceCommandInput | GetDataSourceRunCommandInput | GetDomainCommandInput | GetDomainUnitCommandInput | GetEnvironmentActionCommandInput | GetEnvironmentBlueprintCommandInput | GetEnvironmentBlueprintConfigurationCommandInput | GetEnvironmentCommandInput | GetEnvironmentCredentialsCommandInput | GetEnvironmentProfileCommandInput | GetFormTypeCommandInput | GetGlossaryCommandInput | GetGlossaryTermCommandInput | GetGroupProfileCommandInput | GetIamPortalLoginUrlCommandInput | GetJobRunCommandInput | GetLineageEventCommandInput | GetLineageNodeCommandInput | GetListingCommandInput | GetMetadataGenerationRunCommandInput | GetNotebookCommandInput | GetNotebookExportCommandInput | GetNotebookRunCommandInput | GetProjectCommandInput | GetProjectProfileCommandInput | GetRuleCommandInput | GetSubscriptionCommandInput | GetSubscriptionGrantCommandInput | GetSubscriptionRequestDetailsCommandInput | GetSubscriptionTargetCommandInput | GetTimeSeriesDataPointCommandInput | GetUserProfileCommandInput | ListAccountPoolsCommandInput | ListAccountsInAccountPoolCommandInput | ListAssetFiltersCommandInput | ListAssetRevisionsCommandInput | ListConnectionsCommandInput | ListDataProductRevisionsCommandInput | ListDataSourceRunActivitiesCommandInput | ListDataSourceRunsCommandInput | ListDataSourcesCommandInput | ListDomainUnitsForParentCommandInput | ListDomainsCommandInput | ListEntityOwnersCommandInput | ListEnvironmentActionsCommandInput | ListEnvironmentBlueprintConfigurationsCommandInput | ListEnvironmentBlueprintsCommandInput | ListEnvironmentProfilesCommandInput | ListEnvironmentsCommandInput | ListJobRunsCommandInput | ListLineageEventsCommandInput | ListLineageNodeHistoryCommandInput | ListMetadataGenerationRunsCommandInput | ListNotebookRunsCommandInput | ListNotebooksCommandInput | ListNotificationsCommandInput | ListPolicyGrantsCommandInput | ListProjectMembershipsCommandInput | ListProjectProfilesCommandInput | ListProjectsCommandInput | ListRulesCommandInput | ListSubscriptionGrantsCommandInput | ListSubscriptionRequestsCommandInput | ListSubscriptionTargetsCommandInput | ListSubscriptionsCommandInput | ListTagsForResourceCommandInput | ListTimeSeriesDataPointsCommandInput | PostLineageEventCommandInput | PostTimeSeriesDataPointsCommandInput | PutDataExportConfigurationCommandInput | PutEnvironmentBlueprintConfigurationCommandInput | QueryGraphCommandInput | RejectPredictionsCommandInput | RejectSubscriptionRequestCommandInput | RemoveEntityOwnerCommandInput | RemovePolicyGrantCommandInput | RevokeSubscriptionCommandInput | SearchCommandInput | SearchGroupProfilesCommandInput | SearchListingsCommandInput | SearchTypesCommandInput | SearchUserProfilesCommandInput | StartDataSourceRunCommandInput | StartMetadataGenerationRunCommandInput | StartNotebookExportCommandInput | StartNotebookImportCommandInput | StartNotebookRunCommandInput | StopNotebookRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountPoolCommandInput | UpdateAssetFilterCommandInput | UpdateConnectionCommandInput | UpdateDataSourceCommandInput | UpdateDomainCommandInput | UpdateDomainUnitCommandInput | UpdateEnvironmentActionCommandInput | UpdateEnvironmentBlueprintCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentProfileCommandInput | UpdateGlossaryCommandInput | UpdateGlossaryTermCommandInput | UpdateGroupProfileCommandInput | UpdateNotebookCommandInput | UpdateProjectCommandInput | UpdateProjectProfileCommandInput | UpdateRootDomainUnitOwnerCommandInput | UpdateRuleCommandInput | UpdateSubscriptionGrantStatusCommandInput | UpdateSubscriptionRequestCommandInput | UpdateSubscriptionTargetCommandInput | UpdateUserProfileCommandInput;
|
|
197
204
|
/**
|
|
198
205
|
* @public
|
|
199
206
|
*/
|
|
200
|
-
export type ServiceOutputTypes = AcceptPredictionsCommandOutput | AcceptSubscriptionRequestCommandOutput | AddEntityOwnerCommandOutput | AddPolicyGrantCommandOutput | AssociateEnvironmentRoleCommandOutput | AssociateGovernedTermsCommandOutput | BatchGetAttributesMetadataCommandOutput | BatchPutAttributesMetadataCommandOutput | CancelMetadataGenerationRunCommandOutput | CancelSubscriptionCommandOutput | CreateAccountPoolCommandOutput | CreateAssetCommandOutput | CreateAssetFilterCommandOutput | CreateAssetRevisionCommandOutput | CreateAssetTypeCommandOutput | CreateConnectionCommandOutput | CreateDataProductCommandOutput | CreateDataProductRevisionCommandOutput | CreateDataSourceCommandOutput | CreateDomainCommandOutput | CreateDomainUnitCommandOutput | CreateEnvironmentActionCommandOutput | CreateEnvironmentBlueprintCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentProfileCommandOutput | CreateFormTypeCommandOutput | CreateGlossaryCommandOutput | CreateGlossaryTermCommandOutput | CreateGroupProfileCommandOutput | CreateListingChangeSetCommandOutput | CreateProjectCommandOutput | CreateProjectMembershipCommandOutput | CreateProjectProfileCommandOutput | CreateRuleCommandOutput | CreateSubscriptionGrantCommandOutput | CreateSubscriptionRequestCommandOutput | CreateSubscriptionTargetCommandOutput | CreateUserProfileCommandOutput | DeleteAccountPoolCommandOutput | DeleteAssetCommandOutput | DeleteAssetFilterCommandOutput | DeleteAssetTypeCommandOutput | DeleteConnectionCommandOutput | DeleteDataExportConfigurationCommandOutput | DeleteDataProductCommandOutput | DeleteDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteDomainUnitCommandOutput | DeleteEnvironmentActionCommandOutput | DeleteEnvironmentBlueprintCommandOutput | DeleteEnvironmentBlueprintConfigurationCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentProfileCommandOutput | DeleteFormTypeCommandOutput | DeleteGlossaryCommandOutput | DeleteGlossaryTermCommandOutput | DeleteListingCommandOutput | DeleteProjectCommandOutput | DeleteProjectMembershipCommandOutput | DeleteProjectProfileCommandOutput | DeleteRuleCommandOutput | DeleteSubscriptionGrantCommandOutput | DeleteSubscriptionRequestCommandOutput | DeleteSubscriptionTargetCommandOutput | DeleteTimeSeriesDataPointsCommandOutput | DisassociateEnvironmentRoleCommandOutput | DisassociateGovernedTermsCommandOutput | GetAccountPoolCommandOutput | GetAssetCommandOutput | GetAssetFilterCommandOutput | GetAssetTypeCommandOutput | GetConnectionCommandOutput | GetDataExportConfigurationCommandOutput | GetDataProductCommandOutput | GetDataSourceCommandOutput | GetDataSourceRunCommandOutput | GetDomainCommandOutput | GetDomainUnitCommandOutput | GetEnvironmentActionCommandOutput | GetEnvironmentBlueprintCommandOutput | GetEnvironmentBlueprintConfigurationCommandOutput | GetEnvironmentCommandOutput | GetEnvironmentCredentialsCommandOutput | GetEnvironmentProfileCommandOutput | GetFormTypeCommandOutput | GetGlossaryCommandOutput | GetGlossaryTermCommandOutput | GetGroupProfileCommandOutput | GetIamPortalLoginUrlCommandOutput | GetJobRunCommandOutput | GetLineageEventCommandOutput | GetLineageNodeCommandOutput | GetListingCommandOutput | GetMetadataGenerationRunCommandOutput | GetNotebookRunCommandOutput | GetProjectCommandOutput | GetProjectProfileCommandOutput | GetRuleCommandOutput | GetSubscriptionCommandOutput | GetSubscriptionGrantCommandOutput | GetSubscriptionRequestDetailsCommandOutput | GetSubscriptionTargetCommandOutput | GetTimeSeriesDataPointCommandOutput | GetUserProfileCommandOutput | ListAccountPoolsCommandOutput | ListAccountsInAccountPoolCommandOutput | ListAssetFiltersCommandOutput | ListAssetRevisionsCommandOutput | ListConnectionsCommandOutput | ListDataProductRevisionsCommandOutput | ListDataSourceRunActivitiesCommandOutput | ListDataSourceRunsCommandOutput | ListDataSourcesCommandOutput | ListDomainUnitsForParentCommandOutput | ListDomainsCommandOutput | ListEntityOwnersCommandOutput | ListEnvironmentActionsCommandOutput | ListEnvironmentBlueprintConfigurationsCommandOutput | ListEnvironmentBlueprintsCommandOutput | ListEnvironmentProfilesCommandOutput | ListEnvironmentsCommandOutput | ListJobRunsCommandOutput | ListLineageEventsCommandOutput | ListLineageNodeHistoryCommandOutput | ListMetadataGenerationRunsCommandOutput | ListNotebookRunsCommandOutput | ListNotificationsCommandOutput | ListPolicyGrantsCommandOutput | ListProjectMembershipsCommandOutput | ListProjectProfilesCommandOutput | ListProjectsCommandOutput | ListRulesCommandOutput | ListSubscriptionGrantsCommandOutput | ListSubscriptionRequestsCommandOutput | ListSubscriptionTargetsCommandOutput | ListSubscriptionsCommandOutput | ListTagsForResourceCommandOutput | ListTimeSeriesDataPointsCommandOutput | PostLineageEventCommandOutput | PostTimeSeriesDataPointsCommandOutput | PutDataExportConfigurationCommandOutput | PutEnvironmentBlueprintConfigurationCommandOutput | QueryGraphCommandOutput | RejectPredictionsCommandOutput | RejectSubscriptionRequestCommandOutput | RemoveEntityOwnerCommandOutput | RemovePolicyGrantCommandOutput | RevokeSubscriptionCommandOutput | SearchCommandOutput | SearchGroupProfilesCommandOutput | SearchListingsCommandOutput | SearchTypesCommandOutput | SearchUserProfilesCommandOutput | StartDataSourceRunCommandOutput | StartMetadataGenerationRunCommandOutput | StartNotebookRunCommandOutput | StopNotebookRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountPoolCommandOutput | UpdateAssetFilterCommandOutput | UpdateConnectionCommandOutput | UpdateDataSourceCommandOutput | UpdateDomainCommandOutput | UpdateDomainUnitCommandOutput | UpdateEnvironmentActionCommandOutput | UpdateEnvironmentBlueprintCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentProfileCommandOutput | UpdateGlossaryCommandOutput | UpdateGlossaryTermCommandOutput | UpdateGroupProfileCommandOutput | UpdateProjectCommandOutput | UpdateProjectProfileCommandOutput | UpdateRootDomainUnitOwnerCommandOutput | UpdateRuleCommandOutput | UpdateSubscriptionGrantStatusCommandOutput | UpdateSubscriptionRequestCommandOutput | UpdateSubscriptionTargetCommandOutput | UpdateUserProfileCommandOutput;
|
|
207
|
+
export type ServiceOutputTypes = AcceptPredictionsCommandOutput | AcceptSubscriptionRequestCommandOutput | AddEntityOwnerCommandOutput | AddPolicyGrantCommandOutput | AssociateEnvironmentRoleCommandOutput | AssociateGovernedTermsCommandOutput | BatchGetAttributesMetadataCommandOutput | BatchPutAttributesMetadataCommandOutput | CancelMetadataGenerationRunCommandOutput | CancelSubscriptionCommandOutput | CreateAccountPoolCommandOutput | CreateAssetCommandOutput | CreateAssetFilterCommandOutput | CreateAssetRevisionCommandOutput | CreateAssetTypeCommandOutput | CreateConnectionCommandOutput | CreateDataProductCommandOutput | CreateDataProductRevisionCommandOutput | CreateDataSourceCommandOutput | CreateDomainCommandOutput | CreateDomainUnitCommandOutput | CreateEnvironmentActionCommandOutput | CreateEnvironmentBlueprintCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentProfileCommandOutput | CreateFormTypeCommandOutput | CreateGlossaryCommandOutput | CreateGlossaryTermCommandOutput | CreateGroupProfileCommandOutput | CreateListingChangeSetCommandOutput | CreateNotebookCommandOutput | CreateProjectCommandOutput | CreateProjectMembershipCommandOutput | CreateProjectProfileCommandOutput | CreateRuleCommandOutput | CreateSubscriptionGrantCommandOutput | CreateSubscriptionRequestCommandOutput | CreateSubscriptionTargetCommandOutput | CreateUserProfileCommandOutput | DeleteAccountPoolCommandOutput | DeleteAssetCommandOutput | DeleteAssetFilterCommandOutput | DeleteAssetTypeCommandOutput | DeleteConnectionCommandOutput | DeleteDataExportConfigurationCommandOutput | DeleteDataProductCommandOutput | DeleteDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteDomainUnitCommandOutput | DeleteEnvironmentActionCommandOutput | DeleteEnvironmentBlueprintCommandOutput | DeleteEnvironmentBlueprintConfigurationCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentProfileCommandOutput | DeleteFormTypeCommandOutput | DeleteGlossaryCommandOutput | DeleteGlossaryTermCommandOutput | DeleteListingCommandOutput | DeleteNotebookCommandOutput | DeleteProjectCommandOutput | DeleteProjectMembershipCommandOutput | DeleteProjectProfileCommandOutput | DeleteRuleCommandOutput | DeleteSubscriptionGrantCommandOutput | DeleteSubscriptionRequestCommandOutput | DeleteSubscriptionTargetCommandOutput | DeleteTimeSeriesDataPointsCommandOutput | DisassociateEnvironmentRoleCommandOutput | DisassociateGovernedTermsCommandOutput | GetAccountPoolCommandOutput | GetAssetCommandOutput | GetAssetFilterCommandOutput | GetAssetTypeCommandOutput | GetConnectionCommandOutput | GetDataExportConfigurationCommandOutput | GetDataProductCommandOutput | GetDataSourceCommandOutput | GetDataSourceRunCommandOutput | GetDomainCommandOutput | GetDomainUnitCommandOutput | GetEnvironmentActionCommandOutput | GetEnvironmentBlueprintCommandOutput | GetEnvironmentBlueprintConfigurationCommandOutput | GetEnvironmentCommandOutput | GetEnvironmentCredentialsCommandOutput | GetEnvironmentProfileCommandOutput | GetFormTypeCommandOutput | GetGlossaryCommandOutput | GetGlossaryTermCommandOutput | GetGroupProfileCommandOutput | GetIamPortalLoginUrlCommandOutput | GetJobRunCommandOutput | GetLineageEventCommandOutput | GetLineageNodeCommandOutput | GetListingCommandOutput | GetMetadataGenerationRunCommandOutput | GetNotebookCommandOutput | GetNotebookExportCommandOutput | GetNotebookRunCommandOutput | GetProjectCommandOutput | GetProjectProfileCommandOutput | GetRuleCommandOutput | GetSubscriptionCommandOutput | GetSubscriptionGrantCommandOutput | GetSubscriptionRequestDetailsCommandOutput | GetSubscriptionTargetCommandOutput | GetTimeSeriesDataPointCommandOutput | GetUserProfileCommandOutput | ListAccountPoolsCommandOutput | ListAccountsInAccountPoolCommandOutput | ListAssetFiltersCommandOutput | ListAssetRevisionsCommandOutput | ListConnectionsCommandOutput | ListDataProductRevisionsCommandOutput | ListDataSourceRunActivitiesCommandOutput | ListDataSourceRunsCommandOutput | ListDataSourcesCommandOutput | ListDomainUnitsForParentCommandOutput | ListDomainsCommandOutput | ListEntityOwnersCommandOutput | ListEnvironmentActionsCommandOutput | ListEnvironmentBlueprintConfigurationsCommandOutput | ListEnvironmentBlueprintsCommandOutput | ListEnvironmentProfilesCommandOutput | ListEnvironmentsCommandOutput | ListJobRunsCommandOutput | ListLineageEventsCommandOutput | ListLineageNodeHistoryCommandOutput | ListMetadataGenerationRunsCommandOutput | ListNotebookRunsCommandOutput | ListNotebooksCommandOutput | ListNotificationsCommandOutput | ListPolicyGrantsCommandOutput | ListProjectMembershipsCommandOutput | ListProjectProfilesCommandOutput | ListProjectsCommandOutput | ListRulesCommandOutput | ListSubscriptionGrantsCommandOutput | ListSubscriptionRequestsCommandOutput | ListSubscriptionTargetsCommandOutput | ListSubscriptionsCommandOutput | ListTagsForResourceCommandOutput | ListTimeSeriesDataPointsCommandOutput | PostLineageEventCommandOutput | PostTimeSeriesDataPointsCommandOutput | PutDataExportConfigurationCommandOutput | PutEnvironmentBlueprintConfigurationCommandOutput | QueryGraphCommandOutput | RejectPredictionsCommandOutput | RejectSubscriptionRequestCommandOutput | RemoveEntityOwnerCommandOutput | RemovePolicyGrantCommandOutput | RevokeSubscriptionCommandOutput | SearchCommandOutput | SearchGroupProfilesCommandOutput | SearchListingsCommandOutput | SearchTypesCommandOutput | SearchUserProfilesCommandOutput | StartDataSourceRunCommandOutput | StartMetadataGenerationRunCommandOutput | StartNotebookExportCommandOutput | StartNotebookImportCommandOutput | StartNotebookRunCommandOutput | StopNotebookRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountPoolCommandOutput | UpdateAssetFilterCommandOutput | UpdateConnectionCommandOutput | UpdateDataSourceCommandOutput | UpdateDomainCommandOutput | UpdateDomainUnitCommandOutput | UpdateEnvironmentActionCommandOutput | UpdateEnvironmentBlueprintCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentProfileCommandOutput | UpdateGlossaryCommandOutput | UpdateGlossaryTermCommandOutput | UpdateGroupProfileCommandOutput | UpdateNotebookCommandOutput | UpdateProjectCommandOutput | UpdateProjectProfileCommandOutput | UpdateRootDomainUnitOwnerCommandOutput | UpdateRuleCommandOutput | UpdateSubscriptionGrantStatusCommandOutput | UpdateSubscriptionRequestCommandOutput | UpdateSubscriptionTargetCommandOutput | UpdateUserProfileCommandOutput;
|
|
201
208
|
/**
|
|
202
209
|
* @public
|
|
203
210
|
*/
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
+
import type { CreateNotebookInput, CreateNotebookOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateNotebookCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateNotebookCommandInput extends CreateNotebookInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateNotebookCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateNotebookCommandOutput extends CreateNotebookOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateNotebookCommand_base: {
|
|
25
|
+
new (input: CreateNotebookCommandInput): import("@smithy/core/client").CommandImpl<CreateNotebookCommandInput, CreateNotebookCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateNotebookCommandInput): import("@smithy/core/client").CommandImpl<CreateNotebookCommandInput, CreateNotebookCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Creates a <a href="https://docs.aws.amazon.com/sagemaker-unified-studio/latest/userguide/notebooks.html">notebook</a> in Amazon SageMaker Unified Studio. A notebook is a collaborative document within a project that contains code cells for interactive computing.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { DataZoneClient, CreateNotebookCommand } from "@aws-sdk/client-datazone"; // ES Modules import
|
|
37
|
+
* // const { DataZoneClient, CreateNotebookCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
|
|
38
|
+
* // import type { DataZoneClientConfig } from "@aws-sdk/client-datazone";
|
|
39
|
+
* const config = {}; // type is DataZoneClientConfig
|
|
40
|
+
* const client = new DataZoneClient(config);
|
|
41
|
+
* const input = { // CreateNotebookInput
|
|
42
|
+
* domainIdentifier: "STRING_VALUE", // required
|
|
43
|
+
* owningProjectIdentifier: "STRING_VALUE", // required
|
|
44
|
+
* name: "STRING_VALUE", // required
|
|
45
|
+
* description: "STRING_VALUE",
|
|
46
|
+
* metadata: { // Metadata
|
|
47
|
+
* "<keys>": "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* parameters: { // Parameters
|
|
50
|
+
* "<keys>": "STRING_VALUE",
|
|
51
|
+
* },
|
|
52
|
+
* clientToken: "STRING_VALUE",
|
|
53
|
+
* };
|
|
54
|
+
* const command = new CreateNotebookCommand(input);
|
|
55
|
+
* const response = await client.send(command);
|
|
56
|
+
* // { // CreateNotebookOutput
|
|
57
|
+
* // id: "STRING_VALUE", // required
|
|
58
|
+
* // name: "STRING_VALUE", // required
|
|
59
|
+
* // owningProjectId: "STRING_VALUE", // required
|
|
60
|
+
* // domainId: "STRING_VALUE", // required
|
|
61
|
+
* // cellOrder: [ // CellOrder // required
|
|
62
|
+
* // {},
|
|
63
|
+
* // ],
|
|
64
|
+
* // status: "ACTIVE" || "ARCHIVED", // required
|
|
65
|
+
* // description: "STRING_VALUE",
|
|
66
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
67
|
+
* // createdBy: "STRING_VALUE",
|
|
68
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
69
|
+
* // updatedBy: "STRING_VALUE",
|
|
70
|
+
* // lockedBy: "STRING_VALUE",
|
|
71
|
+
* // lockedAt: new Date("TIMESTAMP"),
|
|
72
|
+
* // lockExpiresAt: new Date("TIMESTAMP"),
|
|
73
|
+
* // computeId: "STRING_VALUE",
|
|
74
|
+
* // metadata: { // Metadata
|
|
75
|
+
* // "<keys>": "STRING_VALUE",
|
|
76
|
+
* // },
|
|
77
|
+
* // parameters: { // Parameters
|
|
78
|
+
* // "<keys>": "STRING_VALUE",
|
|
79
|
+
* // },
|
|
80
|
+
* // environmentConfiguration: { // EnvironmentConfig
|
|
81
|
+
* // imageVersion: "STRING_VALUE",
|
|
82
|
+
* // packageConfig: { // PackageConfig
|
|
83
|
+
* // packageManager: "UV", // required
|
|
84
|
+
* // packageSpecification: "STRING_VALUE",
|
|
85
|
+
* // },
|
|
86
|
+
* // },
|
|
87
|
+
* // error: { // NotebookError
|
|
88
|
+
* // message: "STRING_VALUE", // required
|
|
89
|
+
* // },
|
|
90
|
+
* // };
|
|
91
|
+
*
|
|
92
|
+
* ```
|
|
93
|
+
*
|
|
94
|
+
* @param CreateNotebookCommandInput - {@link CreateNotebookCommandInput}
|
|
95
|
+
* @returns {@link CreateNotebookCommandOutput}
|
|
96
|
+
* @see {@link CreateNotebookCommandInput} for command's `input` shape.
|
|
97
|
+
* @see {@link CreateNotebookCommandOutput} for command's `response` shape.
|
|
98
|
+
* @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
101
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link ConflictException} (client fault)
|
|
104
|
+
* <p>There is a conflict while performing this action.</p>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link InternalServerException} (server fault)
|
|
107
|
+
* <p>The request has failed because of an unknown error, exception or failure.</p>
|
|
108
|
+
*
|
|
109
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
110
|
+
* <p>The specified resource cannot be found.</p>
|
|
111
|
+
*
|
|
112
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
113
|
+
* <p>The request has exceeded the specified service quota.</p>
|
|
114
|
+
*
|
|
115
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
116
|
+
* <p>The request was denied due to request throttling.</p>
|
|
117
|
+
*
|
|
118
|
+
* @throws {@link ValidationException} (client fault)
|
|
119
|
+
* <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
|
|
120
|
+
*
|
|
121
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
122
|
+
* <p>You do not have permission to perform this action.</p>
|
|
123
|
+
*
|
|
124
|
+
* @throws {@link DataZoneServiceException}
|
|
125
|
+
* <p>Base exception class for all service exceptions from DataZone service.</p>
|
|
126
|
+
*
|
|
127
|
+
*
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
export declare class CreateNotebookCommand extends CreateNotebookCommand_base {
|
|
131
|
+
/** @internal type navigation helper, not in runtime. */
|
|
132
|
+
protected static __types: {
|
|
133
|
+
api: {
|
|
134
|
+
input: CreateNotebookInput;
|
|
135
|
+
output: CreateNotebookOutput;
|
|
136
|
+
};
|
|
137
|
+
sdk: {
|
|
138
|
+
input: CreateNotebookCommandInput;
|
|
139
|
+
output: CreateNotebookCommandOutput;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import type { CreateSubscriptionGrantInput
|
|
4
|
+
import type { CreateSubscriptionGrantInput } from "../models/models_0";
|
|
5
|
+
import type { CreateSubscriptionGrantOutput } from "../models/models_1";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
+
import type { DeleteNotebookInput, DeleteNotebookOutput } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteNotebookCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteNotebookCommandInput extends DeleteNotebookInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteNotebookCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteNotebookCommandOutput extends DeleteNotebookOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteNotebookCommand_base: {
|
|
25
|
+
new (input: DeleteNotebookCommandInput): import("@smithy/core/client").CommandImpl<DeleteNotebookCommandInput, DeleteNotebookCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DeleteNotebookCommandInput): import("@smithy/core/client").CommandImpl<DeleteNotebookCommandInput, DeleteNotebookCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Deletes a <a href="https://docs.aws.amazon.com/sagemaker-unified-studio/latest/userguide/notebooks.html">notebook</a> in Amazon SageMaker Unified Studio.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { DataZoneClient, DeleteNotebookCommand } from "@aws-sdk/client-datazone"; // ES Modules import
|
|
37
|
+
* // const { DataZoneClient, DeleteNotebookCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
|
|
38
|
+
* // import type { DataZoneClientConfig } from "@aws-sdk/client-datazone";
|
|
39
|
+
* const config = {}; // type is DataZoneClientConfig
|
|
40
|
+
* const client = new DataZoneClient(config);
|
|
41
|
+
* const input = { // DeleteNotebookInput
|
|
42
|
+
* domainIdentifier: "STRING_VALUE", // required
|
|
43
|
+
* identifier: "STRING_VALUE", // required
|
|
44
|
+
* };
|
|
45
|
+
* const command = new DeleteNotebookCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // {};
|
|
48
|
+
*
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* @param DeleteNotebookCommandInput - {@link DeleteNotebookCommandInput}
|
|
52
|
+
* @returns {@link DeleteNotebookCommandOutput}
|
|
53
|
+
* @see {@link DeleteNotebookCommandInput} for command's `input` shape.
|
|
54
|
+
* @see {@link DeleteNotebookCommandOutput} for command's `response` shape.
|
|
55
|
+
* @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
58
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ConflictException} (client fault)
|
|
61
|
+
* <p>There is a conflict while performing this action.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InternalServerException} (server fault)
|
|
64
|
+
* <p>The request has failed because of an unknown error, exception or failure.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
67
|
+
* <p>The request was denied due to request throttling.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ValidationException} (client fault)
|
|
70
|
+
* <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
73
|
+
* <p>You do not have permission to perform this action.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link DataZoneServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from DataZone service.</p>
|
|
77
|
+
*
|
|
78
|
+
*
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export declare class DeleteNotebookCommand extends DeleteNotebookCommand_base {
|
|
82
|
+
/** @internal type navigation helper, not in runtime. */
|
|
83
|
+
protected static __types: {
|
|
84
|
+
api: {
|
|
85
|
+
input: DeleteNotebookInput;
|
|
86
|
+
output: {};
|
|
87
|
+
};
|
|
88
|
+
sdk: {
|
|
89
|
+
input: DeleteNotebookCommandInput;
|
|
90
|
+
output: DeleteNotebookCommandOutput;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
}
|