@aws-sdk/client-datazone 3.1046.0 → 3.1048.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/README.md +56 -0
  2. package/dist-cjs/endpoint/endpointResolver.js +2 -2
  3. package/dist-cjs/index.js +143 -15
  4. package/dist-cjs/runtimeConfig.browser.js +5 -5
  5. package/dist-cjs/runtimeConfig.js +2 -3
  6. package/dist-cjs/schemas/schemas_0.js +225 -43
  7. package/dist-es/DataZone.js +18 -0
  8. package/dist-es/DataZoneClient.js +1 -4
  9. package/dist-es/commands/CreateNotebookCommand.js +16 -0
  10. package/dist-es/commands/DeleteNotebookCommand.js +16 -0
  11. package/dist-es/commands/GetNotebookCommand.js +16 -0
  12. package/dist-es/commands/GetNotebookExportCommand.js +16 -0
  13. package/dist-es/commands/ListNotebooksCommand.js +16 -0
  14. package/dist-es/commands/StartNotebookExportCommand.js +16 -0
  15. package/dist-es/commands/StartNotebookImportCommand.js +16 -0
  16. package/dist-es/commands/UpdateNotebookCommand.js +16 -0
  17. package/dist-es/commands/index.js +8 -0
  18. package/dist-es/endpoint/endpointResolver.js +1 -1
  19. package/dist-es/models/enums.js +15 -2
  20. package/dist-es/pagination/ListNotebooksPaginator.js +4 -0
  21. package/dist-es/pagination/index.js +1 -0
  22. package/dist-es/runtimeConfig.browser.js +1 -1
  23. package/dist-es/runtimeConfig.js +1 -2
  24. package/dist-es/runtimeExtensions.js +1 -1
  25. package/dist-es/schemas/schemas_0.js +209 -27
  26. package/dist-types/DataZone.d.ts +63 -0
  27. package/dist-types/DataZoneClient.d.ts +11 -4
  28. package/dist-types/commands/CreateNotebookCommand.d.ts +142 -0
  29. package/dist-types/commands/CreateSubscriptionGrantCommand.d.ts +2 -1
  30. package/dist-types/commands/DeleteNotebookCommand.d.ts +93 -0
  31. package/dist-types/commands/GetNotebookCommand.d.ts +127 -0
  32. package/dist-types/commands/GetNotebookExportCommand.d.ts +111 -0
  33. package/dist-types/commands/GetNotebookRunCommand.d.ts +1 -1
  34. package/dist-types/commands/ListNotebookRunsCommand.d.ts +1 -1
  35. package/dist-types/commands/ListNotebooksCommand.d.ts +111 -0
  36. package/dist-types/commands/PostTimeSeriesDataPointsCommand.d.ts +1 -1
  37. package/dist-types/commands/PutDataExportConfigurationCommand.d.ts +1 -1
  38. package/dist-types/commands/QueryGraphCommand.d.ts +1 -2
  39. package/dist-types/commands/RejectPredictionsCommand.d.ts +1 -1
  40. package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +1 -1
  41. package/dist-types/commands/RemoveEntityOwnerCommand.d.ts +1 -1
  42. package/dist-types/commands/RemovePolicyGrantCommand.d.ts +1 -2
  43. package/dist-types/commands/StartNotebookExportCommand.d.ts +111 -0
  44. package/dist-types/commands/StartNotebookImportCommand.d.ts +117 -0
  45. package/dist-types/commands/StartNotebookRunCommand.d.ts +1 -1
  46. package/dist-types/commands/StopNotebookRunCommand.d.ts +1 -1
  47. package/dist-types/commands/UpdateNotebookCommand.d.ts +150 -0
  48. package/dist-types/commands/index.d.ts +8 -0
  49. package/dist-types/models/enums.d.ts +62 -4
  50. package/dist-types/models/models_0.d.ts +186 -136
  51. package/dist-types/models/models_1.d.ts +695 -537
  52. package/dist-types/models/models_2.d.ts +670 -3
  53. package/dist-types/pagination/ListNotebooksPaginator.d.ts +7 -0
  54. package/dist-types/pagination/index.d.ts +1 -0
  55. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  56. package/dist-types/runtimeConfig.d.ts +1 -1
  57. package/dist-types/runtimeConfig.native.d.ts +1 -1
  58. package/dist-types/schemas/schemas_0.d.ts +30 -0
  59. package/dist-types/ts3.4/DataZone.d.ts +143 -0
  60. package/dist-types/ts3.4/DataZoneClient.d.ts +49 -3
  61. package/dist-types/ts3.4/commands/CreateNotebookCommand.d.ts +49 -0
  62. package/dist-types/ts3.4/commands/CreateSubscriptionGrantCommand.d.ts +2 -4
  63. package/dist-types/ts3.4/commands/DeleteNotebookCommand.d.ts +49 -0
  64. package/dist-types/ts3.4/commands/GetNotebookCommand.d.ts +49 -0
  65. package/dist-types/ts3.4/commands/GetNotebookExportCommand.d.ts +52 -0
  66. package/dist-types/ts3.4/commands/ListNotebooksCommand.d.ts +49 -0
  67. package/dist-types/ts3.4/commands/PostTimeSeriesDataPointsCommand.d.ts +1 -1
  68. package/dist-types/ts3.4/commands/PutDataExportConfigurationCommand.d.ts +1 -1
  69. package/dist-types/ts3.4/commands/QueryGraphCommand.d.ts +1 -2
  70. package/dist-types/ts3.4/commands/RejectPredictionsCommand.d.ts +1 -1
  71. package/dist-types/ts3.4/commands/RejectSubscriptionRequestCommand.d.ts +1 -1
  72. package/dist-types/ts3.4/commands/RemoveEntityOwnerCommand.d.ts +1 -1
  73. package/dist-types/ts3.4/commands/RemovePolicyGrantCommand.d.ts +4 -2
  74. package/dist-types/ts3.4/commands/StartNotebookExportCommand.d.ts +53 -0
  75. package/dist-types/ts3.4/commands/StartNotebookImportCommand.d.ts +53 -0
  76. package/dist-types/ts3.4/commands/UpdateNotebookCommand.d.ts +49 -0
  77. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  78. package/dist-types/ts3.4/models/enums.d.ts +22 -4
  79. package/dist-types/ts3.4/models/models_0.d.ts +43 -41
  80. package/dist-types/ts3.4/models/models_1.d.ts +189 -151
  81. package/dist-types/ts3.4/models/models_2.d.ts +185 -3
  82. package/dist-types/ts3.4/pagination/ListNotebooksPaginator.d.ts +11 -0
  83. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  84. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  85. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  86. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  87. package/dist-types/ts3.4/schemas/schemas_0.d.ts +30 -0
  88. package/package.json +6 -14
