FirewallSyncReason

sealed class FirewallSyncReason

Describes why a firewall is out of sync. Exactly one of missingFirewall or invalidFirewall is set.

Inheritors

Types

Link copied to clipboard

Details about a firewall whose configuration does not match the intended configuration.

Link copied to clipboard
data class MissingFirewall(val value: String) : FirewallSyncReason

Indicates that an expected firewall is missing. The value describes the missing firewall.

Link copied to clipboard

Functions

Link copied to clipboard

Casts this FirewallSyncReason as a MissingFirewall and retrieves its kotlin.String value. Throws an exception if the FirewallSyncReason is not a MissingFirewall.

Link copied to clipboard

Casts this FirewallSyncReason as a MissingFirewall and retrieves its kotlin.String value. Returns null if the FirewallSyncReason is not a MissingFirewall.