UNPKG

sfdx-hardis

Version:

Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards

30 lines (29 loc) 1.1 kB
import { SfCommand } from '@salesforce/sf-plugins-core'; import { AnyJson } from '@salesforce/ts-types'; export default class SandboxCreate extends SfCommand<any> { static title: string; static description: string; static examples: string[]; static flags: any; protected static supportsDevhubUsername: boolean; static requiresProject: boolean; protected static requiresSfdxPlugins: string[]; protected debugMode: boolean; protected configInfo: any; protected devHubAlias: string; protected sandboxOrgAlias: string; protected userEmail: string; protected gitBranch: string; protected projectSandboxDef: any; protected sandboxOrgInfo: any; protected sandboxOrgUsername: string; protected sandboxOrgSfdxAuthUrl: string; protected authFileJson: any; protected projectName: string; protected sandboxOrgFromPool: any; run(): Promise<AnyJson>; initConfig(): Promise<void>; createSandboxOrg(): Promise<void>; buildSandboxCreateErrorMessage(createResult: any): string; updateSandboxOrgUser(): Promise<void>; }