Kazan v0.10.0 Kazan.Models.Apimachinery.Meta.V1.ServerAddressByClientCIDR View Source

ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.

OpenAPI Definition: io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR

Properties

  • client_cidr :: String

    • The CIDR with which clients can match their IP to figure out the server address that they should use.
  • server_address :: String

    • Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %Kazan.Models.Apimachinery.Meta.V1.ServerAddressByClientCIDR{
  client_cidr: String.t(),
  server_address: String.t()
}