mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
0d12e37c96
* Include EXC0014 and fix issues. * Include EXC0012 and fix issues. Signed-off-by: Fabian Kammel <fk@edgeless.systems> Co-authored-by: Otto Bittner <cobittner@posteo.net>
63 lines
1.1 KiB
Go
63 lines
1.1 KiB
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package cloudprovider
|
|
|
|
import (
|
|
"encoding/json"
|
|
"strings"
|
|
)
|
|
|
|
//go:generate stringer -type=Provider
|
|
|
|
// Provider is cloud provider used by the CLI.
|
|
type Provider uint32
|
|
|
|
const (
|
|
// Unknown is default value for Provider.
|
|
Unknown Provider = iota
|
|
// AWS is Amazon Web Services.
|
|
AWS
|
|
// Azure cloud.
|
|
Azure
|
|
// GCP is Google Compute Platform.
|
|
GCP
|
|
// QEMU for a local emulated installation.
|
|
QEMU
|
|
)
|
|
|
|
// MarshalJSON marshals the Provider to JSON string.
|
|
func (p Provider) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(p.String())
|
|
}
|
|
|
|
// UnmarshalJSON unmarshals the Provider from JSON string.
|
|
func (p *Provider) UnmarshalJSON(b []byte) error {
|
|
var s string
|
|
if err := json.Unmarshal(b, &s); err != nil {
|
|
return err
|
|
}
|
|
*p = FromString(s)
|
|
return nil
|
|
}
|
|
|
|
// FromString returns cloud provider from string.
|
|
func FromString(s string) Provider {
|
|
s = strings.ToLower(s)
|
|
switch s {
|
|
case "aws":
|
|
return AWS
|
|
case "azure":
|
|
return Azure
|
|
case "gcp":
|
|
return GCP
|
|
case "qemu":
|
|
return QEMU
|
|
default:
|
|
return Unknown
|
|
}
|
|
}
|