@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
29 lines (28 loc) • 1.21 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.
*/
import { IoK8sApiNetworkingV1beta1ParentReference } from './';
/**
* IPAddressSpec describe the attributes in an IP Address.
* @export
* @interface IoK8sApiNetworkingV1beta1IPAddressSpec
*/
export interface IoK8sApiNetworkingV1beta1IPAddressSpec {
/**
*
* @type {IoK8sApiNetworkingV1beta1ParentReference}
* @memberof IoK8sApiNetworkingV1beta1IPAddressSpec
*/
parentRef: IoK8sApiNetworkingV1beta1ParentReference;
}
export declare function IoK8sApiNetworkingV1beta1IPAddressSpecFromJSON(json: any): IoK8sApiNetworkingV1beta1IPAddressSpec;
export declare function IoK8sApiNetworkingV1beta1IPAddressSpecFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiNetworkingV1beta1IPAddressSpec;
export declare function IoK8sApiNetworkingV1beta1IPAddressSpecToJSON(value?: IoK8sApiNetworkingV1beta1IPAddressSpec | null): any;