io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource Maven / Gradle / Ivy
package io.k8s.api.core.v1;
import java.lang.String;
/**
* Represents a Photon Controller persistent disk resource.
*/
public class PhotonPersistentDiskVolumeSource {
public String fsType;
public String pdID;
/**
* fsType is the 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.
*/
public PhotonPersistentDiskVolumeSource fsType(String fsType) {
this.fsType = fsType;
return this;
}
/**
* pdID is the ID that identifies Photon Controller persistent disk
*/
public PhotonPersistentDiskVolumeSource pdID(String pdID) {
this.pdID = pdID;
return this;
}
public static PhotonPersistentDiskVolumeSource photonPersistentDiskVolumeSource() {
return new PhotonPersistentDiskVolumeSource();
}
}