Documentation ¶
Overview ¶
Package updatemanifest implements the logic for the ssm agent s3 manifest.
Package updatemanifest implements the logic for the ssm agent s3 manifest.
Index ¶
Constants ¶
View Source
const ( // version status of SSM agent VersionStatusActive = "Active" VersionStatusInactive = "Inactive" VersionStatusDeprecated = "Deprecated" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type T ¶
type T interface { LoadManifest(manifestPath string) error HasVersion(packageName string, version string) bool GetLatestVersion(packageName string) (string, error) GetLatestActiveVersion(packageName string) (string, error) GetDownloadURLAndHash(packageName string, version string) (string, string, error) IsVersionDeprecated(packageName string, version string) (bool, error) IsVersionActive(packageName string, version string) (bool, error) }
Click to show internal directories.
Click to hide internal directories.