LoadBalancingScheme enum

load_balancing_scheme. A backend service of one scheme cannot be repurposed for another — the value is effectively immutable except through the ExternalManagedMigrationState dance.

Global-vs-regional: this wrapper is for the global variant (google_compute_backend_service). Only external, externalManaged, and internalSelfManaged are valid at apply time on a global backend service. internalManaged is included because the Terraform schema accepts it but it will be rejected by the GCP API on a global resource — use google_compute_region_backend_service (curated separately) for INTERNAL_MANAGED.

Inheritance
Available extensions

Values

external → const LoadBalancingScheme
const LoadBalancingScheme('EXTERNAL')
externalManaged → const LoadBalancingScheme
const LoadBalancingScheme('EXTERNAL_MANAGED')
internalSelfManaged → const LoadBalancingScheme
const LoadBalancingScheme('INTERNAL_SELF_MANAGED')
internalManaged → const LoadBalancingScheme
const LoadBalancingScheme('INTERNAL_MANAGED')

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<LoadBalancingScheme>
A constant List of the values in this enum, in order of their declaration.