@databricks/sdk-jobs 0.1.0-dev.1 → 0.1.0-dev.3
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/dist/v2/client.d.ts +25 -24
- package/dist/v2/client.d.ts.map +1 -1
- package/dist/v2/client.js +52 -79
- package/dist/v2/client.js.map +1 -1
- package/dist/v2/index.d.ts +1 -1
- package/dist/v2/index.d.ts.map +1 -1
- package/dist/v2/model.d.ts +56 -56
- package/dist/v2/model.d.ts.map +1 -1
- package/dist/v2/model.js +21 -40
- package/dist/v2/model.js.map +1 -1
- package/dist/v2/utils.d.ts +14 -2
- package/dist/v2/utils.d.ts.map +1 -1
- package/dist/v2/utils.js +19 -1
- package/dist/v2/utils.js.map +1 -1
- package/package.json +6 -5
- package/src/v2/client.ts +164 -202
- package/src/v2/index.ts +21 -21
- package/src/v2/model.ts +283 -324
- package/src/v2/utils.ts +27 -3
package/src/v2/index.ts
CHANGED
|
@@ -68,9 +68,9 @@ export type {
|
|
|
68
68
|
BaseJob,
|
|
69
69
|
BaseRun,
|
|
70
70
|
CancelAllRunsRequest,
|
|
71
|
-
|
|
71
|
+
CancelAllRunsResponse,
|
|
72
72
|
CancelRunRequest,
|
|
73
|
-
|
|
73
|
+
CancelRunResponse,
|
|
74
74
|
CleanRoomTaskRunLifeCycleState,
|
|
75
75
|
CleanRoomTaskRunResultState,
|
|
76
76
|
CleanRoomTaskRunState,
|
|
@@ -89,8 +89,8 @@ export type {
|
|
|
89
89
|
ConditionTask,
|
|
90
90
|
ContinuousSettings,
|
|
91
91
|
CreateJobRequest,
|
|
92
|
-
CreateJobRequest_Response,
|
|
93
92
|
CreateJobRequest_TagsEntry,
|
|
93
|
+
CreateJobResponse,
|
|
94
94
|
CronSchedule,
|
|
95
95
|
DashboardPageSnapshot,
|
|
96
96
|
DashboardTask,
|
|
@@ -107,17 +107,17 @@ export type {
|
|
|
107
107
|
DbtTask_DbtTaskOutput,
|
|
108
108
|
DbtTask_DbtTaskOutput_ArtifactsHeadersEntry,
|
|
109
109
|
DeleteJobRequest,
|
|
110
|
-
|
|
110
|
+
DeleteJobResponse,
|
|
111
111
|
DeleteRunRequest,
|
|
112
|
-
|
|
112
|
+
DeleteRunResponse,
|
|
113
113
|
DockerBasicAuth,
|
|
114
114
|
DockerImage,
|
|
115
115
|
EnforcePolicyComplianceForJob,
|
|
116
|
-
|
|
117
|
-
|
|
116
|
+
EnforcePolicyComplianceResponse,
|
|
117
|
+
EnforcePolicyComplianceResponse_JobClusterSettingsChange,
|
|
118
118
|
Environment,
|
|
119
119
|
ExportRunRequest,
|
|
120
|
-
|
|
120
|
+
ExportRunResponse,
|
|
121
121
|
FileArrivalTriggerConfiguration,
|
|
122
122
|
FileArrivalTriggerState,
|
|
123
123
|
ForEachTask,
|
|
@@ -125,14 +125,14 @@ export type {
|
|
|
125
125
|
GcsStorageInfo,
|
|
126
126
|
GenAiComputeTask,
|
|
127
127
|
GetJobRequest,
|
|
128
|
-
|
|
128
|
+
GetJobResponse,
|
|
129
129
|
GetPolicyComplianceForJob,
|
|
130
|
-
|
|
131
|
-
|
|
130
|
+
GetPolicyComplianceForJobResponse,
|
|
131
|
+
GetPolicyComplianceForJobResponse_ViolationsEntry,
|
|
132
132
|
GetRunOutputRequest,
|
|
133
|
-
|
|
133
|
+
GetRunOutputResponse,
|
|
134
134
|
GetRunRequest,
|
|
135
|
-
|
|
135
|
+
GetRunResponse,
|
|
136
136
|
GitMetadataSnapshot,
|
|
137
137
|
GitSource,
|
|
138
138
|
InitScriptInfo,
|
|
@@ -151,11 +151,11 @@ export type {
|
|
|
151
151
|
ListJobComplianceForPolicy,
|
|
152
152
|
ListJobComplianceForPolicy_JobCompliance,
|
|
153
153
|
ListJobComplianceForPolicy_JobCompliance_ViolationsEntry,
|
|
154
|
-
|
|
154
|
+
ListJobComplianceResponse,
|
|
155
155
|
ListJobsRequest,
|
|
156
|
-
|
|
156
|
+
ListJobsResponse,
|
|
157
157
|
ListRunsRequest,
|
|
158
|
-
|
|
158
|
+
ListRunsResponse,
|
|
159
159
|
LocalFileInfo,
|
|
160
160
|
LogAnalyticsInfo,
|
|
161
161
|
MavenLibrary,
|
|
@@ -188,10 +188,10 @@ export type {
|
|
|
188
188
|
RepairRunRequest_JobParametersEntry,
|
|
189
189
|
RepairRunRequest_NotebookParamsEntry,
|
|
190
190
|
RepairRunRequest_PythonNamedParamsEntry,
|
|
191
|
-
RepairRunRequest_Response,
|
|
192
191
|
RepairRunRequest_SqlParamsEntry,
|
|
192
|
+
RepairRunResponse,
|
|
193
193
|
ResetJobRequest,
|
|
194
|
-
|
|
194
|
+
ResetJobResponse,
|
|
195
195
|
ResolvedValues,
|
|
196
196
|
ResolvedValues_ConditionTaskResolvedValues,
|
|
197
197
|
ResolvedValues_DbtTaskResolvedValues,
|
|
@@ -225,8 +225,8 @@ export type {
|
|
|
225
225
|
RunNowRequest_JobParametersEntry,
|
|
226
226
|
RunNowRequest_NotebookParamsEntry,
|
|
227
227
|
RunNowRequest_PythonNamedParamsEntry,
|
|
228
|
-
RunNowRequest_Response,
|
|
229
228
|
RunNowRequest_SqlParamsEntry,
|
|
229
|
+
RunNowResponse,
|
|
230
230
|
RunParameters,
|
|
231
231
|
RunParameters_NotebookParamsEntry,
|
|
232
232
|
RunParameters_PythonNamedParamsEntry,
|
|
@@ -258,7 +258,7 @@ export type {
|
|
|
258
258
|
SqlTaskQuery,
|
|
259
259
|
SqlTaskSubscription,
|
|
260
260
|
SubmitRunRequest,
|
|
261
|
-
|
|
261
|
+
SubmitRunResponse,
|
|
262
262
|
Subscription,
|
|
263
263
|
Subscription_Subscriber,
|
|
264
264
|
TableState,
|
|
@@ -272,7 +272,7 @@ export type {
|
|
|
272
272
|
TriggerSettings,
|
|
273
273
|
TriggerState,
|
|
274
274
|
UpdateJobRequest,
|
|
275
|
-
|
|
275
|
+
UpdateJobResponse,
|
|
276
276
|
ViewItem,
|
|
277
277
|
VolumesStorageInfo,
|
|
278
278
|
Webhook,
|