@aws-sdk/client-datazone 3.1038.0 → 3.1040.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 +28 -0
- package/dist-cjs/index.js +85 -0
- package/dist-cjs/schemas/schemas_0.js +214 -42
- package/dist-es/DataZone.js +10 -0
- package/dist-es/commands/GetNotebookRunCommand.js +16 -0
- package/dist-es/commands/ListNotebookRunsCommand.js +16 -0
- package/dist-es/commands/StartNotebookRunCommand.js +16 -0
- package/dist-es/commands/StopNotebookRunCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +21 -0
- package/dist-es/pagination/ListNotebookRunsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +197 -26
- package/dist-types/DataZone.d.ts +35 -0
- package/dist-types/DataZoneClient.d.ts +6 -2
- package/dist-types/commands/DeleteRuleCommand.d.ts +1 -1
- package/dist-types/commands/GetNotebookRunCommand.d.ts +148 -0
- package/dist-types/commands/GetRuleCommand.d.ts +1 -1
- package/dist-types/commands/ListNotebookRunsCommand.d.ts +116 -0
- package/dist-types/commands/ListRulesCommand.d.ts +1 -1
- package/dist-types/commands/RemovePolicyGrantCommand.d.ts +2 -1
- package/dist-types/commands/RevokeSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/StartNotebookRunCommand.d.ts +184 -0
- package/dist-types/commands/StopNotebookRunCommand.d.ts +100 -0
- package/dist-types/commands/UpdateRuleCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +92 -0
- package/dist-types/models/models_0.d.ts +22 -22
- package/dist-types/models/models_1.d.ts +557 -574
- package/dist-types/models/models_2.d.ts +635 -3
- package/dist-types/pagination/ListNotebookRunsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +22 -0
- package/dist-types/ts3.4/DataZone.d.ts +75 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetNotebookRunCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListNotebookRunsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListRulesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RemovePolicyGrantCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/RevokeSubscriptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartNotebookRunCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StopNotebookRunCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +29 -0
- package/dist-types/ts3.4/models/models_0.d.ts +5 -6
- package/dist-types/ts3.4/models/models_1.d.ts +145 -149
- package/dist-types/ts3.4/models/models_2.d.ts +154 -4
- package/dist-types/ts3.4/pagination/ListNotebookRunsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
- package/package.json +7 -7
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
+
import type { StartNotebookRunInput, StartNotebookRunOutput } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link StartNotebookRunCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface StartNotebookRunCommandInput extends StartNotebookRunInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link StartNotebookRunCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface StartNotebookRunCommandOutput extends StartNotebookRunOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const StartNotebookRunCommand_base: {
|
|
25
|
+
new (input: StartNotebookRunCommandInput): import("@smithy/smithy-client").CommandImpl<StartNotebookRunCommandInput, StartNotebookRunCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: StartNotebookRunCommandInput): import("@smithy/smithy-client").CommandImpl<StartNotebookRunCommandInput, StartNotebookRunCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <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>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { DataZoneClient, StartNotebookRunCommand } from "@aws-sdk/client-datazone"; // ES Modules import
|
|
35
|
+
* // const { DataZoneClient, StartNotebookRunCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
|
|
36
|
+
* // import type { DataZoneClientConfig } from "@aws-sdk/client-datazone";
|
|
37
|
+
* const config = {}; // type is DataZoneClientConfig
|
|
38
|
+
* const client = new DataZoneClient(config);
|
|
39
|
+
* const input = { // StartNotebookRunInput
|
|
40
|
+
* domainIdentifier: "STRING_VALUE", // required
|
|
41
|
+
* owningProjectIdentifier: "STRING_VALUE", // required
|
|
42
|
+
* notebookIdentifier: "STRING_VALUE", // required
|
|
43
|
+
* scheduleIdentifier: "STRING_VALUE",
|
|
44
|
+
* computeConfiguration: { // ComputeConfig
|
|
45
|
+
* instanceType: "STRING_VALUE",
|
|
46
|
+
* environmentVersion: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* networkConfiguration: { // NetworkConfig
|
|
49
|
+
* networkAccessType: "PUBLIC_INTERNET_ONLY" || "VPC_ONLY", // required
|
|
50
|
+
* vpcId: "STRING_VALUE",
|
|
51
|
+
* subnetIds: [ // SubnetIds
|
|
52
|
+
* "STRING_VALUE",
|
|
53
|
+
* ],
|
|
54
|
+
* securityGroupIds: [ // SecurityGroupIds
|
|
55
|
+
* "STRING_VALUE",
|
|
56
|
+
* ],
|
|
57
|
+
* },
|
|
58
|
+
* timeoutConfiguration: { // TimeoutConfig
|
|
59
|
+
* runTimeoutInMinutes: Number("int"),
|
|
60
|
+
* },
|
|
61
|
+
* triggerSource: { // TriggerSource
|
|
62
|
+
* type: "MANUAL" || "SCHEDULED" || "WORKFLOW",
|
|
63
|
+
* name: "STRING_VALUE",
|
|
64
|
+
* },
|
|
65
|
+
* metadata: { // Metadata
|
|
66
|
+
* "<keys>": "STRING_VALUE",
|
|
67
|
+
* },
|
|
68
|
+
* parameters: { // Parameters
|
|
69
|
+
* "<keys>": "STRING_VALUE",
|
|
70
|
+
* },
|
|
71
|
+
* clientToken: "STRING_VALUE",
|
|
72
|
+
* };
|
|
73
|
+
* const command = new StartNotebookRunCommand(input);
|
|
74
|
+
* const response = await client.send(command);
|
|
75
|
+
* // { // StartNotebookRunOutput
|
|
76
|
+
* // id: "STRING_VALUE", // required
|
|
77
|
+
* // domainId: "STRING_VALUE", // required
|
|
78
|
+
* // owningProjectId: "STRING_VALUE", // required
|
|
79
|
+
* // notebookId: "STRING_VALUE", // required
|
|
80
|
+
* // scheduleId: "STRING_VALUE",
|
|
81
|
+
* // status: "QUEUED" || "STARTING" || "RUNNING" || "STOPPING" || "STOPPED" || "SUCCEEDED" || "FAILED", // required
|
|
82
|
+
* // cellOrder: [ // CellOrder
|
|
83
|
+
* // {},
|
|
84
|
+
* // ],
|
|
85
|
+
* // metadata: { // Metadata
|
|
86
|
+
* // "<keys>": "STRING_VALUE",
|
|
87
|
+
* // },
|
|
88
|
+
* // parameters: { // Parameters
|
|
89
|
+
* // "<keys>": "STRING_VALUE",
|
|
90
|
+
* // },
|
|
91
|
+
* // computeConfiguration: { // ComputeConfig
|
|
92
|
+
* // instanceType: "STRING_VALUE",
|
|
93
|
+
* // environmentVersion: "STRING_VALUE",
|
|
94
|
+
* // },
|
|
95
|
+
* // networkConfiguration: { // NetworkConfig
|
|
96
|
+
* // networkAccessType: "PUBLIC_INTERNET_ONLY" || "VPC_ONLY", // required
|
|
97
|
+
* // vpcId: "STRING_VALUE",
|
|
98
|
+
* // subnetIds: [ // SubnetIds
|
|
99
|
+
* // "STRING_VALUE",
|
|
100
|
+
* // ],
|
|
101
|
+
* // securityGroupIds: [ // SecurityGroupIds
|
|
102
|
+
* // "STRING_VALUE",
|
|
103
|
+
* // ],
|
|
104
|
+
* // },
|
|
105
|
+
* // timeoutConfiguration: { // TimeoutConfig
|
|
106
|
+
* // runTimeoutInMinutes: Number("int"),
|
|
107
|
+
* // },
|
|
108
|
+
* // environmentConfiguration: { // EnvironmentConfig
|
|
109
|
+
* // imageVersion: "STRING_VALUE",
|
|
110
|
+
* // packageConfig: { // PackageConfig
|
|
111
|
+
* // packageManager: "UV", // required
|
|
112
|
+
* // packageSpecification: "STRING_VALUE",
|
|
113
|
+
* // },
|
|
114
|
+
* // },
|
|
115
|
+
* // storageConfiguration: { // StorageConfig
|
|
116
|
+
* // projectS3Path: "STRING_VALUE",
|
|
117
|
+
* // kmsKeyArn: "STRING_VALUE",
|
|
118
|
+
* // },
|
|
119
|
+
* // triggerSource: { // TriggerSource
|
|
120
|
+
* // type: "MANUAL" || "SCHEDULED" || "WORKFLOW",
|
|
121
|
+
* // name: "STRING_VALUE",
|
|
122
|
+
* // },
|
|
123
|
+
* // error: { // NotebookRunError
|
|
124
|
+
* // message: "STRING_VALUE", // required
|
|
125
|
+
* // },
|
|
126
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
127
|
+
* // createdBy: "STRING_VALUE",
|
|
128
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
129
|
+
* // updatedBy: "STRING_VALUE",
|
|
130
|
+
* // startedAt: new Date("TIMESTAMP"),
|
|
131
|
+
* // completedAt: new Date("TIMESTAMP"),
|
|
132
|
+
* // };
|
|
133
|
+
*
|
|
134
|
+
* ```
|
|
135
|
+
*
|
|
136
|
+
* @param StartNotebookRunCommandInput - {@link StartNotebookRunCommandInput}
|
|
137
|
+
* @returns {@link StartNotebookRunCommandOutput}
|
|
138
|
+
* @see {@link StartNotebookRunCommandInput} for command's `input` shape.
|
|
139
|
+
* @see {@link StartNotebookRunCommandOutput} for command's `response` shape.
|
|
140
|
+
* @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
|
|
141
|
+
*
|
|
142
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
143
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
144
|
+
*
|
|
145
|
+
* @throws {@link ConflictException} (client fault)
|
|
146
|
+
* <p>There is a conflict while performing this action.</p>
|
|
147
|
+
*
|
|
148
|
+
* @throws {@link InternalServerException} (server fault)
|
|
149
|
+
* <p>The request has failed because of an unknown error, exception or failure.</p>
|
|
150
|
+
*
|
|
151
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
152
|
+
* <p>The specified resource cannot be found.</p>
|
|
153
|
+
*
|
|
154
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
155
|
+
* <p>The request has exceeded the specified service quota.</p>
|
|
156
|
+
*
|
|
157
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
158
|
+
* <p>The request was denied due to request throttling.</p>
|
|
159
|
+
*
|
|
160
|
+
* @throws {@link ValidationException} (client fault)
|
|
161
|
+
* <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
|
|
162
|
+
*
|
|
163
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
164
|
+
* <p>You do not have permission to perform this action.</p>
|
|
165
|
+
*
|
|
166
|
+
* @throws {@link DataZoneServiceException}
|
|
167
|
+
* <p>Base exception class for all service exceptions from DataZone service.</p>
|
|
168
|
+
*
|
|
169
|
+
*
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
export declare class StartNotebookRunCommand extends StartNotebookRunCommand_base {
|
|
173
|
+
/** @internal type navigation helper, not in runtime. */
|
|
174
|
+
protected static __types: {
|
|
175
|
+
api: {
|
|
176
|
+
input: StartNotebookRunInput;
|
|
177
|
+
output: StartNotebookRunOutput;
|
|
178
|
+
};
|
|
179
|
+
sdk: {
|
|
180
|
+
input: StartNotebookRunCommandInput;
|
|
181
|
+
output: StartNotebookRunCommandOutput;
|
|
182
|
+
};
|
|
183
|
+
};
|
|
184
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
+
import type { StopNotebookRunInput, StopNotebookRunOutput } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link StopNotebookRunCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface StopNotebookRunCommandInput extends StopNotebookRunInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link StopNotebookRunCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface StopNotebookRunCommandOutput extends StopNotebookRunOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const StopNotebookRunCommand_base: {
|
|
25
|
+
new (input: StopNotebookRunCommandInput): import("@smithy/smithy-client").CommandImpl<StopNotebookRunCommandInput, StopNotebookRunCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: StopNotebookRunCommandInput): import("@smithy/smithy-client").CommandImpl<StopNotebookRunCommandInput, StopNotebookRunCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Stops a running notebook run in an Amazon DataZone domain.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { DataZoneClient, StopNotebookRunCommand } from "@aws-sdk/client-datazone"; // ES Modules import
|
|
35
|
+
* // const { DataZoneClient, StopNotebookRunCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
|
|
36
|
+
* // import type { DataZoneClientConfig } from "@aws-sdk/client-datazone";
|
|
37
|
+
* const config = {}; // type is DataZoneClientConfig
|
|
38
|
+
* const client = new DataZoneClient(config);
|
|
39
|
+
* const input = { // StopNotebookRunInput
|
|
40
|
+
* domainIdentifier: "STRING_VALUE", // required
|
|
41
|
+
* identifier: "STRING_VALUE", // required
|
|
42
|
+
* clientToken: "STRING_VALUE",
|
|
43
|
+
* };
|
|
44
|
+
* const command = new StopNotebookRunCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // StopNotebookRunOutput
|
|
47
|
+
* // id: "STRING_VALUE", // required
|
|
48
|
+
* // domainId: "STRING_VALUE", // required
|
|
49
|
+
* // owningProjectId: "STRING_VALUE", // required
|
|
50
|
+
* // status: "QUEUED" || "STARTING" || "RUNNING" || "STOPPING" || "STOPPED" || "SUCCEEDED" || "FAILED", // required
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* @param StopNotebookRunCommandInput - {@link StopNotebookRunCommandInput}
|
|
56
|
+
* @returns {@link StopNotebookRunCommandOutput}
|
|
57
|
+
* @see {@link StopNotebookRunCommandInput} for command's `input` shape.
|
|
58
|
+
* @see {@link StopNotebookRunCommandOutput} for command's `response` shape.
|
|
59
|
+
* @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
62
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ConflictException} (client fault)
|
|
65
|
+
* <p>There is a conflict while performing this action.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InternalServerException} (server fault)
|
|
68
|
+
* <p>The request has failed because of an unknown error, exception or failure.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
71
|
+
* <p>The specified resource cannot be found.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
74
|
+
* <p>The request was denied due to request throttling.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ValidationException} (client fault)
|
|
77
|
+
* <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
80
|
+
* <p>You do not have permission to perform this action.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link DataZoneServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from DataZone service.</p>
|
|
84
|
+
*
|
|
85
|
+
*
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export declare class StopNotebookRunCommand extends StopNotebookRunCommand_base {
|
|
89
|
+
/** @internal type navigation helper, not in runtime. */
|
|
90
|
+
protected static __types: {
|
|
91
|
+
api: {
|
|
92
|
+
input: StopNotebookRunInput;
|
|
93
|
+
output: StopNotebookRunOutput;
|
|
94
|
+
};
|
|
95
|
+
sdk: {
|
|
96
|
+
input: StopNotebookRunCommandInput;
|
|
97
|
+
output: StopNotebookRunCommandOutput;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import type { UpdateRuleInput, UpdateRuleOutput } from "../models/
|
|
4
|
+
import type { UpdateRuleInput, UpdateRuleOutput } from "../models/models_2";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -92,6 +92,7 @@ export * from "./GetLineageEventCommand";
|
|
|
92
92
|
export * from "./GetLineageNodeCommand";
|
|
93
93
|
export * from "./GetListingCommand";
|
|
94
94
|
export * from "./GetMetadataGenerationRunCommand";
|
|
95
|
+
export * from "./GetNotebookRunCommand";
|
|
95
96
|
export * from "./GetProjectCommand";
|
|
96
97
|
export * from "./GetProjectProfileCommand";
|
|
97
98
|
export * from "./GetRuleCommand";
|
|
@@ -122,6 +123,7 @@ export * from "./ListJobRunsCommand";
|
|
|
122
123
|
export * from "./ListLineageEventsCommand";
|
|
123
124
|
export * from "./ListLineageNodeHistoryCommand";
|
|
124
125
|
export * from "./ListMetadataGenerationRunsCommand";
|
|
126
|
+
export * from "./ListNotebookRunsCommand";
|
|
125
127
|
export * from "./ListNotificationsCommand";
|
|
126
128
|
export * from "./ListPolicyGrantsCommand";
|
|
127
129
|
export * from "./ListProjectMembershipsCommand";
|
|
@@ -151,6 +153,8 @@ export * from "./SearchTypesCommand";
|
|
|
151
153
|
export * from "./SearchUserProfilesCommand";
|
|
152
154
|
export * from "./StartDataSourceRunCommand";
|
|
153
155
|
export * from "./StartMetadataGenerationRunCommand";
|
|
156
|
+
export * from "./StartNotebookRunCommand";
|
|
157
|
+
export * from "./StopNotebookRunCommand";
|
|
154
158
|
export * from "./TagResourceCommand";
|
|
155
159
|
export * from "./UntagResourceCommand";
|
|
156
160
|
export * from "./UpdateAccountPoolCommand";
|
|
@@ -1245,6 +1245,98 @@ export declare const MetadataGenerationTargetType: {
|
|
|
1245
1245
|
* @public
|
|
1246
1246
|
*/
|
|
1247
1247
|
export type MetadataGenerationTargetType = (typeof MetadataGenerationTargetType)[keyof typeof MetadataGenerationTargetType];
|
|
1248
|
+
/**
|
|
1249
|
+
* @public
|
|
1250
|
+
* @enum
|
|
1251
|
+
*/
|
|
1252
|
+
export declare const PackageManager: {
|
|
1253
|
+
/**
|
|
1254
|
+
* <p>The UV package manager.</p>
|
|
1255
|
+
*/
|
|
1256
|
+
readonly UV: "UV";
|
|
1257
|
+
};
|
|
1258
|
+
/**
|
|
1259
|
+
* @public
|
|
1260
|
+
*/
|
|
1261
|
+
export type PackageManager = (typeof PackageManager)[keyof typeof PackageManager];
|
|
1262
|
+
/**
|
|
1263
|
+
* @public
|
|
1264
|
+
* @enum
|
|
1265
|
+
*/
|
|
1266
|
+
export declare const NetworkAccessType: {
|
|
1267
|
+
/**
|
|
1268
|
+
* <p>The notebook run uses public internet access only.</p>
|
|
1269
|
+
*/
|
|
1270
|
+
readonly PUBLIC_INTERNET_ONLY: "PUBLIC_INTERNET_ONLY";
|
|
1271
|
+
/**
|
|
1272
|
+
* <p>The notebook run uses VPC access only.</p>
|
|
1273
|
+
*/
|
|
1274
|
+
readonly VPC_ONLY: "VPC_ONLY";
|
|
1275
|
+
};
|
|
1276
|
+
/**
|
|
1277
|
+
* @public
|
|
1278
|
+
*/
|
|
1279
|
+
export type NetworkAccessType = (typeof NetworkAccessType)[keyof typeof NetworkAccessType];
|
|
1280
|
+
/**
|
|
1281
|
+
* @public
|
|
1282
|
+
* @enum
|
|
1283
|
+
*/
|
|
1284
|
+
export declare const NotebookRunStatus: {
|
|
1285
|
+
/**
|
|
1286
|
+
* <p>The notebook run failed.</p>
|
|
1287
|
+
*/
|
|
1288
|
+
readonly FAILED: "FAILED";
|
|
1289
|
+
/**
|
|
1290
|
+
* <p>The notebook run is queued.</p>
|
|
1291
|
+
*/
|
|
1292
|
+
readonly QUEUED: "QUEUED";
|
|
1293
|
+
/**
|
|
1294
|
+
* <p>The notebook run is running.</p>
|
|
1295
|
+
*/
|
|
1296
|
+
readonly RUNNING: "RUNNING";
|
|
1297
|
+
/**
|
|
1298
|
+
* <p>The notebook run is starting.</p>
|
|
1299
|
+
*/
|
|
1300
|
+
readonly STARTING: "STARTING";
|
|
1301
|
+
/**
|
|
1302
|
+
* <p>The notebook run was stopped.</p>
|
|
1303
|
+
*/
|
|
1304
|
+
readonly STOPPED: "STOPPED";
|
|
1305
|
+
/**
|
|
1306
|
+
* <p>The notebook run is stopping.</p>
|
|
1307
|
+
*/
|
|
1308
|
+
readonly STOPPING: "STOPPING";
|
|
1309
|
+
/**
|
|
1310
|
+
* <p>The notebook run succeeded.</p>
|
|
1311
|
+
*/
|
|
1312
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
1313
|
+
};
|
|
1314
|
+
/**
|
|
1315
|
+
* @public
|
|
1316
|
+
*/
|
|
1317
|
+
export type NotebookRunStatus = (typeof NotebookRunStatus)[keyof typeof NotebookRunStatus];
|
|
1318
|
+
/**
|
|
1319
|
+
* @public
|
|
1320
|
+
* @enum
|
|
1321
|
+
*/
|
|
1322
|
+
export declare const TriggerSourceType: {
|
|
1323
|
+
/**
|
|
1324
|
+
* <p>The notebook run was triggered manually.</p>
|
|
1325
|
+
*/
|
|
1326
|
+
readonly MANUAL: "MANUAL";
|
|
1327
|
+
/**
|
|
1328
|
+
* <p>The notebook run was triggered by a schedule.</p>
|
|
1329
|
+
*/
|
|
1330
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
1331
|
+
/**
|
|
1332
|
+
* <p>The notebook run was triggered by a workflow.</p>
|
|
1333
|
+
*/
|
|
1334
|
+
readonly WORKFLOW: "WORKFLOW";
|
|
1335
|
+
};
|
|
1336
|
+
/**
|
|
1337
|
+
* @public
|
|
1338
|
+
*/
|
|
1339
|
+
export type TriggerSourceType = (typeof TriggerSourceType)[keyof typeof TriggerSourceType];
|
|
1248
1340
|
/**
|
|
1249
1341
|
* @public
|
|
1250
1342
|
* @enum
|
|
@@ -4327,6 +4327,12 @@ export interface CancelSubscriptionOutput {
|
|
|
4327
4327
|
*/
|
|
4328
4328
|
retainPermissions?: boolean | undefined;
|
|
4329
4329
|
}
|
|
4330
|
+
/**
|
|
4331
|
+
* <p>The information about a cell in a notebook run in Amazon DataZone.</p>
|
|
4332
|
+
* @public
|
|
4333
|
+
*/
|
|
4334
|
+
export interface CellInformation {
|
|
4335
|
+
}
|
|
4330
4336
|
/**
|
|
4331
4337
|
* <p>Part of the provisioning properties of the environment blueprint.</p>
|
|
4332
4338
|
* @public
|
|
@@ -4338,6 +4344,22 @@ export interface CloudFormationProperties {
|
|
|
4338
4344
|
*/
|
|
4339
4345
|
templateUrl: string | undefined;
|
|
4340
4346
|
}
|
|
4347
|
+
/**
|
|
4348
|
+
* <p>The compute configuration for a notebook run in Amazon DataZone.</p>
|
|
4349
|
+
* @public
|
|
4350
|
+
*/
|
|
4351
|
+
export interface ComputeConfig {
|
|
4352
|
+
/**
|
|
4353
|
+
* <p>The instance type for the notebook run compute.</p>
|
|
4354
|
+
* @public
|
|
4355
|
+
*/
|
|
4356
|
+
instanceType?: string | undefined;
|
|
4357
|
+
/**
|
|
4358
|
+
* <p>The environment version for the notebook run compute.</p>
|
|
4359
|
+
* @public
|
|
4360
|
+
*/
|
|
4361
|
+
environmentVersion?: string | undefined;
|
|
4362
|
+
}
|
|
4341
4363
|
/**
|
|
4342
4364
|
* <p>The details of the parameters for the configurable environment action.</p>
|
|
4343
4365
|
* @public
|
|
@@ -10014,25 +10036,3 @@ export interface SubscribedIamPrincipalInput {
|
|
|
10014
10036
|
*/
|
|
10015
10037
|
identifier?: string | undefined;
|
|
10016
10038
|
}
|
|
10017
|
-
/**
|
|
10018
|
-
* <p>The project that is to be given a subscription grant.</p>
|
|
10019
|
-
* @public
|
|
10020
|
-
*/
|
|
10021
|
-
export interface SubscribedProjectInput {
|
|
10022
|
-
/**
|
|
10023
|
-
* <p>The identifier of the project that is to be given a subscription grant.</p>
|
|
10024
|
-
* @public
|
|
10025
|
-
*/
|
|
10026
|
-
identifier?: string | undefined;
|
|
10027
|
-
}
|
|
10028
|
-
/**
|
|
10029
|
-
* <p>The subscribed user.</p>
|
|
10030
|
-
* @public
|
|
10031
|
-
*/
|
|
10032
|
-
export interface SubscribedUserInput {
|
|
10033
|
-
/**
|
|
10034
|
-
* <p>The ID of the subscribed user.</p>
|
|
10035
|
-
* @public
|
|
10036
|
-
*/
|
|
10037
|
-
identifier?: string | undefined;
|
|
10038
|
-
}
|