/** @inheritdoc */ protected function getArguments() { return array_merge(parent::getArguments(), [['instance-id', InputArgument::OPTIONAL, 'The instance to migrate']]); }
/** @inheritdoc */ protected function getArguments() { return array_merge(parent::getArguments(), [['cluster-id', InputArgument::REQUIRED, 'The id/name of the cluster'], ['web-server-id', InputArgument::REQUIRED, 'The id/name of the web server from "cluster-id"'], ['output-file', InputArgument::OPTIONAL, 'The /path/to/manifest/file to write. Otherwise it is written to the current working directory.']]); }
/** @inheritdoc */ protected function getArguments() { return array_merge(parent::getArguments(), [['instance-id', InputArgument::REQUIRED, 'The id of the instance to inspect.'], ['instance-uri', InputArgument::OPTIONAL, 'The URI of the instance (i.e. "http://localhost")'], ['admin-email', InputArgument::OPTIONAL, 'An instance administrator email'], ['admin-password', InputArgument::OPTIONAL, 'An instance administrator password']]); }
/** * Get the console command arguments. * * @return array */ protected function getArguments() { return array_merge(parent::getArguments(), [['owner-id', InputArgument::REQUIRED, 'The id of the owner of the new instance'], ['instance-id', InputArgument::REQUIRED, 'The name of the new instance'], ['guest-location', InputArgument::OPTIONAL, 'The location of the new instance. Values: ' . GuestLocations::prettyList('"', true), config('provisioning.default-guest-location')]]); }
/** @inheritdoc */ protected function getArguments() { return array_merge(parent::getArguments(), [['admin-email', InputArgument::REQUIRED, 'The admin email address.']]); }
/** * Get the console command arguments. * * @return array */ protected function getArguments() { return array_merge(parent::getArguments(), [['instance-id', InputArgument::REQUIRED, 'The instance id']]); }
/** @inheritdoc */ protected function getArguments() { return array_merge(parent::getArguments(), [['operation', InputArgument::REQUIRED, 'The operation to perform: show, create, update, or delete'], ['mount-id', InputArgument::OPTIONAL, 'The id of the mount upon which to perform operation']]); }
/** @inheritdoc */ protected function getArguments() { return array_merge(parent::getArguments(), [['operation', InputArgument::REQUIRED, 'The operation to perform: show, create, update, delete, add (server to cluster), or remove (server from cluster)'], ['cluster-id', InputArgument::OPTIONAL, 'The id of the cluster upon which to perform operation', config('dfe.cluster-id')]]); }
/** * Get the console command arguments. * * @return array */ protected function getArguments() { return array_merge(parent::getArguments(), [['owner-id', InputArgument::REQUIRED, 'The id of the owner of this key'], ['owner-type', InputArgument::REQUIRED, 'One of the following owner types: ' . OwnerTypes::prettyList()]]); }
/** * Get the console command arguments. * * @return array */ protected function getArguments() { return array_merge(parent::getArguments(), [['owner-id', InputArgument::REQUIRED, 'The id of the owner of the new instance'], ['instance-id', InputArgument::REQUIRED, 'The name of the new instance'], ['snapshot', InputArgument::REQUIRED, 'The path of the snapshot file'], ['guest-location', InputArgument::OPTIONAL, 'The location of the new instance', config('provisioning.default-guest-location')]]); }