com.pulumi.googlenative.gkeonprem.v1.outputs.VmwareControlPlaneVsphereConfigResponse Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.googlenative.gkeonprem.v1.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class VmwareControlPlaneVsphereConfigResponse {
/**
* @return The Vsphere datastore used by the control plane Node.
*
*/
private String datastore;
private VmwareControlPlaneVsphereConfigResponse() {}
/**
* @return The Vsphere datastore used by the control plane Node.
*
*/
public String datastore() {
return this.datastore;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(VmwareControlPlaneVsphereConfigResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String datastore;
public Builder() {}
public Builder(VmwareControlPlaneVsphereConfigResponse defaults) {
Objects.requireNonNull(defaults);
this.datastore = defaults.datastore;
}
@CustomType.Setter
public Builder datastore(String datastore) {
this.datastore = Objects.requireNonNull(datastore);
return this;
}
public VmwareControlPlaneVsphereConfigResponse build() {
final var o = new VmwareControlPlaneVsphereConfigResponse();
o.datastore = datastore;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy