
com.pulumi.azurenative.migrate.outputs.GroupConnectivityInformationResponse 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.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GroupConnectivityInformationResponse {
private @Nullable List customerVisibleFqdns;
private @Nullable String groupId;
private @Nullable String id;
private @Nullable String internalFqdn;
private @Nullable String memberName;
private @Nullable String privateLinkServiceArmRegion;
private @Nullable String redirectMapId;
private GroupConnectivityInformationResponse() {}
public List customerVisibleFqdns() {
return this.customerVisibleFqdns == null ? List.of() : this.customerVisibleFqdns;
}
public Optional groupId() {
return Optional.ofNullable(this.groupId);
}
public Optional id() {
return Optional.ofNullable(this.id);
}
public Optional internalFqdn() {
return Optional.ofNullable(this.internalFqdn);
}
public Optional memberName() {
return Optional.ofNullable(this.memberName);
}
public Optional privateLinkServiceArmRegion() {
return Optional.ofNullable(this.privateLinkServiceArmRegion);
}
public Optional redirectMapId() {
return Optional.ofNullable(this.redirectMapId);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GroupConnectivityInformationResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List customerVisibleFqdns;
private @Nullable String groupId;
private @Nullable String id;
private @Nullable String internalFqdn;
private @Nullable String memberName;
private @Nullable String privateLinkServiceArmRegion;
private @Nullable String redirectMapId;
public Builder() {}
public Builder(GroupConnectivityInformationResponse defaults) {
Objects.requireNonNull(defaults);
this.customerVisibleFqdns = defaults.customerVisibleFqdns;
this.groupId = defaults.groupId;
this.id = defaults.id;
this.internalFqdn = defaults.internalFqdn;
this.memberName = defaults.memberName;
this.privateLinkServiceArmRegion = defaults.privateLinkServiceArmRegion;
this.redirectMapId = defaults.redirectMapId;
}
@CustomType.Setter
public Builder customerVisibleFqdns(@Nullable List customerVisibleFqdns) {
this.customerVisibleFqdns = customerVisibleFqdns;
return this;
}
public Builder customerVisibleFqdns(String... customerVisibleFqdns) {
return customerVisibleFqdns(List.of(customerVisibleFqdns));
}
@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 internalFqdn(@Nullable String internalFqdn) {
this.internalFqdn = internalFqdn;
return this;
}
@CustomType.Setter
public Builder memberName(@Nullable String memberName) {
this.memberName = memberName;
return this;
}
@CustomType.Setter
public Builder privateLinkServiceArmRegion(@Nullable String privateLinkServiceArmRegion) {
this.privateLinkServiceArmRegion = privateLinkServiceArmRegion;
return this;
}
@CustomType.Setter
public Builder redirectMapId(@Nullable String redirectMapId) {
this.redirectMapId = redirectMapId;
return this;
}
public GroupConnectivityInformationResponse build() {
final var _resultValue = new GroupConnectivityInformationResponse();
_resultValue.customerVisibleFqdns = customerVisibleFqdns;
_resultValue.groupId = groupId;
_resultValue.id = id;
_resultValue.internalFqdn = internalFqdn;
_resultValue.memberName = memberName;
_resultValue.privateLinkServiceArmRegion = privateLinkServiceArmRegion;
_resultValue.redirectMapId = redirectMapId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy