Show / Hide Table of Contents

Class FirewallInboundRuleArgs

Inheritance
System.Object
InputArgs
ResourceArgs
FirewallInboundRuleArgs
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.DigitalOcean.Inputs
Assembly: Pulumi.DigitalOcean.dll
Syntax
public sealed class FirewallInboundRuleArgs : ResourceArgs

Constructors

View Source

FirewallInboundRuleArgs()

Declaration
public FirewallInboundRuleArgs()

Properties

View Source

PortRange

The ports on which traffic will be allowed specified as a string containing a single port, a range (e.g. "8000-9000"), or "1-65535" to open all ports for a protocol. Required for when protocol is tcp or udp.

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

Protocol

The type of traffic to be allowed. This may be one of "tcp", "udp", or "icmp".

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

SourceAddresses

An array of strings containing the IPv4 addresses, IPv6 addresses, IPv4 CIDRs, and/or IPv6 CIDRs from which the inbound traffic will be accepted.

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

SourceDropletIds

An array containing the IDs of the Droplets from which the inbound traffic will be accepted.

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

SourceLoadBalancerUids

An array containing the IDs of the Load Balancers from which the inbound traffic will be accepted.

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

SourceTags

An array containing the names of Tags corresponding to groups of Droplets from which the inbound traffic will be accepted.

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