Documentation
¶
Index ¶
- Constants
- Variables
- func AllZonesV3(ctx context.Context, client *v3.Client, zoneName v3.ZoneName) ([]v3.Zone, error)
- func AskQuestion(ctx context.Context, text string) bool
- func DatePtrFormatOutput(t *time.Time) string
- func DecorateAsyncOperation(message string, fn func())
- func DecorateAsyncOperations(message string, fns ...func() error) error
- func DefaultBool(b *bool, def bool) bool
- func DefaultIP(i any, def string) string
- func DefaultInt64(i *int64, def int64) int64
- func DefaultString(s *string, def string) string
- func EllipString(s string, maxLen int) string
- func ForEveryZone(zones []v3.Zone, f func(zone v3.Zone) error) error
- func GetInstancesAttachedToEIP(ctx context.Context, client *v3.Client, elasticIPID string) ([]v3.ListInstancesResponseInstances, error)
- func GetSettingBool(settings map[string]interface{}, key string) bool
- func GetSettingFloat64(settings map[string]interface{}, key string) int
- func GetSettingString(settings map[string]interface{}, key string) string
- func Int64PtrFormatOutput(n *int64) string
- func IsEmptyStringPtr(s *string) bool
- func IsInList(list []string, v string) bool
- func NonEmptyStringPtr(s string) *string
- func ParseInstanceType(instanceType string) v3.InstanceType
- func PrintOutput(o output.Outputter, err error) error
- func RandStringBytes(n int) (string, error)
- func ReadInput(ctx context.Context, reader *bufio.Reader, text, def string) (string, error)
- func RunAsync(ctx context.Context, client *v3.Client, message string, ...) (err error)
- func SliceToMap(v []string) (map[string]string, error)
- func StrPtrFormatOutput(s *string) string
- func VersionIsNewer(old, new string) bool
- func VersionMajor(version string) uint32
- func VersionMinor(version string) uint32
- func VersionsAreEquivalent(a, b string) bool
Constants ¶
const ( // Daytime of the night Daytime port = 13 // FTP protocol port number FTP port = 21 // SSH protocol port number SSH port = 22 // Telnet protocol port number Telnet port = 23 // SMTP protocol port number SMTP port = 25 // Time protocol port number Time port = 37 // Whois protocol port number Whois port = 43 // DNS protocol port number DNS port = 53 // TFTP protocol port number TFTP port = 69 // Gopher protocol port number Gopher port = 70 // HTTP protocol port number HTTP port = 80 // Kerberos protocol port number Kerberos port = 88 // Nic protocol port number Nic port = 101 // SFTP protocol port number SFTP port = 115 // NTP protocol port number NTP port = 123 // IMAP protocol port number IMAP port = 143 // SNMP protocol port number SNMP port = 161 // IRC protocol port number IRC port = 194 // HTTPS protocol port number HTTPS port = 443 // Docker protocol port number Docker port = 2376 // RDP protocol port number RDP port = 3389 // Minecraft protocol port number Minecraft port = 25565 )
const (
EmptyIPAddressVisualization = "-"
)
Variables ¶
var ( // utils.AllZones represents the list of known Exoscale zones, in case we need it without performing API lookup. AllZones = []string{ string(v3.ZoneNameATVie1), string(v3.ZoneNameATVie2), string(v3.ZoneNameBGSof1), string(v3.ZoneNameCHDk2), string(v3.ZoneNameCHGva2), string(v3.ZoneNameDEFra1), string(v3.ZoneNameDEMuc1), string(v3.ZoneNameHrZag1), } )
Functions ¶
func AllZonesV3 ¶ added in v1.85.3
func DatePtrFormatOutput ¶ added in v1.85.0
func DecorateAsyncOperation ¶ added in v1.85.0
func DecorateAsyncOperation(message string, fn func())
utils.DecorateAsyncOperation is a cosmetic helper intended for wrapping long asynchronous operations, outputting progress feedback to the user's terminal. TODO remove this one once all has been migrated to utils.DecorateAsyncOperation.
func DecorateAsyncOperations ¶ added in v1.85.0
func DefaultBool ¶ added in v1.65.0
DefaultBool returns the value of the bool pointer b if not nil, otherwise the default value specified.
func DefaultIP ¶ added in v1.65.0
DefaultIP returns the IP as string if not nil, otherwise the default value specified. Accepts either *net.IP, net.IP, or string.
func DefaultInt64 ¶ added in v1.65.0
DefaultInt64 returns the value of the int64 pointer b if not nil, otherwise the default value specified.
func DefaultString ¶ added in v1.65.0
DefaultString returns the value of the string pointer s if not nil, otherwise the default value specified.
func EllipString ¶ added in v1.65.0
EllipString truncates the string s with an ellipsis character if longer than maxLen.
func ForEveryZone ¶ added in v1.81.0
ForEveryZone executes the function f for every specified zone, and returns a multierror.Error containing all errors that may have occurred during execution.
func GetInstancesAttachedToEIP ¶ added in v1.66.0
func GetSettingBool ¶ added in v1.84.0
GetSettingBool safely retrieves a bool value from settings map
func GetSettingFloat64 ¶ added in v1.84.0
GetSettingFloat64 safely retrieves a float64 value from settings map and converts to int
func GetSettingString ¶ added in v1.84.0
GetSettingString safely retrieves a string value from settings map
func Int64PtrFormatOutput ¶ added in v1.85.0
func IsEmptyStringPtr ¶ added in v1.65.0
func IsInList ¶ added in v1.65.0
IsInList returns true if v exists in the specified list, false otherwise.
func NonEmptyStringPtr ¶ added in v1.65.0
NonEmptyStringPtr returns a non-nil pointer to s if the string is not empty, otherwise nil.
func ParseInstanceType ¶ added in v1.78.5
func ParseInstanceType(instanceType string) v3.InstanceType
ParseInstanceType returns an v3.InstanceType with family and name.
func PrintOutput ¶ added in v1.85.0
output prints an outputter interface to the terminal, formatted according to the global format specified as CLI flag.
func RandStringBytes ¶
RandStringBytes Generate random string of n bytes
func RunAsync ¶ added in v1.88.0
func RunAsync(ctx context.Context, client *v3.Client, message string, f func(context.Context, *v3.Client) (*v3.Operation, error)) (err error)
RunAsync decorates and waits for an async operation till success.
func SliceToMap ¶ added in v1.65.0
SliceToMap returns a map[string]string from a slice of KEY=VALUE formatted strings. This function is used to obtain a map[string]string from CLI flags, as the current CLI flags parsing module used (github.com/spf13/pflag) implements a "StringToString" type flag but doesn't support passing empty values, which we need in some cases (e.g. resetting labels).
func StrPtrFormatOutput ¶ added in v1.85.0
func VersionIsNewer ¶ added in v1.65.0
VersionIsNewer returns true if new version has potential deprecation
func VersionMajor ¶ added in v1.65.0
VersionMajor returns major part of a version number (given "x.y(.z)", returns "x"). If the input version is not in semver format, returns 0.
func VersionMinor ¶ added in v1.65.0
VersionMinor returns minor part of a version number (given "x.y(.z)", returns "y"). If the input version is not in semver format, returns 0.
func VersionsAreEquivalent ¶ added in v1.65.0
VersionsAreEquivalent returns true if new and old versions both have same major and minor numbers
Types ¶
This section is empty.