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

Type members

Classlikes

object DaemonSets

Types

type DaemonSets = Has[Service]

Value members

Concrete methods

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