@databricks/sdk-jobs 0.1.0-dev.2 → 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 +20 -20
- package/dist/v2/client.d.ts.map +1 -1
- package/dist/v2/client.js +20 -20
- 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/package.json +6 -5
- package/src/v2/client.ts +103 -112
- package/src/v2/index.ts +21 -21
- package/src/v2/model.ts +283 -324
package/dist/v2/model.d.ts
CHANGED
|
@@ -931,14 +931,14 @@ export interface CancelAllRunsRequest {
|
|
|
931
931
|
allQueuedRuns?: boolean | undefined;
|
|
932
932
|
}
|
|
933
933
|
/** All runs were cancelled successfully. */
|
|
934
|
-
export interface
|
|
934
|
+
export interface CancelAllRunsResponse {
|
|
935
935
|
}
|
|
936
936
|
export interface CancelRunRequest {
|
|
937
937
|
/** This field is required. */
|
|
938
938
|
runId?: bigint | undefined;
|
|
939
939
|
}
|
|
940
940
|
/** Run was cancelled successfully. */
|
|
941
|
-
export interface
|
|
941
|
+
export interface CancelRunResponse {
|
|
942
942
|
}
|
|
943
943
|
export interface CleanRoomTaskRunLifeCycleState {
|
|
944
944
|
}
|
|
@@ -1390,11 +1390,6 @@ export interface CreateJobRequest {
|
|
|
1390
1390
|
/** An option to disable auto optimization in serverless */
|
|
1391
1391
|
disableAutoOptimization?: boolean | undefined;
|
|
1392
1392
|
}
|
|
1393
|
-
/** Job was created successfully */
|
|
1394
|
-
export interface CreateJobRequest_Response {
|
|
1395
|
-
/** The canonical identifier for the newly created job. */
|
|
1396
|
-
jobId?: bigint | undefined;
|
|
1397
|
-
}
|
|
1398
1393
|
/**
|
|
1399
1394
|
* <Databricks> proto compiler is too old and does not support map.
|
|
1400
1395
|
* This is wire compatible with map<string,string>.
|
|
@@ -1404,6 +1399,11 @@ export interface CreateJobRequest_TagsEntry {
|
|
|
1404
1399
|
key?: string | undefined;
|
|
1405
1400
|
value?: string | undefined;
|
|
1406
1401
|
}
|
|
1402
|
+
/** Job was created successfully */
|
|
1403
|
+
export interface CreateJobResponse {
|
|
1404
|
+
/** The canonical identifier for the newly created job. */
|
|
1405
|
+
jobId?: bigint | undefined;
|
|
1406
|
+
}
|
|
1407
1407
|
export interface CronSchedule {
|
|
1408
1408
|
/** A Cron expression using Quartz syntax that describes the schedule for a job. See [Cron Trigger](http://www.quartz-scheduler.org/documentation/quartz-2.3.0/tutorials/crontrigger.html) for details. This field is required. */
|
|
1409
1409
|
quartzCronExpression?: string | undefined;
|
|
@@ -1552,14 +1552,14 @@ export interface DeleteJobRequest {
|
|
|
1552
1552
|
jobId?: bigint | undefined;
|
|
1553
1553
|
}
|
|
1554
1554
|
/** Job was deleted successfully. */
|
|
1555
|
-
export interface
|
|
1555
|
+
export interface DeleteJobResponse {
|
|
1556
1556
|
}
|
|
1557
1557
|
export interface DeleteRunRequest {
|
|
1558
1558
|
/** ID of the run to delete. */
|
|
1559
1559
|
runId?: bigint | undefined;
|
|
1560
1560
|
}
|
|
1561
1561
|
/** Run was deleted successfully. */
|
|
1562
|
-
export interface
|
|
1562
|
+
export interface DeleteRunResponse {
|
|
1563
1563
|
}
|
|
1564
1564
|
export interface DockerBasicAuth {
|
|
1565
1565
|
/** Name of the user */
|
|
@@ -1585,7 +1585,7 @@ export interface EnforcePolicyComplianceForJob {
|
|
|
1585
1585
|
*/
|
|
1586
1586
|
validateOnly?: boolean | undefined;
|
|
1587
1587
|
}
|
|
1588
|
-
export interface
|
|
1588
|
+
export interface EnforcePolicyComplianceResponse {
|
|
1589
1589
|
/**
|
|
1590
1590
|
* Whether any changes have been made to the job cluster settings for the job to
|
|
1591
1591
|
* become compliant with its policies.
|
|
@@ -1596,7 +1596,7 @@ export interface EnforcePolicyComplianceForJob_Response {
|
|
|
1596
1596
|
* settings in order for all job clusters to become compliant with their
|
|
1597
1597
|
* policies.
|
|
1598
1598
|
*/
|
|
1599
|
-
jobClusterChanges?:
|
|
1599
|
+
jobClusterChanges?: EnforcePolicyComplianceResponse_JobClusterSettingsChange[] | undefined;
|
|
1600
1600
|
/**
|
|
1601
1601
|
* Updated job settings after policy enforcement. Policy enforcement only
|
|
1602
1602
|
* applies to job clusters that are created when running the job (which are
|
|
@@ -1610,7 +1610,7 @@ export interface EnforcePolicyComplianceForJob_Response {
|
|
|
1610
1610
|
* Represents a change to the job cluster's settings that would be required for the
|
|
1611
1611
|
* job clusters to become compliant with their policies.
|
|
1612
1612
|
*/
|
|
1613
|
-
export interface
|
|
1613
|
+
export interface EnforcePolicyComplianceResponse_JobClusterSettingsChange {
|
|
1614
1614
|
/** The field where this change would be made, prepended with the job cluster key. */
|
|
1615
1615
|
field?: string | undefined;
|
|
1616
1616
|
/**
|
|
@@ -1670,7 +1670,7 @@ export interface ExportRunRequest {
|
|
|
1670
1670
|
viewsToExport?: ViewsToExport | undefined;
|
|
1671
1671
|
}
|
|
1672
1672
|
/** Run was exported successfully. */
|
|
1673
|
-
export interface
|
|
1673
|
+
export interface ExportRunResponse {
|
|
1674
1674
|
/** The exported content in HTML format (one for every view item). To extract the HTML notebook from the JSON response, download and run this [Python script](/_static/examples/extract.py). */
|
|
1675
1675
|
views?: ViewItem[] | undefined;
|
|
1676
1676
|
}
|
|
@@ -1806,7 +1806,7 @@ export interface GetJobRequest {
|
|
|
1806
1806
|
pageToken?: string | undefined;
|
|
1807
1807
|
}
|
|
1808
1808
|
/** Job was retrieved successfully. */
|
|
1809
|
-
export interface
|
|
1809
|
+
export interface GetJobResponse {
|
|
1810
1810
|
/** A token that can be used to list the next page of array properties. */
|
|
1811
1811
|
nextPageToken?: string | undefined;
|
|
1812
1812
|
/** The canonical identifier for this job. */
|
|
@@ -1845,7 +1845,7 @@ export interface GetPolicyComplianceForJob {
|
|
|
1845
1845
|
/** The ID of the job whose compliance status you are requesting. */
|
|
1846
1846
|
jobId?: bigint | undefined;
|
|
1847
1847
|
}
|
|
1848
|
-
export interface
|
|
1848
|
+
export interface GetPolicyComplianceForJobResponse {
|
|
1849
1849
|
/**
|
|
1850
1850
|
* Whether the job is compliant with its policies or not. Jobs could be out of
|
|
1851
1851
|
* compliance if a policy they are using was updated after the job was
|
|
@@ -1863,7 +1863,7 @@ export interface GetPolicyComplianceForJob_Response {
|
|
|
1863
1863
|
violations?: Record<string, string> | undefined;
|
|
1864
1864
|
}
|
|
1865
1865
|
/** Proto defined to model a mapping from string to string. */
|
|
1866
|
-
export interface
|
|
1866
|
+
export interface GetPolicyComplianceForJobResponse_ViolationsEntry {
|
|
1867
1867
|
key?: string | undefined;
|
|
1868
1868
|
value?: string | undefined;
|
|
1869
1869
|
}
|
|
@@ -1873,7 +1873,7 @@ export interface GetRunOutputRequest {
|
|
|
1873
1873
|
runId?: bigint | undefined;
|
|
1874
1874
|
}
|
|
1875
1875
|
/** Run output was retrieved successfully. */
|
|
1876
|
-
export interface
|
|
1876
|
+
export interface GetRunOutputResponse {
|
|
1877
1877
|
/** All details of the run except for its output. */
|
|
1878
1878
|
metadata?: Run | undefined;
|
|
1879
1879
|
/** An error message indicating why a task failed or why output is not available. The message is unstructured, and its exact format is subject to change. */
|
|
@@ -1949,7 +1949,7 @@ export interface GetRunRequest {
|
|
|
1949
1949
|
pageToken?: string | undefined;
|
|
1950
1950
|
}
|
|
1951
1951
|
/** Run was retrieved successfully */
|
|
1952
|
-
export interface
|
|
1952
|
+
export interface GetRunResponse {
|
|
1953
1953
|
/** A token that can be used to list the next page of array properties. */
|
|
1954
1954
|
nextPageToken?: string | undefined;
|
|
1955
1955
|
/** The canonical identifier of the job that contains this run. */
|
|
@@ -2447,7 +2447,7 @@ export interface ListJobComplianceForPolicy_JobCompliance_ViolationsEntry {
|
|
|
2447
2447
|
key?: string | undefined;
|
|
2448
2448
|
value?: string | undefined;
|
|
2449
2449
|
}
|
|
2450
|
-
export interface
|
|
2450
|
+
export interface ListJobComplianceResponse {
|
|
2451
2451
|
/** A list of jobs and their policy compliance statuses. */
|
|
2452
2452
|
jobs?: ListJobComplianceForPolicy_JobCompliance[] | undefined;
|
|
2453
2453
|
/**
|
|
@@ -2481,7 +2481,7 @@ export interface ListJobsRequest {
|
|
|
2481
2481
|
pageToken?: string | undefined;
|
|
2482
2482
|
}
|
|
2483
2483
|
/** List of jobs was retrieved successfully. */
|
|
2484
|
-
export interface
|
|
2484
|
+
export interface ListJobsResponse {
|
|
2485
2485
|
/** The list of jobs. Only included in the response if there are jobs to list. */
|
|
2486
2486
|
jobs?: BaseJob[] | undefined;
|
|
2487
2487
|
/** If true, additional jobs matching the provided filter are available for listing. */
|
|
@@ -2544,7 +2544,7 @@ export interface ListRunsRequest {
|
|
|
2544
2544
|
pageToken?: string | undefined;
|
|
2545
2545
|
}
|
|
2546
2546
|
/** List of runs was retrieved successfully. */
|
|
2547
|
-
export interface
|
|
2547
|
+
export interface ListRunsResponse {
|
|
2548
2548
|
/** A list of runs, from most recently started to least. Only included in the response if there are runs to list. */
|
|
2549
2549
|
runs?: BaseRun[] | undefined;
|
|
2550
2550
|
/** If true, additional runs matching the provided filter are available for listing. */
|
|
@@ -2945,17 +2945,17 @@ export interface RepairRunRequest_PythonNamedParamsEntry {
|
|
|
2945
2945
|
key?: string | undefined;
|
|
2946
2946
|
value?: string | undefined;
|
|
2947
2947
|
}
|
|
2948
|
-
/** Run repair was initiated. */
|
|
2949
|
-
export interface RepairRunRequest_Response {
|
|
2950
|
-
/** The ID of the repair. Must be provided in subsequent repairs using the `latest_repair_id` field to ensure sequential repairs. */
|
|
2951
|
-
repairId?: bigint | undefined;
|
|
2952
|
-
}
|
|
2953
2948
|
/** Name-based parameters for jobs running notebook tasks. */
|
|
2954
2949
|
export interface RepairRunRequest_SqlParamsEntry {
|
|
2955
2950
|
/** Named parameter, can be passed to dbutils.widgets.get() to retrieve the corresponding value. */
|
|
2956
2951
|
key?: string | undefined;
|
|
2957
2952
|
value?: string | undefined;
|
|
2958
2953
|
}
|
|
2954
|
+
/** Run repair was initiated. */
|
|
2955
|
+
export interface RepairRunResponse {
|
|
2956
|
+
/** The ID of the repair. Must be provided in subsequent repairs using the `latest_repair_id` field to ensure sequential repairs. */
|
|
2957
|
+
repairId?: bigint | undefined;
|
|
2958
|
+
}
|
|
2959
2959
|
export interface ResetJobRequest {
|
|
2960
2960
|
/** The canonical identifier of the job to reset. This field is required. */
|
|
2961
2961
|
jobId?: bigint | undefined;
|
|
@@ -2967,7 +2967,7 @@ export interface ResetJobRequest {
|
|
|
2967
2967
|
newSettings?: JobSettings | undefined;
|
|
2968
2968
|
}
|
|
2969
2969
|
/** Job was overwritten successfully. */
|
|
2970
|
-
export interface
|
|
2970
|
+
export interface ResetJobResponse {
|
|
2971
2971
|
}
|
|
2972
2972
|
export interface ResolvedValues {
|
|
2973
2973
|
resolved?: {
|
|
@@ -3399,19 +3399,19 @@ export interface RunNowRequest_PythonNamedParamsEntry {
|
|
|
3399
3399
|
key?: string | undefined;
|
|
3400
3400
|
value?: string | undefined;
|
|
3401
3401
|
}
|
|
3402
|
-
/** Run was started successfully. */
|
|
3403
|
-
export interface RunNowRequest_Response {
|
|
3404
|
-
/** The globally unique ID of the newly triggered run. */
|
|
3405
|
-
runId?: bigint | undefined;
|
|
3406
|
-
/** A unique identifier for this job run. This is set to the same value as `run_id`. */
|
|
3407
|
-
numberInJob?: bigint | undefined;
|
|
3408
|
-
}
|
|
3409
3402
|
/** Name-based parameters for jobs running notebook tasks. */
|
|
3410
3403
|
export interface RunNowRequest_SqlParamsEntry {
|
|
3411
3404
|
/** Named parameter, can be passed to dbutils.widgets.get() to retrieve the corresponding value. */
|
|
3412
3405
|
key?: string | undefined;
|
|
3413
3406
|
value?: string | undefined;
|
|
3414
3407
|
}
|
|
3408
|
+
/** Run was started successfully. */
|
|
3409
|
+
export interface RunNowResponse {
|
|
3410
|
+
/** The globally unique ID of the newly triggered run. */
|
|
3411
|
+
runId?: bigint | undefined;
|
|
3412
|
+
/** A unique identifier for this job run. This is set to the same value as `run_id`. */
|
|
3413
|
+
numberInJob?: bigint | undefined;
|
|
3414
|
+
}
|
|
3415
3415
|
export interface RunParameters {
|
|
3416
3416
|
/** Controls whether the pipeline should perform a full refresh */
|
|
3417
3417
|
pipelineParams?: PipelineParameters | undefined;
|
|
@@ -4162,7 +4162,7 @@ export interface SubmitRunRequest {
|
|
|
4162
4162
|
usagePolicyId?: string | undefined;
|
|
4163
4163
|
}
|
|
4164
4164
|
/** Run was created and started successfully. */
|
|
4165
|
-
export interface
|
|
4165
|
+
export interface SubmitRunResponse {
|
|
4166
4166
|
/** The canonical identifier for the newly submitted run. */
|
|
4167
4167
|
runId?: bigint | undefined;
|
|
4168
4168
|
}
|
|
@@ -4444,7 +4444,7 @@ export interface UpdateJobRequest {
|
|
|
4444
4444
|
fieldsToRemove?: string[] | undefined;
|
|
4445
4445
|
}
|
|
4446
4446
|
/** Job was updated successfully. */
|
|
4447
|
-
export interface
|
|
4447
|
+
export interface UpdateJobResponse {
|
|
4448
4448
|
}
|
|
4449
4449
|
export interface ViewItem {
|
|
4450
4450
|
/** Content of the view. */
|
|
@@ -4510,8 +4510,8 @@ export declare const unmarshalAwsAttributesSchema: z.ZodType<AwsAttributes>;
|
|
|
4510
4510
|
export declare const unmarshalAzureAttributesSchema: z.ZodType<AzureAttributes>;
|
|
4511
4511
|
export declare const unmarshalBaseJobSchema: z.ZodType<BaseJob>;
|
|
4512
4512
|
export declare const unmarshalBaseRunSchema: z.ZodType<BaseRun>;
|
|
4513
|
-
export declare const
|
|
4514
|
-
export declare const
|
|
4513
|
+
export declare const unmarshalCancelAllRunsResponseSchema: z.ZodType<CancelAllRunsResponse>;
|
|
4514
|
+
export declare const unmarshalCancelRunResponseSchema: z.ZodType<CancelRunResponse>;
|
|
4515
4515
|
export declare const unmarshalCleanRoomTaskRunStateSchema: z.ZodType<CleanRoomTaskRunState>;
|
|
4516
4516
|
export declare const unmarshalCleanRoomsNotebookTaskSchema: z.ZodType<CleanRoomsNotebookTask>;
|
|
4517
4517
|
export declare const unmarshalCleanRoomsNotebookTask_CleanRoomsNotebookTaskOutputSchema: z.ZodType<CleanRoomsNotebookTask_CleanRoomsNotebookTaskOutput>;
|
|
@@ -4523,7 +4523,7 @@ export declare const unmarshalComputeSchema: z.ZodType<Compute>;
|
|
|
4523
4523
|
export declare const unmarshalComputeConfigSchema: z.ZodType<ComputeConfig>;
|
|
4524
4524
|
export declare const unmarshalConditionTaskSchema: z.ZodType<ConditionTask>;
|
|
4525
4525
|
export declare const unmarshalContinuousSettingsSchema: z.ZodType<ContinuousSettings>;
|
|
4526
|
-
export declare const
|
|
4526
|
+
export declare const unmarshalCreateJobResponseSchema: z.ZodType<CreateJobResponse>;
|
|
4527
4527
|
export declare const unmarshalCronScheduleSchema: z.ZodType<CronSchedule>;
|
|
4528
4528
|
export declare const unmarshalDashboardPageSnapshotSchema: z.ZodType<DashboardPageSnapshot>;
|
|
4529
4529
|
export declare const unmarshalDashboardTaskSchema: z.ZodType<DashboardTask>;
|
|
@@ -4537,24 +4537,24 @@ export declare const unmarshalDbtPlatformTaskSchema: z.ZodType<DbtPlatformTask>;
|
|
|
4537
4537
|
export declare const unmarshalDbtPlatformTaskOutputSchema: z.ZodType<DbtPlatformTaskOutput>;
|
|
4538
4538
|
export declare const unmarshalDbtTaskSchema: z.ZodType<DbtTask>;
|
|
4539
4539
|
export declare const unmarshalDbtTask_DbtTaskOutputSchema: z.ZodType<DbtTask_DbtTaskOutput>;
|
|
4540
|
-
export declare const
|
|
4541
|
-
export declare const
|
|
4540
|
+
export declare const unmarshalDeleteJobResponseSchema: z.ZodType<DeleteJobResponse>;
|
|
4541
|
+
export declare const unmarshalDeleteRunResponseSchema: z.ZodType<DeleteRunResponse>;
|
|
4542
4542
|
export declare const unmarshalDockerBasicAuthSchema: z.ZodType<DockerBasicAuth>;
|
|
4543
4543
|
export declare const unmarshalDockerImageSchema: z.ZodType<DockerImage>;
|
|
4544
|
-
export declare const
|
|
4545
|
-
export declare const
|
|
4544
|
+
export declare const unmarshalEnforcePolicyComplianceResponseSchema: z.ZodType<EnforcePolicyComplianceResponse>;
|
|
4545
|
+
export declare const unmarshalEnforcePolicyComplianceResponse_JobClusterSettingsChangeSchema: z.ZodType<EnforcePolicyComplianceResponse_JobClusterSettingsChange>;
|
|
4546
4546
|
export declare const unmarshalEnvironmentSchema: z.ZodType<Environment>;
|
|
4547
|
-
export declare const
|
|
4547
|
+
export declare const unmarshalExportRunResponseSchema: z.ZodType<ExportRunResponse>;
|
|
4548
4548
|
export declare const unmarshalFileArrivalTriggerConfigurationSchema: z.ZodType<FileArrivalTriggerConfiguration>;
|
|
4549
4549
|
export declare const unmarshalFileArrivalTriggerStateSchema: z.ZodType<FileArrivalTriggerState>;
|
|
4550
4550
|
export declare const unmarshalForEachTaskSchema: z.ZodType<ForEachTask>;
|
|
4551
4551
|
export declare const unmarshalGcpAttributesSchema: z.ZodType<GcpAttributes>;
|
|
4552
4552
|
export declare const unmarshalGcsStorageInfoSchema: z.ZodType<GcsStorageInfo>;
|
|
4553
4553
|
export declare const unmarshalGenAiComputeTaskSchema: z.ZodType<GenAiComputeTask>;
|
|
4554
|
-
export declare const
|
|
4555
|
-
export declare const
|
|
4556
|
-
export declare const
|
|
4557
|
-
export declare const
|
|
4554
|
+
export declare const unmarshalGetJobResponseSchema: z.ZodType<GetJobResponse>;
|
|
4555
|
+
export declare const unmarshalGetPolicyComplianceForJobResponseSchema: z.ZodType<GetPolicyComplianceForJobResponse>;
|
|
4556
|
+
export declare const unmarshalGetRunOutputResponseSchema: z.ZodType<GetRunOutputResponse>;
|
|
4557
|
+
export declare const unmarshalGetRunResponseSchema: z.ZodType<GetRunResponse>;
|
|
4558
4558
|
export declare const unmarshalGitMetadataSnapshotSchema: z.ZodType<GitMetadataSnapshot>;
|
|
4559
4559
|
export declare const unmarshalGitSourceSchema: z.ZodType<GitSource>;
|
|
4560
4560
|
export declare const unmarshalInitScriptInfoSchema: z.ZodType<InitScriptInfo>;
|
|
@@ -4570,9 +4570,9 @@ export declare const unmarshalJobsHealthRuleSchema: z.ZodType<JobsHealthRule>;
|
|
|
4570
4570
|
export declare const unmarshalJobsHealthRulesSchema: z.ZodType<JobsHealthRules>;
|
|
4571
4571
|
export declare const unmarshalLibrarySchema: z.ZodType<Library>;
|
|
4572
4572
|
export declare const unmarshalListJobComplianceForPolicy_JobComplianceSchema: z.ZodType<ListJobComplianceForPolicy_JobCompliance>;
|
|
4573
|
-
export declare const
|
|
4574
|
-
export declare const
|
|
4575
|
-
export declare const
|
|
4573
|
+
export declare const unmarshalListJobComplianceResponseSchema: z.ZodType<ListJobComplianceResponse>;
|
|
4574
|
+
export declare const unmarshalListJobsResponseSchema: z.ZodType<ListJobsResponse>;
|
|
4575
|
+
export declare const unmarshalListRunsResponseSchema: z.ZodType<ListRunsResponse>;
|
|
4576
4576
|
export declare const unmarshalLocalFileInfoSchema: z.ZodType<LocalFileInfo>;
|
|
4577
4577
|
export declare const unmarshalLogAnalyticsInfoSchema: z.ZodType<LogAnalyticsInfo>;
|
|
4578
4578
|
export declare const unmarshalMavenLibrarySchema: z.ZodType<MavenLibrary>;
|
|
@@ -4596,8 +4596,8 @@ export declare const unmarshalQueueDetailsSchema: z.ZodType<QueueDetails>;
|
|
|
4596
4596
|
export declare const unmarshalQueueSettingsSchema: z.ZodType<QueueSettings>;
|
|
4597
4597
|
export declare const unmarshalRCranLibrarySchema: z.ZodType<RCranLibrary>;
|
|
4598
4598
|
export declare const unmarshalRepairSchema: z.ZodType<Repair>;
|
|
4599
|
-
export declare const
|
|
4600
|
-
export declare const
|
|
4599
|
+
export declare const unmarshalRepairRunResponseSchema: z.ZodType<RepairRunResponse>;
|
|
4600
|
+
export declare const unmarshalResetJobResponseSchema: z.ZodType<ResetJobResponse>;
|
|
4601
4601
|
export declare const unmarshalResolvedValuesSchema: z.ZodType<ResolvedValues>;
|
|
4602
4602
|
export declare const unmarshalResolvedValues_ConditionTaskResolvedValuesSchema: z.ZodType<ResolvedValues_ConditionTaskResolvedValues>;
|
|
4603
4603
|
export declare const unmarshalResolvedValues_DbtTaskResolvedValuesSchema: z.ZodType<ResolvedValues_DbtTaskResolvedValues>;
|
|
@@ -4614,7 +4614,7 @@ export declare const unmarshalRunSchema: z.ZodType<Run>;
|
|
|
4614
4614
|
export declare const unmarshalRun_JobLevelParametersSchema: z.ZodType<Run_JobLevelParameters>;
|
|
4615
4615
|
export declare const unmarshalRunJobTaskSchema: z.ZodType<RunJobTask>;
|
|
4616
4616
|
export declare const unmarshalRunJobTask_RunJobTaskOutputSchema: z.ZodType<RunJobTask_RunJobTaskOutput>;
|
|
4617
|
-
export declare const
|
|
4617
|
+
export declare const unmarshalRunNowResponseSchema: z.ZodType<RunNowResponse>;
|
|
4618
4618
|
export declare const unmarshalRunParametersSchema: z.ZodType<RunParameters>;
|
|
4619
4619
|
export declare const unmarshalRunStateSchema: z.ZodType<RunState>;
|
|
4620
4620
|
export declare const unmarshalRunStatusSchema: z.ZodType<RunStatus>;
|
|
@@ -4638,7 +4638,7 @@ export declare const unmarshalSqlTaskDashboardSchema: z.ZodType<SqlTaskDashboard
|
|
|
4638
4638
|
export declare const unmarshalSqlTaskFileSchema: z.ZodType<SqlTaskFile>;
|
|
4639
4639
|
export declare const unmarshalSqlTaskQuerySchema: z.ZodType<SqlTaskQuery>;
|
|
4640
4640
|
export declare const unmarshalSqlTaskSubscriptionSchema: z.ZodType<SqlTaskSubscription>;
|
|
4641
|
-
export declare const
|
|
4641
|
+
export declare const unmarshalSubmitRunResponseSchema: z.ZodType<SubmitRunResponse>;
|
|
4642
4642
|
export declare const unmarshalSubscriptionSchema: z.ZodType<Subscription>;
|
|
4643
4643
|
export declare const unmarshalSubscription_SubscriberSchema: z.ZodType<Subscription_Subscriber>;
|
|
4644
4644
|
export declare const unmarshalTableStateSchema: z.ZodType<TableState>;
|
|
@@ -4649,7 +4649,7 @@ export declare const unmarshalTaskSettingsSchema: z.ZodType<TaskSettings>;
|
|
|
4649
4649
|
export declare const unmarshalTerminationDetailsSchema: z.ZodType<TerminationDetails>;
|
|
4650
4650
|
export declare const unmarshalTriggerSettingsSchema: z.ZodType<TriggerSettings>;
|
|
4651
4651
|
export declare const unmarshalTriggerStateSchema: z.ZodType<TriggerState>;
|
|
4652
|
-
export declare const
|
|
4652
|
+
export declare const unmarshalUpdateJobResponseSchema: z.ZodType<UpdateJobResponse>;
|
|
4653
4653
|
export declare const unmarshalViewItemSchema: z.ZodType<ViewItem>;
|
|
4654
4654
|
export declare const unmarshalVolumesStorageInfoSchema: z.ZodType<VolumesStorageInfo>;
|
|
4655
4655
|
export declare const unmarshalWebhookSchema: z.ZodType<Webhook>;
|