@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.19 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.
*/
/**
* DataVolumeSourceGCS provides the parameters to create a Data Volume from an GCS source
* @export
* @interface V1beta1DataVolumeSourceGCS
*/
export interface V1beta1DataVolumeSourceGCS {
/**
* SecretRef provides the secret reference needed to access the GCS source
* @type {string}
* @memberof V1beta1DataVolumeSourceGCS
*/
secretRef?: string;
/**
* URL is the url of the GCS source
* @type {string}
* @memberof V1beta1DataVolumeSourceGCS
*/
url: string;
}
export declare function V1beta1DataVolumeSourceGCSFromJSON(json: any): V1beta1DataVolumeSourceGCS;
export declare function V1beta1DataVolumeSourceGCSFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeSourceGCS;
export declare function V1beta1DataVolumeSourceGCSToJSON(value?: V1beta1DataVolumeSourceGCS | null): any;