Packages

package secrets

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

Type Members

  1. type Secrets = Service

Value Members

  1. def create(newResource: Secret, namespace: K8sNamespace, dryRun: Boolean = false): ZIO[Secrets, K8sFailure, Secret]
  2. def delete(name: String, deleteOptions: DeleteOptions, namespace: K8sNamespace, dryRun: Boolean = false, gracePeriod: Option[zio.Duration] = None, propagationPolicy: Option[PropagationPolicy] = None): ZIO[Secrets, 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[Secrets, K8sFailure, Status]
  4. def get(name: String, namespace: K8sNamespace): ZIO[Secrets, K8sFailure, Secret]
  5. def getAll(namespace: Option[K8sNamespace], chunkSize: Int = 10, fieldSelector: Option[FieldSelector] = None, labelSelector: Option[LabelSelector] = None, resourceVersion: ListResourceVersion = ListResourceVersion.MostRecent): ZStream[Secrets, K8sFailure, Secret]
  6. def replace(name: String, updatedResource: Secret, namespace: K8sNamespace, dryRun: Boolean = false): ZIO[Secrets, K8sFailure, Secret]
  7. def watch(namespace: Option[K8sNamespace], resourceVersion: Option[String], fieldSelector: Option[FieldSelector] = None, labelSelector: Option[LabelSelector] = None): ZStream[Secrets, K8sFailure, TypedWatchEvent[Secret]]
  8. def watchForever(namespace: Option[K8sNamespace], resourceVersion: Option[String] = None, fieldSelector: Option[FieldSelector] = None, labelSelector: Option[LabelSelector] = None): ZStream[Secrets, K8sFailure, TypedWatchEvent[Secret]]
  9. object Secrets

Inherited from AnyRef

Inherited from Any

Ungrouped