adk-deploy 0.6.0

Deployment manifest, bundling, and control-plane client for ADK-Rust
Documentation
//! Deployment manifest, bundling, and control-plane client for ADK-Rust.
//!
//! # Example
//!
//! ```no_run
//! use adk_deploy::DeploymentManifest;
//! use std::path::Path;
//!
//! let manifest = DeploymentManifest::from_path(Path::new("adk-deploy.toml")).unwrap();
//! assert_eq!(manifest.agent.name, "my-agent");
//! ```

mod bundle;
mod client;
mod config;
mod error;
mod manifest;
mod models;

pub use bundle::{BundleArtifact, BundleBuilder};
pub use client::DeployClient;
pub use config::DeployClientConfig;
pub use error::{DeployError, DeployResult};
pub use manifest::{
    A2aConfig, AgentAuthConfig, AgentConfig, AuthModeSpec, BindingMode, BuildConfig,
    DeploymentManifest, DeploymentStrategyConfig, DeploymentStrategyKind, EnvVarSpec, GraphConfig,
    GuardrailConfig, HealthCheckConfig, InteractionConfig, ManualInteractionConfig, PluginRef,
    RealtimeConfig, SecretRef, ServiceBinding, ServiceKind, SkillConfig, SourceInfo,
    TelemetryConfig, TriggerInteractionConfig, TriggerKind,
};
pub use models::{
    ActiveInstance, AgentDetail, AgentSummary, AlertSummary, AuditEvent, AuthSessionResponse,
    BillingSummary, DashboardResponse, DeploymentActionState, DeploymentActions,
    DeploymentHistoryResponse, DeploymentRecord, DeploymentStatusResponse, DeploymentStatusValue,
    DeploymentSummary, EnvironmentSummary, HitlCheckpoint, LogEntry, LoginRequest, LoginResponse,
    MetricPoint, MetricsSummary, PushDeploymentRequest, PushDeploymentResponse, SecretListResponse,
    SecretSetRequest, TraceAdkIdentity, TraceExecutionIdentity, TraceInvocation, TraceSession,
    TraceSpan, TraceSummary, TraceTokenUsage, WorkspaceSummary,
};