UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

46 lines (45 loc) 1.63 kB
/** * 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. */ /** * ParentReference describes a reference to a parent object. * @export * @interface IoK8sApiNetworkingV1ParentReference */ export interface IoK8sApiNetworkingV1ParentReference { /** * Group is the group of the object being referenced. * @type {string} * @memberof IoK8sApiNetworkingV1ParentReference */ group?: string; /** * Name is the name of the object being referenced. * @type {string} * @memberof IoK8sApiNetworkingV1ParentReference */ name: string; /** * Namespace is the namespace of the object being referenced. * @type {string} * @memberof IoK8sApiNetworkingV1ParentReference */ namespace?: string; /** * Resource is the resource of the object being referenced. * @type {string} * @memberof IoK8sApiNetworkingV1ParentReference */ resource: string; } export declare function IoK8sApiNetworkingV1ParentReferenceFromJSON(json: any): IoK8sApiNetworkingV1ParentReference; export declare function IoK8sApiNetworkingV1ParentReferenceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiNetworkingV1ParentReference; export declare function IoK8sApiNetworkingV1ParentReferenceToJSON(value?: IoK8sApiNetworkingV1ParentReference | null): any;