interface HostingSite {
    active_release?: null | HostingRelease;
    active_release_id?: null | string;
    azure_region?: null | string;
    community_id: string;
    community_slug: string;
    databases?: HostingDatabase[];
    domains?: HostingDomain[];
    generated_hostname: string;
    hosting_account_id: string;
    id: string;
    mode: HostingMode;
    name: string;
    runtime_routes?: {
        path_prefix: string;
        runtime_origin: string;
        service: string;
    }[];
    server_mode_enabled: boolean;
    services?: HostingService[];
    slug: string;
    status: "failed" | "provisioning" | "draft" | "live" | "limited" | "disabled";
    title_id: string;
    url: string;
}

Properties

active_release?: null | HostingRelease
active_release_id?: null | string
azure_region?: null | string
community_id: string
community_slug: string
databases?: HostingDatabase[]
domains?: HostingDomain[]
generated_hostname: string
hosting_account_id: string
id: string
name: string
runtime_routes?: {
    path_prefix: string;
    runtime_origin: string;
    service: string;
}[]

Type declaration

  • path_prefix: string
  • runtime_origin: string
  • service: string
server_mode_enabled: boolean
services?: HostingService[]
slug: string
status: "failed" | "provisioning" | "draft" | "live" | "limited" | "disabled"
title_id: string
url: string

Generated using TypeDoc