Class HTTPServingInfo

  • All Implemented Interfaces:
    io.fabric8.kubernetes.api.builder.Editable<HTTPServingInfoBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource, Serializable

    @Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator")
    public class HTTPServingInfo
    extends Object
    implements io.fabric8.kubernetes.api.builder.Editable<HTTPServingInfoBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
    HTTPServingInfo holds configuration for serving HTTP
    See Also:
    Serialized Form
    • Constructor Detail

      • HTTPServingInfo

        public HTTPServingInfo()
        No args constructor for use in serialization
    • Method Detail

      • getBindAddress

        public String getBindAddress()
        bindAddress is the ip:port to serve on
      • setBindAddress

        public void setBindAddress​(String bindAddress)
        bindAddress is the ip:port to serve on
      • getBindNetwork

        public String getBindNetwork()
        bindNetwork is the type of network to bind to - defaults to "tcp4", accepts "tcp", "tcp4", and "tcp6"
      • setBindNetwork

        public void setBindNetwork​(String bindNetwork)
        bindNetwork is the type of network to bind to - defaults to "tcp4", accepts "tcp", "tcp4", and "tcp6"
      • getCertFile

        public String getCertFile()
        certFile is a file containing a PEM-encoded certificate
      • setCertFile

        public void setCertFile​(String certFile)
        certFile is a file containing a PEM-encoded certificate
      • getCipherSuites

        public List<String> getCipherSuites()
        cipherSuites contains an overridden list of ciphers for the server to support. Values must match cipher suite IDs from https://golang.org/pkg/crypto/tls/#pkg-constants
      • setCipherSuites

        public void setCipherSuites​(List<String> cipherSuites)
        cipherSuites contains an overridden list of ciphers for the server to support. Values must match cipher suite IDs from https://golang.org/pkg/crypto/tls/#pkg-constants
      • getClientCA

        public String getClientCA()
        clientCA is the certificate bundle for all the signers that you'll recognize for incoming client certificates
      • setClientCA

        public void setClientCA​(String clientCA)
        clientCA is the certificate bundle for all the signers that you'll recognize for incoming client certificates
      • getKeyFile

        public String getKeyFile()
        keyFile is a file containing a PEM-encoded private key for the certificate specified by CertFile
      • setKeyFile

        public void setKeyFile​(String keyFile)
        keyFile is a file containing a PEM-encoded private key for the certificate specified by CertFile
      • getMaxRequestsInFlight

        public Long getMaxRequestsInFlight()
        maxRequestsInFlight is the number of concurrent requests allowed to the server. If zero, no limit.
      • setMaxRequestsInFlight

        public void setMaxRequestsInFlight​(Long maxRequestsInFlight)
        maxRequestsInFlight is the number of concurrent requests allowed to the server. If zero, no limit.
      • getMinTLSVersion

        public String getMinTLSVersion()
        minTLSVersion is the minimum TLS version supported. Values must match version names from https://golang.org/pkg/crypto/tls/#pkg-constants
      • setMinTLSVersion

        public void setMinTLSVersion​(String minTLSVersion)
        minTLSVersion is the minimum TLS version supported. Values must match version names from https://golang.org/pkg/crypto/tls/#pkg-constants
      • getNamedCertificates

        public List<NamedCertificate> getNamedCertificates()
        namedCertificates is a list of certificates to use to secure requests to specific hostnames
      • setNamedCertificates

        public void setNamedCertificates​(List<NamedCertificate> namedCertificates)
        namedCertificates is a list of certificates to use to secure requests to specific hostnames
      • getRequestTimeoutSeconds

        public Long getRequestTimeoutSeconds()
        requestTimeoutSeconds is the number of seconds before requests are timed out. The default is 60 minutes, if -1 there is no limit on requests.
      • setRequestTimeoutSeconds

        public void setRequestTimeoutSeconds​(Long requestTimeoutSeconds)
        requestTimeoutSeconds is the number of seconds before requests are timed out. The default is 60 minutes, if -1 there is no limit on requests.
      • getAdditionalProperties

        public Map<String,​Object> getAdditionalProperties()
      • setAdditionalProperty

        public void setAdditionalProperty​(String name,
                                          Object value)
      • setAdditionalProperties

        public void setAdditionalProperties​(Map<String,​Object> additionalProperties)