github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_azure_disk_volume_source.go (about) 1 /* 2 * Testkube API 3 * 4 * Testkube provides a Kubernetes-native framework for test definition, execution and results 5 * 6 * API version: 1.0.0 7 * Contact: testkube@kubeshop.io 8 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 9 */ 10 package testkube 11 12 // azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. 13 type AzureDiskVolumeSource struct { 14 CachingMode *BoxedString `json:"cachingMode,omitempty"` 15 // diskName is the Name of the data disk in the blob storage 16 DiskName string `json:"diskName"` 17 // diskURI is the URI of data disk in the blob storage 18 DiskURI string `json:"diskURI"` 19 FsType *BoxedString `json:"fsType,omitempty"` 20 Kind *BoxedString `json:"kind,omitempty"` 21 // readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. 22 ReadOnly bool `json:"readOnly,omitempty"` 23 }