
com.pulumi.azurenative.network.outputs.NetworkInterfaceIPConfigurationPrivateLinkConnectionPropertiesResponse 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.network.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class NetworkInterfaceIPConfigurationPrivateLinkConnectionPropertiesResponse {
/**
* @return List of FQDNs for current private link connection.
*
*/
private List fqdns;
/**
* @return The group ID for current private link connection.
*
*/
private String groupId;
/**
* @return The required member name for current private link connection.
*
*/
private String requiredMemberName;
private NetworkInterfaceIPConfigurationPrivateLinkConnectionPropertiesResponse() {}
/**
* @return List of FQDNs for current private link connection.
*
*/
public List fqdns() {
return this.fqdns;
}
/**
* @return The group ID for current private link connection.
*
*/
public String groupId() {
return this.groupId;
}
/**
* @return The required member name for current private link connection.
*
*/
public String requiredMemberName() {
return this.requiredMemberName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(NetworkInterfaceIPConfigurationPrivateLinkConnectionPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List fqdns;
private String groupId;
private String requiredMemberName;
public Builder() {}
public Builder(NetworkInterfaceIPConfigurationPrivateLinkConnectionPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.fqdns = defaults.fqdns;
this.groupId = defaults.groupId;
this.requiredMemberName = defaults.requiredMemberName;
}
@CustomType.Setter
public Builder fqdns(List fqdns) {
if (fqdns == null) {
throw new MissingRequiredPropertyException("NetworkInterfaceIPConfigurationPrivateLinkConnectionPropertiesResponse", "fqdns");
}
this.fqdns = fqdns;
return this;
}
public Builder fqdns(String... fqdns) {
return fqdns(List.of(fqdns));
}
@CustomType.Setter
public Builder groupId(String groupId) {
if (groupId == null) {
throw new MissingRequiredPropertyException("NetworkInterfaceIPConfigurationPrivateLinkConnectionPropertiesResponse", "groupId");
}
this.groupId = groupId;
return this;
}
@CustomType.Setter
public Builder requiredMemberName(String requiredMemberName) {
if (requiredMemberName == null) {
throw new MissingRequiredPropertyException("NetworkInterfaceIPConfigurationPrivateLinkConnectionPropertiesResponse", "requiredMemberName");
}
this.requiredMemberName = requiredMemberName;
return this;
}
public NetworkInterfaceIPConfigurationPrivateLinkConnectionPropertiesResponse build() {
final var _resultValue = new NetworkInterfaceIPConfigurationPrivateLinkConnectionPropertiesResponse();
_resultValue.fqdns = fqdns;
_resultValue.groupId = groupId;
_resultValue.requiredMemberName = requiredMemberName;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy