@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
46 lines (45 loc) • 1.93 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 IoK8sApiCoreV1AzureFilePersistentVolumeSource
*/
export interface IoK8sApiCoreV1AzureFilePersistentVolumeSource {
/**
* readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
* @type {boolean}
* @memberof IoK8sApiCoreV1AzureFilePersistentVolumeSource
*/
readOnly?: boolean;
/**
* secretName is the name of secret that contains Azure Storage Account Name and Key
* @type {string}
* @memberof IoK8sApiCoreV1AzureFilePersistentVolumeSource
*/
secretName: string;
/**
* secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod
* @type {string}
* @memberof IoK8sApiCoreV1AzureFilePersistentVolumeSource
*/
secretNamespace?: string;
/**
* shareName is the azure Share Name
* @type {string}
* @memberof IoK8sApiCoreV1AzureFilePersistentVolumeSource
*/
shareName: string;
}
export declare function IoK8sApiCoreV1AzureFilePersistentVolumeSourceFromJSON(json: any): IoK8sApiCoreV1AzureFilePersistentVolumeSource;
export declare function IoK8sApiCoreV1AzureFilePersistentVolumeSourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1AzureFilePersistentVolumeSource;
export declare function IoK8sApiCoreV1AzureFilePersistentVolumeSourceToJSON(value?: IoK8sApiCoreV1AzureFilePersistentVolumeSource | null): any;