@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
83 lines (82 loc) • 3.51 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 { V1GuestAgentCommandInfo, V1VirtualMachineInstanceFileSystemInfo, V1VirtualMachineInstanceGuestOSInfo, V1VirtualMachineInstanceGuestOSUser } from './';
/**
* VirtualMachineInstanceGuestAgentInfo represents information from the installed guest agent
* @export
* @interface V1VirtualMachineInstanceGuestAgentInfo
*/
export interface V1VirtualMachineInstanceGuestAgentInfo {
/**
* 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 V1VirtualMachineInstanceGuestAgentInfo
*/
apiVersion?: string;
/**
* FSFreezeStatus is the state of the fs of the guest it can be either frozen or thawed
* @type {string}
* @memberof V1VirtualMachineInstanceGuestAgentInfo
*/
fsFreezeStatus?: string;
/**
*
* @type {V1VirtualMachineInstanceFileSystemInfo}
* @memberof V1VirtualMachineInstanceGuestAgentInfo
*/
fsInfo?: V1VirtualMachineInstanceFileSystemInfo;
/**
* GAVersion is a version of currently installed guest agent
* @type {string}
* @memberof V1VirtualMachineInstanceGuestAgentInfo
*/
guestAgentVersion?: string;
/**
* Hostname represents FQDN of a guest
* @type {string}
* @memberof V1VirtualMachineInstanceGuestAgentInfo
*/
hostname?: 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 V1VirtualMachineInstanceGuestAgentInfo
*/
kind?: string;
/**
*
* @type {V1VirtualMachineInstanceGuestOSInfo}
* @memberof V1VirtualMachineInstanceGuestAgentInfo
*/
os?: V1VirtualMachineInstanceGuestOSInfo;
/**
* Return command list the guest agent supports
* @type {Array<V1GuestAgentCommandInfo>}
* @memberof V1VirtualMachineInstanceGuestAgentInfo
*/
supportedCommands?: Array<V1GuestAgentCommandInfo>;
/**
* Timezone is guest os current timezone
* @type {string}
* @memberof V1VirtualMachineInstanceGuestAgentInfo
*/
timezone?: string;
/**
* UserList is a list of active guest OS users
* @type {Array<V1VirtualMachineInstanceGuestOSUser>}
* @memberof V1VirtualMachineInstanceGuestAgentInfo
*/
userList?: Array<V1VirtualMachineInstanceGuestOSUser>;
}
export declare function V1VirtualMachineInstanceGuestAgentInfoFromJSON(json: any): V1VirtualMachineInstanceGuestAgentInfo;
export declare function V1VirtualMachineInstanceGuestAgentInfoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1VirtualMachineInstanceGuestAgentInfo;
export declare function V1VirtualMachineInstanceGuestAgentInfoToJSON(value?: V1VirtualMachineInstanceGuestAgentInfo | null): any;