@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
46 lines (45 loc) • 1.86 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.
*/
/**
* SEVPlatformInfo contains information about the AMD SEV features for the node.
* @export
* @interface V1SEVPlatformInfo
*/
export interface V1SEVPlatformInfo {
/**
* 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 V1SEVPlatformInfo
*/
apiVersion?: string;
/**
* Base64 encoded SEV certificate chain.
* @type {string}
* @memberof V1SEVPlatformInfo
*/
certChain?: 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 V1SEVPlatformInfo
*/
kind?: string;
/**
* Base64 encoded platform Diffie-Hellman key.
* @type {string}
* @memberof V1SEVPlatformInfo
*/
pdh?: string;
}
export declare function V1SEVPlatformInfoFromJSON(json: any): V1SEVPlatformInfo;
export declare function V1SEVPlatformInfoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1SEVPlatformInfo;
export declare function V1SEVPlatformInfoToJSON(value?: V1SEVPlatformInfo | null): any;