github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_azure_file_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  // azureFile represents an Azure File Service mount on the host and bind mount to the pod.
    13  type AzureFileVolumeSource struct {
    14  	// readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
    15  	ReadOnly bool `json:"readOnly,omitempty"`
    16  	// secretName is the  name of secret that contains Azure Storage Account Name and Key
    17  	SecretName string `json:"secretName"`
    18  	// shareName is the azure share Name
    19  	ShareName string `json:"shareName"`
    20  }