Show / Hide Table of Contents

Class FirewallArgs

Inheritance
System.Object
InputArgs
ResourceArgs
FirewallArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Linode
Assembly: Pulumi.Linode.dll
Syntax
public sealed class FirewallArgs : ResourceArgs

Constructors

View Source

FirewallArgs()

Declaration
public FirewallArgs()

Properties

View Source

Disabled

If true, the Firewall's rules are not enforced (defaults to false).

Declaration
public Input<bool> Disabled { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Inbounds

A firewall rule that specifies what inbound network traffic is allowed.

Declaration
public InputList<FirewallInboundArgs> Inbounds { get; set; }
Property Value
Type Description
InputList<FirewallInboundArgs>
View Source

Label

This Firewall's unique label.

Declaration
public Input<string> Label { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Linodes

A list of IDs of Linodes this Firewall should govern it's network traffic for.

Declaration
public InputList<int> Linodes { get; set; }
Property Value
Type Description
InputList<System.Int32>
View Source

Outbounds

A firewall rule that specifies what outbound network traffic is allowed.

Declaration
public InputList<FirewallOutboundArgs> Outbounds { get; set; }
Property Value
Type Description
InputList<FirewallOutboundArgs>
View Source

Tags

A list of tags applied to the Kubernetes cluster. Tags are for organizational purposes only.

Declaration
public InputList<string> Tags { get; set; }
Property Value
Type Description
InputList<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.