@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
40 lines (39 loc) • 1.55 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: unversioned
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
* @export
* @interface IoK8sApiCoreV1AzureFileVolumeSource
*/
export interface IoK8sApiCoreV1AzureFileVolumeSource {
/**
* readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
* @type {boolean}
* @memberof IoK8sApiCoreV1AzureFileVolumeSource
*/
readOnly?: boolean;
/**
* secretName is the name of secret that contains Azure Storage Account Name and Key
* @type {string}
* @memberof IoK8sApiCoreV1AzureFileVolumeSource
*/
secretName: string;
/**
* shareName is the azure share Name
* @type {string}
* @memberof IoK8sApiCoreV1AzureFileVolumeSource
*/
shareName: string;
}
export declare function IoK8sApiCoreV1AzureFileVolumeSourceFromJSON(json: any): IoK8sApiCoreV1AzureFileVolumeSource;
export declare function IoK8sApiCoreV1AzureFileVolumeSourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1AzureFileVolumeSource;
export declare function IoK8sApiCoreV1AzureFileVolumeSourceToJSON(value?: IoK8sApiCoreV1AzureFileVolumeSource | null): any;