@@ -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 { DeleteNotebookInput, DeleteNotebookOutput } from "../models/models_1";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteNotebookCommandInput extends DeleteNotebookInput {}
12
+ export interface DeleteNotebookCommandOutput
13
+ extends DeleteNotebookOutput,
14
+ __MetadataBearer {}
15
+ declare const DeleteNotebookCommand_base: {
16
+ new (
17
+ input: DeleteNotebookCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ DeleteNotebookCommandInput,
20
+ DeleteNotebookCommandOutput,
21
+ DataZoneClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: DeleteNotebookCommandInput
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ DeleteNotebookCommandInput,
29
+ DeleteNotebookCommandOutput,
30
+ DataZoneClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
37
+ };
38
+ export declare class DeleteNotebookCommand extends DeleteNotebookCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: DeleteNotebookInput;
42
+ output: {};
43
+ };
44
+ sdk: {
45
+ input: DeleteNotebookCommandInput;
46
+ output: DeleteNotebookCommandOutput;
47
+ };
48
+ };
49
+ }
@@ -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 { GetNotebookInput, GetNotebookOutput } from "../models/models_1";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetNotebookCommandInput extends GetNotebookInput {}
12
+ export interface GetNotebookCommandOutput
13
+ extends GetNotebookOutput,
14
+ __MetadataBearer {}
15
+ declare const GetNotebookCommand_base: {
16
+ new (
17
+ input: GetNotebookCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ GetNotebookCommandInput,
20
+ GetNotebookCommandOutput,
21
+ DataZoneClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetNotebookCommandInput
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ GetNotebookCommandInput,
29
+ GetNotebookCommandOutput,
30
+ DataZoneClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
37
+ };
38
+ export declare class GetNotebookCommand extends GetNotebookCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: GetNotebookInput;
42
+ output: GetNotebookOutput;
43
+ };
44
+ sdk: {
45
+ input: GetNotebookCommandInput;
46
+ output: GetNotebookCommandOutput;
47
+ };
48
+ };
49
+ }
@@ -0,0 +1,52 @@
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 {
9
+ GetNotebookExportInput,
10
+ GetNotebookExportOutput,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetNotebookExportCommandInput extends GetNotebookExportInput {}
15
+ export interface GetNotebookExportCommandOutput
16
+ extends GetNotebookExportOutput,
17
+ __MetadataBearer {}
18
+ declare const GetNotebookExportCommand_base: {
19
+ new (
20
+ input: GetNotebookExportCommandInput
21
+ ): import("@smithy/core/client").CommandImpl<
22
+ GetNotebookExportCommandInput,
23
+ GetNotebookExportCommandOutput,
24
+ DataZoneClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: GetNotebookExportCommandInput
30
+ ): import("@smithy/core/client").CommandImpl<
31
+ GetNotebookExportCommandInput,
32
+ GetNotebookExportCommandOutput,
33
+ DataZoneClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): {
38
+ [x: string]: unknown;
39
+ };
40
+ };
41
+ export declare class GetNotebookExportCommand extends GetNotebookExportCommand_base {
42
+ protected static __types: {
43
+ api: {
44
+ input: GetNotebookExportInput;
45
+ output: GetNotebookExportOutput;
46
+ };
47
+ sdk: {
48
+ input: GetNotebookExportCommandInput;
49
+ output: GetNotebookExportCommandOutput;
50
+ };
51
+ };
52
+ }
@@ -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 { ListNotebooksInput, ListNotebooksOutput } from "../models/models_1";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListNotebooksCommandInput extends ListNotebooksInput {}
12
+ export interface ListNotebooksCommandOutput
13
+ extends ListNotebooksOutput,
14
+ __MetadataBearer {}
15
+ declare const ListNotebooksCommand_base: {
16
+ new (
17
+ input: ListNotebooksCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ ListNotebooksCommandInput,
20
+ ListNotebooksCommandOutput,
21
+ DataZoneClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: ListNotebooksCommandInput
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ ListNotebooksCommandInput,
29
+ ListNotebooksCommandOutput,
30
+ DataZoneClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
37
+ };
38
+ export declare class ListNotebooksCommand extends ListNotebooksCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: ListNotebooksInput;
42
+ output: ListNotebooksOutput;
43
+ };
44
+ sdk: {
45
+ input: ListNotebooksCommandInput;
46
+ output: ListNotebooksCommandOutput;
47
+ };
48
+ };
49
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  PostTimeSeriesDataPointsInput,
10
10
  PostTimeSeriesDataPointsOutput,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface PostTimeSeriesDataPointsCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  PutDataExportConfigurationInput,
