Files
2023-05-29 07:20:55 -04:00

14 lines
504 B
Go

package v1
// InstanceTenancy indicates if instance should run on shared or single-tenant hardware.
type InstanceTenancy string
const (
// DefaultTenancy instance runs on shared hardware
DefaultTenancy InstanceTenancy = "default"
// DedicatedTenancy instance runs on single-tenant hardware
DedicatedTenancy InstanceTenancy = "dedicated"
// HostTenancy instance runs on a Dedicated Host, which is an isolated server with configurations that you can control.
HostTenancy InstanceTenancy = "host"
)