com.pulumi.azurenative.web.outputs.VnetRouteResponse 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.web.outputs;
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 VnetRouteResponse {
/**
* @return The ending address for this route. If the start address is specified in CIDR notation, this must be omitted.
*
*/
private @Nullable String endAddress;
/**
* @return Resource Id.
*
*/
private String id;
/**
* @return Kind of resource.
*
*/
private @Nullable String kind;
/**
* @return Resource Name.
*
*/
private String name;
/**
* @return The type of route this is:
* DEFAULT - By default, every app has routes to the local address ranges specified by RFC1918
* INHERITED - Routes inherited from the real Virtual Network routes
* STATIC - Static route set on the app only
*
* These values will be used for syncing an app's routes with those from a Virtual Network.
*
*/
private @Nullable String routeType;
/**
* @return The starting address for this route. This may also include a CIDR notation, in which case the end address must not be specified.
*
*/
private @Nullable String startAddress;
/**
* @return Resource type.
*
*/
private String type;
private VnetRouteResponse() {}
/**
* @return The ending address for this route. If the start address is specified in CIDR notation, this must be omitted.
*
*/
public Optional endAddress() {
return Optional.ofNullable(this.endAddress);
}
/**
* @return Resource Id.
*
*/
public String id() {
return this.id;
}
/**
* @return Kind of resource.
*
*/
public Optional kind() {
return Optional.ofNullable(this.kind);
}
/**
* @return Resource Name.
*
*/
public String name() {
return this.name;
}
/**
* @return The type of route this is:
* DEFAULT - By default, every app has routes to the local address ranges specified by RFC1918
* INHERITED - Routes inherited from the real Virtual Network routes
* STATIC - Static route set on the app only
*
* These values will be used for syncing an app's routes with those from a Virtual Network.
*
*/
public Optional routeType() {
return Optional.ofNullable(this.routeType);
}
/**
* @return The starting address for this route. This may also include a CIDR notation, in which case the end address must not be specified.
*
*/
public Optional startAddress() {
return Optional.ofNullable(this.startAddress);
}
/**
* @return Resource type.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(VnetRouteResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String endAddress;
private String id;
private @Nullable String kind;
private String name;
private @Nullable String routeType;
private @Nullable String startAddress;
private String type;
public Builder() {}
public Builder(VnetRouteResponse defaults) {
Objects.requireNonNull(defaults);
this.endAddress = defaults.endAddress;
this.id = defaults.id;
this.kind = defaults.kind;
this.name = defaults.name;
this.routeType = defaults.routeType;
this.startAddress = defaults.startAddress;
this.type = defaults.type;
}
@CustomType.Setter
public Builder endAddress(@Nullable String endAddress) {
this.endAddress = endAddress;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("VnetRouteResponse", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder kind(@Nullable String kind) {
this.kind = kind;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("VnetRouteResponse", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder routeType(@Nullable String routeType) {
this.routeType = routeType;
return this;
}
@CustomType.Setter
public Builder startAddress(@Nullable String startAddress) {
this.startAddress = startAddress;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("VnetRouteResponse", "type");
}
this.type = type;
return this;
}
public VnetRouteResponse build() {
final var _resultValue = new VnetRouteResponse();
_resultValue.endAddress = endAddress;
_resultValue.id = id;
_resultValue.kind = kind;
_resultValue.name = name;
_resultValue.routeType = routeType;
_resultValue.startAddress = startAddress;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy