@fabricorg/databricks-testkit 0.4.0 → 0.5.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.d.cts CHANGED
@@ -604,7 +604,106 @@ declare function jobsCertificationCheck(): LiveCheck;
604
604
 
605
605
  declare function createLakeflowJobsTargetPack(): TargetPack;
606
606
 
607
+ type JsonObject = Record<string, unknown>;
608
+ interface PipelineResource extends JsonObject {
609
+ pipeline_id?: string;
610
+ name?: string;
611
+ state?: string;
612
+ spec?: JsonObject;
613
+ }
614
+ interface DashboardResource extends JsonObject {
615
+ dashboard_id?: string;
616
+ display_name?: string;
617
+ lifecycle_state?: string;
618
+ }
619
+ interface GenieSpaceResource extends JsonObject {
620
+ space_id?: string;
621
+ title?: string;
622
+ }
623
+ interface RegisteredModelResource extends JsonObject {
624
+ full_name?: string;
625
+ name?: string;
626
+ }
627
+ interface ServingEndpointResource extends JsonObject {
628
+ name?: string;
629
+ state?: {
630
+ ready?: string;
631
+ config_update?: string;
632
+ };
633
+ config?: JsonObject;
634
+ ai_gateway?: JsonObject;
635
+ }
636
+ interface VectorSearchEndpointResource extends JsonObject {
637
+ name?: string;
638
+ endpoint_status?: {
639
+ state?: string;
640
+ message?: string;
641
+ };
642
+ }
643
+ interface VectorSearchIndexResource extends JsonObject {
644
+ name?: string;
645
+ status?: {
646
+ ready?: boolean;
647
+ message?: string;
648
+ indexed_row_count?: number;
649
+ };
650
+ }
651
+ /**
652
+ * Typed, injectable adapter for Databricks workload surfaces that are not part
653
+ * of SQL Statement Execution. It deliberately mirrors the public REST APIs so
654
+ * target packs can be unit tested without a workspace.
655
+ */
656
+ declare class DatabricksAdvancedWorkloadsAdapter {
657
+ private readonly client;
658
+ constructor(client: WorkspaceClientLike);
659
+ pipeline(id: string): Promise<PipelineResource>;
660
+ table(fullName: string): Promise<JsonObject>;
661
+ dashboard(id: string): Promise<DashboardResource>;
662
+ genieSpace(id: string): Promise<GenieSpaceResource>;
663
+ startGenieConversation(spaceId: string, question: string): Promise<JsonObject>;
664
+ experiment(id: string): Promise<JsonObject>;
665
+ registeredModel(fullName: string): Promise<RegisteredModelResource>;
666
+ modelVersion(fullName: string, version: string): Promise<JsonObject>;
667
+ onlineTable(fullName: string): Promise<JsonObject>;
668
+ servingEndpoint(name: string): Promise<ServingEndpointResource>;
669
+ invokeServingEndpoint(name: string, request: unknown): Promise<JsonObject>;
670
+ vectorSearchEndpoint(name: string): Promise<VectorSearchEndpointResource>;
671
+ vectorSearchIndex(name: string): Promise<VectorSearchIndexResource>;
672
+ queryVectorSearchIndex(name: string, request: unknown): Promise<JsonObject>;
673
+ connection(name: string): Promise<JsonObject>;
674
+ share(name: string): Promise<JsonObject>;
675
+ cleanRoom(name: string): Promise<JsonObject>;
676
+ ipAccessList(id: string): Promise<JsonObject>;
677
+ clusterPolicy(id: string): Promise<JsonObject>;
678
+ warehouse(id: string): Promise<JsonObject>;
679
+ }
680
+ declare function advancedStreamingCdcCheck(): LiveCheck;
681
+ declare function lakeflowConnectCheck(): LiveCheck;
682
+ declare function aiBiDashboardCheck(): LiveCheck;
683
+ declare function genieCheck(): LiveCheck;
684
+ declare function mlflowLifecycleCheck(): LiveCheck;
685
+ declare function featureEngineeringServingCheck(): LiveCheck;
686
+ declare function modelServingCheck(): LiveCheck;
687
+ declare function vectorSearchCheck(): LiveCheck;
688
+ declare function ragAgentCheck(): LiveCheck;
689
+ declare function federationSharingCleanRoomsCheck(): LiveCheck;
690
+ declare function securityPostureCostCheck(): LiveCheck;
691
+ interface RegionalDrCheckOptions {
692
+ clientFactory?: (env: Record<string, string | undefined>) => WorkspaceClientLike;
693
+ }
694
+ declare function regionalDrCheck(options?: RegionalDrCheckOptions): LiveCheck;
695
+
696
+ declare function createAdvancedStreamingTargetPack(): TargetPack;
697
+ declare function createAiBiGenieTargetPack(): TargetPack;
698
+ declare function createMlflowLifecycleTargetPack(): TargetPack;
699
+ declare function createFeatureEngineeringTargetPack(): TargetPack;
700
+ declare function createModelServingTargetPack(): TargetPack;
701
+ declare function createVectorRagAgentsTargetPack(): TargetPack;
702
+ declare function createFederationSharingTargetPack(): TargetPack;
703
+ declare function createSecurityCostDrTargetPack(): TargetPack;
704
+ declare function createAdvancedTargetPacks(): readonly TargetPack[];
705
+
607
706
  declare function createBuiltinTargetPacks(): readonly TargetPack[];
