GlobalForwardingRuleIpProtocol enum

IP protocol for google_compute_global_forwarding_rule.ip_protocol. The set of protocols accepted at apply time depends on the load balancing scheme and target type — Application Load Balancers want tcp; protocol forwarding rules may also pick udp / esp / ah / sctp / icmp.

The provider schema also documents L3_DEFAULT in narrative prose for advanced internal protocol forwarding; that value is not declared in the structured enum list and is therefore omitted from this typed enum. Callers who need it can drop down to a raw TfArg.literal<String>('L3_DEFAULT') via the wrapper's untyped escape hatch.

Inheritance
Available extensions

Values

tcp → const GlobalForwardingRuleIpProtocol
const GlobalForwardingRuleIpProtocol('TCP')
udp → const GlobalForwardingRuleIpProtocol
const GlobalForwardingRuleIpProtocol('UDP')
esp → const GlobalForwardingRuleIpProtocol
const GlobalForwardingRuleIpProtocol('ESP')
ah → const GlobalForwardingRuleIpProtocol
const GlobalForwardingRuleIpProtocol('AH')
sctp → const GlobalForwardingRuleIpProtocol
const GlobalForwardingRuleIpProtocol('SCTP')
icmp → const GlobalForwardingRuleIpProtocol
const GlobalForwardingRuleIpProtocol('ICMP')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
terraformValue String
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<GlobalForwardingRuleIpProtocol>
A constant List of the values in this enum, in order of their declaration.