com.pulumi.azure.network.outputs.RoutingIntentRoutingPolicy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.network.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class RoutingIntentRoutingPolicy {
/**
* @return A list of destinations which this routing policy is applicable to. Possible values are `Internet` and `PrivateTraffic`.
*
*/
private List destinations;
/**
* @return The unique name for the routing policy.
*
*/
private String name;
/**
* @return The resource ID of the next hop on which this routing policy is applicable to.
*
*/
private String nextHop;
private RoutingIntentRoutingPolicy() {}
/**
* @return A list of destinations which this routing policy is applicable to. Possible values are `Internet` and `PrivateTraffic`.
*
*/
public List destinations() {
return this.destinations;
}
/**
* @return The unique name for the routing policy.
*
*/
public String name() {
return this.name;
}
/**
* @return The resource ID of the next hop on which this routing policy is applicable to.
*
*/
public String nextHop() {
return this.nextHop;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(RoutingIntentRoutingPolicy defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List destinations;
private String name;
private String nextHop;
public Builder() {}
public Builder(RoutingIntentRoutingPolicy defaults) {
Objects.requireNonNull(defaults);
this.destinations = defaults.destinations;
this.name = defaults.name;
this.nextHop = defaults.nextHop;
}
@CustomType.Setter
public Builder destinations(List destinations) {
if (destinations == null) {
throw new MissingRequiredPropertyException("RoutingIntentRoutingPolicy", "destinations");
}
this.destinations = destinations;
return this;
}
public Builder destinations(String... destinations) {
return destinations(List.of(destinations));
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("RoutingIntentRoutingPolicy", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder nextHop(String nextHop) {
if (nextHop == null) {
throw new MissingRequiredPropertyException("RoutingIntentRoutingPolicy", "nextHop");
}
this.nextHop = nextHop;
return this;
}
public RoutingIntentRoutingPolicy build() {
final var _resultValue = new RoutingIntentRoutingPolicy();
_resultValue.destinations = destinations;
_resultValue.name = name;
_resultValue.nextHop = nextHop;
return _resultValue;
}
}
}