
com.pulumi.azurenative.web.outputs.ContainerAppsConfigurationResponse 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.web.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 ContainerAppsConfigurationResponse {
/**
* @return Resource ID of a subnet for control plane infrastructure components. This subnet must be in the same VNET as the subnet defined in appSubnetResourceId. Must not overlap with the IP range defined in platformReservedCidr, if defined.
*
*/
private @Nullable String appSubnetResourceId;
/**
* @return Resource ID of a subnet for control plane infrastructure components. This subnet must be in the same VNET as the subnet defined in appSubnetResourceId. Must not overlap with the IP range defined in platformReservedCidr, if defined.
*
*/
private @Nullable String controlPlaneSubnetResourceId;
/**
* @return Azure Monitor instrumentation key used by Dapr to export Service to Service communication telemetry
*
*/
private @Nullable String daprAIInstrumentationKey;
/**
* @return CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the IP range defined in platformReservedCidr, if defined.
*
*/
private @Nullable String dockerBridgeCidr;
/**
* @return IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. It must not overlap with any other Subnet IP ranges.
*
*/
private @Nullable String platformReservedCidr;
/**
* @return An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server
*
*/
private @Nullable String platformReservedDnsIP;
private ContainerAppsConfigurationResponse() {}
/**
* @return Resource ID of a subnet for control plane infrastructure components. This subnet must be in the same VNET as the subnet defined in appSubnetResourceId. Must not overlap with the IP range defined in platformReservedCidr, if defined.
*
*/
public Optional appSubnetResourceId() {
return Optional.ofNullable(this.appSubnetResourceId);
}
/**
* @return Resource ID of a subnet for control plane infrastructure components. This subnet must be in the same VNET as the subnet defined in appSubnetResourceId. Must not overlap with the IP range defined in platformReservedCidr, if defined.
*
*/
public Optional controlPlaneSubnetResourceId() {
return Optional.ofNullable(this.controlPlaneSubnetResourceId);
}
/**
* @return Azure Monitor instrumentation key used by Dapr to export Service to Service communication telemetry
*
*/
public Optional daprAIInstrumentationKey() {
return Optional.ofNullable(this.daprAIInstrumentationKey);
}
/**
* @return CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the IP range defined in platformReservedCidr, if defined.
*
*/
public Optional dockerBridgeCidr() {
return Optional.ofNullable(this.dockerBridgeCidr);
}
/**
* @return IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. It must not overlap with any other Subnet IP ranges.
*
*/
public Optional platformReservedCidr() {
return Optional.ofNullable(this.platformReservedCidr);
}
/**
* @return An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server
*
*/
public Optional platformReservedDnsIP() {
return Optional.ofNullable(this.platformReservedDnsIP);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ContainerAppsConfigurationResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String appSubnetResourceId;
private @Nullable String controlPlaneSubnetResourceId;
private @Nullable String daprAIInstrumentationKey;
private @Nullable String dockerBridgeCidr;
private @Nullable String platformReservedCidr;
private @Nullable String platformReservedDnsIP;
public Builder() {}
public Builder(ContainerAppsConfigurationResponse defaults) {
Objects.requireNonNull(defaults);
this.appSubnetResourceId = defaults.appSubnetResourceId;
this.controlPlaneSubnetResourceId = defaults.controlPlaneSubnetResourceId;
this.daprAIInstrumentationKey = defaults.daprAIInstrumentationKey;
this.dockerBridgeCidr = defaults.dockerBridgeCidr;
this.platformReservedCidr = defaults.platformReservedCidr;
this.platformReservedDnsIP = defaults.platformReservedDnsIP;
}
@CustomType.Setter
public Builder appSubnetResourceId(@Nullable String appSubnetResourceId) {
this.appSubnetResourceId = appSubnetResourceId;
return this;
}
@CustomType.Setter
public Builder controlPlaneSubnetResourceId(@Nullable String controlPlaneSubnetResourceId) {
this.controlPlaneSubnetResourceId = controlPlaneSubnetResourceId;
return this;
}
@CustomType.Setter
public Builder daprAIInstrumentationKey(@Nullable String daprAIInstrumentationKey) {
this.daprAIInstrumentationKey = daprAIInstrumentationKey;
return this;
}
@CustomType.Setter
public Builder dockerBridgeCidr(@Nullable String dockerBridgeCidr) {
this.dockerBridgeCidr = dockerBridgeCidr;
return this;
}
@CustomType.Setter
public Builder platformReservedCidr(@Nullable String platformReservedCidr) {
this.platformReservedCidr = platformReservedCidr;
return this;
}
@CustomType.Setter
public Builder platformReservedDnsIP(@Nullable String platformReservedDnsIP) {
this.platformReservedDnsIP = platformReservedDnsIP;
return this;
}
public ContainerAppsConfigurationResponse build() {
final var _resultValue = new ContainerAppsConfigurationResponse();
_resultValue.appSubnetResourceId = appSubnetResourceId;
_resultValue.controlPlaneSubnetResourceId = controlPlaneSubnetResourceId;
_resultValue.daprAIInstrumentationKey = daprAIInstrumentationKey;
_resultValue.dockerBridgeCidr = dockerBridgeCidr;
_resultValue.platformReservedCidr = platformReservedCidr;
_resultValue.platformReservedDnsIP = platformReservedDnsIP;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy