@fabricorg/databricks-testkit 0.7.2 → 0.8.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/dist/index.cjs +478 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +37 -1
- package/dist/index.d.ts +37 -1
- package/dist/index.js +468 -10
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -664,6 +664,17 @@ interface VectorSearchIndexResource extends JsonObject {
|
|
|
664
664
|
indexed_row_count?: number;
|
|
665
665
|
};
|
|
666
666
|
}
|
|
667
|
+
interface AgentServiceResource extends JsonObject {
|
|
668
|
+
name?: string;
|
|
669
|
+
full_name?: string;
|
|
670
|
+
agent_service_type?: string;
|
|
671
|
+
config?: {
|
|
672
|
+
connection?: {
|
|
673
|
+
name?: string;
|
|
674
|
+
};
|
|
675
|
+
base_path?: string;
|
|
676
|
+
};
|
|
677
|
+
}
|
|
667
678
|
/**
|
|
668
679
|
* Typed, injectable adapter for Databricks workload surfaces that are not part
|
|
669
680
|
* of SQL Statement Execution. It deliberately mirrors the public REST APIs so
|
|
@@ -693,6 +704,9 @@ declare class DatabricksAdvancedWorkloadsAdapter {
|
|
|
693
704
|
ipAccessList(id: string): Promise<JsonObject>;
|
|
694
705
|
clusterPolicy(id: string): Promise<JsonObject>;
|
|
695
706
|
warehouse(id: string): Promise<JsonObject>;
|
|
707
|
+
app(name: string): Promise<JsonObject>;
|
|
708
|
+
agentService(fullName: string): Promise<AgentServiceResource>;
|
|
709
|
+
agentServicePermissions(fullName: string): Promise<JsonObject>;
|
|
696
710
|
}
|
|
697
711
|
declare function advancedStreamingCdcCheck(): LiveCheck;
|
|
698
712
|
declare function lakeflowConnectCheck(): LiveCheck;
|
|
@@ -712,6 +726,23 @@ declare function vectorSearchCheck(): LiveCheck;
|
|
|
712
726
|
declare function ragAgentCheck(): LiveCheck;
|
|
713
727
|
declare function federationSharingCleanRoomsCheck(): LiveCheck;
|
|
714
728
|
declare function securityPostureCostCheck(): LiveCheck;
|
|
729
|
+
/**
|
|
730
|
+
* MLflow 3 changes quickly and its production-scorer lifecycle is Python-first.
|
|
731
|
+
* A customer-owned Databricks Job executes the native MLflow APIs while this
|
|
732
|
+
* check independently verifies durable trace, evaluation, scorer and monitor
|
|
733
|
+
* evidence through SQL. A successful Job without all four assertions fails.
|
|
734
|
+
*/
|
|
735
|
+
declare function mlflow3GenAiQualityCheck(): LiveCheck;
|
|
736
|
+
declare function agentEvaluationPipelineCheck(): LiveCheck;
|
|
737
|
+
/**
|
|
738
|
+
* The fixture Job uses Databricks' Streamable HTTP MCP client. It must list
|
|
739
|
+
* and invoke a managed server, list/invoke a UC MCP Service, and demonstrate
|
|
740
|
+
* that a tool excluded by the service's UC selector is denied. SQL evidence prevents a no-op Job
|
|
741
|
+
* from being accepted as certification.
|
|
742
|
+
*/
|
|
743
|
+
declare function managedMcpAgentsCheck(): LiveCheck;
|
|
744
|
+
declare function dataQualityAppTelemetryCheck(): LiveCheck;
|
|
745
|
+
declare function agentServicesEnrollmentCheck(): LiveCheck;
|
|
715
746
|
interface RegionalDrCheckOptions {
|
|
716
747
|
clientFactory?: (env: Record<string, string | undefined>) => WorkspaceClientLike;
|
|
717
748
|
}
|
|
@@ -725,9 +756,14 @@ declare function createModelServingTargetPack(): TargetPack;
|
|
|
725
756
|
declare function createVectorRagAgentsTargetPack(): TargetPack;
|
|
726
757
|
declare function createFederationSharingTargetPack(): TargetPack;
|
|
727
758
|
declare function createSecurityCostDrTargetPack(): TargetPack;
|
|
759
|
+
declare function createMlflow3AgentQualityTargetPack(): TargetPack;
|
|
760
|
+
declare function createAgentEvaluationPipelineTargetPack(): TargetPack;
|
|
761
|
+
declare function createManagedMcpAgentsTargetPack(): TargetPack;
|
|
762
|
+
declare function createDataQualityObservabilityTargetPack(): TargetPack;
|
|
763
|
+
declare function createAgentServicesEnrollmentTargetPack(): TargetPack;
|
|
728
764
|
declare function createAdvancedTargetPacks(): readonly TargetPack[];
|
|
729
765
|
|
|
730
766
|
declare function createBuiltinTargetPacks(): readonly TargetPack[];
|
|
731
767
|
declare const builtinTargetPacks: readonly TargetPack[];
|
|
732
768
|
|
|
733
|
-
export { type AppHealthCheckOptions, type AutoLoaderCheckOptions, type ConditionJobTask, type CreateContextOptions, type DashboardResource, DatabricksAdvancedWorkloadsAdapter, type DatabricksJobTask, DatabricksJobsAdapter, type DbtJobTask, type DefinedLiveSuite, type DefinedTargetPackRun, type DeltaColumnContract, type DuckDbConnectionLike, type DuckDbContextOptions, type EphemeralLakebaseBranch, type ExecutionContext, type ForEachJobTask, type GenieSpaceResource, type JobOrchestrationLiveSpec, type JobOrchestrationRun, type JobRepairOptions, type JobRepairRunState, type JobTaskBase, type JobTaskDependency, type JobTaskRunState, type JobWaitOptions, type JobsSubmitRequest, type LakebaseBranchOptions, type LakebaseCheckOptions, type LakebaseControlClient, type LiveCheck, type LiveCheckContext, type LiveCheckResult, type LiveCheckStatus, type LiveEvidence, type LiveSuiteRuntime, type LiveSuiteSpec, type MockDatabricksClient, type NotebookJobTask, type PipelineJobTask, type PipelineResource, type PollOptions, type PythonWheelJobTask, type RecordedCall, type RegionalDrCheckOptions, type RegisteredModelResource, type RunJobTask, type RunTargetPackOptions, type SecretRotationCheckOptions, type ServingEndpointResource, type SparkJarJobTask, type SparkPythonJobTask, type SparkSubmitJobTask, type SqlJobTask, TableFixture, type TargetPack, type TargetPackDoctorCheck, type TargetPackDoctorRequirement, type TargetPackDoctorResult, type TargetPackEvidenceMetadata, type TargetPackMaturity, type TargetPackRequirement, type TargetPackSpec, type TestProfile, type VectorSearchEndpointResource, type VectorSearchIndexResource, type VolumeIOCheckOptions, type WorkspaceClientLike, type WorkspaceContextOptions, type WorkspaceWaitOptions, advancedStreamingCdcCheck, aiBiDashboardCheck, appHealthCheck, assertDeltaContract, autoLoaderIngestionCheck, backupRestoreCheck, builtinTargetPacks, classicComputeCheck, compareToGolden, createAdvancedStreamingTargetPack, createAdvancedTargetPacks, createAiBiGenieTargetPack, createAppsOperationalFoundationPack, createBuiltinTargetPacks, createClientFromEnv, createDuckDbContext, createEphemeralLakebaseBranch, createExecutionContext, createFeatureEngineeringTargetPack, createFederationSharingTargetPack, createFoundationTargetPacks, createJobsCodeFoundationPack, createLakebaseTestProvider, createLakeflowFoundationPack, createLakeflowJobsTargetPack, createMlflowLifecycleTargetPack, createMockDatabricksClient, createModelServingTargetPack, createSecurityCostDrTargetPack, createSqlDeltaFoundationPack, createTargetPackRegistry, createUnityStorageFoundationPack, createVectorRagAgentsTargetPack, createWorkspaceContext, customLiveCheck, dbtBuildCheck, defineLiveSuite, defineTargetPack, defineTargetPackRun, deleteEphemeralLakebaseBranch, deleteVolumeFile, deltaContractCheck, doctorTargetPack, ensureVolumeDirectory, evalJudgeModelServingCheck, expectQueryToMatchGolden, expectTable, failureRecoveryCheck, featureEngineeringServingCheck, federationSharingCleanRoomsCheck, foundationTargetPacks, genieCheck, jobRunCheck, jobsCertificationCheck, jobsOrchestrationCheck, lakebaseCredentialCheck, lakebaseRoundTripCheck, lakeflowConnectCheck, mlflowLifecycleCheck, modelServingCheck, normalizeJobRun, normalizeRow, normalizeVolumeRoot, notebookSubmitCheck, parseJobOrchestrationLiveSpec, parseStatementRows, performanceBudgetCheck, pipelineRefreshCheck, ragAgentCheck, regionalDrCheck, renderJUnit, resolveLakebaseProject, resolveProfile, resolveTokenProvider, restrictedPrincipalCheck, rollbackCheck, runLiveSuite, runTargetPack, secretRotationCheck, secretScopeCheck, securityPostureCostCheck, serverlessComputeCheck, sqlRoundTripCheck, toLakebaseBranchId, toNamedParameters, unityCatalogAccessCheck, uploadVolumeFile, validateJobGraph, vectorSearchCheck, volumeIOCheck, waitForDatabricksRun, waitForDatabricksStatement, waitForPipelineUpdate };
|
|
769
|
+
export { type AgentServiceResource, type AppHealthCheckOptions, type AutoLoaderCheckOptions, type ConditionJobTask, type CreateContextOptions, type DashboardResource, DatabricksAdvancedWorkloadsAdapter, type DatabricksJobTask, DatabricksJobsAdapter, type DbtJobTask, type DefinedLiveSuite, type DefinedTargetPackRun, type DeltaColumnContract, type DuckDbConnectionLike, type DuckDbContextOptions, type EphemeralLakebaseBranch, type ExecutionContext, type ForEachJobTask, type GenieSpaceResource, type JobOrchestrationLiveSpec, type JobOrchestrationRun, type JobRepairOptions, type JobRepairRunState, type JobTaskBase, type JobTaskDependency, type JobTaskRunState, type JobWaitOptions, type JobsSubmitRequest, type LakebaseBranchOptions, type LakebaseCheckOptions, type LakebaseControlClient, type LiveCheck, type LiveCheckContext, type LiveCheckResult, type LiveCheckStatus, type LiveEvidence, type LiveSuiteRuntime, type LiveSuiteSpec, type MockDatabricksClient, type NotebookJobTask, type PipelineJobTask, type PipelineResource, type PollOptions, type PythonWheelJobTask, type RecordedCall, type RegionalDrCheckOptions, type RegisteredModelResource, type RunJobTask, type RunTargetPackOptions, type SecretRotationCheckOptions, type ServingEndpointResource, type SparkJarJobTask, type SparkPythonJobTask, type SparkSubmitJobTask, type SqlJobTask, TableFixture, type TargetPack, type TargetPackDoctorCheck, type TargetPackDoctorRequirement, type TargetPackDoctorResult, type TargetPackEvidenceMetadata, type TargetPackMaturity, type TargetPackRequirement, type TargetPackSpec, type TestProfile, type VectorSearchEndpointResource, type VectorSearchIndexResource, type VolumeIOCheckOptions, type WorkspaceClientLike, type WorkspaceContextOptions, type WorkspaceWaitOptions, advancedStreamingCdcCheck, agentEvaluationPipelineCheck, agentServicesEnrollmentCheck, aiBiDashboardCheck, appHealthCheck, assertDeltaContract, autoLoaderIngestionCheck, backupRestoreCheck, builtinTargetPacks, classicComputeCheck, compareToGolden, createAdvancedStreamingTargetPack, createAdvancedTargetPacks, createAgentEvaluationPipelineTargetPack, createAgentServicesEnrollmentTargetPack, createAiBiGenieTargetPack, createAppsOperationalFoundationPack, createBuiltinTargetPacks, createClientFromEnv, createDataQualityObservabilityTargetPack, createDuckDbContext, createEphemeralLakebaseBranch, createExecutionContext, createFeatureEngineeringTargetPack, createFederationSharingTargetPack, createFoundationTargetPacks, createJobsCodeFoundationPack, createLakebaseTestProvider, createLakeflowFoundationPack, createLakeflowJobsTargetPack, createManagedMcpAgentsTargetPack, createMlflow3AgentQualityTargetPack, createMlflowLifecycleTargetPack, createMockDatabricksClient, createModelServingTargetPack, createSecurityCostDrTargetPack, createSqlDeltaFoundationPack, createTargetPackRegistry, createUnityStorageFoundationPack, createVectorRagAgentsTargetPack, createWorkspaceContext, customLiveCheck, dataQualityAppTelemetryCheck, dbtBuildCheck, defineLiveSuite, defineTargetPack, defineTargetPackRun, deleteEphemeralLakebaseBranch, deleteVolumeFile, deltaContractCheck, doctorTargetPack, ensureVolumeDirectory, evalJudgeModelServingCheck, expectQueryToMatchGolden, expectTable, failureRecoveryCheck, featureEngineeringServingCheck, federationSharingCleanRoomsCheck, foundationTargetPacks, genieCheck, jobRunCheck, jobsCertificationCheck, jobsOrchestrationCheck, lakebaseCredentialCheck, lakebaseRoundTripCheck, lakeflowConnectCheck, managedMcpAgentsCheck, mlflow3GenAiQualityCheck, mlflowLifecycleCheck, modelServingCheck, normalizeJobRun, normalizeRow, normalizeVolumeRoot, notebookSubmitCheck, parseJobOrchestrationLiveSpec, parseStatementRows, performanceBudgetCheck, pipelineRefreshCheck, ragAgentCheck, regionalDrCheck, renderJUnit, resolveLakebaseProject, resolveProfile, resolveTokenProvider, restrictedPrincipalCheck, rollbackCheck, runLiveSuite, runTargetPack, secretRotationCheck, secretScopeCheck, securityPostureCostCheck, serverlessComputeCheck, sqlRoundTripCheck, toLakebaseBranchId, toNamedParameters, unityCatalogAccessCheck, uploadVolumeFile, validateJobGraph, vectorSearchCheck, volumeIOCheck, waitForDatabricksRun, waitForDatabricksStatement, waitForPipelineUpdate };
|
package/dist/index.d.ts
CHANGED
|
@@ -664,6 +664,17 @@ interface VectorSearchIndexResource extends JsonObject {
|
|
|
664
664
|
indexed_row_count?: number;
|
|
665
665
|
};
|
|
666
666
|
}
|
|
667
|
+
interface AgentServiceResource extends JsonObject {
|
|
668
|
+
name?: string;
|
|
669
|
+
full_name?: string;
|
|
670
|
+
agent_service_type?: string;
|
|
671
|
+
config?: {
|
|
672
|
+
connection?: {
|
|
673
|
+
name?: string;
|
|
674
|
+
};
|
|
675
|
+
base_path?: string;
|
|
676
|
+
};
|
|
677
|
+
}
|
|
667
678
|
/**
|
|
668
679
|
* Typed, injectable adapter for Databricks workload surfaces that are not part
|
|
669
680
|
* of SQL Statement Execution. It deliberately mirrors the public REST APIs so
|
|
@@ -693,6 +704,9 @@ declare class DatabricksAdvancedWorkloadsAdapter {
|
|
|
693
704
|
ipAccessList(id: string): Promise<JsonObject>;
|
|
694
705
|
clusterPolicy(id: string): Promise<JsonObject>;
|
|
695
706
|
warehouse(id: string): Promise<JsonObject>;
|
|
707
|
+
app(name: string): Promise<JsonObject>;
|
|
708
|
+
agentService(fullName: string): Promise<AgentServiceResource>;
|
|
709
|
+
agentServicePermissions(fullName: string): Promise<JsonObject>;
|
|
696
710
|
}
|
|
697
711
|
declare function advancedStreamingCdcCheck(): LiveCheck;
|
|
698
712
|
declare function lakeflowConnectCheck(): LiveCheck;
|
|
@@ -712,6 +726,23 @@ declare function vectorSearchCheck(): LiveCheck;
|
|
|
712
726
|
declare function ragAgentCheck(): LiveCheck;
|
|
713
727
|
declare function federationSharingCleanRoomsCheck(): LiveCheck;
|
|
714
728
|
declare function securityPostureCostCheck(): LiveCheck;
|
|
729
|
+
/**
|
|
730
|
+
* MLflow 3 changes quickly and its production-scorer lifecycle is Python-first.
|
|
731
|
+
* A customer-owned Databricks Job executes the native MLflow APIs while this
|
|
732
|
+
* check independently verifies durable trace, evaluation, scorer and monitor
|
|
733
|
+
* evidence through SQL. A successful Job without all four assertions fails.
|
|
734
|
+
*/
|
|
735
|
+
declare function mlflow3GenAiQualityCheck(): LiveCheck;
|
|
736
|
+
declare function agentEvaluationPipelineCheck(): LiveCheck;
|
|
737
|
+
/**
|
|
738
|
+
* The fixture Job uses Databricks' Streamable HTTP MCP client. It must list
|
|
739
|
+
* and invoke a managed server, list/invoke a UC MCP Service, and demonstrate
|
|
740
|
+
* that a tool excluded by the service's UC selector is denied. SQL evidence prevents a no-op Job
|
|
741
|
+
* from being accepted as certification.
|
|
742
|
+
*/
|
|
743
|
+
declare function managedMcpAgentsCheck(): LiveCheck;
|
|
744
|
+
declare function dataQualityAppTelemetryCheck(): LiveCheck;
|
|
745
|
+
declare function agentServicesEnrollmentCheck(): LiveCheck;
|
|
715
746
|
interface RegionalDrCheckOptions {
|
|
716
747
|
clientFactory?: (env: Record<string, string | undefined>) => WorkspaceClientLike;
|
|
717
748
|
}
|
|
@@ -725,9 +756,14 @@ declare function createModelServingTargetPack(): TargetPack;
|
|
|
725
756
|
declare function createVectorRagAgentsTargetPack(): TargetPack;
|
|
726
757
|
declare function createFederationSharingTargetPack(): TargetPack;
|
|
727
758
|
declare function createSecurityCostDrTargetPack(): TargetPack;
|
|
759
|
+
declare function createMlflow3AgentQualityTargetPack(): TargetPack;
|
|
760
|
+
declare function createAgentEvaluationPipelineTargetPack(): TargetPack;
|
|
761
|
+
declare function createManagedMcpAgentsTargetPack(): TargetPack;
|
|
762
|
+
declare function createDataQualityObservabilityTargetPack(): TargetPack;
|
|
763
|
+
declare function createAgentServicesEnrollmentTargetPack(): TargetPack;
|
|
728
764
|
declare function createAdvancedTargetPacks(): readonly TargetPack[];
|
|
729
765
|
|
|
730
766
|
declare function createBuiltinTargetPacks(): readonly TargetPack[];
|
|
731
767
|
declare const builtinTargetPacks: readonly TargetPack[];
|
|
732
768
|
|
|
733
|
-
export { type AppHealthCheckOptions, type AutoLoaderCheckOptions, type ConditionJobTask, type CreateContextOptions, type DashboardResource, DatabricksAdvancedWorkloadsAdapter, type DatabricksJobTask, DatabricksJobsAdapter, type DbtJobTask, type DefinedLiveSuite, type DefinedTargetPackRun, type DeltaColumnContract, type DuckDbConnectionLike, type DuckDbContextOptions, type EphemeralLakebaseBranch, type ExecutionContext, type ForEachJobTask, type GenieSpaceResource, type JobOrchestrationLiveSpec, type JobOrchestrationRun, type JobRepairOptions, type JobRepairRunState, type JobTaskBase, type JobTaskDependency, type JobTaskRunState, type JobWaitOptions, type JobsSubmitRequest, type LakebaseBranchOptions, type LakebaseCheckOptions, type LakebaseControlClient, type LiveCheck, type LiveCheckContext, type LiveCheckResult, type LiveCheckStatus, type LiveEvidence, type LiveSuiteRuntime, type LiveSuiteSpec, type MockDatabricksClient, type NotebookJobTask, type PipelineJobTask, type PipelineResource, type PollOptions, type PythonWheelJobTask, type RecordedCall, type RegionalDrCheckOptions, type RegisteredModelResource, type RunJobTask, type RunTargetPackOptions, type SecretRotationCheckOptions, type ServingEndpointResource, type SparkJarJobTask, type SparkPythonJobTask, type SparkSubmitJobTask, type SqlJobTask, TableFixture, type TargetPack, type TargetPackDoctorCheck, type TargetPackDoctorRequirement, type TargetPackDoctorResult, type TargetPackEvidenceMetadata, type TargetPackMaturity, type TargetPackRequirement, type TargetPackSpec, type TestProfile, type VectorSearchEndpointResource, type VectorSearchIndexResource, type VolumeIOCheckOptions, type WorkspaceClientLike, type WorkspaceContextOptions, type WorkspaceWaitOptions, advancedStreamingCdcCheck, aiBiDashboardCheck, appHealthCheck, assertDeltaContract, autoLoaderIngestionCheck, backupRestoreCheck, builtinTargetPacks, classicComputeCheck, compareToGolden, createAdvancedStreamingTargetPack, createAdvancedTargetPacks, createAiBiGenieTargetPack, createAppsOperationalFoundationPack, createBuiltinTargetPacks, createClientFromEnv, createDuckDbContext, createEphemeralLakebaseBranch, createExecutionContext, createFeatureEngineeringTargetPack, createFederationSharingTargetPack, createFoundationTargetPacks, createJobsCodeFoundationPack, createLakebaseTestProvider, createLakeflowFoundationPack, createLakeflowJobsTargetPack, createMlflowLifecycleTargetPack, createMockDatabricksClient, createModelServingTargetPack, createSecurityCostDrTargetPack, createSqlDeltaFoundationPack, createTargetPackRegistry, createUnityStorageFoundationPack, createVectorRagAgentsTargetPack, createWorkspaceContext, customLiveCheck, dbtBuildCheck, defineLiveSuite, defineTargetPack, defineTargetPackRun, deleteEphemeralLakebaseBranch, deleteVolumeFile, deltaContractCheck, doctorTargetPack, ensureVolumeDirectory, evalJudgeModelServingCheck, expectQueryToMatchGolden, expectTable, failureRecoveryCheck, featureEngineeringServingCheck, federationSharingCleanRoomsCheck, foundationTargetPacks, genieCheck, jobRunCheck, jobsCertificationCheck, jobsOrchestrationCheck, lakebaseCredentialCheck, lakebaseRoundTripCheck, lakeflowConnectCheck, mlflowLifecycleCheck, modelServingCheck, normalizeJobRun, normalizeRow, normalizeVolumeRoot, notebookSubmitCheck, parseJobOrchestrationLiveSpec, parseStatementRows, performanceBudgetCheck, pipelineRefreshCheck, ragAgentCheck, regionalDrCheck, renderJUnit, resolveLakebaseProject, resolveProfile, resolveTokenProvider, restrictedPrincipalCheck, rollbackCheck, runLiveSuite, runTargetPack, secretRotationCheck, secretScopeCheck, securityPostureCostCheck, serverlessComputeCheck, sqlRoundTripCheck, toLakebaseBranchId, toNamedParameters, unityCatalogAccessCheck, uploadVolumeFile, validateJobGraph, vectorSearchCheck, volumeIOCheck, waitForDatabricksRun, waitForDatabricksStatement, waitForPipelineUpdate };
|
|
769
|
+
export { type AgentServiceResource, type AppHealthCheckOptions, type AutoLoaderCheckOptions, type ConditionJobTask, type CreateContextOptions, type DashboardResource, DatabricksAdvancedWorkloadsAdapter, type DatabricksJobTask, DatabricksJobsAdapter, type DbtJobTask, type DefinedLiveSuite, type DefinedTargetPackRun, type DeltaColumnContract, type DuckDbConnectionLike, type DuckDbContextOptions, type EphemeralLakebaseBranch, type ExecutionContext, type ForEachJobTask, type GenieSpaceResource, type JobOrchestrationLiveSpec, type JobOrchestrationRun, type JobRepairOptions, type JobRepairRunState, type JobTaskBase, type JobTaskDependency, type JobTaskRunState, type JobWaitOptions, type JobsSubmitRequest, type LakebaseBranchOptions, type LakebaseCheckOptions, type LakebaseControlClient, type LiveCheck, type LiveCheckContext, type LiveCheckResult, type LiveCheckStatus, type LiveEvidence, type LiveSuiteRuntime, type LiveSuiteSpec, type MockDatabricksClient, type NotebookJobTask, type PipelineJobTask, type PipelineResource, type PollOptions, type PythonWheelJobTask, type RecordedCall, type RegionalDrCheckOptions, type RegisteredModelResource, type RunJobTask, type RunTargetPackOptions, type SecretRotationCheckOptions, type ServingEndpointResource, type SparkJarJobTask, type SparkPythonJobTask, type SparkSubmitJobTask, type SqlJobTask, TableFixture, type TargetPack, type TargetPackDoctorCheck, type TargetPackDoctorRequirement, type TargetPackDoctorResult, type TargetPackEvidenceMetadata, type TargetPackMaturity, type TargetPackRequirement, type TargetPackSpec, type TestProfile, type VectorSearchEndpointResource, type VectorSearchIndexResource, type VolumeIOCheckOptions, type WorkspaceClientLike, type WorkspaceContextOptions, type WorkspaceWaitOptions, advancedStreamingCdcCheck, agentEvaluationPipelineCheck, agentServicesEnrollmentCheck, aiBiDashboardCheck, appHealthCheck, assertDeltaContract, autoLoaderIngestionCheck, backupRestoreCheck, builtinTargetPacks, classicComputeCheck, compareToGolden, createAdvancedStreamingTargetPack, createAdvancedTargetPacks, createAgentEvaluationPipelineTargetPack, createAgentServicesEnrollmentTargetPack, createAiBiGenieTargetPack, createAppsOperationalFoundationPack, createBuiltinTargetPacks, createClientFromEnv, createDataQualityObservabilityTargetPack, createDuckDbContext, createEphemeralLakebaseBranch, createExecutionContext, createFeatureEngineeringTargetPack, createFederationSharingTargetPack, createFoundationTargetPacks, createJobsCodeFoundationPack, createLakebaseTestProvider, createLakeflowFoundationPack, createLakeflowJobsTargetPack, createManagedMcpAgentsTargetPack, createMlflow3AgentQualityTargetPack, createMlflowLifecycleTargetPack, createMockDatabricksClient, createModelServingTargetPack, createSecurityCostDrTargetPack, createSqlDeltaFoundationPack, createTargetPackRegistry, createUnityStorageFoundationPack, createVectorRagAgentsTargetPack, createWorkspaceContext, customLiveCheck, dataQualityAppTelemetryCheck, dbtBuildCheck, defineLiveSuite, defineTargetPack, defineTargetPackRun, deleteEphemeralLakebaseBranch, deleteVolumeFile, deltaContractCheck, doctorTargetPack, ensureVolumeDirectory, evalJudgeModelServingCheck, expectQueryToMatchGolden, expectTable, failureRecoveryCheck, featureEngineeringServingCheck, federationSharingCleanRoomsCheck, foundationTargetPacks, genieCheck, jobRunCheck, jobsCertificationCheck, jobsOrchestrationCheck, lakebaseCredentialCheck, lakebaseRoundTripCheck, lakeflowConnectCheck, managedMcpAgentsCheck, mlflow3GenAiQualityCheck, mlflowLifecycleCheck, modelServingCheck, normalizeJobRun, normalizeRow, normalizeVolumeRoot, notebookSubmitCheck, parseJobOrchestrationLiveSpec, parseStatementRows, performanceBudgetCheck, pipelineRefreshCheck, ragAgentCheck, regionalDrCheck, renderJUnit, resolveLakebaseProject, resolveProfile, resolveTokenProvider, restrictedPrincipalCheck, rollbackCheck, runLiveSuite, runTargetPack, secretRotationCheck, secretScopeCheck, securityPostureCostCheck, serverlessComputeCheck, sqlRoundTripCheck, toLakebaseBranchId, toNamedParameters, unityCatalogAccessCheck, uploadVolumeFile, validateJobGraph, vectorSearchCheck, volumeIOCheck, waitForDatabricksRun, waitForDatabricksStatement, waitForPipelineUpdate };
|