com.coralogix.zio.k8s.client.v1.secrets

Type members

Classlikes

object Secrets

Types

type Secrets = Has[Service]

Value members

Concrete methods

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