Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CorrectionLess ¶
func CorrectionLess(c []*models.Correction, i, j int) bool
CorrectionLess returns true when comparing corrections.
func GenerateMessageCorrections ¶ added in v4.6.0
func GenerateMessageCorrections(msgs []string) (corrections []*models.Correction)
Types ¶
type Correlation ¶
type Correlation struct { Existing *models.RecordConfig Desired *models.RecordConfig // contains filtered or unexported fields }
Correlation stores a difference between two records.
func (Correlation) String ¶
func (c Correlation) String() string
type Differ ¶
type Differ interface { // IncrementalDiff performs a diff on a record-by-record basis, and returns a sets for which records need to be created, deleted, or modified. IncrementalDiff(existing []*models.RecordConfig) (reportMsgs []string, create, toDelete, modify Changeset, err error) // ChangedGroups performs a diff more appropriate for providers with a "RecordSet" model, where all records with the same name and type are grouped. // Individual record changes are often not useful in such scenarios. Instead we return a map of record keys to a list of change descriptions within that group. ChangedGroups(existing []*models.RecordConfig) (map[models.RecordKey][]string, []string, error) }
Differ is an interface for computing the difference between two zones.
func NewCompat ¶
func NewCompat(dc *models.DomainConfig, extraValues ...func(*models.RecordConfig) map[string]string) Differ
NewCompat is a constructor that uses the new pkg/diff2 system instead of pkg/diff.
It is for backwards compatibility only. New providers should use pkg/diff2.
To use this simply change New() to NewCompat(). If that doesn't work please report a bug. The extraValues parameter is not supported.
Click to show internal directories.
Click to hide internal directories.