UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

28 lines (27 loc) 1.28 kB
/** * 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. */ /** * * @export * @interface V1QemuGuestAgentSSHPublicKeyAccessCredentialPropagation */ export interface V1QemuGuestAgentSSHPublicKeyAccessCredentialPropagation { /** * Users represents a list of guest users that should have the ssh public keys added to their authorized_keys file. * @type {Array<string>} * @memberof V1QemuGuestAgentSSHPublicKeyAccessCredentialPropagation */ users: Array<string>; } export declare function V1QemuGuestAgentSSHPublicKeyAccessCredentialPropagationFromJSON(json: any): V1QemuGuestAgentSSHPublicKeyAccessCredentialPropagation; export declare function V1QemuGuestAgentSSHPublicKeyAccessCredentialPropagationFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1QemuGuestAgentSSHPublicKeyAccessCredentialPropagation; export declare function V1QemuGuestAgentSSHPublicKeyAccessCredentialPropagationToJSON(value?: V1QemuGuestAgentSSHPublicKeyAccessCredentialPropagation | null): any;