@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
41 lines (40 loc) • 2.12 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.
*/
import { K8sIoApimachineryPkgApisMetaV1APIGroup } from './';
/**
* APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.
* @export
* @interface K8sIoApimachineryPkgApisMetaV1APIGroupList
*/
export interface K8sIoApimachineryPkgApisMetaV1APIGroupList {
/**
* 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 K8sIoApimachineryPkgApisMetaV1APIGroupList
*/
apiVersion?: string;
/**
* groups is a list of APIGroup.
* @type {Array<K8sIoApimachineryPkgApisMetaV1APIGroup>}
* @memberof K8sIoApimachineryPkgApisMetaV1APIGroupList
*/
groups: Array<K8sIoApimachineryPkgApisMetaV1APIGroup>;
/**
* 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 K8sIoApimachineryPkgApisMetaV1APIGroupList
*/
kind?: string;
}
export declare function K8sIoApimachineryPkgApisMetaV1APIGroupListFromJSON(json: any): K8sIoApimachineryPkgApisMetaV1APIGroupList;
export declare function K8sIoApimachineryPkgApisMetaV1APIGroupListFromJSONTyped(json: any, _ignoreDiscriminator: boolean): K8sIoApimachineryPkgApisMetaV1APIGroupList;
export declare function K8sIoApimachineryPkgApisMetaV1APIGroupListToJSON(value?: K8sIoApimachineryPkgApisMetaV1APIGroupList | null): any;