Class FirewallOutboundRuleGetArgs
Inherited Members
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 SourceFirewallOutboundRuleGetArgs()
Declaration
public FirewallOutboundRuleGetArgs()
Properties
View SourceDestinationAddresses
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> |
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> |
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> |
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> |
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> |
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> |