Settings:
export KUBERNETES_BRANCH="release-1.10"
export CLIENT_VERSION="0.1.0a1"
export PACKAGE_NAME="client"
27 lines
880 B
Go
27 lines
880 B
Go
/*
|
|
* Kubernetes
|
|
*
|
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
*
|
|
* API version: v1.10.0
|
|
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
|
*/
|
|
|
|
package client
|
|
|
|
// AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
|
type V1AzureFilePersistentVolumeSource struct {
|
|
|
|
// Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
|
|
ReadOnly bool `json:"readOnly,omitempty"`
|
|
|
|
// the name of secret that contains Azure Storage Account Name and Key
|
|
SecretName string `json:"secretName"`
|
|
|
|
// the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod
|
|
SecretNamespace string `json:"secretNamespace,omitempty"`
|
|
|
|
// Share Name
|
|
ShareName string `json:"shareName"`
|
|
}
|