|
package platform
|
|
|
|
const (
|
|
K8s Type = "kubernetes"
|
|
Eci Type = "eci"
|
|
Serverless Type = "serverless"
|
|
)
|
|
|
|
type Platform struct {
|
|
Name string `json:"name,omitempty"`
|
|
Id Id `json:"id,omitempty"`
|
|
Type Type `json:"type,omitempty"`
|
|
}
|
|
|
|
type Type string
|
|
type Id string
|