interface HostingDatabase {
    auto_grow_enabled: boolean;
    azure_region: string;
    backup_retention_days: number;
    billing_active: boolean;
    billing_provider: HostingBillingProvider;
    billing_status: "failed" | "active" | "expired" | "past_due" | "unpaid" | "cancelled" | "awaiting_payment";
    binding_name: string;
    current_storage_bytes: number;
    deployment_model: "dedicated" | "serverless" | "shared" | "managed_cache";
    endpoint?: null | string;
    engine: HostingDatabaseEngine;
    high_availability_enabled: boolean;
    hosting_site_id: string;
    id: string;
    included_storage_bytes: number;
    last_error?: null | string;
    name: string;
    plan: HostingDatabasePlan;
    port?: null | number;
    status: "ready" | "failed" | "provisioning" | "awaiting_payment" | "requested" | "resizing" | "restoring" | "deleting" | "deleted";
}

Properties

auto_grow_enabled: boolean
azure_region: string
backup_retention_days: number
billing_active: boolean
billing_provider: HostingBillingProvider
billing_status: "failed" | "active" | "expired" | "past_due" | "unpaid" | "cancelled" | "awaiting_payment"
binding_name: string
current_storage_bytes: number
deployment_model: "dedicated" | "serverless" | "shared" | "managed_cache"
endpoint?: null | string
high_availability_enabled: boolean
hosting_site_id: string
id: string
included_storage_bytes: number
last_error?: null | string
name: string
port?: null | number
status: "ready" | "failed" | "provisioning" | "awaiting_payment" | "requested" | "resizing" | "restoring" | "deleting" | "deleted"

Generated using TypeDoc