com.coralogix.zio.k8s.client.apps.v1.deployments

Type members

Classlikes

Types

type Deployments = Has[Service]

Value members

Concrete methods

def create(newResource: Deployment, namespace: K8sNamespace, dryRun: Boolean): ZIO[Deployments, K8sFailure, Deployment]
def delete(name: String, deleteOptions: DeleteOptions, namespace: K8sNamespace, dryRun: Boolean, gracePeriod: Option[Duration], propagationPolicy: Option[PropagationPolicy]): ZIO[Deployments, K8sFailure, Status]
def deleteAll(deleteOptions: DeleteOptions, namespace: K8sNamespace, dryRun: Boolean, gracePeriod: Option[Duration], propagationPolicy: Option[PropagationPolicy], fieldSelector: Option[FieldSelector], labelSelector: Option[LabelSelector]): ZIO[Deployments, K8sFailure, Status]
def get(name: String, namespace: K8sNamespace): ZIO[Deployments, K8sFailure, Deployment]
def getAll(namespace: Option[K8sNamespace], chunkSize: Int, fieldSelector: Option[FieldSelector], labelSelector: Option[LabelSelector], resourceVersion: ListResourceVersion): ZStream[Deployments, K8sFailure, Deployment]
def getScale(name: String, namespace: K8sNamespace): ZIO[Deployments, K8sFailure, Scale]
def getStatus(name: String, namespace: K8sNamespace): ZIO[Deployments, K8sFailure, Deployment]
def replace(name: String, updatedResource: Deployment, namespace: K8sNamespace, dryRun: Boolean): ZIO[Deployments, K8sFailure, Deployment]
def replaceScale(name: String, updatedValue: Scale, namespace: K8sNamespace, dryRun: Boolean): ZIO[Deployments, K8sFailure, Scale]
def replaceStatus(of: Deployment, updatedStatus: DeploymentStatus, namespace: K8sNamespace, dryRun: Boolean): ZIO[Deployments, K8sFailure, Deployment]
def watch(namespace: Option[K8sNamespace], resourceVersion: Option[String], fieldSelector: Option[FieldSelector], labelSelector: Option[LabelSelector]): ZStream[Deployments, K8sFailure, TypedWatchEvent[Deployment]]
def watchForever(namespace: Option[K8sNamespace], fieldSelector: Option[FieldSelector], labelSelector: Option[LabelSelector]): ZStream[Deployments & Clock, K8sFailure, TypedWatchEvent[Deployment]]