# io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR

From **Kubernetes**.

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

- Type: `object`

## Properties

### `clientCIDR`

- Required: true
- Type: `string`

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

### `serverAddress`

- Required: true
- Type: `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.

## JSON Schema

```json
{"description":"ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.","properties":{"clientCIDR":{"default":"","description":"The CIDR with which clients can match their IP to figure out the server address that they should use.","type":"string"},"serverAddress":{"default":"","description":"Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.","type":"string"}},"required":["clientCIDR","serverAddress"],"type":"object"}
```
