DeploymentDefinition: {
    docker?: DockerSource;
    env: DeploymentEnv[];
    git?: GitSource;
    health_checks: DeploymentHealthCheck[];
    instance_types: DeploymentInstanceType[];
    name: string;
    ports: DeploymentPort[];
    regions: string[];
    routes: DeploymentRoute[];
    scalings?: DeploymentScaling[];
    skip_cache: boolean;
    type: "INVALID" | "WEB" | "WORKER";
}

Type declaration