Files
go/kubernetes/client/v1_vsphere_virtual_disk_volume_source.go

27 lines
930 B
Go
Raw Normal View History

/*
* 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"`
}