本文整理了Java中io.fabric8.kubernetes.api.model.Volume.getGcePersistentDisk()
方法的一些代码示例,展示了Volume.getGcePersistentDisk()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Volume.getGcePersistentDisk()
方法的具体详情如下:
包路径:io.fabric8.kubernetes.api.model.Volume
类名称:Volume
方法名:getGcePersistentDisk
暂无
代码示例来源:origin: io.fabric8.schemagenerator/kubernetes-model
public VolumeBuilder( VolumeFluent<?> fluent , Volume instance ){
this.fluent = fluent; fluent.withAwsElasticBlockStore(instance.getAwsElasticBlockStore()); fluent.withEmptyDir(instance.getEmptyDir()); fluent.withGcePersistentDisk(instance.getGcePersistentDisk()); fluent.withGitRepo(instance.getGitRepo()); fluent.withGlusterfs(instance.getGlusterfs()); fluent.withHostPath(instance.getHostPath()); fluent.withIscsi(instance.getIscsi()); fluent.withName(instance.getName()); fluent.withNfs(instance.getNfs()); fluent.withPersistentVolumeClaim(instance.getPersistentVolumeClaim()); fluent.withRbd(instance.getRbd()); fluent.withSecret(instance.getSecret());
}
public VolumeBuilder( Volume instance ){
代码示例来源:origin: org.apache.stratos/kubernetes-model
public VolumeBuilder( VolumeFluent<?> fluent , Volume instance ){
this.fluent = fluent; fluent.withAwsElasticBlockStore(instance.getAwsElasticBlockStore()); fluent.withEmptyDir(instance.getEmptyDir()); fluent.withGcePersistentDisk(instance.getGcePersistentDisk()); fluent.withGitRepo(instance.getGitRepo()); fluent.withGlusterfs(instance.getGlusterfs()); fluent.withHostPath(instance.getHostPath()); fluent.withIscsi(instance.getIscsi()); fluent.withName(instance.getName()); fluent.withNfs(instance.getNfs()); fluent.withPersistentVolumeClaim(instance.getPersistentVolumeClaim()); fluent.withRbd(instance.getRbd()); fluent.withSecret(instance.getSecret());
}
public VolumeBuilder( Volume instance ){
代码示例来源:origin: io.fabric8.schemagenerator/kubernetes-model
public VolumeBuilder( Volume instance ){
this.fluent = this; this.withAwsElasticBlockStore(instance.getAwsElasticBlockStore()); this.withEmptyDir(instance.getEmptyDir()); this.withGcePersistentDisk(instance.getGcePersistentDisk()); this.withGitRepo(instance.getGitRepo()); this.withGlusterfs(instance.getGlusterfs()); this.withHostPath(instance.getHostPath()); this.withIscsi(instance.getIscsi()); this.withName(instance.getName()); this.withNfs(instance.getNfs()); this.withPersistentVolumeClaim(instance.getPersistentVolumeClaim()); this.withRbd(instance.getRbd()); this.withSecret(instance.getSecret());
}
代码示例来源:origin: org.apache.stratos/kubernetes-model
public VolumeBuilder( Volume instance ){
this.fluent = this; this.withAwsElasticBlockStore(instance.getAwsElasticBlockStore()); this.withEmptyDir(instance.getEmptyDir()); this.withGcePersistentDisk(instance.getGcePersistentDisk()); this.withGitRepo(instance.getGitRepo()); this.withGlusterfs(instance.getGlusterfs()); this.withHostPath(instance.getHostPath()); this.withIscsi(instance.getIscsi()); this.withName(instance.getName()); this.withNfs(instance.getNfs()); this.withPersistentVolumeClaim(instance.getPersistentVolumeClaim()); this.withRbd(instance.getRbd()); this.withSecret(instance.getSecret());
}
代码示例来源:origin: org.domeos/kubernetes-model
public VolumeFluentImpl(Volume instance){
this.withAwsElasticBlockStore(instance.getAwsElasticBlockStore());
this.withAzureFile(instance.getAzureFile());
this.withCephfs(instance.getCephfs());
this.withCinder(instance.getCinder());
this.withConfigMap(instance.getConfigMap());
this.withDownwardAPI(instance.getDownwardAPI());
this.withEmptyDir(instance.getEmptyDir());
this.withFc(instance.getFc());
this.withFlexVolume(instance.getFlexVolume());
this.withFlocker(instance.getFlocker());
this.withGcePersistentDisk(instance.getGcePersistentDisk());
this.withGitRepo(instance.getGitRepo());
this.withGlusterfs(instance.getGlusterfs());
this.withHostPath(instance.getHostPath());
this.withIscsi(instance.getIscsi());
this.withMetadata(instance.getMetadata());
this.withName(instance.getName());
this.withNfs(instance.getNfs());
this.withPersistentVolumeClaim(instance.getPersistentVolumeClaim());
this.withRbd(instance.getRbd());
this.withSecret(instance.getSecret());
this.withVsphereVolume(instance.getVsphereVolume());
}
代码示例来源:origin: org.domeos/kubernetes-model
public VolumeBuilder(VolumeFluent<?> fluent,Volume instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withAwsElasticBlockStore(instance.getAwsElasticBlockStore());
fluent.withAzureFile(instance.getAzureFile());
fluent.withCephfs(instance.getCephfs());
fluent.withCinder(instance.getCinder());
fluent.withConfigMap(instance.getConfigMap());
fluent.withDownwardAPI(instance.getDownwardAPI());
fluent.withEmptyDir(instance.getEmptyDir());
fluent.withFc(instance.getFc());
fluent.withFlexVolume(instance.getFlexVolume());
fluent.withFlocker(instance.getFlocker());
fluent.withGcePersistentDisk(instance.getGcePersistentDisk());
fluent.withGitRepo(instance.getGitRepo());
fluent.withGlusterfs(instance.getGlusterfs());
fluent.withHostPath(instance.getHostPath());
fluent.withIscsi(instance.getIscsi());
fluent.withMetadata(instance.getMetadata());
fluent.withName(instance.getName());
fluent.withNfs(instance.getNfs());
fluent.withPersistentVolumeClaim(instance.getPersistentVolumeClaim());
fluent.withRbd(instance.getRbd());
fluent.withSecret(instance.getSecret());
fluent.withVsphereVolume(instance.getVsphereVolume());
this.validationEnabled = validationEnabled;
}
public VolumeBuilder(Volume instance){
代码示例来源:origin: org.domeos/kubernetes-model
public VolumeBuilder(Volume instance,Boolean validationEnabled){
this.fluent = this;
this.withAwsElasticBlockStore(instance.getAwsElasticBlockStore());
this.withAzureFile(instance.getAzureFile());
this.withCephfs(instance.getCephfs());
this.withCinder(instance.getCinder());
this.withConfigMap(instance.getConfigMap());
this.withDownwardAPI(instance.getDownwardAPI());
this.withEmptyDir(instance.getEmptyDir());
this.withFc(instance.getFc());
this.withFlexVolume(instance.getFlexVolume());
this.withFlocker(instance.getFlocker());
this.withGcePersistentDisk(instance.getGcePersistentDisk());
this.withGitRepo(instance.getGitRepo());
this.withGlusterfs(instance.getGlusterfs());
this.withHostPath(instance.getHostPath());
this.withIscsi(instance.getIscsi());
this.withMetadata(instance.getMetadata());
this.withName(instance.getName());
this.withNfs(instance.getNfs());
this.withPersistentVolumeClaim(instance.getPersistentVolumeClaim());
this.withRbd(instance.getRbd());
this.withSecret(instance.getSecret());
this.withVsphereVolume(instance.getVsphereVolume());
this.validationEnabled = validationEnabled;
}
内容来源于网络,如有侵权,请联系作者删除!