
com.pulumi.azurenative.migrate.outputs.IpConfigurationResponse 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.migrate.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 IpConfigurationResponse {
private @Nullable String groupId;
private @Nullable String id;
private @Nullable String linkIdentifier;
private @Nullable String memberName;
private @Nullable String privateIpAddress;
private IpConfigurationResponse() {}
public Optional groupId() {
return Optional.ofNullable(this.groupId);
}
public Optional id() {
return Optional.ofNullable(this.id);
}
public Optional linkIdentifier() {
return Optional.ofNullable(this.linkIdentifier);
}
public Optional memberName() {
return Optional.ofNullable(this.memberName);
}
public Optional privateIpAddress() {
return Optional.ofNullable(this.privateIpAddress);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(IpConfigurationResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String groupId;
private @Nullable String id;
private @Nullable String linkIdentifier;
private @Nullable String memberName;
private @Nullable String privateIpAddress;
public Builder() {}
public Builder(IpConfigurationResponse defaults) {
Objects.requireNonNull(defaults);
this.groupId = defaults.groupId;
this.id = defaults.id;
this.linkIdentifier = defaults.linkIdentifier;
this.memberName = defaults.memberName;
this.privateIpAddress = defaults.privateIpAddress;
}
@CustomType.Setter
public Builder groupId(@Nullable String groupId) {
this.groupId = groupId;
return this;
}
@CustomType.Setter
public Builder id(@Nullable String id) {
this.id = id;
return this;
}
@CustomType.Setter
public Builder linkIdentifier(@Nullable String linkIdentifier) {
this.linkIdentifier = linkIdentifier;
return this;
}
@CustomType.Setter
public Builder memberName(@Nullable String memberName) {
this.memberName = memberName;
return this;
}
@CustomType.Setter
public Builder privateIpAddress(@Nullable String privateIpAddress) {
this.privateIpAddress = privateIpAddress;
return this;
}
public IpConfigurationResponse build() {
final var _resultValue = new IpConfigurationResponse();
_resultValue.groupId = groupId;
_resultValue.id = id;
_resultValue.linkIdentifier = linkIdentifier;
_resultValue.memberName = memberName;
_resultValue.privateIpAddress = privateIpAddress;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy