Show / Hide Table of Contents

Class FirewallState

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

Constructors

View Source

FirewallState()

Declaration
public FirewallState()

Properties

View Source

CreatedAt

A time value given in ISO8601 combined date and time format that represents when the Firewall was created.

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

DropletIds

The list of the IDs of the Droplets assigned to the Firewall.

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

InboundRules

The inbound access rule block for the Firewall. The inbound_rule block is documented below.

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

Name

The Firewall name

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

OutboundRules

The outbound access rule block for the Firewall. The outbound_rule block is documented below.

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

PendingChanges

An list of object containing the fields, "droplet_id", "removing", and "status". It is provided to detail exactly which Droplets are having their security policies updated. When empty, all changes have been successfully applied.

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

Status

A status string indicating the current state of the Firewall. This can be "waiting", "succeeded", or "failed".

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

Tags

The names of the Tags assigned to the Firewall.

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