Show / Hide Table of Contents

Class FirewallOutboundRuleGetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
FirewallOutboundRuleGetArgs
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 FirewallOutboundRuleGetArgs : ResourceArgs

Constructors

View Source

FirewallOutboundRuleGetArgs()

Declaration
public FirewallOutboundRuleGetArgs()

Properties

View Source

DestinationAddresses

An array of strings containing the IPv4 addresses, IPv6 addresses, IPv4 CIDRs, and/or IPv6 CIDRs to which the outbound traffic will be allowed.

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

DestinationDropletIds

An array containing the IDs of the Droplets to which the outbound traffic will be allowed.

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

DestinationLoadBalancerUids

An array containing the IDs of the Load Balancers to which the outbound traffic will be allowed.

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

DestinationTags

An array containing the names of Tags corresponding to groups of Droplets to which the outbound traffic will be allowed. traffic.

Declaration
public InputList<string> DestinationTags { get; set; }
Property Value
Type Description
InputList<System.String>
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
Back to top Copyright 2016-2020, Pulumi Corporation.