com.pulumi.linode.inputs.FirewallOutboundArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of linode Show documentation
Show all versions of linode Show documentation
A Pulumi package for creating and managing linode cloud 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.linode.inputs;
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.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class FirewallOutboundArgs extends com.pulumi.resources.ResourceArgs {
public static final FirewallOutboundArgs Empty = new FirewallOutboundArgs();
/**
* Controls whether traffic is accepted or dropped by this rule. Overrides the Firewall's inbound_policy if this is an inbound rule, or the outbound_policy if this is an outbound rule.
*
*/
@Import(name="action", required=true)
private Output action;
/**
* @return Controls whether traffic is accepted or dropped by this rule. Overrides the Firewall's inbound_policy if this is an inbound rule, or the outbound_policy if this is an outbound rule.
*
*/
public Output action() {
return this.action;
}
/**
* Used to describe this rule. For display purposes only.
*
*/
@Import(name="description")
private @Nullable Output description;
/**
* @return Used to describe this rule. For display purposes only.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy