Packages

p

com.coralogix.zio.k8s.client.v1

replicationcontrollers

package replicationcontrollers

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

Type Members

  1. type ReplicationControllers = Service

Value Members

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

Inherited from AnyRef

Inherited from Any

Ungrouped