case class APIResource(categories: Optional[Vector[String]] = Optional.Absent, group: Optional[String] = Optional.Absent, kind: String, name: String, namespaced: Boolean, shortNames: Optional[Vector[String]] = Optional.Absent, singularName: String, storageVersionHash: Optional[String] = Optional.Absent, verbs: Vector[String], version: Optional[String] = Optional.Absent) extends Product with Serializable

APIResource specifies the name of a resource and whether it is namespaced.

categories

categories is a list of the grouped resources this resource belongs to (e.g. 'all')

group

group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale".

kind

kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')

name

name is the plural name of the resource.

namespaced

namespaced indicates if a resource is namespaced or not.

shortNames

shortNames is a list of suggested short names of the resource.

singularName

singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.

storageVersionHash

The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates.

verbs

verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)

version

version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)".

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. APIResource
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new APIResource(categories: Optional[Vector[String]] = Optional.Absent, group: Optional[String] = Optional.Absent, kind: String, name: String, namespaced: Boolean, shortNames: Optional[Vector[String]] = Optional.Absent, singularName: String, storageVersionHash: Optional[String] = Optional.Absent, verbs: Vector[String], version: Optional[String] = Optional.Absent)

    categories

    categories is a list of the grouped resources this resource belongs to (e.g. 'all')

    group

    group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale".

    kind

    kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')

    name

    name is the plural name of the resource.

    namespaced

    namespaced indicates if a resource is namespaced or not.

    shortNames

    shortNames is a list of suggested short names of the resource.

    singularName

    singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.

    storageVersionHash

    The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates.

    verbs

    verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)

    version

    version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)".

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val categories: Optional[Vector[String]]
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def getCategories: IO[K8sFailure, Vector[String]]

    categories is a list of the grouped resources this resource belongs to (e.g.

    categories is a list of the grouped resources this resource belongs to (e.g. 'all')

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def getGroup: IO[K8sFailure, String]

    group is the preferred group of the resource.

    group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale".

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  11. def getKind: IO[K8sFailure, String]

    kind is the kind for the resource (e.g.

    kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')

    This effect always succeeds, it is safe to use the field kind directly.

  12. def getName: IO[K8sFailure, String]

    name is the plural name of the resource.

    name is the plural name of the resource.

    This effect always succeeds, it is safe to use the field name directly.

  13. def getNamespaced: IO[K8sFailure, Boolean]

    namespaced indicates if a resource is namespaced or not.

    namespaced indicates if a resource is namespaced or not.

    This effect always succeeds, it is safe to use the field namespaced directly.

  14. def getShortNames: IO[K8sFailure, Vector[String]]

    shortNames is a list of suggested short names of the resource.

    shortNames is a list of suggested short names of the resource.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  15. def getSingularName: IO[K8sFailure, String]

    singularName is the singular name of the resource.

    singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.

    This effect always succeeds, it is safe to use the field singularName directly.

  16. def getStorageVersionHash: IO[K8sFailure, String]

    The hash value of the storage version, the version this resource is converted to when written to the data store.

    The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  17. def getVerbs: IO[K8sFailure, Vector[String]]

    verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)

    verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)

    This effect always succeeds, it is safe to use the field verbs directly.

  18. def getVersion: IO[K8sFailure, String]

    version is the preferred version of the resource.

    version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)".

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  19. val group: Optional[String]
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. val kind: String
  22. val name: String
  23. val namespaced: Boolean
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. val shortNames: Optional[Vector[String]]
  28. val singularName: String
  29. val storageVersionHash: Optional[String]
  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. val verbs: Vector[String]
  32. val version: Optional[String]
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped