Packages

package deployments

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. deployments
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Deployments = Service

Value Members

  1. def create(newResource: Deployment, namespace: K8sNamespace, dryRun: Boolean = false): ZIO[Deployments, K8sFailure, Deployment]
  2. def delete(name: String, deleteOptions: DeleteOptions, namespace: K8sNamespace, dryRun: Boolean = false, gracePeriod: Option[zio.Duration] = None, propagationPolicy: Option[PropagationPolicy] = None): ZIO[Deployments, K8sFailure, Status]
  3. def deleteAll(deleteOptions: DeleteOptions, namespace: K8sNamespace, dryRun: Boolean = false, gracePeriod: Option[zio.Duration] = None, propagationPolicy: Option[PropagationPolicy] = None, fieldSelector: Option[FieldSelector] = None, labelSelector: Option[LabelSelector] = None): ZIO[Deployments, K8sFailure, Status]
  4. def get(name: String, namespace: K8sNamespace): ZIO[Deployments, K8sFailure, Deployment]
  5. def getAll(namespace: Option[K8sNamespace], chunkSize: Int = 10, fieldSelector: Option[FieldSelector] = None, labelSelector: Option[LabelSelector] = None, resourceVersion: ListResourceVersion = ListResourceVersion.MostRecent): ZStream[Deployments, K8sFailure, Deployment]
  6. def getScale(name: String, namespace: K8sNamespace): ZIO[Deployments, K8sFailure, Scale]
  7. def getStatus(name: String, namespace: K8sNamespace): ZIO[Deployments, K8sFailure, Deployment]
  8. def replace(name: String, updatedResource: Deployment, namespace: K8sNamespace, dryRun: Boolean = false): ZIO[Deployments, K8sFailure, Deployment]
  9. def replaceScale(name: String, updatedValue: Scale, namespace: K8sNamespace, dryRun: Boolean = false): ZIO[Deployments, K8sFailure, Scale]
  10. def replaceStatus(of: Deployment, updatedStatus: DeploymentStatus, namespace: K8sNamespace, dryRun: Boolean = false): ZIO[Deployments, K8sFailure, Deployment]
  11. def watch(namespace: Option[K8sNamespace], resourceVersion: Option[String], fieldSelector: Option[FieldSelector] = None, labelSelector: Option[LabelSelector] = None): ZStream[Deployments, K8sFailure, TypedWatchEvent[Deployment]]
  12. def watchForever(namespace: Option[K8sNamespace], resourceVersion: Option[String] = None, fieldSelector: Option[FieldSelector] = None, labelSelector: Option[LabelSelector] = None): ZStream[Deployments, K8sFailure, TypedWatchEvent[Deployment]]
  13. object Deployments

Inherited from AnyRef

Inherited from Any

Ungrouped