com.pulumi.azurenative.network.inputs.GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs 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.network.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs Empty = new GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs();
/**
* The IP address of the peer.
*
*/
@Import(name="peer", required=true)
private String peer;
/**
* @return The IP address of the peer.
*
*/
public String peer() {
return this.peer;
}
/**
* The name of the resource group.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* The name of the virtual network gateway.
*
*/
@Import(name="virtualNetworkGatewayName", required=true)
private String virtualNetworkGatewayName;
/**
* @return The name of the virtual network gateway.
*
*/
public String virtualNetworkGatewayName() {
return this.virtualNetworkGatewayName;
}
private GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs() {}
private GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs(GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs $) {
this.peer = $.peer;
this.resourceGroupName = $.resourceGroupName;
this.virtualNetworkGatewayName = $.virtualNetworkGatewayName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs $;
public Builder() {
$ = new GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs();
}
public Builder(GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs defaults) {
$ = new GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param peer The IP address of the peer.
*
* @return builder
*
*/
public Builder peer(String peer) {
$.peer = peer;
return this;
}
/**
* @param resourceGroupName The name of the resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param virtualNetworkGatewayName The name of the virtual network gateway.
*
* @return builder
*
*/
public Builder virtualNetworkGatewayName(String virtualNetworkGatewayName) {
$.virtualNetworkGatewayName = virtualNetworkGatewayName;
return this;
}
public GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs build() {
if ($.peer == null) {
throw new MissingRequiredPropertyException("GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs", "peer");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs", "resourceGroupName");
}
if ($.virtualNetworkGatewayName == null) {
throw new MissingRequiredPropertyException("GetVirtualNetworkGatewayAdvertisedRoutesPlainArgs", "virtualNetworkGatewayName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy