
com.pulumi.azurenative.hybridcontainerservice.outputs.StorageSpacesPropertiesResponseVmwareStorageProfile 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.azurenative.hybridcontainerservice.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class StorageSpacesPropertiesResponseVmwareStorageProfile {
/**
* @return Name of the datacenter in VSphere
*
*/
private @Nullable String datacenter;
/**
* @return Name of the datastore in VSphere
*
*/
private @Nullable String datastore;
/**
* @return Name of the folder in VSphere
*
*/
private @Nullable String folder;
/**
* @return Name of the resource pool in VSphere
*
*/
private @Nullable String resourcePool;
private StorageSpacesPropertiesResponseVmwareStorageProfile() {}
/**
* @return Name of the datacenter in VSphere
*
*/
public Optional datacenter() {
return Optional.ofNullable(this.datacenter);
}
/**
* @return Name of the datastore in VSphere
*
*/
public Optional datastore() {
return Optional.ofNullable(this.datastore);
}
/**
* @return Name of the folder in VSphere
*
*/
public Optional folder() {
return Optional.ofNullable(this.folder);
}
/**
* @return Name of the resource pool in VSphere
*
*/
public Optional resourcePool() {
return Optional.ofNullable(this.resourcePool);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(StorageSpacesPropertiesResponseVmwareStorageProfile defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String datacenter;
private @Nullable String datastore;
private @Nullable String folder;
private @Nullable String resourcePool;
public Builder() {}
public Builder(StorageSpacesPropertiesResponseVmwareStorageProfile defaults) {
Objects.requireNonNull(defaults);
this.datacenter = defaults.datacenter;
this.datastore = defaults.datastore;
this.folder = defaults.folder;
this.resourcePool = defaults.resourcePool;
}
@CustomType.Setter
public Builder datacenter(@Nullable String datacenter) {
this.datacenter = datacenter;
return this;
}
@CustomType.Setter
public Builder datastore(@Nullable String datastore) {
this.datastore = datastore;
return this;
}
@CustomType.Setter
public Builder folder(@Nullable String folder) {
this.folder = folder;
return this;
}
@CustomType.Setter
public Builder resourcePool(@Nullable String resourcePool) {
this.resourcePool = resourcePool;
return this;
}
public StorageSpacesPropertiesResponseVmwareStorageProfile build() {
final var _resultValue = new StorageSpacesPropertiesResponseVmwareStorageProfile();
_resultValue.datacenter = datacenter;
_resultValue.datastore = datastore;
_resultValue.folder = folder;
_resultValue.resourcePool = resourcePool;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy