
com.pulumi.azurenative.batch.outputs.MountConfigurationResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.batch.outputs;
import com.pulumi.azurenative.batch.outputs.AzureBlobFileSystemConfigurationResponse;
import com.pulumi.azurenative.batch.outputs.AzureFileShareConfigurationResponse;
import com.pulumi.azurenative.batch.outputs.CIFSMountConfigurationResponse;
import com.pulumi.azurenative.batch.outputs.NFSMountConfigurationResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class MountConfigurationResponse {
/**
* @return This property is mutually exclusive with all other properties.
*
*/
private @Nullable AzureBlobFileSystemConfigurationResponse azureBlobFileSystemConfiguration;
/**
* @return This property is mutually exclusive with all other properties.
*
*/
private @Nullable AzureFileShareConfigurationResponse azureFileShareConfiguration;
/**
* @return This property is mutually exclusive with all other properties.
*
*/
private @Nullable CIFSMountConfigurationResponse cifsMountConfiguration;
/**
* @return This property is mutually exclusive with all other properties.
*
*/
private @Nullable NFSMountConfigurationResponse nfsMountConfiguration;
private MountConfigurationResponse() {}
/**
* @return This property is mutually exclusive with all other properties.
*
*/
public Optional azureBlobFileSystemConfiguration() {
return Optional.ofNullable(this.azureBlobFileSystemConfiguration);
}
/**
* @return This property is mutually exclusive with all other properties.
*
*/
public Optional azureFileShareConfiguration() {
return Optional.ofNullable(this.azureFileShareConfiguration);
}
/**
* @return This property is mutually exclusive with all other properties.
*
*/
public Optional cifsMountConfiguration() {
return Optional.ofNullable(this.cifsMountConfiguration);
}
/**
* @return This property is mutually exclusive with all other properties.
*
*/
public Optional nfsMountConfiguration() {
return Optional.ofNullable(this.nfsMountConfiguration);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(MountConfigurationResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable AzureBlobFileSystemConfigurationResponse azureBlobFileSystemConfiguration;
private @Nullable AzureFileShareConfigurationResponse azureFileShareConfiguration;
private @Nullable CIFSMountConfigurationResponse cifsMountConfiguration;
private @Nullable NFSMountConfigurationResponse nfsMountConfiguration;
public Builder() {}
public Builder(MountConfigurationResponse defaults) {
Objects.requireNonNull(defaults);
this.azureBlobFileSystemConfiguration = defaults.azureBlobFileSystemConfiguration;
this.azureFileShareConfiguration = defaults.azureFileShareConfiguration;
this.cifsMountConfiguration = defaults.cifsMountConfiguration;
this.nfsMountConfiguration = defaults.nfsMountConfiguration;
}
@CustomType.Setter
public Builder azureBlobFileSystemConfiguration(@Nullable AzureBlobFileSystemConfigurationResponse azureBlobFileSystemConfiguration) {
this.azureBlobFileSystemConfiguration = azureBlobFileSystemConfiguration;
return this;
}
@CustomType.Setter
public Builder azureFileShareConfiguration(@Nullable AzureFileShareConfigurationResponse azureFileShareConfiguration) {
this.azureFileShareConfiguration = azureFileShareConfiguration;
return this;
}
@CustomType.Setter
public Builder cifsMountConfiguration(@Nullable CIFSMountConfigurationResponse cifsMountConfiguration) {
this.cifsMountConfiguration = cifsMountConfiguration;
return this;
}
@CustomType.Setter
public Builder nfsMountConfiguration(@Nullable NFSMountConfigurationResponse nfsMountConfiguration) {
this.nfsMountConfiguration = nfsMountConfiguration;
return this;
}
public MountConfigurationResponse build() {
final var _resultValue = new MountConfigurationResponse();
_resultValue.azureBlobFileSystemConfiguration = azureBlobFileSystemConfiguration;
_resultValue.azureFileShareConfiguration = azureFileShareConfiguration;
_resultValue.cifsMountConfiguration = cifsMountConfiguration;
_resultValue.nfsMountConfiguration = nfsMountConfiguration;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy