
com.pulumi.azurenative.hybridcontainerservice.outputs.StorageSpacesPropertiesResponseHciStorageProfile 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 StorageSpacesPropertiesResponseHciStorageProfile {
/**
* @return Resource group in MOC(Microsoft On-premises Cloud)
*
*/
private @Nullable String mocGroup;
/**
* @return Location in MOC(Microsoft On-premises Cloud)
*
*/
private @Nullable String mocLocation;
/**
* @return Name of the storage container in MOC(Microsoft On-premises Cloud)
*
*/
private @Nullable String mocStorageContainer;
private StorageSpacesPropertiesResponseHciStorageProfile() {}
/**
* @return Resource group in MOC(Microsoft On-premises Cloud)
*
*/
public Optional mocGroup() {
return Optional.ofNullable(this.mocGroup);
}
/**
* @return Location in MOC(Microsoft On-premises Cloud)
*
*/
public Optional mocLocation() {
return Optional.ofNullable(this.mocLocation);
}
/**
* @return Name of the storage container in MOC(Microsoft On-premises Cloud)
*
*/
public Optional mocStorageContainer() {
return Optional.ofNullable(this.mocStorageContainer);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(StorageSpacesPropertiesResponseHciStorageProfile defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String mocGroup;
private @Nullable String mocLocation;
private @Nullable String mocStorageContainer;
public Builder() {}
public Builder(StorageSpacesPropertiesResponseHciStorageProfile defaults) {
Objects.requireNonNull(defaults);
this.mocGroup = defaults.mocGroup;
this.mocLocation = defaults.mocLocation;
this.mocStorageContainer = defaults.mocStorageContainer;
}
@CustomType.Setter
public Builder mocGroup(@Nullable String mocGroup) {
this.mocGroup = mocGroup;
return this;
}
@CustomType.Setter
public Builder mocLocation(@Nullable String mocLocation) {
this.mocLocation = mocLocation;
return this;
}
@CustomType.Setter
public Builder mocStorageContainer(@Nullable String mocStorageContainer) {
this.mocStorageContainer = mocStorageContainer;
return this;
}
public StorageSpacesPropertiesResponseHciStorageProfile build() {
final var _resultValue = new StorageSpacesPropertiesResponseHciStorageProfile();
_resultValue.mocGroup = mocGroup;
_resultValue.mocLocation = mocLocation;
_resultValue.mocStorageContainer = mocStorageContainer;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy