@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
28 lines (27 loc) • 1.36 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: unversioned
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* ServiceCIDRSpec define the CIDRs the user wants to use for allocating ClusterIPs for Services.
* @export
* @interface IoK8sApiNetworkingV1beta1ServiceCIDRSpec
*/
export interface IoK8sApiNetworkingV1beta1ServiceCIDRSpec {
/**
* CIDRs defines the IP blocks in CIDR notation (e.g. "192.168.0.0/24" or "2001:db8::/64") from which to assign service cluster IPs. Max of two CIDRs is allowed, one of each IP family. This field is immutable.
* @type {Array<string>}
* @memberof IoK8sApiNetworkingV1beta1ServiceCIDRSpec
*/
cidrs?: Array<string>;
}
export declare function IoK8sApiNetworkingV1beta1ServiceCIDRSpecFromJSON(json: any): IoK8sApiNetworkingV1beta1ServiceCIDRSpec;
export declare function IoK8sApiNetworkingV1beta1ServiceCIDRSpecFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiNetworkingV1beta1ServiceCIDRSpec;
export declare function IoK8sApiNetworkingV1beta1ServiceCIDRSpecToJSON(value?: IoK8sApiNetworkingV1beta1ServiceCIDRSpec | null): any;