
com.pulumi.azurenative.cloudngfw.outputs.VwanConfigurationResponse 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.cloudngfw.outputs;
import com.pulumi.azurenative.cloudngfw.outputs.IPAddressResponse;
import com.pulumi.azurenative.cloudngfw.outputs.IPAddressSpaceResponse;
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 VwanConfigurationResponse {
/**
* @return IP of trust subnet for UDR
*
*/
private @Nullable IPAddressResponse ipOfTrustSubnetForUdr;
/**
* @return Network Virtual Appliance resource ID
*
*/
private @Nullable String networkVirtualApplianceId;
/**
* @return Trust Subnet
*
*/
private @Nullable IPAddressSpaceResponse trustSubnet;
/**
* @return Untrust Subnet
*
*/
private @Nullable IPAddressSpaceResponse unTrustSubnet;
/**
* @return vHub Address
*
*/
private IPAddressSpaceResponse vHub;
private VwanConfigurationResponse() {}
/**
* @return IP of trust subnet for UDR
*
*/
public Optional ipOfTrustSubnetForUdr() {
return Optional.ofNullable(this.ipOfTrustSubnetForUdr);
}
/**
* @return Network Virtual Appliance resource ID
*
*/
public Optional networkVirtualApplianceId() {
return Optional.ofNullable(this.networkVirtualApplianceId);
}
/**
* @return Trust Subnet
*
*/
public Optional trustSubnet() {
return Optional.ofNullable(this.trustSubnet);
}
/**
* @return Untrust Subnet
*
*/
public Optional unTrustSubnet() {
return Optional.ofNullable(this.unTrustSubnet);
}
/**
* @return vHub Address
*
*/
public IPAddressSpaceResponse vHub() {
return this.vHub;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(VwanConfigurationResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable IPAddressResponse ipOfTrustSubnetForUdr;
private @Nullable String networkVirtualApplianceId;
private @Nullable IPAddressSpaceResponse trustSubnet;
private @Nullable IPAddressSpaceResponse unTrustSubnet;
private IPAddressSpaceResponse vHub;
public Builder() {}
public Builder(VwanConfigurationResponse defaults) {
Objects.requireNonNull(defaults);
this.ipOfTrustSubnetForUdr = defaults.ipOfTrustSubnetForUdr;
this.networkVirtualApplianceId = defaults.networkVirtualApplianceId;
this.trustSubnet = defaults.trustSubnet;
this.unTrustSubnet = defaults.unTrustSubnet;
this.vHub = defaults.vHub;
}
@CustomType.Setter
public Builder ipOfTrustSubnetForUdr(@Nullable IPAddressResponse ipOfTrustSubnetForUdr) {
this.ipOfTrustSubnetForUdr = ipOfTrustSubnetForUdr;
return this;
}
@CustomType.Setter
public Builder networkVirtualApplianceId(@Nullable String networkVirtualApplianceId) {
this.networkVirtualApplianceId = networkVirtualApplianceId;
return this;
}
@CustomType.Setter
public Builder trustSubnet(@Nullable IPAddressSpaceResponse trustSubnet) {
this.trustSubnet = trustSubnet;
return this;
}
@CustomType.Setter
public Builder unTrustSubnet(@Nullable IPAddressSpaceResponse unTrustSubnet) {
this.unTrustSubnet = unTrustSubnet;
return this;
}
@CustomType.Setter
public Builder vHub(IPAddressSpaceResponse vHub) {
if (vHub == null) {
throw new MissingRequiredPropertyException("VwanConfigurationResponse", "vHub");
}
this.vHub = vHub;
return this;
}
public VwanConfigurationResponse build() {
final var _resultValue = new VwanConfigurationResponse();
_resultValue.ipOfTrustSubnetForUdr = ipOfTrustSubnetForUdr;
_resultValue.networkVirtualApplianceId = networkVirtualApplianceId;
_resultValue.trustSubnet = trustSubnet;
_resultValue.unTrustSubnet = unTrustSubnet;
_resultValue.vHub = vHub;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy