object commands
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- commands
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- sealed trait Command[T] extends AnyRef
- case class Configuration(cloudflowApp: String = "", namespace: Option[String] = None, operatorNamespace: Option[String] = None, output: Format = format.Default) extends Command[ConfigurationResult] with Product with Serializable
- case class Configure(cloudflowApp: String = "", namespace: Option[String] = None, operatorNamespace: Option[String] = None, confs: Seq[File] = Seq(), configKeys: Map[String, String] = Map(), logbackConfig: Option[File] = None, output: Format = format.Default) extends Command[ConfigureResult] with WithConfiguration with Product with Serializable
- case class Deploy(crFile: File = new File(""), namespace: Option[String] = None, operatorNamespace: Option[String] = None, dockerUsername: String = "", dockerPassword: String = "", noRegistryCredentials: Boolean = false, dockerPasswordStdIn: Boolean = false, volumeMounts: Map[String, String] = Map(), scales: Map[String, Int] = Map(), confs: Seq[File] = Seq(), configKeys: Map[String, String] = Map(), logbackConfig: Option[File] = None, unmanagedRuntimes: Seq[String] = Seq(), serviceAccount: Option[String] = None, output: Format = format.Default) extends Command[DeployResult] with WithConfiguration with Product with Serializable
- case class List(namespace: Option[String] = None, operatorNamespace: Option[String] = None, output: Format = format.Default) extends Command[ListResult] with Product with Serializable
- case class Scale(cloudflowApp: String = "", namespace: Option[String] = None, operatorNamespace: Option[String] = None, scales: Map[String, Int] = Map(), output: Format = format.Default) extends Command[ScaleResult] with Product with Serializable
- case class Status(cloudflowApp: String = "", namespace: Option[String] = None, operatorNamespace: Option[String] = None, output: Format = format.Default) extends Command[StatusResult] with Product with Serializable
- case class Undeploy(cloudflowApp: String = "", namespace: Option[String] = None, operatorNamespace: Option[String] = None, output: Format = format.Default) extends Command[UndeployResult] with Product with Serializable
- case class UpdateCredentials(cloudflowApp: String = "", namespace: Option[String] = None, operatorNamespace: Option[String] = None, dockerRegistry: String = "", username: String = "", password: String = "", dockerPasswordStdIn: Boolean = false, output: Format = format.Default) extends Command[UpdateCredentialsResult] with Product with Serializable
- case class Version(namespace: Option[String] = None, operatorNamespace: Option[String] = None, output: Format = format.Default) extends Command[VersionResult] with Product with Serializable
- trait WithConfiguration extends AnyRef
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object format