Class Meta.APIGroup

java.lang.Object
com.google.protobuf.AbstractMessageLite
com.google.protobuf.AbstractMessage
com.google.protobuf.GeneratedMessageV3
io.kubernetes.client.proto.Meta.APIGroup
All Implemented Interfaces:
com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Meta.APIGroupOrBuilder, Serializable
Enclosing class:
Meta

public static final class Meta.APIGroup extends com.google.protobuf.GeneratedMessageV3 implements Meta.APIGroupOrBuilder
 APIGroup contains the name, the supported versions, and the preferred version
 of a group.
 
Protobuf type k8s.io.apimachinery.pkg.apis.meta.v1.APIGroup
See Also:
  • Field Details

    • NAME_FIELD_NUMBER

      public static final int NAME_FIELD_NUMBER
      See Also:
    • VERSIONS_FIELD_NUMBER

      public static final int VERSIONS_FIELD_NUMBER
      See Also:
    • PREFERREDVERSION_FIELD_NUMBER

      public static final int PREFERREDVERSION_FIELD_NUMBER
      See Also:
    • SERVERADDRESSBYCLIENTCIDRS_FIELD_NUMBER

      public static final int SERVERADDRESSBYCLIENTCIDRS_FIELD_NUMBER
      See Also:
    • PARSER

      @Deprecated public static final com.google.protobuf.Parser<Meta.APIGroup> PARSER
      Deprecated.
  • Method Details

    • getUnknownFields

      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
    • getDescriptor

      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • internalGetFieldAccessorTable

      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
    • hasName

      public boolean hasName()
       name is the name of the group.
       
      optional string name = 1;
      Specified by:
      hasName in interface Meta.APIGroupOrBuilder
    • getName

      public String getName()
       name is the name of the group.
       
      optional string name = 1;
      Specified by:
      getName in interface Meta.APIGroupOrBuilder
    • getNameBytes

      public com.google.protobuf.ByteString getNameBytes()
       name is the name of the group.
       
      optional string name = 1;
      Specified by:
      getNameBytes in interface Meta.APIGroupOrBuilder
    • getVersionsList

      public List<Meta.GroupVersionForDiscovery> getVersionsList()
       versions are the versions supported in this group.
       
      repeated .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery versions = 2;
      Specified by:
      getVersionsList in interface Meta.APIGroupOrBuilder
    • getVersionsOrBuilderList

      public List<? extends Meta.GroupVersionForDiscoveryOrBuilder> getVersionsOrBuilderList()
       versions are the versions supported in this group.
       
      repeated .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery versions = 2;
      Specified by:
      getVersionsOrBuilderList in interface Meta.APIGroupOrBuilder
    • getVersionsCount

      public int getVersionsCount()
       versions are the versions supported in this group.
       
      repeated .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery versions = 2;
      Specified by:
      getVersionsCount in interface Meta.APIGroupOrBuilder
    • getVersions

      public Meta.GroupVersionForDiscovery getVersions(int index)
       versions are the versions supported in this group.
       
      repeated .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery versions = 2;
      Specified by:
      getVersions in interface Meta.APIGroupOrBuilder
    • getVersionsOrBuilder

      public Meta.GroupVersionForDiscoveryOrBuilder getVersionsOrBuilder(int index)
       versions are the versions supported in this group.
       
      repeated .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery versions = 2;
      Specified by:
      getVersionsOrBuilder in interface Meta.APIGroupOrBuilder
    • hasPreferredVersion

      public boolean hasPreferredVersion()
       preferredVersion is the version preferred by the API server, which
       probably is the storage version.
       +optional
       
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery preferredVersion = 3;
      Specified by:
      hasPreferredVersion in interface Meta.APIGroupOrBuilder
    • getPreferredVersion

      public Meta.GroupVersionForDiscovery getPreferredVersion()
       preferredVersion is the version preferred by the API server, which
       probably is the storage version.
       +optional
       
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery preferredVersion = 3;
      Specified by:
      getPreferredVersion in interface Meta.APIGroupOrBuilder
    • getPreferredVersionOrBuilder

      public Meta.GroupVersionForDiscoveryOrBuilder getPreferredVersionOrBuilder()
       preferredVersion is the version preferred by the API server, which
       probably is the storage version.
       +optional
       
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery preferredVersion = 3;
      Specified by:
      getPreferredVersionOrBuilder in interface Meta.APIGroupOrBuilder
    • getServerAddressByClientCIDRsList

      public List<Meta.ServerAddressByClientCIDR> getServerAddressByClientCIDRsList()
       a map of client CIDR to server address that is serving this group.
       This is to help clients reach servers in the most network-efficient way possible.
       Clients can use the appropriate server address as per the CIDR that they match.
       In case of multiple matches, clients should use the longest matching CIDR.
       The server returns only those CIDRs that it thinks that the client can match.
       For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP.
       Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
       +optional
       
      repeated .k8s.io.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR serverAddressByClientCIDRs = 4;
      Specified by:
      getServerAddressByClientCIDRsList in interface Meta.APIGroupOrBuilder
    • getServerAddressByClientCIDRsOrBuilderList

      public List<? extends Meta.ServerAddressByClientCIDROrBuilder> getServerAddressByClientCIDRsOrBuilderList()
       a map of client CIDR to server address that is serving this group.
       This is to help clients reach servers in the most network-efficient way possible.
       Clients can use the appropriate server address as per the CIDR that they match.
       In case of multiple matches, clients should use the longest matching CIDR.
       The server returns only those CIDRs that it thinks that the client can match.
       For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP.
       Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
       +optional
       
      repeated .k8s.io.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR serverAddressByClientCIDRs = 4;
      Specified by:
      getServerAddressByClientCIDRsOrBuilderList in interface Meta.APIGroupOrBuilder
    • getServerAddressByClientCIDRsCount

      public int getServerAddressByClientCIDRsCount()
       a map of client CIDR to server address that is serving this group.
       This is to help clients reach servers in the most network-efficient way possible.
       Clients can use the appropriate server address as per the CIDR that they match.
       In case of multiple matches, clients should use the longest matching CIDR.
       The server returns only those CIDRs that it thinks that the client can match.
       For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP.
       Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
       +optional
       
      repeated .k8s.io.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR serverAddressByClientCIDRs = 4;
      Specified by:
      getServerAddressByClientCIDRsCount in interface Meta.APIGroupOrBuilder
    • getServerAddressByClientCIDRs

      public Meta.ServerAddressByClientCIDR getServerAddressByClientCIDRs(int index)
       a map of client CIDR to server address that is serving this group.
       This is to help clients reach servers in the most network-efficient way possible.
       Clients can use the appropriate server address as per the CIDR that they match.
       In case of multiple matches, clients should use the longest matching CIDR.
       The server returns only those CIDRs that it thinks that the client can match.
       For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP.
       Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
       +optional
       
      repeated .k8s.io.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR serverAddressByClientCIDRs = 4;
      Specified by:
      getServerAddressByClientCIDRs in interface Meta.APIGroupOrBuilder
    • getServerAddressByClientCIDRsOrBuilder

      public Meta.ServerAddressByClientCIDROrBuilder getServerAddressByClientCIDRsOrBuilder(int index)
       a map of client CIDR to server address that is serving this group.
       This is to help clients reach servers in the most network-efficient way possible.
       Clients can use the appropriate server address as per the CIDR that they match.
       In case of multiple matches, clients should use the longest matching CIDR.
       The server returns only those CIDRs that it thinks that the client can match.
       For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP.
       Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
       +optional
       
      repeated .k8s.io.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR serverAddressByClientCIDRs = 4;
      Specified by:
      getServerAddressByClientCIDRsOrBuilder in interface Meta.APIGroupOrBuilder
    • isInitialized

      public final boolean isInitialized()
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
    • writeTo

      public void writeTo(com.google.protobuf.CodedOutputStream output) throws IOException
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      Throws:
      IOException
    • getSerializedSize

      public int getSerializedSize()
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
    • equals

      public boolean equals(Object obj)
      Specified by:
      equals in interface com.google.protobuf.Message
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
    • hashCode

      public int hashCode()
      Specified by:
      hashCode in interface com.google.protobuf.Message
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
    • parseFrom

      public static Meta.APIGroup parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Meta.APIGroup parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Meta.APIGroup parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Meta.APIGroup parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Meta.APIGroup parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Meta.APIGroup parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Meta.APIGroup parseFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static Meta.APIGroup parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static Meta.APIGroup parseDelimitedFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static Meta.APIGroup parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseFrom

      public static Meta.APIGroup parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static Meta.APIGroup parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • newBuilderForType

      public Meta.APIGroup.Builder newBuilderForType()
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
    • newBuilder

      public static Meta.APIGroup.Builder newBuilder()
    • newBuilder

      public static Meta.APIGroup.Builder newBuilder(Meta.APIGroup prototype)
    • toBuilder

      public Meta.APIGroup.Builder toBuilder()
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
    • newBuilderForType

      protected Meta.APIGroup.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstance

      public static Meta.APIGroup getDefaultInstance()
    • parser

      public static com.google.protobuf.Parser<Meta.APIGroup> parser()
    • getParserForType

      public com.google.protobuf.Parser<Meta.APIGroup> getParserForType()
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstanceForType

      public Meta.APIGroup getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder