@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.67 kB
TypeScript
/**
* KubeVirt API
* This is KubeVirt API an add-on for Kubernetes.
*
* The version of the OpenAPI document: 1.0.0
* Contact: kubevirt-dev@googlegroups.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.
* @export
* @interface K8sIoApimachineryPkgApisMetaV1ServerAddressByClientCIDR
*/
export interface K8sIoApimachineryPkgApisMetaV1ServerAddressByClientCIDR {
/**
* The CIDR with which clients can match their IP to figure out the server address that they should use.
* @type {string}
* @memberof K8sIoApimachineryPkgApisMetaV1ServerAddressByClientCIDR
*/
clientCIDR: 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.
* @type {string}
* @memberof K8sIoApimachineryPkgApisMetaV1ServerAddressByClientCIDR
*/
serverAddress: string;
}
export declare function K8sIoApimachineryPkgApisMetaV1ServerAddressByClientCIDRFromJSON(json: any): K8sIoApimachineryPkgApisMetaV1ServerAddressByClientCIDR;
export declare function K8sIoApimachineryPkgApisMetaV1ServerAddressByClientCIDRFromJSONTyped(json: any, _ignoreDiscriminator: boolean): K8sIoApimachineryPkgApisMetaV1ServerAddressByClientCIDR;
export declare function K8sIoApimachineryPkgApisMetaV1ServerAddressByClientCIDRToJSON(value?: K8sIoApimachineryPkgApisMetaV1ServerAddressByClientCIDR | null): any;