UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

71 lines (70 loc) 3.21 kB
/** * 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. */ import { K8sIoApimachineryPkgApisMetaV1ListMeta, K8sIoApimachineryPkgApisMetaV1StatusDetails } from './'; /** * Status is a return value for calls that don't return other objects. * @export * @interface K8sIoApimachineryPkgApisMetaV1Status */ export interface K8sIoApimachineryPkgApisMetaV1Status { /** * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources * @type {string} * @memberof K8sIoApimachineryPkgApisMetaV1Status */ apiVersion?: string; /** * Suggested HTTP return code for this status, 0 if not set. * @type {number} * @memberof K8sIoApimachineryPkgApisMetaV1Status */ code?: number; /** * * @type {K8sIoApimachineryPkgApisMetaV1StatusDetails} * @memberof K8sIoApimachineryPkgApisMetaV1Status */ details?: K8sIoApimachineryPkgApisMetaV1StatusDetails; /** * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds * @type {string} * @memberof K8sIoApimachineryPkgApisMetaV1Status */ kind?: string; /** * A human-readable description of the status of this operation. * @type {string} * @memberof K8sIoApimachineryPkgApisMetaV1Status */ message?: string; /** * * @type {K8sIoApimachineryPkgApisMetaV1ListMeta} * @memberof K8sIoApimachineryPkgApisMetaV1Status */ metadata?: K8sIoApimachineryPkgApisMetaV1ListMeta; /** * A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it. * @type {string} * @memberof K8sIoApimachineryPkgApisMetaV1Status */ reason?: string; /** * Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status * @type {string} * @memberof K8sIoApimachineryPkgApisMetaV1Status */ status?: string; } export declare function K8sIoApimachineryPkgApisMetaV1StatusFromJSON(json: any): K8sIoApimachineryPkgApisMetaV1Status; export declare function K8sIoApimachineryPkgApisMetaV1StatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): K8sIoApimachineryPkgApisMetaV1Status; export declare function K8sIoApimachineryPkgApisMetaV1StatusToJSON(value?: K8sIoApimachineryPkgApisMetaV1Status | null): any;