mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 04:40:05 +01:00
73 lines
2.7 KiB
Go
73 lines
2.7 KiB
Go
package dto
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type ClusterResponse struct {
|
|
ID uuid.UUID `json:"id"`
|
|
Name string `json:"name"`
|
|
CaptainDomain *DomainResponse `json:"captain_domain,omitempty"`
|
|
ControlPlaneRecordSet *RecordSetResponse `json:"control_plane_record_set,omitempty"`
|
|
ControlPlaneFQDN *string `json:"control_plane_fqdn,omitempty"`
|
|
AppsLoadBalancer *LoadBalancerResponse `json:"apps_load_balancer,omitempty"`
|
|
GlueOpsLoadBalancer *LoadBalancerResponse `json:"glueops_load_balancer,omitempty"`
|
|
BastionServer *ServerResponse `json:"bastion_server,omitempty"`
|
|
Provider string `json:"cluster_provider"`
|
|
Region string `json:"region"`
|
|
Status string `json:"status"`
|
|
LastError string `json:"last_error"`
|
|
RandomToken string `json:"random_token"`
|
|
CertificateKey string `json:"certificate_key"`
|
|
NodePools []NodePoolResponse `json:"node_pools,omitempty"`
|
|
DockerImage string `json:"docker_image"`
|
|
DockerTag string `json:"docker_tag"`
|
|
Kubeconfig *string `json:"kubeconfig,omitempty"`
|
|
OrgKey *string `json:"org_key,omitempty"`
|
|
OrgSecret *string `json:"org_secret,omitempty"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
type CreateClusterRequest struct {
|
|
Name string `json:"name"`
|
|
ClusterProvider string `json:"cluster_provider"`
|
|
Region string `json:"region"`
|
|
DockerImage string `json:"docker_image"`
|
|
DockerTag string `json:"docker_tag"`
|
|
}
|
|
|
|
type UpdateClusterRequest struct {
|
|
Name *string `json:"name,omitempty"`
|
|
ClusterProvider *string `json:"cluster_provider,omitempty"`
|
|
Region *string `json:"region,omitempty"`
|
|
DockerImage *string `json:"docker_image,omitempty"`
|
|
DockerTag *string `json:"docker_tag,omitempty"`
|
|
}
|
|
|
|
type AttachCaptainDomainRequest struct {
|
|
DomainID uuid.UUID `json:"domain_id"`
|
|
}
|
|
|
|
type AttachRecordSetRequest struct {
|
|
RecordSetID uuid.UUID `json:"record_set_id"`
|
|
}
|
|
|
|
type AttachLoadBalancerRequest struct {
|
|
LoadBalancerID uuid.UUID `json:"load_balancer_id"`
|
|
}
|
|
|
|
type AttachBastionRequest struct {
|
|
ServerID uuid.UUID `json:"server_id"`
|
|
}
|
|
|
|
type SetKubeconfigRequest struct {
|
|
Kubeconfig string `json:"kubeconfig"`
|
|
}
|
|
|
|
type AttachNodePoolRequest struct {
|
|
NodePoolID uuid.UUID `json:"node_pool_id"`
|
|
}
|