Ejemplo n.º 1
0
 /** @inheritdoc */
 protected function getArguments()
 {
     return array_merge(parent::getArguments(), [['instance-id', InputArgument::OPTIONAL, 'The instance to migrate']]);
 }
Ejemplo n.º 2
0
 /** @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.']]);
 }
Ejemplo n.º 3
0
 /** @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']]);
 }
Ejemplo n.º 4
0
 /**
  * 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')]]);
 }
Ejemplo n.º 5
0
 /** @inheritdoc */
 protected function getArguments()
 {
     return array_merge(parent::getArguments(), [['admin-email', InputArgument::REQUIRED, 'The admin email address.']]);
 }
Ejemplo n.º 6
0
 /**
  * Get the console command arguments.
  *
  * @return array
  */
 protected function getArguments()
 {
     return array_merge(parent::getArguments(), [['instance-id', InputArgument::REQUIRED, 'The instance id']]);
 }
Ejemplo n.º 7
0
 /** @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']]);
 }
Ejemplo n.º 8
0
 /** @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')]]);
 }
Ejemplo n.º 9
0
 /**
  * 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()]]);
 }
Ejemplo n.º 10
0
 /**
  * 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')]]);
 }