@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,117 @@
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 { StartNotebookImportInput, StartNotebookImportOutput } from "../models/models_2";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link StartNotebookImportCommand}.
14
+ */
15
+ export interface StartNotebookImportCommandInput extends StartNotebookImportInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link StartNotebookImportCommand}.
21
+ */
22
+ export interface StartNotebookImportCommandOutput extends StartNotebookImportOutput, __MetadataBearer {
23
+ }
24
+ declare const StartNotebookImportCommand_base: {
25
+ new (input: StartNotebookImportCommandInput): import("@smithy/core/client").CommandImpl<StartNotebookImportCommandInput, StartNotebookImportCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: StartNotebookImportCommandInput): import("@smithy/core/client").CommandImpl<StartNotebookImportCommandInput, StartNotebookImportCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Starts a notebook import in Amazon SageMaker Unified Studio. This operation imports a notebook from an Amazon Simple Storage Service location into a project.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { DataZoneClient, StartNotebookImportCommand } from "@aws-sdk/client-datazone"; // ES Modules import
37
+ * // const { DataZoneClient, StartNotebookImportCommand } = 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 = { // StartNotebookImportInput
42
+ * domainIdentifier: "STRING_VALUE", // required
43
+ * owningProjectIdentifier: "STRING_VALUE", // required
44
+ * sourceLocation: { // SourceLocation Union: only one key present
45
+ * s3: "STRING_VALUE",
46
+ * },
47
+ * name: "STRING_VALUE", // required
48
+ * description: "STRING_VALUE",
49
+ * clientToken: "STRING_VALUE",
50
+ * };
51
+ * const command = new StartNotebookImportCommand(input);
52
+ * const response = await client.send(command);
53
+ * // { // StartNotebookImportOutput
54
+ * // notebookId: "STRING_VALUE",
55
+ * // status: "ACTIVE" || "ARCHIVED",
56
+ * // domainId: "STRING_VALUE",
57
+ * // owningProjectId: "STRING_VALUE",
58
+ * // name: "STRING_VALUE",
59
+ * // description: "STRING_VALUE",
60
+ * // sourceLocation: { // SourceLocation Union: only one key present
61
+ * // s3: "STRING_VALUE",
62
+ * // },
63
+ * // createdAt: new Date("TIMESTAMP"),
64
+ * // createdBy: "STRING_VALUE",
65
+ * // };
66
+ *
67
+ * ```
68
+ *
69
+ * @param StartNotebookImportCommandInput - {@link StartNotebookImportCommandInput}
70
+ * @returns {@link StartNotebookImportCommandOutput}
71
+ * @see {@link StartNotebookImportCommandInput} for command's `input` shape.
72
+ * @see {@link StartNotebookImportCommandOutput} for command's `response` shape.
73
+ * @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
74
+ *
75
+ * @throws {@link AccessDeniedException} (client fault)
76
+ * <p>You do not have sufficient access to perform this action.</p>
77
+ *
78
+ * @throws {@link ConflictException} (client fault)
79
+ * <p>There is a conflict while performing this action.</p>
80
+ *
81
+ * @throws {@link InternalServerException} (server fault)
82
+ * <p>The request has failed because of an unknown error, exception or failure.</p>
83
+ *
84
+ * @throws {@link ResourceNotFoundException} (client fault)
85
+ * <p>The specified resource cannot be found.</p>
86
+ *
87
+ * @throws {@link ServiceQuotaExceededException} (client fault)
88
+ * <p>The request has exceeded the specified service quota.</p>
89
+ *
90
+ * @throws {@link ThrottlingException} (client fault)
91
+ * <p>The request was denied due to request throttling.</p>
92
+ *
93
+ * @throws {@link ValidationException} (client fault)
94
+ * <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
95
+ *
96
+ * @throws {@link UnauthorizedException} (client fault)
97
+ * <p>You do not have permission to perform this action.</p>
98
+ *
99
+ * @throws {@link DataZoneServiceException}
100
+ * <p>Base exception class for all service exceptions from DataZone service.</p>
101
+ *
102
+ *
103
+ * @public
104
+ */
105
+ export declare class StartNotebookImportCommand extends StartNotebookImportCommand_base {
106
+ /** @internal type navigation helper, not in runtime. */
107
+ protected static __types: {
108
+ api: {
109
+ input: StartNotebookImportInput;
110
+ output: StartNotebookImportOutput;
111
+ };
112
+ sdk: {
113
+ input: StartNotebookImportCommandInput;
114
+ output: StartNotebookImportCommandOutput;
115
+ };
116
+ };
117
+ }
@@ -29,7 +29,7 @@ declare const StartNotebookRunCommand_base: {
29
29
  };
30
30
  };
31
31
  /**
32
- * <p>Starts a notebook run in an Amazon DataZone domain. A notebook run represents the execution of a Amazon DataZone notebook within a project. You can configure compute, network, timeout, and environment settings for the run.</p>
32
+ * <p>Starts a notebook run in Amazon SageMaker Unified Studio. A notebook run represents the execution of an <a href="https://docs.aws.amazon.com/sagemaker-unified-studio/latest/userguide/notebooks.html">Amazon SageMaker notebook</a> within a project. You can configure compute, network, timeout, and environment settings for the run.</p>
33
33
  * @example
34
34
  * Use a bare-bones client and the command you need to make an API call.
35
35
  * ```javascript
