@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
58 lines (57 loc) • 1.85 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.
*/
/**
* GenerationStatus keeps track of the generation for a given resource so that decisions about forced updates can be made.
* @export
* @interface V1GenerationStatus
*/
export interface V1GenerationStatus {
/**
* group is the group of the thing you're tracking
* @type {string}
* @memberof V1GenerationStatus
*/
group: string;
/**
* hash is an optional field set for resources without generation that are content sensitive like secrets and configmaps
* @type {string}
* @memberof V1GenerationStatus
*/
hash?: string;
/**
* lastGeneration is the last generation of the workload controller involved
* @type {number}
* @memberof V1GenerationStatus
*/
lastGeneration: number;
/**
* name is the name of the thing you're tracking
* @type {string}
* @memberof V1GenerationStatus
*/
name: string;
/**
* namespace is where the thing you're tracking is
* @type {string}
* @memberof V1GenerationStatus
*/
namespace?: string;
/**
* resource is the resource type of the thing you're tracking
* @type {string}
* @memberof V1GenerationStatus
*/
resource: string;
}
export declare function V1GenerationStatusFromJSON(json: any): V1GenerationStatus;
export declare function V1GenerationStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1GenerationStatus;
export declare function V1GenerationStatusToJSON(value?: V1GenerationStatus | null): any;