Class DeleteOptions

  • All Implemented Interfaces:
    com.marcnuri.yakc.model.Model

    public class DeleteOptions
    extends java.lang.Object
    implements com.marcnuri.yakc.model.Model
    DeleteOptions may be provided when deleting an API object.
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  DeleteOptions.Builder  
    • Constructor Summary

      Constructors 
      Constructor Description
      DeleteOptions()  
      DeleteOptions​(java.lang.String apiVersion, java.util.List<java.lang.String> dryRun, java.lang.Number gracePeriodSeconds, java.lang.String kind, java.lang.Boolean orphanDependents, Preconditions preconditions, java.lang.String propagationPolicy)  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static DeleteOptions.Builder builder()  
      protected boolean canEqual​(java.lang.Object other)  
      boolean equals​(java.lang.Object o)  
      java.lang.String getApiVersion()
      APIVersion defines the versioned schema of this representation of an object.
      java.util.List<java.lang.String> getDryRun()
      When present, indicates that modifications should not be persisted.
      java.lang.Number getGracePeriodSeconds()
      The duration in seconds before the object should be deleted.
      java.lang.String getKind()
      Kind is a string value representing the REST resource this object represents.
      java.lang.Boolean getOrphanDependents()
      Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7.
      Preconditions getPreconditions()  
      java.lang.String getPropagationPolicy()
      Whether and how garbage collection will be performed.
      int hashCode()  
      void setApiVersion​(java.lang.String apiVersion)
      APIVersion defines the versioned schema of this representation of an object.
      void setDryRun​(java.util.List<java.lang.String> dryRun)
      When present, indicates that modifications should not be persisted.
      void setGracePeriodSeconds​(java.lang.Number gracePeriodSeconds)
      The duration in seconds before the object should be deleted.
      void setKind​(java.lang.String kind)
      Kind is a string value representing the REST resource this object represents.
      void setOrphanDependents​(java.lang.Boolean orphanDependents)
      Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7.
      void setPreconditions​(Preconditions preconditions)  
      void setPropagationPolicy​(java.lang.String propagationPolicy)
      Whether and how garbage collection will be performed.
      DeleteOptions.Builder toBuilder()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • DeleteOptions

        public DeleteOptions​(java.lang.String apiVersion,
                             java.util.List<java.lang.String> dryRun,
                             java.lang.Number gracePeriodSeconds,
                             java.lang.String kind,
                             java.lang.Boolean orphanDependents,
                             Preconditions preconditions,
                             java.lang.String propagationPolicy)
      • DeleteOptions

        public DeleteOptions()
    • Method Detail

      • getApiVersion

        public java.lang.String getApiVersion()
        APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
      • getDryRun

        public java.util.List<java.lang.String> getDryRun()
        When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
      • getGracePeriodSeconds

        public java.lang.Number getGracePeriodSeconds()
        The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
      • getKind

        public java.lang.String getKind()
        Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      • getOrphanDependents

        public java.lang.Boolean getOrphanDependents()
        Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
      • getPropagationPolicy

        public java.lang.String getPropagationPolicy()
        Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
      • setApiVersion

        public void setApiVersion​(java.lang.String apiVersion)
        APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
      • setDryRun

        public void setDryRun​(java.util.List<java.lang.String> dryRun)
        When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
      • setGracePeriodSeconds

        public void setGracePeriodSeconds​(java.lang.Number gracePeriodSeconds)
        The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
      • setKind

        public void setKind​(java.lang.String kind)
        Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      • setOrphanDependents

        public void setOrphanDependents​(java.lang.Boolean orphanDependents)
        Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
      • setPreconditions

        public void setPreconditions​(Preconditions preconditions)
      • setPropagationPolicy

        public void setPropagationPolicy​(java.lang.String propagationPolicy)
        Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • canEqual

        protected boolean canEqual​(java.lang.Object other)
      • hashCode

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

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object