10
10
  PutDataExportConfigurationOutput,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface PutDataExportConfigurationCommandInput
@@ -5,8 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../DataZoneClient";
8
- import { QueryGraphOutput } from "../models/models_1";
9
- import { QueryGraphInput } from "../models/models_2";
8
+ import { QueryGraphInput, QueryGraphOutput } from "../models/models_2";
10
9
  export { __MetadataBearer };
11
10
  export { $Command };
12
11
  export interface QueryGraphCommandInput extends QueryGraphInput {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  RejectPredictionsInput,
10
10
  RejectPredictionsOutput,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface RejectPredictionsCommandInput extends RejectPredictionsInput {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  RejectSubscriptionRequestInput,
10
10
  RejectSubscriptionRequestOutput,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface RejectSubscriptionRequestCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  RemoveEntityOwnerInput,
10
10
  RemoveEntityOwnerOutput,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface RemoveEntityOwnerCommandInput extends RemoveEntityOwnerInput {}
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../DataZoneClient";
8
- import { RemovePolicyGrantInput } from "../models/models_1";
9
- import { RemovePolicyGrantOutput } from "../models/models_2";
8
+ import {
9
+ RemovePolicyGrantInput,
10
+ RemovePolicyGrantOutput,
11
+ } from "../models/models_2";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface RemovePolicyGrantCommandInput extends RemovePolicyGrantInput {}
@@ -0,0 +1,53 @@
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 {
9
+ StartNotebookExportInput,
10
+ StartNotebookExportOutput,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface StartNotebookExportCommandInput
15
+ extends StartNotebookExportInput {}
16
+ export interface StartNotebookExportCommandOutput
17
+ extends StartNotebookExportOutput,
18
+ __MetadataBearer {}
19
+ declare const StartNotebookExportCommand_base: {
20
+ new (
21
+ input: StartNotebookExportCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ StartNotebookExportCommandInput,
24
+ StartNotebookExportCommandOutput,
25
+ DataZoneClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: StartNotebookExportCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ StartNotebookExportCommandInput,
33
+ StartNotebookExportCommandOutput,
34
+ DataZoneClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class StartNotebookExportCommand extends StartNotebookExportCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: StartNotebookExportInput;
46
+ output: StartNotebookExportOutput;
47
+ };
48
+ sdk: {
49
+ input: StartNotebookExportCommandInput;
50
+ output: StartNotebookExportCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -0,0 +1,53 @@
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 {
9
+ StartNotebookImportInput,
10
+ StartNotebookImportOutput,
11
+ } from "../models/models_2";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface StartNotebookImportCommandInput
15
+ extends StartNotebookImportInput {}
16
+ export interface StartNotebookImportCommandOutput
17
+ extends StartNotebookImportOutput,
18
+ __MetadataBearer {}
19
+ declare const StartNotebookImportCommand_base: {
20
+ new (
21
+ input: StartNotebookImportCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ StartNotebookImportCommandInput,
24
+ StartNotebookImportCommandOutput,
25
+ DataZoneClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: StartNotebookImportCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ StartNotebookImportCommandInput,
33
+ StartNotebookImportCommandOutput,
34
+ DataZoneClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class StartNotebookImportCommand extends StartNotebookImportCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: StartNotebookImportInput;
46
+ output: StartNotebookImportOutput;
47
+ };
48
+ sdk: {
49
+ input: StartNotebookImportCommandInput;
50
+ output: StartNotebookImportCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -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 { UpdateNotebookInput, UpdateNotebookOutput } from "../models/models_1";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UpdateNotebookCommandInput extends UpdateNotebookInput {}
12
+ export interface UpdateNotebookCommandOutput
13
+ extends UpdateNotebookOutput,
14
+ __MetadataBearer {}
15
+ declare const UpdateNotebookCommand_base: {
16
+ new (
17
+ input: UpdateNotebookCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ UpdateNotebookCommandInput,
20
+ UpdateNotebookCommandOutput,
21
+ DataZoneClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: UpdateNotebookCommandInput
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ UpdateNotebookCommandInput,
29
+ UpdateNotebookCommandOutput,
30
+ DataZoneClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
37
+ };
38
+ export declare class UpdateNotebookCommand extends UpdateNotebookCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: UpdateNotebookInput;
42
+ output: UpdateNotebookOutput;
43
+ };
44
+ sdk: {
45
+ input: UpdateNotebookCommandInput;
46
+ output: UpdateNotebookCommandOutput;
47
+ };
48
+ };
49
+ }
@@ -28,6 +28,7 @@ export * from "./CreateGlossaryCommand";
28
28
  export * from "./CreateGlossaryTermCommand";
29
29
  export * from "./CreateGroupProfileCommand";
30
30
  export * from "./CreateListingChangeSetCommand";
31
+ export * from "./CreateNotebookCommand";
31
32
  export * from "./CreateProjectCommand";
32
33
  export * from "./CreateProjectMembershipCommand";
33
34
  export * from "./CreateProjectProfileCommand";
@@ -55,6 +56,7 @@ export * from "./DeleteFormTypeCommand";
55
56
  export * from "./DeleteGlossaryCommand";
56
57
  export * from "./DeleteGlossaryTermCommand";
57
58
  export * from "./DeleteListingCommand";
59
+ export * from "./DeleteNotebookCommand";
58
60
  export * from "./DeleteProjectCommand";
59
61
  export * from "./DeleteProjectMembershipCommand";
60
62
  export * from "./DeleteProjectProfileCommand";
@@ -92,6 +94,8 @@ export * from "./GetLineageEventCommand";
92
94
  export * from "./GetLineageNodeCommand";
93
95
  export * from "./GetListingCommand";
94
96
  export * from "./GetMetadataGenerationRunCommand";
97
+ export * from "./GetNotebookCommand";
98
+ export * from "./GetNotebookExportCommand";
95
99
  export * from "./GetNotebookRunCommand";
96
100
  export * from "./GetProjectCommand";
97
101
  export * from "./GetProjectProfileCommand";
@@ -124,6 +128,7 @@ export * from "./ListLineageEventsCommand";
124
128
  export * from "./ListLineageNodeHistoryCommand";
125
129
  export * from "./ListMetadataGenerationRunsCommand";
126
130
  export * from "./ListNotebookRunsCommand";
131
+ export * from "./ListNotebooksCommand";
127
132
  export * from "./ListNotificationsCommand";
128
133
  export * from "./ListPolicyGrantsCommand";
129
134
  export * from "./ListProjectMembershipsCommand";
@@ -153,6 +158,8 @@ export * from "./SearchTypesCommand";
153
158
  export * from "./SearchUserProfilesCommand";
154
159
  export * from "./StartDataSourceRunCommand";
155
160
  export * from "./StartMetadataGenerationRunCommand";
161
+ export * from "./StartNotebookExportCommand";
162
+ export * from "./StartNotebookImportCommand";
156
163
  export * from "./StartNotebookRunCommand";
157
164
  export * from "./StopNotebookRunCommand";
158
165
  export * from "./TagResourceCommand";
@@ -170,6 +177,7 @@ export * from "./UpdateEnvironmentProfileCommand";
170
177
  export * from "./UpdateGlossaryCommand";
171
178
  export * from "./UpdateGlossaryTermCommand";
172
179
  export * from "./UpdateGroupProfileCommand";
180
+ export * from "./UpdateNotebookCommand";
173
181
  export * from "./UpdateProjectCommand";
174
182
  export * from "./UpdateProjectProfileCommand";
175
183
  export * from "./UpdateRootDomainUnitOwnerCommand";
@@ -433,6 +433,17 @@ export declare const EntityType: {
433
433
  readonly DATA_PRODUCT: "DATA_PRODUCT";
434
434
  };
435
435
  export type EntityType = (typeof EntityType)[keyof typeof EntityType];
436
+ export declare const PackageManager: {
437
+ readonly UV: "UV";
438
+ };
439
+ export type PackageManager =
440
+ (typeof PackageManager)[keyof typeof PackageManager];
441
+ export declare const NotebookStatus: {
442
+ readonly ACTIVE: "ACTIVE";
443
+ readonly ARCHIVED: "ARCHIVED";
444
+ };
445
+ export type NotebookStatus =
446
+ (typeof NotebookStatus)[keyof typeof NotebookStatus];
436
447
  export declare const UserDesignation: {
437
448
  readonly PROJECT_CATALOG_CONSUMER: "PROJECT_CATALOG_CONSUMER";
438
449
  readonly PROJECT_CATALOG_STEWARD: "PROJECT_CATALOG_STEWARD";
@@ -700,11 +711,18 @@ export declare const MetadataGenerationTargetType: {
700
711
  };
701
712
  export type MetadataGenerationTargetType =
702
713
  (typeof MetadataGenerationTargetType)[keyof typeof MetadataGenerationTargetType];
703
- export declare const PackageManager: {
704
- readonly UV: "UV";
714
+ export declare const FileFormat: {
715
+ readonly IPYNB: "IPYNB";
716
+ readonly PDF: "PDF";
705
717
  };
706
- export type PackageManager =
707
- (typeof PackageManager)[keyof typeof PackageManager];
718
+ export type FileFormat = (typeof FileFormat)[keyof typeof FileFormat];
719
+ export declare const NotebookExportStatus: {
720
+ readonly FAILED: "FAILED";
721
+ readonly IN_PROGRESS: "IN_PROGRESS";
722
+ readonly SUCCEEDED: "SUCCEEDED";
723
+ };
724
+ export type NotebookExportStatus =
725
+ (typeof NotebookExportStatus)[keyof typeof NotebookExportStatus];
708
726
  export declare const NetworkAccessType: {
709
727
  readonly PUBLIC_INTERNET_ONLY: "PUBLIC_INTERNET_ONLY";
710
728
  readonly VPC_ONLY: "VPC_ONLY";
@@ -37,8 +37,10 @@ import {
37
37
  HyperPodOrchestrator,
38
38
  ListingStatus,
39
39
  ManagedPolicyType,
40
+ NotebookStatus,
40
41
  OAuth2GrantType,
41
42
  OverallDeploymentStatus,
43
+ PackageManager,
42
44
  ProjectDesignation,
43
45
  ProjectStatus,
44
46
  Protocol,
@@ -50,7 +52,6 @@ import {
50
52
  RuleType,
51
53
  S3Permission,
52
54
  Status,
53
- SubscriptionGrantOverallStatus,
54
55
  SubscriptionGrantStatus,
55
56
  SubscriptionRequestStatus,
56
57
  SubscriptionStatus,
@@ -3301,6 +3302,47 @@ export interface CreateListingChangeSetOutput {
3301
3302
  listingRevision: string | undefined;
3302
3303
  status: ListingStatus | undefined;
3303
3304
  }
3305
+ export interface CreateNotebookInput {
3306
+ domainIdentifier: string | undefined;
3307
+ owningProjectIdentifier: string | undefined;
3308
+ name: string | undefined;
3309
+ description?: string | undefined;
3310
+ metadata?: Record<string, string> | undefined;
3311
+ parameters?: Record<string, string> | undefined;
3312
+ clientToken?: string | undefined;
3313
+ }
3314
+ export interface PackageConfig {
3315
+ packageManager: PackageManager | undefined;
3316
+ packageSpecification?: string | undefined;
3317
+ }
3318
+ export interface EnvironmentConfig {
3319
+ imageVersion?: string | undefined;
3320
+ packageConfig?: PackageConfig | undefined;
3321
+ }
3322
+ export interface NotebookError {
3323
+ message: string | undefined;
3324
+ }
3325
+ export interface CreateNotebookOutput {
3326
+ id: string | undefined;
3327
+ name: string | undefined;
3328
+ owningProjectId: string | undefined;
3329
+ domainId: string | undefined;
3330
+ cellOrder: CellInformation[] | undefined;
3331
+ status: NotebookStatus | undefined;
3332
+ description?: string | undefined;
3333
+ createdAt?: Date | undefined;
3334
+ createdBy?: string | undefined;
3335
+ updatedAt?: Date | undefined;
3336
+ updatedBy?: string | undefined;
3337
+ lockedBy?: string | undefined;
3338
+ lockedAt?: Date | undefined;
3339
+ lockExpiresAt?: Date | undefined;
3340
+ computeId?: string | undefined;
3341
+ metadata?: Record<string, string> | undefined;
3342
+ parameters?: Record<string, string> | undefined;
3343
+ environmentConfiguration?: EnvironmentConfig | undefined;
3344
+ error?: NotebookError | undefined;
3345
+ }
3304
3346
  export type Member =
3305
3347
  | Member.GroupIdentifierMember
3306
3348
  | Member.UserIdentifierMember
@@ -3610,43 +3652,3 @@ export interface ListingRevision {
3610
3652
  id: string | undefined;
3611
3653
  revision: string | undefined;
3612
3654
  }
3613
- export type GrantedEntity =
3614
- | GrantedEntity.ListingMember
3615
- | GrantedEntity.$UnknownMember;
3616
- export declare namespace GrantedEntity {
3617
- interface ListingMember {
3618
- listing: ListingRevision;
3619
- $unknown?: never;
3620
- }
3621
- interface $UnknownMember {
3622
- listing?: never;
3623
- $unknown: [string, any];
3624
- }
3625
- interface Visitor<T> {
3626
- listing: (value: ListingRevision) => T;
3627
- _: (name: string, value: any) => T;
3628
- }
3629
- }
3630
- export interface CreateSubscriptionGrantOutput {
3631
- id: string | undefined;
3632
- createdBy: string | undefined;
3633
- updatedBy?: string | undefined;
3634
- domainId: string | undefined;
3635
- createdAt: Date | undefined;
3636
- updatedAt: Date | undefined;
3637
- environmentId?: string | undefined;
3638
- subscriptionTargetId: string | undefined;
3639
- grantedEntity: GrantedEntity | undefined;
3640
- status: SubscriptionGrantOverallStatus | undefined;
3641
- assets?: SubscribedAsset[] | undefined;
3642
- subscriptionId?: string | undefined;
3643
- }
3644
- export interface SubscribedListingInput {
3645
- identifier: string | undefined;
3646
- }
3647
- export interface SubscribedGroupInput {
3648
- identifier?: string | undefined;
3649
- }
3650
- export interface SubscribedIamPrincipalInput {
3651
- identifier?: string | undefined;
3652
- }