UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

71 lines (70 loc) 3.23 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. */ import { IoK8sApimachineryPkgApisMetaV1ListMeta, IoK8sApimachineryPkgApisMetaV1StatusDetails } from './'; /** * Status is a return value for calls that don't return other objects. * @export * @interface IoK8sApimachineryPkgApisMetaV1Status */ export interface IoK8sApimachineryPkgApisMetaV1Status { /** * 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 IoK8sApimachineryPkgApisMetaV1Status */ apiVersion?: string; /** * Suggested HTTP return code for this status, 0 if not set. * @type {number} * @memberof IoK8sApimachineryPkgApisMetaV1Status */ code?: number; /** * * @type {IoK8sApimachineryPkgApisMetaV1StatusDetails} * @memberof IoK8sApimachineryPkgApisMetaV1Status */ details?: IoK8sApimachineryPkgApisMetaV1StatusDetails; /** * 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 IoK8sApimachineryPkgApisMetaV1Status */ kind?: string; /** * A human-readable description of the status of this operation. * @type {string} * @memberof IoK8sApimachineryPkgApisMetaV1Status */ message?: string; /** * * @type {IoK8sApimachineryPkgApisMetaV1ListMeta} * @memberof IoK8sApimachineryPkgApisMetaV1Status */ metadata?: IoK8sApimachineryPkgApisMetaV1ListMeta; /** * 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 IoK8sApimachineryPkgApisMetaV1Status */ 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 IoK8sApimachineryPkgApisMetaV1Status */ status?: string; } export declare function IoK8sApimachineryPkgApisMetaV1StatusFromJSON(json: any): IoK8sApimachineryPkgApisMetaV1Status; export declare function IoK8sApimachineryPkgApisMetaV1StatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApimachineryPkgApisMetaV1Status; export declare function IoK8sApimachineryPkgApisMetaV1StatusToJSON(value?: IoK8sApimachineryPkgApisMetaV1Status | null): any;