2022-04-13 07:01:38 -04:00
|
|
|
package cloudcmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2022-06-07 10:30:41 -04:00
|
|
|
azurecl "github.com/edgelesssys/constellation/cli/internal/azure/client"
|
2022-06-07 08:52:47 -04:00
|
|
|
gcpcl "github.com/edgelesssys/constellation/cli/internal/gcp/client"
|
2022-04-13 07:01:38 -04:00
|
|
|
"github.com/edgelesssys/constellation/internal/state"
|
|
|
|
)
|
|
|
|
|
|
|
|
type gcpclient interface {
|
|
|
|
GetState() (state.ConstellationState, error)
|
|
|
|
SetState(state.ConstellationState) error
|
2022-05-16 12:54:25 -04:00
|
|
|
CreateVPCs(ctx context.Context) error
|
2022-04-13 07:01:38 -04:00
|
|
|
CreateFirewall(ctx context.Context, input gcpcl.FirewallInput) error
|
|
|
|
CreateInstances(ctx context.Context, input gcpcl.CreateInstancesInput) error
|
|
|
|
CreateServiceAccount(ctx context.Context, input gcpcl.ServiceAccountInput) (string, error)
|
|
|
|
TerminateFirewall(ctx context.Context) error
|
|
|
|
TerminateVPCs(context.Context) error
|
|
|
|
TerminateInstances(context.Context) error
|
|
|
|
TerminateServiceAccount(ctx context.Context) error
|
|
|
|
Close() error
|
|
|
|
}
|
|
|
|
|
|
|
|
type azureclient interface {
|
|
|
|
GetState() (state.ConstellationState, error)
|
|
|
|
SetState(state.ConstellationState) error
|
2022-06-10 07:18:30 -04:00
|
|
|
CreateApplicationInsight(ctx context.Context) error
|
2022-04-13 07:01:38 -04:00
|
|
|
CreateResourceGroup(ctx context.Context) error
|
2022-05-24 04:04:42 -04:00
|
|
|
CreateExternalLoadBalancer(ctx context.Context) error
|
2022-04-13 07:01:38 -04:00
|
|
|
CreateVirtualNetwork(ctx context.Context) error
|
|
|
|
CreateSecurityGroup(ctx context.Context, input azurecl.NetworkSecurityGroupInput) error
|
|
|
|
CreateInstances(ctx context.Context, input azurecl.CreateInstancesInput) error
|
|
|
|
// TODO: deprecate as soon as scale sets are available
|
|
|
|
CreateInstancesVMs(ctx context.Context, input azurecl.CreateInstancesInput) error
|
|
|
|
CreateServicePrincipal(ctx context.Context) (string, error)
|
|
|
|
TerminateResourceGroup(ctx context.Context) error
|
|
|
|
TerminateServicePrincipal(ctx context.Context) error
|
|
|
|
}
|