@fabricorg/databricks-testkit 0.7.1 → 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/README.md +2 -2
- package/dist/{chunk-SCVVMUAF.js → chunk-MV752EAZ.js} +144 -10
- package/dist/chunk-MV752EAZ.js.map +1 -0
- package/dist/index.cjs +646 -34
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +54 -7
- package/dist/index.d.ts +54 -7
- package/dist/index.js +473 -15
- package/dist/index.js.map +1 -1
- package/dist/parity.cjs +124 -7
- package/dist/parity.cjs.map +1 -1
- package/dist/parity.js +1 -1
- package/dist/{workspace-context-VLBKMX3V.js → workspace-context-PCQAQSCO.js} +3 -3
- package/dist/{workspace-context-VLBKMX3V.js.map → workspace-context-PCQAQSCO.js.map} +1 -1
- package/package.json +1 -2
- package/dist/chunk-SCVVMUAF.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { T as TableFixture } from './fixtures-CAWhzIHu.cjs';
|
|
2
2
|
export { F as FixtureColumn, p as parseFixtureColumns, r as resolveFixtureRows } from './fixtures-CAWhzIHu.cjs';
|
|
3
|
-
import { DatabricksRestClient } from '@fabric-harness/databricks';
|
|
4
|
-
export { waitForDatabricksRun, waitForDatabricksStatement } from '@fabric-harness/databricks';
|
|
5
3
|
import { LakebasePoolFactory, LakebaseDatabaseProvider } from '@fabricorg/experiments-db-pool';
|
|
6
4
|
|
|
7
5
|
type TestProfile = 'local' | 'live';
|
|
@@ -67,16 +65,29 @@ declare function createDuckDbContext(options?: DuckDbContextOptions): Promise<Ex
|
|
|
67
65
|
*/
|
|
68
66
|
declare function normalizeRow(row: Record<string, unknown>): Record<string, unknown>;
|
|
69
67
|
|
|
70
|
-
/**
|
|
68
|
+
/** Minimal request boundary used by the live Databricks certification suite. */
|
|
71
69
|
interface WorkspaceClientLike {
|
|
72
70
|
get<T>(path: string, query?: Record<string, string | number | boolean | undefined>): Promise<T>;
|
|
73
|
-
post<T>(path: string, body?: unknown, query?: Record<string, string | number | boolean | undefined>, options?:
|
|
71
|
+
post<T>(path: string, body?: unknown, query?: Record<string, string | number | boolean | undefined>, options?: WorkspaceRequestOptions): Promise<T>;
|
|
72
|
+
}
|
|
73
|
+
interface WorkspaceRequestOptions {
|
|
74
|
+
retry?: 'safe' | 'always' | 'never';
|
|
75
|
+
idempotencyKey?: string;
|
|
76
|
+
maxRetries?: number;
|
|
77
|
+
}
|
|
78
|
+
interface WorkspaceWaitOptions {
|
|
79
|
+
pollIntervalMs?: number;
|
|
80
|
+
timeoutMs?: number;
|
|
81
|
+
signal?: AbortSignal;
|
|
74
82
|
}
|
|
83
|
+
declare function waitForDatabricksRun(client: WorkspaceClientLike, runId: number, options?: WorkspaceWaitOptions): Promise<Record<string, unknown>>;
|
|
84
|
+
declare function waitForDatabricksStatement(client: WorkspaceClientLike, statementId: string, options?: WorkspaceWaitOptions): Promise<Record<string, unknown>>;
|
|
85
|
+
|
|
75
86
|
interface WorkspaceContextOptions {
|
|
76
87
|
env?: Record<string, string | undefined>;
|
|
77
88
|
/** Schema within the catalog used by qual(); defaults to DBX_TEST_SCHEMA. */
|
|
78
89
|
schema?: string;
|
|
79
|
-
/** Injectable client for hermetic tests; defaults to
|
|
90
|
+
/** Injectable client for hermetic tests; defaults to the testkit workspace client. */
|
|
80
91
|
client?: WorkspaceClientLike;
|
|
81
92
|
/** Injectable fetch for the OAuth M2M exchange. */
|
|
82
93
|
fetchImpl?: typeof fetch;
|
|
@@ -134,7 +145,7 @@ declare function parseStatementRows(response: StatementResponse): Record<string,
|
|
|
134
145
|
* explicit env/file OIDC federation → DATABRICKS_CLIENT_ID/SECRET (OAuth
|
|
135
146
|
* M2M) → DATABRICKS_TOKEN (legacy PAT).
|
|
136
147
|
*/
|
|
137
|
-
declare function createClientFromEnv(env: Record<string, string | undefined>, fetchImpl?: typeof fetch):
|
|
148
|
+
declare function createClientFromEnv(env: Record<string, string | undefined>, fetchImpl?: typeof fetch): WorkspaceClientLike;
|
|
138
149
|
declare function resolveTokenProvider(host: string, env: Record<string, string | undefined>, fetchImpl?: typeof fetch): string | (() => Promise<string>);
|
|
139
150
|
|
|
140
151
|
/**
|
|
@@ -653,6 +664,17 @@ interface VectorSearchIndexResource extends JsonObject {
|
|
|
653
664
|
indexed_row_count?: number;
|
|
654
665
|
};
|
|
655
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
|
+
}
|
|
656
678
|
/**
|
|
657
679
|
* Typed, injectable adapter for Databricks workload surfaces that are not part
|
|
658
680
|
* of SQL Statement Execution. It deliberately mirrors the public REST APIs so
|
|
@@ -682,6 +704,9 @@ declare class DatabricksAdvancedWorkloadsAdapter {
|
|
|
682
704
|
ipAccessList(id: string): Promise<JsonObject>;
|
|
683
705
|
clusterPolicy(id: string): Promise<JsonObject>;
|
|
684
706
|
warehouse(id: string): Promise<JsonObject>;
|
|
707
|
+
app(name: string): Promise<JsonObject>;
|
|
708
|
+
agentService(fullName: string): Promise<AgentServiceResource>;
|
|
709
|
+
agentServicePermissions(fullName: string): Promise<JsonObject>;
|
|
685
710
|
}
|
|
686
711
|
declare function advancedStreamingCdcCheck(): LiveCheck;
|
|
687
712
|
declare function lakeflowConnectCheck(): LiveCheck;
|
|
@@ -701,6 +726,23 @@ declare function vectorSearchCheck(): LiveCheck;
|
|
|
701
726
|
declare function ragAgentCheck(): LiveCheck;
|
|
702
727
|
declare function federationSharingCleanRoomsCheck(): LiveCheck;
|
|
703
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;
|
|
704
746
|
interface RegionalDrCheckOptions {
|
|
705
747
|
clientFactory?: (env: Record<string, string | undefined>) => WorkspaceClientLike;
|
|
706
748
|
}
|
|
@@ -714,9 +756,14 @@ declare function createModelServingTargetPack(): TargetPack;
|
|
|
714
756
|
declare function createVectorRagAgentsTargetPack(): TargetPack;
|
|
715
757
|
declare function createFederationSharingTargetPack(): TargetPack;
|
|
716
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;
|
|
717
764
|
declare function createAdvancedTargetPacks(): readonly TargetPack[];
|
|
718
765
|
|
|
719
766
|
declare function createBuiltinTargetPacks(): readonly TargetPack[];
|
|
720
767
|
declare const builtinTargetPacks: readonly TargetPack[];
|
|
721
768
|
|
|
722
|
-
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, 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, 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
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { T as TableFixture } from './fixtures-CAWhzIHu.js';
|
|
2
2
|
export { F as FixtureColumn, p as parseFixtureColumns, r as resolveFixtureRows } from './fixtures-CAWhzIHu.js';
|
|
3
|
-
import { DatabricksRestClient } from '@fabric-harness/databricks';
|
|
4
|
-
export { waitForDatabricksRun, waitForDatabricksStatement } from '@fabric-harness/databricks';
|
|
5
3
|
import { LakebasePoolFactory, LakebaseDatabaseProvider } from '@fabricorg/experiments-db-pool';
|
|
6
4
|
|
|
7
5
|
type TestProfile = 'local' | 'live';
|
|
@@ -67,16 +65,29 @@ declare function createDuckDbContext(options?: DuckDbContextOptions): Promise<Ex
|
|
|
67
65
|
*/
|
|
68
66
|
declare function normalizeRow(row: Record<string, unknown>): Record<string, unknown>;
|
|
69
67
|
|
|
70
|
-
/**
|
|
68
|
+
/** Minimal request boundary used by the live Databricks certification suite. */
|
|
71
69
|
interface WorkspaceClientLike {
|
|
72
70
|
get<T>(path: string, query?: Record<string, string | number | boolean | undefined>): Promise<T>;
|
|
73
|
-
post<T>(path: string, body?: unknown, query?: Record<string, string | number | boolean | undefined>, options?:
|
|
71
|
+
post<T>(path: string, body?: unknown, query?: Record<string, string | number | boolean | undefined>, options?: WorkspaceRequestOptions): Promise<T>;
|
|
72
|
+
}
|
|
73
|
+
interface WorkspaceRequestOptions {
|
|
74
|
+
retry?: 'safe' | 'always' | 'never';
|
|
75
|
+
idempotencyKey?: string;
|
|
76
|
+
maxRetries?: number;
|
|
77
|
+
}
|
|
78
|
+
interface WorkspaceWaitOptions {
|
|
79
|
+
pollIntervalMs?: number;
|
|
80
|
+
timeoutMs?: number;
|
|
81
|
+
signal?: AbortSignal;
|
|
74
82
|
}
|
|
83
|
+
declare function waitForDatabricksRun(client: WorkspaceClientLike, runId: number, options?: WorkspaceWaitOptions): Promise<Record<string, unknown>>;
|
|
84
|
+
declare function waitForDatabricksStatement(client: WorkspaceClientLike, statementId: string, options?: WorkspaceWaitOptions): Promise<Record<string, unknown>>;
|
|
85
|
+
|
|
75
86
|
interface WorkspaceContextOptions {
|
|
76
87
|
env?: Record<string, string | undefined>;
|
|
77
88
|
/** Schema within the catalog used by qual(); defaults to DBX_TEST_SCHEMA. */
|
|
78
89
|
schema?: string;
|
|
79
|
-
/** Injectable client for hermetic tests; defaults to
|
|
90
|
+
/** Injectable client for hermetic tests; defaults to the testkit workspace client. */
|
|
80
91
|
client?: WorkspaceClientLike;
|
|
81
92
|
/** Injectable fetch for the OAuth M2M exchange. */
|
|
82
93
|
fetchImpl?: typeof fetch;
|
|
@@ -134,7 +145,7 @@ declare function parseStatementRows(response: StatementResponse): Record<string,
|
|
|
134
145
|
* explicit env/file OIDC federation → DATABRICKS_CLIENT_ID/SECRET (OAuth
|
|
135
146
|
* M2M) → DATABRICKS_TOKEN (legacy PAT).
|
|
136
147
|
*/
|
|
137
|
-
declare function createClientFromEnv(env: Record<string, string | undefined>, fetchImpl?: typeof fetch):
|
|
148
|
+
declare function createClientFromEnv(env: Record<string, string | undefined>, fetchImpl?: typeof fetch): WorkspaceClientLike;
|
|
138
149
|
declare function resolveTokenProvider(host: string, env: Record<string, string | undefined>, fetchImpl?: typeof fetch): string | (() => Promise<string>);
|
|
139
150
|
|
|
140
151
|
/**
|
|
@@ -653,6 +664,17 @@ interface VectorSearchIndexResource extends JsonObject {
|
|
|
653
664
|
indexed_row_count?: number;
|
|
654
665
|
};
|
|
655
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
|
+
}
|
|
656
678
|
/**
|
|
657
679
|
* Typed, injectable adapter for Databricks workload surfaces that are not part
|
|
658
680
|
* of SQL Statement Execution. It deliberately mirrors the public REST APIs so
|
|
@@ -682,6 +704,9 @@ declare class DatabricksAdvancedWorkloadsAdapter {
|
|
|
682
704
|
ipAccessList(id: string): Promise<JsonObject>;
|
|
683
705
|
clusterPolicy(id: string): Promise<JsonObject>;
|
|
684
706
|
warehouse(id: string): Promise<JsonObject>;
|
|
707
|
+
app(name: string): Promise<JsonObject>;
|
|
708
|
+
agentService(fullName: string): Promise<AgentServiceResource>;
|
|
709
|
+
agentServicePermissions(fullName: string): Promise<JsonObject>;
|
|
685
710
|
}
|
|
686
711
|
declare function advancedStreamingCdcCheck(): LiveCheck;
|
|
687
712
|
declare function lakeflowConnectCheck(): LiveCheck;
|
|
@@ -701,6 +726,23 @@ declare function vectorSearchCheck(): LiveCheck;
|
|
|
701
726
|
declare function ragAgentCheck(): LiveCheck;
|
|
702
727
|
declare function federationSharingCleanRoomsCheck(): LiveCheck;
|
|
703
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;
|
|
704
746
|
interface RegionalDrCheckOptions {
|
|
705
747
|
clientFactory?: (env: Record<string, string | undefined>) => WorkspaceClientLike;
|
|
706
748
|
}
|
|
@@ -714,9 +756,14 @@ declare function createModelServingTargetPack(): TargetPack;
|
|
|
714
756
|
declare function createVectorRagAgentsTargetPack(): TargetPack;
|
|
715
757
|
declare function createFederationSharingTargetPack(): TargetPack;
|
|
716
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;
|
|
717
764
|
declare function createAdvancedTargetPacks(): readonly TargetPack[];
|
|
718
765
|
|
|
719
766
|
declare function createBuiltinTargetPacks(): readonly TargetPack[];
|
|
720
767
|
declare const builtinTargetPacks: readonly TargetPack[];
|
|
721
768
|
|
|
722
|
-
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, 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, 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 };
|