608
707
  declare const builtinTargetPacks: readonly TargetPack[];
609
708
 
610
- export { type AppHealthCheckOptions, type AutoLoaderCheckOptions, type ConditionJobTask, type CreateContextOptions, type DatabricksJobTask, DatabricksJobsAdapter, type DbtJobTask, type DefinedLiveSuite, type DefinedTargetPackRun, type DeltaColumnContract, type DuckDbConnectionLike, type DuckDbContextOptions, type EphemeralLakebaseBranch, type ExecutionContext, type ForEachJobTask, 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 PollOptions, type PythonWheelJobTask, type RecordedCall, type RunJobTask, type RunTargetPackOptions, type SecretRotationCheckOptions, 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 VolumeIOCheckOptions, type WorkspaceClientLike, type WorkspaceContextOptions, appHealthCheck, assertDeltaContract, autoLoaderIngestionCheck, backupRestoreCheck, builtinTargetPacks, classicComputeCheck, compareToGolden, createAppsOperationalFoundationPack, createBuiltinTargetPacks, createClientFromEnv, createDuckDbContext, createEphemeralLakebaseBranch, createExecutionContext, createFoundationTargetPacks, createJobsCodeFoundationPack, createLakebaseTestProvider, createLakeflowFoundationPack, createLakeflowJobsTargetPack, createMockDatabricksClient, createSqlDeltaFoundationPack, createTargetPackRegistry, createUnityStorageFoundationPack, createWorkspaceContext, customLiveCheck, dbtBuildCheck, defineLiveSuite, defineTargetPack, defineTargetPackRun, deleteEphemeralLakebaseBranch, deleteVolumeFile, deltaContractCheck, doctorTargetPack, ensureVolumeDirectory, expectQueryToMatchGolden, expectTable, failureRecoveryCheck, foundationTargetPacks, jobRunCheck, jobsCertificationCheck, jobsOrchestrationCheck, lakebaseCredentialCheck, lakebaseRoundTripCheck, normalizeJobRun, normalizeRow, normalizeVolumeRoot, notebookSubmitCheck, parseJobOrchestrationLiveSpec, parseStatementRows, performanceBudgetCheck, pipelineRefreshCheck, renderJUnit, resolveLakebaseProject, resolveProfile, resolveTokenProvider, restrictedPrincipalCheck, rollbackCheck, runLiveSuite, runTargetPack, secretRotationCheck, secretScopeCheck, serverlessComputeCheck, sqlRoundTripCheck, toLakebaseBranchId, toNamedParameters, unityCatalogAccessCheck, uploadVolumeFile, validateJobGraph, volumeIOCheck, waitForPipelineUpdate };
709
+ 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, 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, 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, waitForPipelineUpdate };
package/dist/index.d.ts CHANGED
@@ -604,7 +604,106 @@ declare function jobsCertificationCheck(): LiveCheck;
604
604
 
605
605
  declare function createLakeflowJobsTargetPack(): TargetPack;
606
606
 
607
+ type JsonObject = Record<string, unknown>;
608
+ interface PipelineResource extends JsonObject {
609
+ pipeline_id?: string;
610
+ name?: string;
611
+ state?: string;
612
+ spec?: JsonObject;
613
+ }
614
+ interface DashboardResource extends JsonObject {
615
+ dashboard_id?: string;
616
+ display_name?: string;
617
+ lifecycle_state?: string;
618
+ }
619
+ interface GenieSpaceResource extends JsonObject {
620
+ space_id?: string;
621
+ title?: string;
622
+ }
623
+ interface RegisteredModelResource extends JsonObject {
624
+ full_name?: string;
625
+ name?: string;
626
+ }
627
+ interface ServingEndpointResource extends JsonObject {
628
+ name?: string;
629
+ state?: {
630
+ ready?: string;
631
+ config_update?: string;
632
+ };
633
+ config?: JsonObject;
634
+ ai_gateway?: JsonObject;
635
+ }
636
+ interface VectorSearchEndpointResource extends JsonObject {
637
+ name?: string;
638
+ endpoint_status?: {
639
+ state?: string;
640
+ message?: string;
641
+ };
642
+ }
643
+ interface VectorSearchIndexResource extends JsonObject {
644
+ name?: string;
645
+ status?: {
646
+ ready?: boolean;
647
+ message?: string;
648
+ indexed_row_count?: number;
649
+ };
650
+ }
651
+ /**
652
+ * Typed, injectable adapter for Databricks workload surfaces that are not part
653
+ * of SQL Statement Execution. It deliberately mirrors the public REST APIs so
654
+ * target packs can be unit tested without a workspace.
655
+ */
656
+ declare class DatabricksAdvancedWorkloadsAdapter {
657
+ private readonly client;
658
+ constructor(client: WorkspaceClientLike);
659
+ pipeline(id: string): Promise<PipelineResource>;
660
+ table(fullName: string): Promise<JsonObject>;
661
+ dashboard(id: string): Promise<DashboardResource>;
662
+ genieSpace(id: string): Promise<GenieSpaceResource>;
663
+ startGenieConversation(spaceId: string, question: string): Promise<JsonObject>;
664
+ experiment(id: string): Promise<JsonObject>;
665
+ registeredModel(fullName: string): Promise<RegisteredModelResource>;
666
+ modelVersion(fullName: string, version: string): Promise<JsonObject>;
667
+ onlineTable(fullName: string): Promise<JsonObject>;
668
+ servingEndpoint(name: string): Promise<ServingEndpointResource>;
669
+ invokeServingEndpoint(name: string, request: unknown): Promise<JsonObject>;
670
+ vectorSearchEndpoint(name: string): Promise<VectorSearchEndpointResource>;
671
+ vectorSearchIndex(name: string): Promise<VectorSearchIndexResource>;
672
+ queryVectorSearchIndex(name: string, request: unknown): Promise<JsonObject>;
673
+ connection(name: string): Promise<JsonObject>;
674
+ share(name: string): Promise<JsonObject>;
675
+ cleanRoom(name: string): Promise<JsonObject>;
676
+ ipAccessList(id: string): Promise<JsonObject>;
677
+ clusterPolicy(id: string): Promise<JsonObject>;
678
+ warehouse(id: string): Promise<JsonObject>;
679
+ }
680
+ declare function advancedStreamingCdcCheck(): LiveCheck;
681
+ declare function lakeflowConnectCheck(): LiveCheck;
682
+ declare function aiBiDashboardCheck(): LiveCheck;
683
+ declare function genieCheck(): LiveCheck;
684
+ declare function mlflowLifecycleCheck(): LiveCheck;
685
+ declare function featureEngineeringServingCheck(): LiveCheck;
686
+ declare function modelServingCheck(): LiveCheck;
687
+ declare function vectorSearchCheck(): LiveCheck;
688
+ declare function ragAgentCheck(): LiveCheck;
689
+ declare function federationSharingCleanRoomsCheck(): LiveCheck;
690
+ declare function securityPostureCostCheck(): LiveCheck;
691
+ interface RegionalDrCheckOptions {
692
+ clientFactory?: (env: Record<string, string | undefined>) => WorkspaceClientLike;
693
+ }
694
+ declare function regionalDrCheck(options?: RegionalDrCheckOptions): LiveCheck;
695
+
696
+ declare function createAdvancedStreamingTargetPack(): TargetPack;
697
+ declare function createAiBiGenieTargetPack(): TargetPack;
698
+ declare function createMlflowLifecycleTargetPack(): TargetPack;
699
+ declare function createFeatureEngineeringTargetPack(): TargetPack;
700
+ declare function createModelServingTargetPack(): TargetPack;
701
+ declare function createVectorRagAgentsTargetPack(): TargetPack;
702
+ declare function createFederationSharingTargetPack(): TargetPack;
703
+ declare function createSecurityCostDrTargetPack(): TargetPack;
704
+ declare function createAdvancedTargetPacks(): readonly TargetPack[];
705
+
607
706
  declare function createBuiltinTargetPacks(): readonly TargetPack[];
