com.pulumi.azure.network.inputs.ApplicationGatewayPrivateLinkConfigurationIpConfigurationArgs 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.azure.network.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class ApplicationGatewayPrivateLinkConfigurationIpConfigurationArgs extends com.pulumi.resources.ResourceArgs {
public static final ApplicationGatewayPrivateLinkConfigurationIpConfigurationArgs Empty = new ApplicationGatewayPrivateLinkConfigurationIpConfigurationArgs();
/**
* The name of the IP configuration.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return The name of the IP configuration.
*
*/
public Output name() {
return this.name;
}
/**
* Is this the Primary IP Configuration?
*
*/
@Import(name="primary", required=true)
private Output primary;
/**
* @return Is this the Primary IP Configuration?
*
*/
public Output primary() {
return this.primary;
}
/**
* The Static IP Address which should be used.
*
*/
@Import(name="privateIpAddress")
private @Nullable Output privateIpAddress;
/**
* @return The Static IP Address which should be used.
*
*/
public Optional