Class V1CustomResourceDefinitionSpec

java.lang.Object
io.micronaut.kubernetes.client.openapi.model.V1CustomResourceDefinitionSpec

@Generated("io.micronaut.openapi.generator.JavaMicronautClientCodegen") public class V1CustomResourceDefinitionSpec extends Object
CustomResourceDefinitionSpec describes how a user wants their resource to appear
  • Field Details

  • Constructor Details

  • Method Details

    • getConversion

      public V1CustomResourceConversion getConversion()
      Returns:
      the conversion property value
    • setConversion

      public void setConversion(V1CustomResourceConversion conversion)
      Set the conversion property value
    • conversion

      Set conversion in a chainable fashion.
      Returns:
      The same instance of V1CustomResourceDefinitionSpec for chaining.
    • getGroup

      public String getGroup()
      group is the API group of the defined custom resource. The custom resources are served under `/apis/<group>/...`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`).
      Returns:
      the group property value
    • setGroup

      public void setGroup(String group)
      Set the group property value
    • group

      public V1CustomResourceDefinitionSpec group(String group)
      Set group in a chainable fashion.
      Returns:
      The same instance of V1CustomResourceDefinitionSpec for chaining.
    • getNames

      Returns:
      the names property value
    • setNames

      public void setNames(V1CustomResourceDefinitionNames names)
      Set the names property value
    • names

      Set names in a chainable fashion.
      Returns:
      The same instance of V1CustomResourceDefinitionSpec for chaining.
    • getPreserveUnknownFields

      public Boolean getPreserveUnknownFields()
      preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting `x-preserve-unknown-fields` to true in `spec.versions[*].schema.openAPIV3Schema`. See https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning for details.
      Returns:
      the preserveUnknownFields property value
    • setPreserveUnknownFields

      public void setPreserveUnknownFields(Boolean preserveUnknownFields)
      Set the preserveUnknownFields property value
    • preserveUnknownFields

      public V1CustomResourceDefinitionSpec preserveUnknownFields(Boolean preserveUnknownFields)
      Set preserveUnknownFields in a chainable fashion.
      Returns:
      The same instance of V1CustomResourceDefinitionSpec for chaining.
    • getScope

      public String getScope()
      scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`.
      Returns:
      the scope property value
    • setScope

      public void setScope(String scope)
      Set the scope property value
    • scope

      public V1CustomResourceDefinitionSpec scope(String scope)
      Set scope in a chainable fashion.
      Returns:
      The same instance of V1CustomResourceDefinitionSpec for chaining.
    • getVersions

      public List<@Valid V1CustomResourceDefinitionVersion> getVersions()
      versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
      Returns:
      the versions property value
    • setVersions

      public void setVersions(List<@Valid V1CustomResourceDefinitionVersion> versions)
      Set the versions property value
    • versions

      Set versions in a chainable fashion.
      Returns:
      The same instance of V1CustomResourceDefinitionSpec for chaining.
    • addversionsItem

      Add an item to the versions property in a chainable fashion.
      Returns:
      The same instance of V1CustomResourceDefinitionSpec for chaining.
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object