Settings:
export KUBERNETES_BRANCH="release-1.10"
export CLIENT_VERSION="0.1.0a1"
export PACKAGE_NAME="client"
27 lines
930 B
Go
27 lines
930 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
|
|
|
|
// Represents a vSphere volume resource.
|
|
type V1VsphereVirtualDiskVolumeSource struct {
|
|
|
|
// Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.
|
|
FsType string `json:"fsType,omitempty"`
|
|
|
|
// Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.
|
|
StoragePolicyID string `json:"storagePolicyID,omitempty"`
|
|
|
|
// Storage Policy Based Management (SPBM) profile name.
|
|
StoragePolicyName string `json:"storagePolicyName,omitempty"`
|
|
|
|
// Path that identifies vSphere volume vmdk
|
|
VolumePath string `json:"volumePath"`
|
|
}
|