@@ -29,7 +29,7 @@ declare const StopNotebookRunCommand_base: {
29
29
  };
30
30
  };
31
31
  /**
32
- * <p>Stops a running notebook run in an Amazon DataZone domain.</p>
32
+ * <p>Stops a running <a href="https://docs.aws.amazon.com/sagemaker-unified-studio/latest/userguide/notebooks.html">notebook run</a> in Amazon SageMaker Unified Studio.</p>
33
33
  * @example
34
34
  * Use a bare-bones client and the command you need to make an API call.
35
35
  * ```javascript
@@ -0,0 +1,150 @@
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 { UpdateNotebookInput, UpdateNotebookOutput } from "../models/models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateNotebookCommand}.
14
+ */
15
+ export interface UpdateNotebookCommandInput extends UpdateNotebookInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateNotebookCommand}.
21
+ */
22
+ export interface UpdateNotebookCommandOutput extends UpdateNotebookOutput, __MetadataBearer {
23
+ }
24
+ declare const UpdateNotebookCommand_base: {
25
+ new (input: UpdateNotebookCommandInput): import("@smithy/core/client").CommandImpl<UpdateNotebookCommandInput, UpdateNotebookCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdateNotebookCommandInput): import("@smithy/core/client").CommandImpl<UpdateNotebookCommandInput, UpdateNotebookCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Updates 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, UpdateNotebookCommand } from "@aws-sdk/client-datazone"; // ES Modules import
37
+ * // const { DataZoneClient, UpdateNotebookCommand } = 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 = { // UpdateNotebookInput
42
+ * domainIdentifier: "STRING_VALUE", // required
43
+ * identifier: "STRING_VALUE", // required
44
+ * description: "STRING_VALUE",
45
+ * status: "ACTIVE" || "ARCHIVED",
46
+ * name: "STRING_VALUE",
47
+ * cellOrder: [ // CellOrder
48
+ * {},
49
+ * ],
50
+ * metadata: { // Metadata
51
+ * "<keys>": "STRING_VALUE",
52
+ * },
53
+ * parameters: { // Parameters
54
+ * "<keys>": "STRING_VALUE",
55
+ * },
56
+ * environmentConfiguration: { // EnvironmentConfig
57
+ * imageVersion: "STRING_VALUE",
58
+ * packageConfig: { // PackageConfig
59
+ * packageManager: "UV", // required
60
+ * packageSpecification: "STRING_VALUE",
61
+ * },
62
+ * },
63
+ * clientToken: "STRING_VALUE",
64
+ * };
65
+ * const command = new UpdateNotebookCommand(input);
66
+ * const response = await client.send(command);
67
+ * // { // UpdateNotebookOutput
68
+ * // id: "STRING_VALUE", // required
69
+ * // name: "STRING_VALUE", // required
70
+ * // owningProjectId: "STRING_VALUE", // required
71
+ * // domainId: "STRING_VALUE", // required
72
+ * // cellOrder: [ // CellOrder // required
73
+ * // {},
74
+ * // ],
75
+ * // status: "ACTIVE" || "ARCHIVED", // required
76
+ * // description: "STRING_VALUE",
77
+ * // createdAt: new Date("TIMESTAMP"),
78
+ * // createdBy: "STRING_VALUE",
79
+ * // updatedAt: new Date("TIMESTAMP"),
80
+ * // updatedBy: "STRING_VALUE",
81
+ * // lockedBy: "STRING_VALUE",
82
+ * // lockedAt: new Date("TIMESTAMP"),
83
+ * // lockExpiresAt: new Date("TIMESTAMP"),
84
+ * // computeId: "STRING_VALUE",
85
+ * // metadata: { // Metadata
86
+ * // "<keys>": "STRING_VALUE",
87
+ * // },
88
+ * // parameters: { // Parameters
89
+ * // "<keys>": "STRING_VALUE",
90
+ * // },
91
+ * // environmentConfiguration: { // EnvironmentConfig
92
+ * // imageVersion: "STRING_VALUE",
93
+ * // packageConfig: { // PackageConfig
94
+ * // packageManager: "UV", // required
95
+ * // packageSpecification: "STRING_VALUE",
96
+ * // },
97
+ * // },
98
+ * // error: { // NotebookError
99
+ * // message: "STRING_VALUE", // required
100
+ * // },
101
+ * // };
102
+ *
103
+ * ```
104
+ *
105
+ * @param UpdateNotebookCommandInput - {@link UpdateNotebookCommandInput}
106
+ * @returns {@link UpdateNotebookCommandOutput}
107
+ * @see {@link UpdateNotebookCommandInput} for command's `input` shape.
108
+ * @see {@link UpdateNotebookCommandOutput} for command's `response` shape.
109
+ * @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
110
+ *
111
+ * @throws {@link AccessDeniedException} (client fault)
112
+ * <p>You do not have sufficient access to perform this action.</p>
113
+ *
114
+ * @throws {@link ConflictException} (client fault)
115
+ * <p>There is a conflict while performing this action.</p>
116
+ *
117
+ * @throws {@link InternalServerException} (server fault)
118
+ * <p>The request has failed because of an unknown error, exception or failure.</p>
119
+ *
120
+ * @throws {@link ResourceNotFoundException} (client fault)
121
+ * <p>The specified resource cannot be found.</p>
122
+ *
123
+ * @throws {@link ThrottlingException} (client fault)
124
+ * <p>The request was denied due to request throttling.</p>
125
+ *
126
+ * @throws {@link ValidationException} (client fault)
127
+ * <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
128
+ *
129
+ * @throws {@link UnauthorizedException} (client fault)
130
+ * <p>You do not have permission to perform this action.</p>
131
+ *
132
+ * @throws {@link DataZoneServiceException}
133
+ * <p>Base exception class for all service exceptions from DataZone service.</p>
134
+ *
135
+ *
136
+ * @public
137
+ */
138
+ export declare class UpdateNotebookCommand extends UpdateNotebookCommand_base {
139
+ /** @internal type navigation helper, not in runtime. */
140
+ protected static __types: {
141
+ api: {
142
+ input: UpdateNotebookInput;
143
+ output: UpdateNotebookOutput;
144
+ };
145
+ sdk: {
146
+ input: UpdateNotebookCommandInput;
147
+ output: UpdateNotebookCommandOutput;
148
+ };
149
+ };
150
+ }
@@ -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";
@@ -738,6 +738,38 @@ export declare const EntityType: {
738
738
  * @public
739
739
  */
740
740
  export type EntityType = (typeof EntityType)[keyof typeof EntityType];
741
+ /**
742
+ * @public
743
+ * @enum
744
+ */
745
+ export declare const PackageManager: {
746
+ /**
747
+ * <p>The UV package manager.</p>
748
+ */
749
+ readonly UV: "UV";
750
+ };
751
+ /**
752
+ * @public
753
+ */
754
+ export type PackageManager = (typeof PackageManager)[keyof typeof PackageManager];
755
+ /**
756
+ * @public
757
+ * @enum
758
+ */
759
+ export declare const NotebookStatus: {
760
+ /**
761
+ * <p>The notebook is active.</p>
762
+ */
763
+ readonly ACTIVE: "ACTIVE";
764
+ /**
765
+ * <p>The notebook is archived.</p>
766
+ */
767
+ readonly ARCHIVED: "ARCHIVED";
768
+ };
769
+ /**
770
+ * @public
771
+ */
772
+ export type NotebookStatus = (typeof NotebookStatus)[keyof typeof NotebookStatus];
741
773
  /**
742
774
  * @public
743
775
  * @enum
@@ -1249,16 +1281,42 @@ export type MetadataGenerationTargetType = (typeof MetadataGenerationTargetType)
1249
1281
  * @public
1250
1282
  * @enum
1251
1283
  */
1252
- export declare const PackageManager: {
1284
+ export declare const FileFormat: {
1253
1285
  /**
1254
- * <p>The UV package manager.</p>
1286
+ * <p>Export the notebook as a Jupyter notebook (.ipynb) file.</p>
1255
1287
  */
1256
- readonly UV: "UV";
1288
+ readonly IPYNB: "IPYNB";
1289
+ /**
1290
+ * <p>Export the notebook as a PDF file.</p>
1291
+ */
1292
+ readonly PDF: "PDF";
1257
1293
  };
1258
1294
  /**
1259
1295
  * @public
1260
1296
  */
1261
- export type PackageManager = (typeof PackageManager)[keyof typeof PackageManager];
1297
+ export type FileFormat = (typeof FileFormat)[keyof typeof FileFormat];
1298
+ /**
1299
+ * @public
1300
+ * @enum
1301
+ */
1302
+ export declare const NotebookExportStatus: {
1303
+ /**
1304
+ * <p>The notebook export failed.</p>
1305
+ */
1306
+ readonly FAILED: "FAILED";
1307
+ /**
1308
+ * <p>The notebook export is in progress.</p>
1309
+ */
1310
+ readonly IN_PROGRESS: "IN_PROGRESS";
1311
+ /**
1312
+ * <p>The notebook export succeeded.</p>
1313
+ */
1314
+ readonly SUCCEEDED: "SUCCEEDED";
1315
+ };
1316
+ /**
1317
+ * @public
1318
+ */
1319
+ export type NotebookExportStatus = (typeof NotebookExportStatus)[keyof typeof NotebookExportStatus];
1262
1320
  /**
1263
1321
  * @public
1264
1322
  * @enum