Type alias DeployCommandDTO

DeployCommandDTO: Record<string, any> & {
    deploy: {
        hosts?: Record<string, string>;
        net?: {
            id: string;
            ip: string;
            mask: string;
        }[];
        nodes?: Record<string, string>;
    };
}

Type declaration

  • deploy: {
        hosts?: Record<string, string>;
        net?: {
            id: string;
            ip: string;
            mask: string;
        }[];
        nodes?: Record<string, string>;
    }
    • Optional hosts?: Record<string, string>
    • Optional net?: {
          id: string;
          ip: string;
          mask: string;
      }[]
    • Optional nodes?: Record<string, string>