Module: Cisco::Util

Defined in:
lib/util/constants.rb,
lib/util/environment.rb

Overview

Shared constants for the Cisco module

Defined Under Namespace

Classes: Environment

Constant Summary collapse

PLATFORMS =
[
  # Cisco IOS XR
  :ios_xr
]
DATA_FORMATS =
[
  :cli, # Cisco CLI. Indentation is significant.
  :xml, # Netconf XML
  :yang_json, # YANG JSON
]
NETCONF_SET_MODE =
[
  :merge,
  :replace,
  :delete,
]
YANG_SET_MODE =
[
  :merge_config,
  :replace_config,
  :delete_config,
]