com.pulumi.azurenative.network.ForwardingRuleArgs 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;
import com.pulumi.azurenative.network.enums.ForwardingRuleState;
import com.pulumi.azurenative.network.inputs.TargetDnsServerArgs;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class ForwardingRuleArgs extends com.pulumi.resources.ResourceArgs {
public static final ForwardingRuleArgs Empty = new ForwardingRuleArgs();
/**
* The name of the DNS forwarding ruleset.
*
*/
@Import(name="dnsForwardingRulesetName", required=true)
private Output dnsForwardingRulesetName;
/**
* @return The name of the DNS forwarding ruleset.
*
*/
public Output dnsForwardingRulesetName() {
return this.dnsForwardingRulesetName;
}
/**
* The domain name for the forwarding rule.
*
*/
@Import(name="domainName", required=true)
private Output domainName;
/**
* @return The domain name for the forwarding rule.
*
*/
public Output domainName() {
return this.domainName;
}
/**
* The name of the forwarding rule.
*
*/
@Import(name="forwardingRuleName")
private @Nullable Output forwardingRuleName;
/**
* @return The name of the forwarding rule.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy