Packages

package statefulsets

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

Type Members

  1. type StatefulSets = Service

Value Members

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

Inherited from AnyRef

Inherited from Any

Ungrouped