608
707
  declare const builtinTargetPacks: readonly TargetPack[];
609
708
 
610
- export { type AppHealthCheckOptions, type AutoLoaderCheckOptions, type ConditionJobTask, type CreateContextOptions, type DatabricksJobTask, DatabricksJobsAdapter, type DbtJobTask, type DefinedLiveSuite, type DefinedTargetPackRun, type DeltaColumnContract, type DuckDbConnectionLike, type DuckDbContextOptions, type EphemeralLakebaseBranch, type ExecutionContext, type ForEachJobTask, 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 PollOptions, type PythonWheelJobTask, type RecordedCall, type RunJobTask, type RunTargetPackOptions, type SecretRotationCheckOptions, 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 VolumeIOCheckOptions, type WorkspaceClientLike, type WorkspaceContextOptions, appHealthCheck, assertDeltaContract, autoLoaderIngestionCheck, backupRestoreCheck, builtinTargetPacks, classicComputeCheck, compareToGolden, createAppsOperationalFoundationPack, createBuiltinTargetPacks, createClientFromEnv, createDuckDbContext, createEphemeralLakebaseBranch, createExecutionContext, createFoundationTargetPacks, createJobsCodeFoundationPack, createLakebaseTestProvider, createLakeflowFoundationPack, createLakeflowJobsTargetPack, createMockDatabricksClient, createSqlDeltaFoundationPack, createTargetPackRegistry, createUnityStorageFoundationPack, createWorkspaceContext, customLiveCheck, dbtBuildCheck, defineLiveSuite, defineTargetPack, defineTargetPackRun, deleteEphemeralLakebaseBranch, deleteVolumeFile, deltaContractCheck, doctorTargetPack, ensureVolumeDirectory, expectQueryToMatchGolden, expectTable, failureRecoveryCheck, foundationTargetPacks, jobRunCheck, jobsCertificationCheck, jobsOrchestrationCheck, lakebaseCredentialCheck, lakebaseRoundTripCheck, normalizeJobRun, normalizeRow, normalizeVolumeRoot, notebookSubmitCheck, parseJobOrchestrationLiveSpec, parseStatementRows, performanceBudgetCheck, pipelineRefreshCheck, renderJUnit, resolveLakebaseProject, resolveProfile, resolveTokenProvider, restrictedPrincipalCheck, rollbackCheck, runLiveSuite, runTargetPack, secretRotationCheck, secretScopeCheck, serverlessComputeCheck, sqlRoundTripCheck, toLakebaseBranchId, toNamedParameters, unityCatalogAccessCheck, uploadVolumeFile, validateJobGraph, volumeIOCheck, waitForPipelineUpdate };
709
+ 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, 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, 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, waitForPipelineUpdate };