package
Version:
v1.3.0
Opens a new window with list of versions in this module.
Published: May 6, 2020
License: MIT
Opens a new window with license information.
Imports: 31
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type PathVersion struct {
Path string `json:"path" yaml:"path"`
Versions []Version `json:"versions" yaml:"versions"`
Latest string `json:"latest" yaml:"latest"`
}
type PathVersionLocks struct {
Path string `json:"path" yaml:"path"`
Versions []VersionLocks `json:"versions" yaml:"versions"`
}
type PathVersionTag struct {
Path string `json:"path" yaml:"path"`
Versions []VersionTag `json:"versions" yaml:"versions"`
}
type Version struct {
VersionId string `json:"version_id" yaml:"version_id"`
LastModified time.Time `json:"last_modified" yaml:"last_modified"`
Latest bool `json:"latest" yaml:"latest"`
}
type VersionLocks struct {
Version `json:"version" yaml:"version"`
LegalHold bool `yaml:"legal_hold" json:"legal_hold"`
GovernanceRetention *time.Time `yaml:"governance_retention" json:"governance_retention"`
ComplianceRetention *time.Time `yaml:"compliance_retention" json:"compliance_retention"`
}
type VersionTag struct {
Version `json:"version" yaml:"version"`
Tag []string `json:"tag" yaml:"tag"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.