Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ExtractVRF ¶
Types ¶
type Ntp ¶
type Ntp struct {
// original -> coreswitch-ntp:pool
PoolList []Pool `mapstructure:"pool" json:"pool,omitempty"`
// original -> coreswitch-ntp:server
ServerList []Server `mapstructure:"server" json:"server,omitempty"`
}
struct for container coreswitch-ntp:ntp
func UnmarshalJSON ¶
type Pool ¶
type Pool struct {
// original -> coreswitch-ntp:name
Name string `mapstructure:"name" json:"name,omitempty"`
// original -> coreswitch-ntp:dynamic
//coreswitch-ntp:dynamic's original type is empty
Dynamic bool `mapstructure:"dynamic" json:"dynamic,omitempty"`
// original -> coreswitch-ntp:noselect
//coreswitch-ntp:noselect's original type is empty
Noselect bool `mapstructure:"noselect" json:"noselect,omitempty"`
// original -> coreswitch-ntp:preempt
//coreswitch-ntp:preempt's original type is empty
Preempt bool `mapstructure:"preempt" json:"preempt,omitempty"`
// original -> coreswitch-ntp:prefer
//coreswitch-ntp:prefer's original type is empty
Prefer bool `mapstructure:"prefer" json:"prefer,omitempty"`
}
struct for container coreswitch-ntp:pool
type Server ¶
type Server struct {
// original -> coreswitch-ntp:name
Name string `mapstructure:"name" json:"name,omitempty"`
// original -> coreswitch-ntp:dynamic
//coreswitch-ntp:dynamic's original type is empty
Dynamic bool `mapstructure:"dynamic" json:"dynamic,omitempty"`
// original -> coreswitch-ntp:noselect
//coreswitch-ntp:noselect's original type is empty
Noselect bool `mapstructure:"noselect" json:"noselect,omitempty"`
// original -> coreswitch-ntp:preempt
//coreswitch-ntp:preempt's original type is empty
Preempt bool `mapstructure:"preempt" json:"preempt,omitempty"`
// original -> coreswitch-ntp:prefer
//coreswitch-ntp:prefer's original type is empty
Prefer bool `mapstructure:"prefer" json:"prefer,omitempty"`
}
struct for container coreswitch-ntp:server
Click to show internal directories.
Click to hide internal directories.