Class APIGroupList

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

    public class APIGroupList
    extends java.lang.Object
    implements com.marcnuri.yakc.model.Model
    APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.
    • Nested Class Summary

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

      Constructors 
      Constructor Description
      APIGroupList()  
      APIGroupList​(java.lang.String apiVersion, @NonNull java.util.List<APIGroup> groups, java.lang.String kind)  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static APIGroupList.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.
      @NonNull java.util.List<APIGroup> getGroups()
      groups is a list of APIGroup.
      java.lang.String getKind()
      Kind is a string value representing the REST resource this object represents.
      int hashCode()  
      void setApiVersion​(java.lang.String apiVersion)
      APIVersion defines the versioned schema of this representation of an object.
      void setGroups​(@NonNull java.util.List<APIGroup> groups)
      groups is a list of APIGroup.
      void setKind​(java.lang.String kind)
      Kind is a string value representing the REST resource this object represents.
      APIGroupList.Builder toBuilder()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • APIGroupList

        public APIGroupList​(java.lang.String apiVersion,
                            @NonNull
                            @NonNull java.util.List<APIGroup> groups,
                            java.lang.String kind)
      • APIGroupList

        public APIGroupList()
    • 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
      • getGroups

        @NonNull
        public @NonNull java.util.List<APIGroup> getGroups()
        groups is a list of APIGroup.
      • 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
      • 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
      • setGroups

        public void setGroups​(@NonNull
                              @NonNull java.util.List<APIGroup> groups)
        groups is a list of APIGroup.
      • 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
      • 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