
com.pulumi.azurenative.netapp.outputs.MountTargetPropertiesResponse 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.netapp.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class MountTargetPropertiesResponse {
/**
* @return UUID v4 used to identify the MountTarget
*
*/
private String fileSystemId;
/**
* @return The mount target's IPv4 address
*
*/
private String ipAddress;
/**
* @return UUID v4 used to identify the MountTarget
*
*/
private String mountTargetId;
/**
* @return The SMB server's Fully Qualified Domain Name, FQDN
*
*/
private @Nullable String smbServerFqdn;
private MountTargetPropertiesResponse() {}
/**
* @return UUID v4 used to identify the MountTarget
*
*/
public String fileSystemId() {
return this.fileSystemId;
}
/**
* @return The mount target's IPv4 address
*
*/
public String ipAddress() {
return this.ipAddress;
}
/**
* @return UUID v4 used to identify the MountTarget
*
*/
public String mountTargetId() {
return this.mountTargetId;
}
/**
* @return The SMB server's Fully Qualified Domain Name, FQDN
*
*/
public Optional smbServerFqdn() {
return Optional.ofNullable(this.smbServerFqdn);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(MountTargetPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String fileSystemId;
private String ipAddress;
private String mountTargetId;
private @Nullable String smbServerFqdn;
public Builder() {}
public Builder(MountTargetPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.fileSystemId = defaults.fileSystemId;
this.ipAddress = defaults.ipAddress;
this.mountTargetId = defaults.mountTargetId;
this.smbServerFqdn = defaults.smbServerFqdn;
}
@CustomType.Setter
public Builder fileSystemId(String fileSystemId) {
if (fileSystemId == null) {
throw new MissingRequiredPropertyException("MountTargetPropertiesResponse", "fileSystemId");
}
this.fileSystemId = fileSystemId;
return this;
}
@CustomType.Setter
public Builder ipAddress(String ipAddress) {
if (ipAddress == null) {
throw new MissingRequiredPropertyException("MountTargetPropertiesResponse", "ipAddress");
}
this.ipAddress = ipAddress;
return this;
}
@CustomType.Setter
public Builder mountTargetId(String mountTargetId) {
if (mountTargetId == null) {
throw new MissingRequiredPropertyException("MountTargetPropertiesResponse", "mountTargetId");
}
this.mountTargetId = mountTargetId;
return this;
}
@CustomType.Setter
public Builder smbServerFqdn(@Nullable String smbServerFqdn) {
this.smbServerFqdn = smbServerFqdn;
return this;
}
public MountTargetPropertiesResponse build() {
final var _resultValue = new MountTargetPropertiesResponse();
_resultValue.fileSystemId = fileSystemId;
_resultValue.ipAddress = ipAddress;
_resultValue.mountTargetId = mountTargetId;
_resultValue.smbServerFqdn = smbServerFqdn;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy