Files
go/kubernetes/client/v1_portworx_volume_source.go

24 lines
824 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
// PortworxVolumeSource represents a Portworx volume resource.
type V1PortworxVolumeSource struct {
// FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.
FsType string `json:"fsType,omitempty"`
// Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
ReadOnly bool `json:"readOnly,omitempty"`
// VolumeID uniquely identifies a Portworx volume
VolumeID string `json:"volumeID"`
}