@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
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: DataZoneClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/
|
|
11
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
14
14
|
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: DataZoneClientConfig) => {
|
|
|
9
9
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
11
|
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
12
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/
|
|
12
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
13
13
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
14
14
|
region: string | import("@smithy/types").Provider<string>;
|
|
15
15
|
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
@@ -26,7 +26,7 @@ export declare const getRuntimeConfig: (config: DataZoneClientConfig) => {
|
|
|
26
26
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
27
|
region: string | import("@smithy/types").Provider<any>;
|
|
28
28
|
profile?: string;
|
|
29
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/
|
|
29
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
30
30
|
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
31
31
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
32
32
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
@@ -133,6 +133,8 @@ export declare var CreateGroupProfileInput$: StaticStructureSchema;
|
|
|
133
133
|
export declare var CreateGroupProfileOutput$: StaticStructureSchema;
|
|
134
134
|
export declare var CreateListingChangeSetInput$: StaticStructureSchema;
|
|
135
135
|
export declare var CreateListingChangeSetOutput$: StaticStructureSchema;
|
|
136
|
+
export declare var CreateNotebookInput$: StaticStructureSchema;
|
|
137
|
+
export declare var CreateNotebookOutput$: StaticStructureSchema;
|
|
136
138
|
export declare var CreateProjectFromProjectProfilePolicyGrantDetail$: StaticStructureSchema;
|
|
137
139
|
export declare var CreateProjectInput$: StaticStructureSchema;
|
|
138
140
|
export declare var CreateProjectMembershipInput$: StaticStructureSchema;
|
|
@@ -198,6 +200,8 @@ export declare var DeleteGlossaryTermInput$: StaticStructureSchema;
|
|
|
198
200
|
export declare var DeleteGlossaryTermOutput$: StaticStructureSchema;
|
|
199
201
|
export declare var DeleteListingInput$: StaticStructureSchema;
|
|
200
202
|
export declare var DeleteListingOutput$: StaticStructureSchema;
|
|
203
|
+
export declare var DeleteNotebookInput$: StaticStructureSchema;
|
|
204
|
+
export declare var DeleteNotebookOutput$: StaticStructureSchema;
|
|
201
205
|
export declare var DeleteProjectInput$: StaticStructureSchema;
|
|
202
206
|
export declare var DeleteProjectMembershipInput$: StaticStructureSchema;
|
|
203
207
|
export declare var DeleteProjectMembershipOutput$: StaticStructureSchema;
|
|
@@ -305,6 +309,10 @@ export declare var GetListingInput$: StaticStructureSchema;
|
|
|
305
309
|
export declare var GetListingOutput$: StaticStructureSchema;
|
|
306
310
|
export declare var GetMetadataGenerationRunInput$: StaticStructureSchema;
|
|
307
311
|
export declare var GetMetadataGenerationRunOutput$: StaticStructureSchema;
|
|
312
|
+
export declare var GetNotebookExportInput$: StaticStructureSchema;
|
|
313
|
+
export declare var GetNotebookExportOutput$: StaticStructureSchema;
|
|
314
|
+
export declare var GetNotebookInput$: StaticStructureSchema;
|
|
315
|
+
export declare var GetNotebookOutput$: StaticStructureSchema;
|
|
308
316
|
export declare var GetNotebookRunInput$: StaticStructureSchema;
|
|
309
317
|
export declare var GetNotebookRunOutput$: StaticStructureSchema;
|
|
310
318
|
export declare var GetProjectInput$: StaticStructureSchema;
|
|
@@ -420,6 +428,8 @@ export declare var ListMetadataGenerationRunsInput$: StaticStructureSchema;
|
|
|
420
428
|
export declare var ListMetadataGenerationRunsOutput$: StaticStructureSchema;
|
|
421
429
|
export declare var ListNotebookRunsInput$: StaticStructureSchema;
|
|
422
430
|
export declare var ListNotebookRunsOutput$: StaticStructureSchema;
|
|
431
|
+
export declare var ListNotebooksInput$: StaticStructureSchema;
|
|
432
|
+
export declare var ListNotebooksOutput$: StaticStructureSchema;
|
|
423
433
|
export declare var ListNotificationsInput$: StaticStructureSchema;
|
|
424
434
|
export declare var ListNotificationsOutput$: StaticStructureSchema;
|
|
425
435
|
export declare var ListPolicyGrantsInput$: StaticStructureSchema;
|
|
@@ -457,8 +467,11 @@ export declare var MlflowPropertiesOutput$: StaticStructureSchema;
|
|
|
457
467
|
export declare var MlflowPropertiesPatch$: StaticStructureSchema;
|
|
458
468
|
export declare var NameIdentifier$: StaticStructureSchema;
|
|
459
469
|
export declare var NetworkConfig$: StaticStructureSchema;
|
|
470
|
+
export declare var NotebookError$: StaticStructureSchema;
|
|
471
|
+
export declare var NotebookExportError$: StaticStructureSchema;
|
|
460
472
|
export declare var NotebookRunError$: StaticStructureSchema;
|
|
461
473
|
export declare var NotebookRunSummary$: StaticStructureSchema;
|
|
474
|
+
export declare var NotebookSummary$: StaticStructureSchema;
|
|
462
475
|
export declare var NotEqualToExpression$: StaticStructureSchema;
|
|
463
476
|
export declare var NotificationOutput$: StaticStructureSchema;
|
|
464
477
|
export declare var NotificationResource$: StaticStructureSchema;
|
|
@@ -528,6 +541,7 @@ export declare var RowFilterConfiguration$: StaticStructureSchema;
|
|
|
528
541
|
export declare var RuleScope$: StaticStructureSchema;
|
|
529
542
|
export declare var RuleSummary$: StaticStructureSchema;
|
|
530
543
|
export declare var RunStatisticsForAssets$: StaticStructureSchema;
|
|
544
|
+
export declare var S3Destination$: StaticStructureSchema;
|
|
531
545
|
export declare var S3PropertiesInput$: StaticStructureSchema;
|
|
532
546
|
export declare var S3PropertiesOutput$: StaticStructureSchema;
|
|
533
547
|
export declare var S3PropertiesPatch$: StaticStructureSchema;
|
|
@@ -559,6 +573,10 @@ export declare var StartDataSourceRunInput$: StaticStructureSchema;
|
|
|
559
573
|
export declare var StartDataSourceRunOutput$: StaticStructureSchema;
|
|
560
574
|
export declare var StartMetadataGenerationRunInput$: StaticStructureSchema;
|
|
561
575
|
export declare var StartMetadataGenerationRunOutput$: StaticStructureSchema;
|
|
576
|
+
export declare var StartNotebookExportInput$: StaticStructureSchema;
|
|
577
|
+
export declare var StartNotebookExportOutput$: StaticStructureSchema;
|
|
578
|
+
export declare var StartNotebookImportInput$: StaticStructureSchema;
|
|
579
|
+
export declare var StartNotebookImportOutput$: StaticStructureSchema;
|
|
562
580
|
export declare var StartNotebookRunInput$: StaticStructureSchema;
|
|
563
581
|
export declare var StartNotebookRunOutput$: StaticStructureSchema;
|
|
564
582
|
export declare var StopNotebookRunInput$: StaticStructureSchema;
|
|
@@ -621,6 +639,8 @@ export declare var UpdateGlossaryTermInput$: StaticStructureSchema;
|
|
|
621
639
|
export declare var UpdateGlossaryTermOutput$: StaticStructureSchema;
|
|
622
640
|
export declare var UpdateGroupProfileInput$: StaticStructureSchema;
|
|
623
641
|
export declare var UpdateGroupProfileOutput$: StaticStructureSchema;
|
|
642
|
+
export declare var UpdateNotebookInput$: StaticStructureSchema;
|
|
643
|
+
export declare var UpdateNotebookOutput$: StaticStructureSchema;
|
|
624
644
|
export declare var UpdateProjectInput$: StaticStructureSchema;
|
|
625
645
|
export declare var UpdateProjectOutput$: StaticStructureSchema;
|
|
626
646
|
export declare var UpdateProjectProfileInput$: StaticStructureSchema;
|
|
@@ -668,6 +688,7 @@ export declare var MatchRationaleItem$: StaticUnionSchema;
|
|
|
668
688
|
export declare var Member$: StaticUnionSchema;
|
|
669
689
|
export declare var MemberDetails$: StaticUnionSchema;
|
|
670
690
|
export declare var Model$: StaticUnionSchema;
|
|
691
|
+
export declare var OutputLocation$: StaticUnionSchema;
|
|
671
692
|
export declare var OwnerProperties$: StaticUnionSchema;
|
|
672
693
|
export declare var OwnerPropertiesOutput$: StaticUnionSchema;
|
|
673
694
|
export declare var Permissions$: StaticUnionSchema;
|
|
@@ -689,6 +710,7 @@ export declare var SearchInventoryResultItem$: StaticUnionSchema;
|
|
|
689
710
|
export declare var SearchResultItem$: StaticUnionSchema;
|
|
690
711
|
export declare var SearchTypesResultItem$: StaticUnionSchema;
|
|
691
712
|
export declare var SelfGrantStatusOutput$: StaticUnionSchema;
|
|
713
|
+
export declare var SourceLocation$: StaticUnionSchema;
|
|
692
714
|
export declare var SubscribedListingItem$: StaticUnionSchema;
|
|
693
715
|
export declare var SubscribedPrincipal$: StaticUnionSchema;
|
|
694
716
|
export declare var SubscribedPrincipalInput$: StaticUnionSchema;
|
|
@@ -724,6 +746,7 @@ export declare var CreateGlossary$: StaticOperationSchema;
|
|
|
724
746
|
export declare var CreateGlossaryTerm$: StaticOperationSchema;
|
|
725
747
|
export declare var CreateGroupProfile$: StaticOperationSchema;
|
|
726
748
|
export declare var CreateListingChangeSet$: StaticOperationSchema;
|
|
749
|
+
export declare var CreateNotebook$: StaticOperationSchema;
|
|
727
750
|
export declare var CreateProject$: StaticOperationSchema;
|
|
728
751
|
export declare var CreateProjectMembership$: StaticOperationSchema;
|
|
729
752
|
export declare var CreateProjectProfile$: StaticOperationSchema;
|
|
@@ -751,6 +774,7 @@ export declare var DeleteFormType$: StaticOperationSchema;
|
|
|
751
774
|
export declare var DeleteGlossary$: StaticOperationSchema;
|
|
752
775
|
export declare var DeleteGlossaryTerm$: StaticOperationSchema;
|
|
753
776
|
export declare var DeleteListing$: StaticOperationSchema;
|
|
777
|
+
export declare var DeleteNotebook$: StaticOperationSchema;
|
|
754
778
|
export declare var DeleteProject$: StaticOperationSchema;
|
|
755
779
|
export declare var DeleteProjectMembership$: StaticOperationSchema;
|
|
756
780
|
export declare var DeleteProjectProfile$: StaticOperationSchema;
|
|
@@ -788,6 +812,8 @@ export declare var GetLineageEvent$: StaticOperationSchema;
|
|
|
788
812
|
export declare var GetLineageNode$: StaticOperationSchema;
|
|
789
813
|
export declare var GetListing$: StaticOperationSchema;
|
|
790
814
|
export declare var GetMetadataGenerationRun$: StaticOperationSchema;
|
|
815
|
+
export declare var GetNotebook$: StaticOperationSchema;
|
|
816
|
+
export declare var GetNotebookExport$: StaticOperationSchema;
|
|
791
817
|
export declare var GetNotebookRun$: StaticOperationSchema;
|
|
792
818
|
export declare var GetProject$: StaticOperationSchema;
|
|
793
819
|
export declare var GetProjectProfile$: StaticOperationSchema;
|
|
@@ -820,6 +846,7 @@ export declare var ListLineageEvents$: StaticOperationSchema;
|
|
|
820
846
|
export declare var ListLineageNodeHistory$: StaticOperationSchema;
|
|
821
847
|
export declare var ListMetadataGenerationRuns$: StaticOperationSchema;
|
|
822
848
|
export declare var ListNotebookRuns$: StaticOperationSchema;
|
|
849
|
+
export declare var ListNotebooks$: StaticOperationSchema;
|
|
823
850
|
export declare var ListNotifications$: StaticOperationSchema;
|
|
824
851
|
export declare var ListPolicyGrants$: StaticOperationSchema;
|
|
825
852
|
export declare var ListProjectMemberships$: StaticOperationSchema;
|
|
@@ -849,6 +876,8 @@ export declare var SearchTypes$: StaticOperationSchema;
|
|
|
849
876
|
export declare var SearchUserProfiles$: StaticOperationSchema;
|
|
850
877
|
export declare var StartDataSourceRun$: StaticOperationSchema;
|
|
851
878
|
export declare var StartMetadataGenerationRun$: StaticOperationSchema;
|
|
879
|
+
export declare var StartNotebookExport$: StaticOperationSchema;
|
|
880
|
+
export declare var StartNotebookImport$: StaticOperationSchema;
|
|
852
881
|
export declare var StartNotebookRun$: StaticOperationSchema;
|
|
853
882
|
export declare var StopNotebookRun$: StaticOperationSchema;
|
|
854
883
|
export declare var TagResource$: StaticOperationSchema;
|
|
@@ -866,6 +895,7 @@ export declare var UpdateEnvironmentProfile$: StaticOperationSchema;
|
|
|
866
895
|
export declare var UpdateGlossary$: StaticOperationSchema;
|
|
867
896
|
export declare var UpdateGlossaryTerm$: StaticOperationSchema;
|
|
868
897
|
export declare var UpdateGroupProfile$: StaticOperationSchema;
|
|
898
|
+
export declare var UpdateNotebook$: StaticOperationSchema;
|
|
869
899
|
export declare var UpdateProject$: StaticOperationSchema;
|
|
870
900
|
export declare var UpdateProjectProfile$: StaticOperationSchema;
|
|
871
901
|
export declare var UpdateRootDomainUnitOwner$: StaticOperationSchema;
|
|
@@ -123,6 +123,10 @@ import {
|
|
|
123
123
|
CreateListingChangeSetCommandInput,
|
|
124
124
|
CreateListingChangeSetCommandOutput,
|
|
125
125
|
} from "./commands/CreateListingChangeSetCommand";
|
|
126
|
+
import {
|
|
127
|
+
CreateNotebookCommandInput,
|
|
128
|
+
CreateNotebookCommandOutput,
|
|
129
|
+
} from "./commands/CreateNotebookCommand";
|
|
126
130
|
import {
|
|
127
131
|
CreateProjectCommandInput,
|
|
128
132
|
CreateProjectCommandOutput,
|
|
@@ -231,6 +235,10 @@ import {
|
|
|
231
235
|
DeleteListingCommandInput,
|
|
232
236
|
DeleteListingCommandOutput,
|
|
233
237
|
} from "./commands/DeleteListingCommand";
|
|
238
|
+
import {
|
|
239
|
+
DeleteNotebookCommandInput,
|
|
240
|
+
DeleteNotebookCommandOutput,
|
|
241
|
+
} from "./commands/DeleteNotebookCommand";
|
|
234
242
|
import {
|
|
235
243
|
DeleteProjectCommandInput,
|
|
236
244
|
DeleteProjectCommandOutput,
|
|
@@ -379,6 +387,14 @@ import {
|
|
|
379
387
|
GetMetadataGenerationRunCommandInput,
|
|
380
388
|
GetMetadataGenerationRunCommandOutput,
|
|
381
389
|
} from "./commands/GetMetadataGenerationRunCommand";
|
|
390
|
+
import {
|
|
391
|
+
GetNotebookCommandInput,
|
|
392
|
+
GetNotebookCommandOutput,
|
|
393
|
+
} from "./commands/GetNotebookCommand";
|
|
394
|
+
import {
|
|
395
|
+
GetNotebookExportCommandInput,
|
|
396
|
+
GetNotebookExportCommandOutput,
|
|
397
|
+
} from "./commands/GetNotebookExportCommand";
|
|
382
398
|
import {
|
|
383
399
|
GetNotebookRunCommandInput,
|
|
384
400
|
GetNotebookRunCommandOutput,
|
|
@@ -507,6 +523,10 @@ import {
|
|
|
507
523
|
ListNotebookRunsCommandInput,
|
|
508
524
|
ListNotebookRunsCommandOutput,
|
|
509
525
|
} from "./commands/ListNotebookRunsCommand";
|
|
526
|
+
import {
|
|
527
|
+
ListNotebooksCommandInput,
|
|
528
|
+
ListNotebooksCommandOutput,
|
|
529
|
+
} from "./commands/ListNotebooksCommand";
|
|
510
530
|
import {
|
|
511
531
|
ListNotificationsCommandInput,
|
|
512
532
|
ListNotificationsCommandOutput,
|
|
@@ -623,6 +643,14 @@ import {
|
|
|
623
643
|
StartMetadataGenerationRunCommandInput,
|
|
624
644
|
StartMetadataGenerationRunCommandOutput,
|
|
625
645
|
} from "./commands/StartMetadataGenerationRunCommand";
|
|
646
|
+
import {
|
|
647
|
+
StartNotebookExportCommandInput,
|
|
648
|
+
StartNotebookExportCommandOutput,
|
|
649
|
+
} from "./commands/StartNotebookExportCommand";
|
|
650
|
+
import {
|
|
651
|
+
StartNotebookImportCommandInput,
|
|
652
|
+
StartNotebookImportCommandOutput,
|
|
653
|
+
} from "./commands/StartNotebookImportCommand";
|
|
626
654
|
import {
|
|
627
655
|
StartNotebookRunCommandInput,
|
|
628
656
|
StartNotebookRunCommandOutput,
|
|
@@ -691,6 +719,10 @@ import {
|
|
|
691
719
|
UpdateGroupProfileCommandInput,
|
|
692
720
|
UpdateGroupProfileCommandOutput,
|
|
693
721
|
} from "./commands/UpdateGroupProfileCommand";
|
|
722
|
+
import {
|
|
723
|
+
UpdateNotebookCommandInput,
|
|
724
|
+
UpdateNotebookCommandOutput,
|
|
725
|
+
} from "./commands/UpdateNotebookCommand";
|
|
694
726
|
import {
|
|
695
727
|
UpdateProjectCommandInput,
|
|
696
728
|
UpdateProjectCommandOutput,
|
|
@@ -1115,6 +1147,19 @@ export interface DataZone {
|
|
|
1115
1147
|
options: __HttpHandlerOptions,
|
|
1116
1148
|
cb: (err: any, data?: CreateListingChangeSetCommandOutput) => void
|
|
1117
1149
|
): void;
|
|
1150
|
+
createNotebook(
|
|
1151
|
+
args: CreateNotebookCommandInput,
|
|
1152
|
+
options?: __HttpHandlerOptions
|
|
1153
|
+
): Promise<CreateNotebookCommandOutput>;
|
|
1154
|
+
createNotebook(
|
|
1155
|
+
args: CreateNotebookCommandInput,
|
|
1156
|
+
cb: (err: any, data?: CreateNotebookCommandOutput) => void
|
|
1157
|
+
): void;
|
|
1158
|
+
createNotebook(
|
|
1159
|
+
args: CreateNotebookCommandInput,
|
|
1160
|
+
options: __HttpHandlerOptions,
|
|
1161
|
+
cb: (err: any, data?: CreateNotebookCommandOutput) => void
|
|
1162
|
+
): void;
|
|
1118
1163
|
createProject(
|
|
1119
1164
|
args: CreateProjectCommandInput,
|
|
1120
1165
|
options?: __HttpHandlerOptions
|
|
@@ -1472,6 +1517,19 @@ export interface DataZone {
|
|
|
1472
1517
|
options: __HttpHandlerOptions,
|
|
1473
1518
|
cb: (err: any, data?: DeleteListingCommandOutput) => void
|
|
1474
1519
|
): void;
|
|
1520
|
+
deleteNotebook(
|
|
1521
|
+
args: DeleteNotebookCommandInput,
|
|
1522
|
+
options?: __HttpHandlerOptions
|
|
1523
|
+
): Promise<DeleteNotebookCommandOutput>;
|
|
1524
|
+
deleteNotebook(
|
|
1525
|
+
args: DeleteNotebookCommandInput,
|
|
1526
|
+
cb: (err: any, data?: DeleteNotebookCommandOutput) => void
|
|
1527
|
+
): void;
|
|
1528
|
+
deleteNotebook(
|
|
1529
|
+
args: DeleteNotebookCommandInput,
|
|
1530
|
+
options: __HttpHandlerOptions,
|
|
1531
|
+
cb: (err: any, data?: DeleteNotebookCommandOutput) => void
|
|
1532
|
+
): void;
|
|
1475
1533
|
deleteProject(
|
|
1476
1534
|
args: DeleteProjectCommandInput,
|
|
1477
1535
|
options?: __HttpHandlerOptions
|
|
@@ -1959,6 +2017,32 @@ export interface DataZone {
|
|
|
1959
2017
|
options: __HttpHandlerOptions,
|
|
1960
2018
|
cb: (err: any, data?: GetMetadataGenerationRunCommandOutput) => void
|
|
1961
2019
|
): void;
|
|
2020
|
+
getNotebook(
|
|
2021
|
+
args: GetNotebookCommandInput,
|
|
2022
|
+
options?: __HttpHandlerOptions
|
|
2023
|
+
): Promise<GetNotebookCommandOutput>;
|
|
2024
|
+
getNotebook(
|
|
2025
|
+
args: GetNotebookCommandInput,
|
|
2026
|
+
cb: (err: any, data?: GetNotebookCommandOutput) => void
|
|
2027
|
+
): void;
|
|
2028
|
+
getNotebook(
|
|
2029
|
+
args: GetNotebookCommandInput,
|
|
2030
|
+
options: __HttpHandlerOptions,
|
|
2031
|
+
cb: (err: any, data?: GetNotebookCommandOutput) => void
|
|
2032
|
+
): void;
|
|
2033
|
+
getNotebookExport(
|
|
2034
|
+
args: GetNotebookExportCommandInput,
|
|
2035
|
+
options?: __HttpHandlerOptions
|
|
2036
|
+
): Promise<GetNotebookExportCommandOutput>;
|
|
2037
|
+
getNotebookExport(
|
|
2038
|
+
args: GetNotebookExportCommandInput,
|
|
2039
|
+
cb: (err: any, data?: GetNotebookExportCommandOutput) => void
|
|
2040
|
+
): void;
|
|
2041
|
+
getNotebookExport(
|
|
2042
|
+
args: GetNotebookExportCommandInput,
|
|
2043
|
+
options: __HttpHandlerOptions,
|
|
2044
|
+
cb: (err: any, data?: GetNotebookExportCommandOutput) => void
|
|
2045
|
+
): void;
|
|
1962
2046
|
getNotebookRun(
|
|
1963
2047
|
args: GetNotebookRunCommandInput,
|
|
1964
2048
|
options?: __HttpHandlerOptions
|
|
@@ -2382,6 +2466,19 @@ export interface DataZone {
|
|
|
2382
2466
|
options: __HttpHandlerOptions,
|
|
2383
2467
|
cb: (err: any, data?: ListNotebookRunsCommandOutput) => void
|
|
2384
2468
|
): void;
|
|
2469
|
+
listNotebooks(
|
|
2470
|
+
args: ListNotebooksCommandInput,
|
|
2471
|
+
options?: __HttpHandlerOptions
|
|
2472
|
+
): Promise<ListNotebooksCommandOutput>;
|
|
2473
|
+
listNotebooks(
|
|
2474
|
+
args: ListNotebooksCommandInput,
|
|
2475
|
+
cb: (err: any, data?: ListNotebooksCommandOutput) => void
|
|
2476
|
+
): void;
|
|
2477
|
+
listNotebooks(
|
|
2478
|
+
args: ListNotebooksCommandInput,
|
|
2479
|
+
options: __HttpHandlerOptions,
|
|
2480
|
+
cb: (err: any, data?: ListNotebooksCommandOutput) => void
|
|
2481
|
+
): void;
|
|
2385
2482
|
listNotifications(
|
|
2386
2483
|
args: ListNotificationsCommandInput,
|
|
2387
2484
|
options?: __HttpHandlerOptions
|
|
@@ -2765,6 +2862,32 @@ export interface DataZone {
|
|
|
2765
2862
|
options: __HttpHandlerOptions,
|
|
2766
2863
|
cb: (err: any, data?: StartMetadataGenerationRunCommandOutput) => void
|
|
2767
2864
|
): void;
|
|
2865
|
+
startNotebookExport(
|
|
2866
|
+
args: StartNotebookExportCommandInput,
|
|
2867
|
+
options?: __HttpHandlerOptions
|
|
2868
|
+
): Promise<StartNotebookExportCommandOutput>;
|
|
2869
|
+
startNotebookExport(
|
|
2870
|
+
args: StartNotebookExportCommandInput,
|
|
2871
|
+
cb: (err: any, data?: StartNotebookExportCommandOutput) => void
|
|
2872
|
+
): void;
|
|
2873
|
+
startNotebookExport(
|
|
2874
|
+
args: StartNotebookExportCommandInput,
|
|
2875
|
+
options: __HttpHandlerOptions,
|
|
2876
|
+
cb: (err: any, data?: StartNotebookExportCommandOutput) => void
|
|
2877
|
+
): void;
|
|
2878
|
+
startNotebookImport(
|
|
2879
|
+
args: StartNotebookImportCommandInput,
|
|
2880
|
+
options?: __HttpHandlerOptions
|
|
2881
|
+
): Promise<StartNotebookImportCommandOutput>;
|
|
2882
|
+
startNotebookImport(
|
|
2883
|
+
args: StartNotebookImportCommandInput,
|
|
2884
|
+
cb: (err: any, data?: StartNotebookImportCommandOutput) => void
|
|
2885
|
+
): void;
|
|
2886
|
+
startNotebookImport(
|
|
2887
|
+
args: StartNotebookImportCommandInput,
|
|
2888
|
+
options: __HttpHandlerOptions,
|
|
2889
|
+
cb: (err: any, data?: StartNotebookImportCommandOutput) => void
|
|
2890
|
+
): void;
|
|
2768
2891
|
startNotebookRun(
|
|
2769
2892
|
args: StartNotebookRunCommandInput,
|
|
2770
2893
|
options?: __HttpHandlerOptions
|
|
@@ -2986,6 +3109,19 @@ export interface DataZone {
|
|
|
2986
3109
|
options: __HttpHandlerOptions,
|
|
2987
3110
|
cb: (err: any, data?: UpdateGroupProfileCommandOutput) => void
|
|
2988
3111
|
): void;
|
|
3112
|
+
updateNotebook(
|
|
3113
|
+
args: UpdateNotebookCommandInput,
|
|
3114
|
+
options?: __HttpHandlerOptions
|
|
3115
|
+
): Promise<UpdateNotebookCommandOutput>;
|
|
3116
|
+
updateNotebook(
|
|
3117
|
+
args: UpdateNotebookCommandInput,
|
|
3118
|
+
cb: (err: any, data?: UpdateNotebookCommandOutput) => void
|
|
3119
|
+
): void;
|
|
3120
|
+
updateNotebook(
|
|
3121
|
+
args: UpdateNotebookCommandInput,
|
|
3122
|
+
options: __HttpHandlerOptions,
|
|
3123
|
+
cb: (err: any, data?: UpdateNotebookCommandOutput) => void
|
|
3124
|
+
): void;
|
|
2989
3125
|
updateProject(
|
|
2990
3126
|
args: UpdateProjectCommandInput,
|
|
2991
3127
|
options?: __HttpHandlerOptions
|
|
@@ -3244,6 +3380,13 @@ export interface DataZone {
|
|
|
3244
3380
|
Exclude<keyof PaginationConfiguration, "client">
|
|
3245
3381
|
>
|
|
3246
3382
|
): Paginator<ListNotebookRunsCommandOutput>;
|
|
3383
|
+
paginateListNotebooks(
|
|
3384
|
+
args: ListNotebooksCommandInput,
|
|
3385
|
+
paginationConfig?: Pick<
|
|
3386
|
+
PaginationConfiguration,
|
|
3387
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3388
|
+
>
|
|
3389
|
+
): Paginator<ListNotebooksCommandOutput>;
|
|
3247
3390
|
paginateListNotifications(
|
|
3248
3391
|
args: ListNotificationsCommandInput,
|
|
3249
3392
|
paginationConfig?: Pick<
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
HostHeaderInputConfig,
|
|
3
3
|
HostHeaderResolvedConfig,
|
|
4
|
-
} from "@aws-sdk/middleware-host-header";
|
|
5
|
-
import {
|
|
6
4
|
UserAgentInputConfig,
|
|
7
5
|
UserAgentResolvedConfig,
|
|
8
|
-
} from "@aws-sdk/
|
|
6
|
+
} from "@aws-sdk/core/client";
|
|
9
7
|
import {
|
|
10
8
|
DefaultsMode as __DefaultsMode,
|
|
11
9
|
SmithyConfiguration as __SmithyConfiguration,
|
|
@@ -158,6 +156,10 @@ import {
|
|
|
158
156
|
CreateListingChangeSetCommandInput,
|
|
159
157
|
CreateListingChangeSetCommandOutput,
|
|
160
158
|
} from "./commands/CreateListingChangeSetCommand";
|
|
159
|
+
import {
|
|
160
|
+
CreateNotebookCommandInput,
|
|
161
|
+
CreateNotebookCommandOutput,
|
|
162
|
+
} from "./commands/CreateNotebookCommand";
|
|
161
163
|
import {
|
|
162
164
|
CreateProjectCommandInput,
|
|
163
165
|
CreateProjectCommandOutput,
|
|
@@ -266,6 +268,10 @@ import {
|
|
|
266
268
|
DeleteListingCommandInput,
|
|
267
269
|
DeleteListingCommandOutput,
|
|
268
270
|
} from "./commands/DeleteListingCommand";
|
|
271
|
+
import {
|
|
272
|
+
DeleteNotebookCommandInput,
|
|
273
|
+
DeleteNotebookCommandOutput,
|
|
274
|
+
} from "./commands/DeleteNotebookCommand";
|
|
269
275
|
import {
|
|
270
276
|
DeleteProjectCommandInput,
|
|
271
277
|
DeleteProjectCommandOutput,
|
|
@@ -414,6 +420,14 @@ import {
|
|
|
414
420
|
GetMetadataGenerationRunCommandInput,
|
|
415
421
|
GetMetadataGenerationRunCommandOutput,
|
|
416
422
|
} from "./commands/GetMetadataGenerationRunCommand";
|
|
423
|
+
import {
|
|
424
|
+
GetNotebookCommandInput,
|
|
425
|
+
GetNotebookCommandOutput,
|
|
426
|
+
} from "./commands/GetNotebookCommand";
|
|
427
|
+
import {
|
|
428
|
+
GetNotebookExportCommandInput,
|
|
429
|
+
GetNotebookExportCommandOutput,
|
|
430
|
+
} from "./commands/GetNotebookExportCommand";
|
|
417
431
|
import {
|
|
418
432
|
GetNotebookRunCommandInput,
|
|
419
433
|
GetNotebookRunCommandOutput,
|
|
@@ -542,6 +556,10 @@ import {
|
|
|
542
556
|
ListNotebookRunsCommandInput,
|
|
543
557
|
ListNotebookRunsCommandOutput,
|
|
544
558
|
} from "./commands/ListNotebookRunsCommand";
|
|
559
|
+
import {
|
|
560
|
+
ListNotebooksCommandInput,
|
|
561
|
+
ListNotebooksCommandOutput,
|
|
562
|
+
} from "./commands/ListNotebooksCommand";
|
|
545
563
|
import {
|
|
546
564
|
ListNotificationsCommandInput,
|
|
547
565
|
ListNotificationsCommandOutput,
|
|
@@ -658,6 +676,14 @@ import {
|
|
|
658
676
|
StartMetadataGenerationRunCommandInput,
|
|
659
677
|
StartMetadataGenerationRunCommandOutput,
|
|
660
678
|
} from "./commands/StartMetadataGenerationRunCommand";
|
|
679
|
+
import {
|
|
680
|
+
StartNotebookExportCommandInput,
|
|
681
|
+
StartNotebookExportCommandOutput,
|
|
682
|
+
} from "./commands/StartNotebookExportCommand";
|
|
683
|
+
import {
|
|
684
|
+
StartNotebookImportCommandInput,
|
|
685
|
+
StartNotebookImportCommandOutput,
|
|
686
|
+
} from "./commands/StartNotebookImportCommand";
|
|
661
687
|
import {
|
|
662
688
|
StartNotebookRunCommandInput,
|
|
663
689
|
StartNotebookRunCommandOutput,
|
|
@@ -726,6 +752,10 @@ import {
|
|
|
726
752
|
UpdateGroupProfileCommandInput,
|
|
727
753
|
UpdateGroupProfileCommandOutput,
|
|
728
754
|
} from "./commands/UpdateGroupProfileCommand";
|
|
755
|
+
import {
|
|
756
|
+
UpdateNotebookCommandInput,
|
|
757
|
+
UpdateNotebookCommandOutput,
|
|
758
|
+
} from "./commands/UpdateNotebookCommand";
|
|
729
759
|
import {
|
|
730
760
|
UpdateProjectCommandInput,
|
|
731
761
|
UpdateProjectCommandOutput,
|
|
@@ -796,6 +826,7 @@ export type ServiceInputTypes =
|
|
|
796
826
|
| CreateGlossaryTermCommandInput
|
|
797
827
|
| CreateGroupProfileCommandInput
|
|
798
828
|
| CreateListingChangeSetCommandInput
|
|
829
|
+
| CreateNotebookCommandInput
|
|
799
830
|
| CreateProjectCommandInput
|
|
800
831
|
| CreateProjectMembershipCommandInput
|
|
801
832
|
| CreateProjectProfileCommandInput
|
|
@@ -823,6 +854,7 @@ export type ServiceInputTypes =
|
|
|
823
854
|
| DeleteGlossaryCommandInput
|
|
824
855
|
| DeleteGlossaryTermCommandInput
|
|
825
856
|
| DeleteListingCommandInput
|
|
857
|
+
| DeleteNotebookCommandInput
|
|
826
858
|
| DeleteProjectCommandInput
|
|
827
859
|
| DeleteProjectMembershipCommandInput
|
|
828
860
|
| DeleteProjectProfileCommandInput
|
|
@@ -860,6 +892,8 @@ export type ServiceInputTypes =
|
|
|
860
892
|
| GetLineageNodeCommandInput
|
|
861
893
|
| GetListingCommandInput
|
|
862
894
|
| GetMetadataGenerationRunCommandInput
|
|
895
|
+
| GetNotebookCommandInput
|
|
896
|
+
| GetNotebookExportCommandInput
|
|
863
897
|
| GetNotebookRunCommandInput
|
|
864
898
|
| GetProjectCommandInput
|
|
865
899
|
| GetProjectProfileCommandInput
|
|
@@ -892,6 +926,7 @@ export type ServiceInputTypes =
|
|
|
892
926
|
| ListLineageNodeHistoryCommandInput
|
|
893
927
|
| ListMetadataGenerationRunsCommandInput
|
|
894
928
|
| ListNotebookRunsCommandInput
|
|
929
|
+
| ListNotebooksCommandInput
|
|
895
930
|
| ListNotificationsCommandInput
|
|
896
931
|
| ListPolicyGrantsCommandInput
|
|
897
932
|
| ListProjectMembershipsCommandInput
|
|
@@ -921,6 +956,8 @@ export type ServiceInputTypes =
|
|
|
921
956
|
| SearchUserProfilesCommandInput
|
|
922
957
|
| StartDataSourceRunCommandInput
|
|
923
958
|
| StartMetadataGenerationRunCommandInput
|
|
959
|
+
| StartNotebookExportCommandInput
|
|
960
|
+
| StartNotebookImportCommandInput
|
|
924
961
|
| StartNotebookRunCommandInput
|
|
925
962
|
| StopNotebookRunCommandInput
|
|
926
963
|
| TagResourceCommandInput
|
|
@@ -938,6 +975,7 @@ export type ServiceInputTypes =
|
|
|
938
975
|
| UpdateGlossaryCommandInput
|
|
939
976
|
| UpdateGlossaryTermCommandInput
|
|
940
977
|
| UpdateGroupProfileCommandInput
|
|
978
|
+
| UpdateNotebookCommandInput
|
|
941
979
|
| UpdateProjectCommandInput
|
|
942
980
|
| UpdateProjectProfileCommandInput
|
|
943
981
|
| UpdateRootDomainUnitOwnerCommandInput
|
|
@@ -977,6 +1015,7 @@ export type ServiceOutputTypes =
|
|
|
977
1015
|
| CreateGlossaryTermCommandOutput
|
|
978
1016
|
| CreateGroupProfileCommandOutput
|
|
979
1017
|
| CreateListingChangeSetCommandOutput
|
|
1018
|
+
| CreateNotebookCommandOutput
|
|
980
1019
|
| CreateProjectCommandOutput
|
|
981
1020
|
| CreateProjectMembershipCommandOutput
|
|
982
1021
|
| CreateProjectProfileCommandOutput
|
|
@@ -1004,6 +1043,7 @@ export type ServiceOutputTypes =
|
|
|
1004
1043
|
| DeleteGlossaryCommandOutput
|
|
1005
1044
|
| DeleteGlossaryTermCommandOutput
|
|
1006
1045
|
| DeleteListingCommandOutput
|
|
1046
|
+
| DeleteNotebookCommandOutput
|
|
1007
1047
|
| DeleteProjectCommandOutput
|
|
1008
1048
|
| DeleteProjectMembershipCommandOutput
|
|
1009
1049
|
| DeleteProjectProfileCommandOutput
|
|
@@ -1041,6 +1081,8 @@ export type ServiceOutputTypes =
|
|
|
1041
1081
|
| GetLineageNodeCommandOutput
|
|
1042
1082
|
| GetListingCommandOutput
|
|
1043
1083
|
| GetMetadataGenerationRunCommandOutput
|
|
1084
|
+
| GetNotebookCommandOutput
|
|
1085
|
+
| GetNotebookExportCommandOutput
|
|
1044
1086
|
| GetNotebookRunCommandOutput
|
|
1045
1087
|
| GetProjectCommandOutput
|
|
1046
1088
|
| GetProjectProfileCommandOutput
|
|
@@ -1073,6 +1115,7 @@ export type ServiceOutputTypes =
|
|
|
1073
1115
|
| ListLineageNodeHistoryCommandOutput
|
|
1074
1116
|
| ListMetadataGenerationRunsCommandOutput
|
|
1075
1117
|
| ListNotebookRunsCommandOutput
|
|
1118
|
+
| ListNotebooksCommandOutput
|
|
1076
1119
|
| ListNotificationsCommandOutput
|
|
1077
1120
|
| ListPolicyGrantsCommandOutput
|
|
1078
1121
|
| ListProjectMembershipsCommandOutput
|
|
@@ -1102,6 +1145,8 @@ export type ServiceOutputTypes =
|
|
|
1102
1145
|
| SearchUserProfilesCommandOutput
|
|
1103
1146
|
| StartDataSourceRunCommandOutput
|
|
1104
1147
|
| StartMetadataGenerationRunCommandOutput
|
|
1148
|
+
| StartNotebookExportCommandOutput
|
|
1149
|
+
| StartNotebookImportCommandOutput
|
|
1105
1150
|
| StartNotebookRunCommandOutput
|
|
1106
1151
|
| StopNotebookRunCommandOutput
|
|
1107
1152
|
| TagResourceCommandOutput
|
|
@@ -1119,6 +1164,7 @@ export type ServiceOutputTypes =
|
|
|
1119
1164
|
| UpdateGlossaryCommandOutput
|
|
1120
1165
|
| UpdateGlossaryTermCommandOutput
|
|
1121
1166
|
| UpdateGroupProfileCommandOutput
|
|
1167
|
+
| UpdateNotebookCommandOutput
|
|
1122
1168
|
| UpdateProjectCommandOutput
|
|
1123
1169
|
| UpdateProjectProfileCommandOutput
|
|
1124
1170
|
| UpdateRootDomainUnitOwnerCommandOutput
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import { CreateNotebookInput, CreateNotebookOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface CreateNotebookCommandInput extends CreateNotebookInput {}
|
|
12
|
+
export interface CreateNotebookCommandOutput
|
|
13
|
+
extends CreateNotebookOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const CreateNotebookCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: CreateNotebookCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
CreateNotebookCommandInput,
|
|
20
|
+
CreateNotebookCommandOutput,
|
|
21
|
+
DataZoneClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: CreateNotebookCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
CreateNotebookCommandInput,
|
|
29
|
+
CreateNotebookCommandOutput,
|
|
30
|
+
DataZoneClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class CreateNotebookCommand extends CreateNotebookCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: CreateNotebookInput;
|
|
42
|
+
output: CreateNotebookOutput;
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: CreateNotebookCommandInput;
|
|
46
|
+
output: CreateNotebookCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
CreateSubscriptionGrantOutput,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { CreateSubscriptionGrantInput } from "../models/models_0";
|
|
9
|
+
import { CreateSubscriptionGrantOutput } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface CreateSubscriptionGrantCommandInput
|