UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

53 lines (52 loc) 2.84 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 { IoK8sApimachineryPkgApisMetaV1ObjectMeta, IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceSpec, IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceStatus } from './'; /** * APIService represents a server for a particular GroupVersion. Name must be "version.group". * @export * @interface IoK8sKubeAggregatorPkgApisApiregistrationV1APIService */ export interface IoK8sKubeAggregatorPkgApisApiregistrationV1APIService { /** * 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 IoK8sKubeAggregatorPkgApisApiregistrationV1APIService */ apiVersion?: string; /** * 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 IoK8sKubeAggregatorPkgApisApiregistrationV1APIService */ kind?: string; /** * * @type {IoK8sApimachineryPkgApisMetaV1ObjectMeta} * @memberof IoK8sKubeAggregatorPkgApisApiregistrationV1APIService */ metadata?: IoK8sApimachineryPkgApisMetaV1ObjectMeta; /** * * @type {IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceSpec} * @memberof IoK8sKubeAggregatorPkgApisApiregistrationV1APIService */ spec?: IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceSpec; /** * * @type {IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceStatus} * @memberof IoK8sKubeAggregatorPkgApisApiregistrationV1APIService */ status?: IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceStatus; } export declare function IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceFromJSON(json: any): IoK8sKubeAggregatorPkgApisApiregistrationV1APIService; export declare function IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sKubeAggregatorPkgApisApiregistrationV1APIService; export declare function IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceToJSON(value?: IoK8sKubeAggregatorPkgApisApiregistrationV1APIService | null): any;