
com.pulumi.azurenative.managednetworkfabric.outputs.ExpressRouteConnectionInformationResponse 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.managednetworkfabric.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class ExpressRouteConnectionInformationResponse {
/**
* @return Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
*
*/
private String expressRouteAuthorizationKey;
/**
* @return The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
*
*/
private String expressRouteCircuitId;
private ExpressRouteConnectionInformationResponse() {}
/**
* @return Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
*
*/
public String expressRouteAuthorizationKey() {
return this.expressRouteAuthorizationKey;
}
/**
* @return The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
*
*/
public String expressRouteCircuitId() {
return this.expressRouteCircuitId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ExpressRouteConnectionInformationResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String expressRouteAuthorizationKey;
private String expressRouteCircuitId;
public Builder() {}
public Builder(ExpressRouteConnectionInformationResponse defaults) {
Objects.requireNonNull(defaults);
this.expressRouteAuthorizationKey = defaults.expressRouteAuthorizationKey;
this.expressRouteCircuitId = defaults.expressRouteCircuitId;
}
@CustomType.Setter
public Builder expressRouteAuthorizationKey(String expressRouteAuthorizationKey) {
if (expressRouteAuthorizationKey == null) {
throw new MissingRequiredPropertyException("ExpressRouteConnectionInformationResponse", "expressRouteAuthorizationKey");
}
this.expressRouteAuthorizationKey = expressRouteAuthorizationKey;
return this;
}
@CustomType.Setter
public Builder expressRouteCircuitId(String expressRouteCircuitId) {
if (expressRouteCircuitId == null) {
throw new MissingRequiredPropertyException("ExpressRouteConnectionInformationResponse", "expressRouteCircuitId");
}
this.expressRouteCircuitId = expressRouteCircuitId;
return this;
}
public ExpressRouteConnectionInformationResponse build() {
final var _resultValue = new ExpressRouteConnectionInformationResponse();
_resultValue.expressRouteAuthorizationKey = expressRouteAuthorizationKey;
_resultValue.expressRouteCircuitId = expressRouteCircuitId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy