models

package
v0.1.23 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 21, 2026 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

View Source
const (
	ProjectModelName                    = "gcp:model:project"
	InstanceModelName                   = "gcp:model:instance"
	VPCModelName                        = "gcp:model:vpc"
	AddressModelName                    = "gcp:model:address"
	NetworkInterfaceModelName           = "gcp:model:nic"
	SubnetModelName                     = "gcp:model:subnet"
	BucketModelName                     = "gcp:model:bucket"
	ForwardingRuleModelName             = "gcp:model:forwarding_rule"
	DiskModelName                       = "gcp:model:disk"
	AttachedDiskModelName               = "gcp:model:attached_disk"
	GKEClusterModelName                 = "gcp:model:gke_cluster"
	TargetPoolModelName                 = "gcp:model:target_pool"
	TargetPoolInstanceModelName         = "gcp:model:target_pool_instance"
	IAMPolicyModelName                  = "gcp:model:iam_policy"
	IAMBindingModelName                 = "gcp:model:iam_binding"
	IAMRoleMemberModelName              = "gcp:model:iam_role_member"
	InstanceToProjectModelName          = "gcp:model:link_instance_to_project"
	VPCToProjectModelName               = "gcp:model:link_vpc_to_project"
	AddressToProjectModelName           = "gcp:model:link_addr_to_project"
	InstanceToNetworkInterfaceModelName = "gcp:model:link_instance_to_nic"
	SubnetToVPCModelName                = "gcp:model:link_subnet_to_vpc"
	SubnetToProjectModelName            = "gcp:model:link_subnet_to_project"
	ForwardingRuleToProjectModelName    = "gcp:model:link_forwarding_rule_to_project"
	InstanceToDiskModelName             = "gcp:model:link_instance_to_disk"
	GKEClusterToProjectModelName        = "gcp:model:link_gke_cluster_to_project"
	TargetPoolToInstanceModelName       = "gcp:model:link_target_pool_to_instance"
	TargetPoolToProjectModelName        = "gcp:model:link_target_pool_to_project"
)

Names for the various models provided by this package. These names are used for registering models with registry.ModelRegistry

Variables

This section is empty.

Functions

This section is empty.

Types

type Address

type Address struct {
	bun.BaseModel `bun:"table:gcp_address"`
	coremodels.Model

	Address           net.IP   `bun:"address,notnull,type:inet"`
	AddressType       string   `bun:"address_type,notnull"`
	IsGlobal          bool     `bun:"is_global,notnull"`
	CreationTimestamp string   `bun:"creation_timestamp,nullzero"`
	Description       string   `bun:"description,notnull"`
	AddressID         uint64   `bun:"address_id,notnull,unique:gcp_address_key"`
	ProjectID         string   `bun:"project_id,notnull,unique:gcp_address_key"`
	Region            string   `bun:"region,notnull"`
	IPVersion         string   `bun:"ip_version,notnull"`
	IPv6EndpointType  string   `bun:"ipv6_endpoint_type,notnull"`
	Name              string   `bun:"name,notnull"`
	Network           string   `bun:"network,notnull"`
	NetworkTier       string   `bun:"network_tier,notnull"`
	Subnetwork        string   `bun:"subnetwork,notnull"`
	PrefixLength      int      `bun:"prefix_length,notnull"`
	Purpose           string   `bun:"purpose,notnull"`
	SelfLink          string   `bun:"self_link,notnull"`
	Status            string   `bun:"status,notnull"`
	Project           *Project `bun:"rel:has-one,join:project_id=project_id"`
}

Address represents a GCP static IP address resource. The Address model represents both - a global (external and internal) and regional (external and internal) IP address.

type AddressToProject

type AddressToProject struct {
	bun.BaseModel `bun:"table:l_gcp_addr_to_project"`
	coremodels.Model

	ProjectID uuid.UUID `bun:"project_id,notnull,type:uuid,unique:l_gcp_addr_to_project_key"`
	AddressID uuid.UUID `bun:"address_id,notnull,type:uuid,unique:l_gcp_addr_to_project_key"`
}

AddressToProject represents a link table connecting the Project with Address models.

type AttachedDisk added in v0.1.1

type AttachedDisk struct {
	bun.BaseModel `bun:"table:gcp_attached_disk"`
	coremodels.Model

	InstanceName string    `bun:"instance_name,notnull,unique:gcp_attached_disk_key"`
	DiskName     string    `bun:"disk_name,notnull,unique:gcp_attached_disk_key"`
	ProjectID    string    `bun:"project_id,notnull,unique:gcp_attached_disk_key"`
	Zone         string    `bun:"zone,notnull"`
	Region       string    `bun:"region,notnull"`
	Instance     *Instance `bun:"rel:has-one,join:project_id=project_id,join:instance_name=name"`
	Disk         *Disk     `bun:"rel:has-one,join:project_id=project_id,join:disk_name=name"`
}

AttachedDisk represents an attached GCP Disk

type Bucket

type Bucket struct {
	bun.BaseModel `bun:"table:gcp_bucket"`
	coremodels.Model

	Name                string   `bun:"name,notnull,unique:gcp_bucket_key"`
	ProjectID           string   `bun:"project_id,notnull,unique:gcp_bucket_key"`
	LocationType        string   `bun:"location_type,notnull"`
	Location            string   `bun:"location,notnull"`
	DefaultStorageClass string   `bun:"default_storage_class,notnull"`
	CreationTimestamp   string   `bun:"creation_timestamp,nullzero"`
	Project             *Project `bun:"rel:has-one,join:project_id=project_id"`
}

Bucket represents a GCP Bucket

type Disk added in v0.1.1

type Disk struct {
	bun.BaseModel `bun:"table:gcp_disk"`
	coremodels.Model

	Name                string   `bun:"name,notnull,unique:gcp_disk_key"`
	ProjectID           string   `bun:"project_id,notnull,unique:gcp_disk_key"`
	Zone                string   `bun:"zone,notnull,unique:gcp_disk_key"`
	Region              string   `bun:"region,notnull"`
	Type                string   `bun:"type,notnull"`
	Description         string   `bun:"description,notnull"`
	IsRegional          bool     `bun:"is_regional,notnull"`
	CreationTimestamp   string   `bun:"creation_timestamp,nullzero"`
	LastAttachTimestamp string   `bun:"last_attach_timestamp,nullzero"`
	LastDetachTimestamp string   `bun:"last_detach_timestamp,nullzero"`
	SizeGB              int64    `bun:"size_gb,notnull"`
	Status              string   `bun:"status,nullzero"`
	KubeClusterName     string   `bun:"k8s_cluster_name,nullzero"`
	Project             *Project `bun:"rel:has-one,join:project_id=project_id"`
}

Disk represents a GCP Disk

type ForwardingRule

type ForwardingRule struct {
	bun.BaseModel `bun:"table:gcp_forwarding_rule"`
	coremodels.Model

	RuleID              uint64   `bun:"rule_id,notnull,unique:gcp_forwarding_rule_key"`
	ProjectID           string   `bun:"project_id,notnull,unique:gcp_forwarding_rule_key"`
	Name                string   `bun:"name,notnull"`
	IPAddress           net.IP   `bun:"ip_address,nullzero,type:inet"`
	IPProtocol          string   `bun:"ip_protocol,notnull"`
	IPVersion           string   `bun:"ip_version,notnull"`
	AllPorts            bool     `bun:"all_ports,notnull"`
	AllowGlobalAccess   bool     `bun:"allow_global_access,notnull"`
	BackendService      string   `bun:"backend_service,nullzero"`
	BaseForwardingRule  string   `bun:"base_forwarding_rule,nullzero"`
	CreationTimestamp   string   `bun:"creation_timestamp,nullzero"`
	Description         string   `bun:"description,notnull"`
	LoadBalancingScheme string   `bun:"load_balancing_scheme,notnull"`
	Network             string   `bun:"network,nullzero"`
	NetworkTier         string   `bun:"network_tier,nullzero"`
	PortRange           string   `bun:"port_range,nullzero"`
	Ports               []string `bun:"ports,nullzero,array"`
	Region              string   `bun:"region,notnull"`
	ServiceLabel        string   `bun:"service_label,nullzero"`
	ServiceName         string   `bun:"service_name,nullzero"`
	SourceIPRanges      []string `bun:"source_ip_ranges,nullzero,array"`
	Subnetwork          string   `bun:"subnetwork,nullzero"`
	Target              string   `bun:"target,nullzero"`
	Project             *Project `bun:"rel:has-one,join:project_id=project_id"`
	VPC                 *VPC     `bun:"rel:has-one,join:project_id=project_id,join:network=name"`
	Subnet              *Subnet  `bun:"rel:has-one,join:project_id=project_id,join:subnetwork=name"`
}

ForwardingRule represents a GCP Forwarding Rule resource. The Forwarding Rules in GCP are global and regional. For more details please refer to the Forwarding Rules overview documentation.

type ForwardingRuleToProject

type ForwardingRuleToProject struct {
	bun.BaseModel `bun:"table:l_gcp_fr_to_project"`
	coremodels.Model

	RuleID    uuid.UUID `bun:"rule_id,notnull,type:uuid,unique:l_gcp_fr_to_project_key"`
	ProjectID uuid.UUID `bun:"project_id,notnull,type:uuid,unique:l_gcp_fr_to_project_key"`
}

ForwardingRuleToProject represents a link table connecting the ForwardingRule and Project models.

type GKECluster added in v0.1.2

type GKECluster struct {
	bun.BaseModel `bun:"table:gcp_gke_cluster"`
	coremodels.Model

	Name                  string   `bun:"name,notnull"`
	ClusterID             string   `bun:"cluster_id,notnull,unique:gcp_gke_cluster_key"`
	ProjectID             string   `bun:"project_id,notnull,unique:gcp_gke_cluster_key"`
	Location              string   `bun:"location,notnull"`
	Network               string   `bun:"network,notnull"`
	Subnetwork            string   `bun:"subnetwork,notnull"`
	ClusterIPv4CIDR       string   `bun:"cluster_ipv4_cidr,notnull"`
	ServicesIPv4CIDR      string   `bun:"services_ipv4_cidr,notnull"`
	EnableKubernetesAlpha bool     `bun:"enable_k8s_alpha,notnull"`
	Endpoint              string   `bun:"endpoint,notnull"`
	InitialVersion        string   `bun:"initial_version,notnull"`
	CurrentMasterVersion  string   `bun:"current_master_version,notnull"`
	CAData                string   `bun:"ca_data,notnull"`
	Project               *Project `bun:"rel:has-one,join:project_id=project_id"`
	VPC                   *VPC     `bun:"rel:has-one,join:project_id=project_id,join:network=name"`
	Subnet                *Subnet  `bun:"rel:has-one,join:project_id=project_id,join:subnetwork=name,join:location=region"`
}

GKECluster represents a GKE Cluster.

type GKEClusterToProject added in v0.1.2

type GKEClusterToProject struct {
	bun.BaseModel `bun:"table:l_gcp_gke_cluster_to_project"`
	coremodels.Model

	ClusterID uuid.UUID `bun:"cluster_id,notnull,type:uuid,unique:l_gcp_gke_cluster_to_project_key"`
	ProjectID uuid.UUID `bun:"project_id,notnull,type:uuid,unique:l_gcp_gke_cluster_to_project_key"`
}

GKEClusterToProject represents a link table connecting the GKECluster with Project models.

type IAMBinding added in v0.1.19

type IAMBinding struct {
	bun.BaseModel `bun:"table:gcp_iam_binding"`
	coremodels.Model

	Role         string     `bun:"role,notnull,unique:gcp_iam_binding_key"`
	ResourceName string     `bun:"resource_name,notnull,unique:gcp_iam_binding_key"`
	ResourceType string     `bun:"resource_type,notnull,unique:gcp_iam_binding_key"`
	Condition    string     `bun:"condition,nullzero"`
	Policy       *IAMPolicy `bun:"rel:has-one,join:resource_name=resource_name,join:resource_type=resource_type"`
}

IAMBinding represents a binding of a single role to principals within an IAM Policy.

type IAMPolicy added in v0.1.19

type IAMPolicy struct {
	bun.BaseModel `bun:"table:gcp_iam_policy"`
	coremodels.Model

	ResourceName string       `bun:"resource_name,notnull,unique:gcp_iam_policy_key"`
	ResourceType string       `bun:"resource_type,notnull,unique:gcp_iam_policy_key"`
	Version      int32        `bun:"version,notnull"`
	Bindings     []IAMBinding `bun:"rel:has-many,join:resource_name=resource_name,join:resource_type=resource_type"`
}

IAMPolicy represents a GCP IAM Policy attached to a resource Unique per resource - in our case: projects folders and organisations.

type IAMRoleMember added in v0.1.19

type IAMRoleMember struct {
	bun.BaseModel `bun:"table:gcp_iam_role_member"`
	coremodels.Model

	Role         string      `bun:"role,notnull,unique:gcp_iam_role_member_key"`
	Member       string      `bun:"member,notnull,unique:gcp_iam_role_member_key"`
	ResourceName string      `bun:"resource_name,notnull,unique:gcp_iam_role_member_key"`
	ResourceType string      `bun:"resource_type,notnull,unique:gcp_iam_role_member_key"`
	Policy       *IAMPolicy  `bun:"rel:has-one,join:resource_name=resource_name,join:resource_type=resource_type"`
	Binding      *IAMBinding `bun:"rel:has-one,join:resource_name=resource_name,join:resource_type=resource_type,join:role=role"`
}

IAMRoleMember represents a single role-principal pair in a binding.

type Instance

type Instance struct {
	bun.BaseModel `bun:"table:gcp_instance"`
	coremodels.Model

	Name                 string   `bun:"name,notnull"`
	Hostname             string   `bun:"hostname,notnull"`
	InstanceID           uint64   `bun:"instance_id,notnull,unique:gcp_instance_key"`
	ProjectID            string   `bun:"project_id,notnull,unique:gcp_instance_key"`
	Zone                 string   `bun:"zone,notnull"`
	Region               string   `bun:"region,notnull"`
	CanIPForward         bool     `bun:"can_ip_forward,notnull"`
	CPUPlatform          string   `bun:"cpu_platform,notnull"`
	CreationTimestamp    string   `bun:"creation_timestamp,nullzero"`
	Description          string   `bun:"description,notnull"`
	LastStartTimestamp   string   `bun:"last_start_timestamp,nullzero"`
	LastStopTimestamp    string   `bun:"last_stop_timestamp,nullzero"`
	LastSuspendTimestamp string   `bun:"last_suspend_timestamp,nullzero"`
	MachineType          string   `bun:"machine_type,notnull"`
	MinCPUPlatform       string   `bun:"min_cpu_platform,notnull"`
	SelfLink             string   `bun:"self_link,notnull"`
	SourceMachineImage   string   `bun:"source_machine_image,notnull"`
	Status               string   `bun:"status,notnull"`
	StatusMessage        string   `bun:"status_message,notnull"`
	GKEClusterName       string   `bun:"gke_cluster_name,nullzero"`
	GKEPoolName          string   `bun:"gke_pool_name,nullzero"`
	Project              *Project `bun:"rel:has-one,join:project_id=project_id"`
}

Instance represents a GCP Instance.

type InstanceToDisk added in v0.1.1

type InstanceToDisk struct {
	bun.BaseModel `bun:"table:l_gcp_instance_to_disk"`
	coremodels.Model

	InstanceID uuid.UUID `bun:"instance_id,notnull,type:uuid,unique:l_gcp_instance_to_disk_key"`
	DiskID     uuid.UUID `bun:"disk_id,notnull,type:uuid,unique:l_gcp_instance_to_disk_key"`
}

InstanceToDisk represents a link table connecting the Instance with Disk models.

type InstanceToNetworkInterface

type InstanceToNetworkInterface struct {
	bun.BaseModel `bun:"table:l_gcp_instance_to_nic"`
	coremodels.Model

	InstanceID         uuid.UUID `bun:"instance_id,notnull,type:uuid,unique:l_gcp_instance_to_nic_key"`
	NetworkInterfaceID uuid.UUID `bun:"nic_id,notnull,type:uuid,unique:l_gcp_instance_to_nic_key"`
}

InstanceToNetworkInterface represents a link table connecting the NetworkInterface with Instance models.

type InstanceToProject

type InstanceToProject struct {
	bun.BaseModel `bun:"table:l_gcp_instance_to_project"`
	coremodels.Model

	ProjectID  uuid.UUID `bun:"project_id,notnull,type:uuid,unique:l_gcp_instance_to_project_key"`
	InstanceID uuid.UUID `bun:"instance_id,notnull,type:uuid,unique:l_gcp_instance_to_project_key"`
}

InstanceToProject represents a link table connecting the Project with Instance models.

type NetworkInterface

type NetworkInterface struct {
	bun.BaseModel `bun:"table:gcp_nic"`
	coremodels.Model

	Name           string    `bun:"name,notnull,unique:gcp_nic_key"`
	ProjectID      string    `bun:"project_id,notnull,unique:gcp_nic_key"`
	InstanceID     uint64    `bun:"instance_id,notnull,unique:gcp_nic_key"`
	Network        string    `bun:"network,notnull"`
	Subnetwork     string    `bun:"subnetwork,notnull"`
	IPv4           net.IP    `bun:"ipv4,nullzero,type:inet"`
	IPv6           net.IP    `bun:"ipv6,nullzero,type:inet"`
	IPv6AccessType string    `bun:"ipv6_access_type,notnull"`
	NICType        string    `bun:"nic_type,notnull"`
	StackType      string    `bun:"stack_type,notnull"`
	NATIP          net.IP    `bun:"nat_ip,nullzero"`
	Instance       *Instance `bun:"rel:has-one,join:project_id=project_id,join:instance_id=instance_id"`
}

NetworkInterface represents a NIC attached to an Instance.

type Project

type Project struct {
	bun.BaseModel `bun:"table:gcp_project"`
	coremodels.Model

	// Name is the globally unique id of the project represented as
	// "projects/<uint64>" value
	Name string `bun:"name,notnull,unique"`
	// ProjectID is the user-defined globally unique project id.
	ProjectID string `bun:"project_id,notnull,unique"`

	Parent            string      `bun:"parent,notnull"`
	State             string      `bun:"state,notnull"`
	DisplayName       string      `bun:"display_name,notnull"`
	ProjectCreateTime time.Time   `bun:"project_create_time,nullzero"`
	ProjectUpdateTime time.Time   `bun:"project_update_time,nullzero"`
	ProjectDeleteTime time.Time   `bun:"project_delete_time,nullzero"`
	Etag              string      `bun:"etag,notnull"`
	Instances         []*Instance `bun:"rel:has-many,join:project_id=project_id"`
	VPCs              []*VPC      `bun:"rel:has-many,join:project_id=project_id"`
}

Project represents a GCP Project.

type Subnet

type Subnet struct {
	bun.BaseModel `bun:"table:gcp_subnet"`
	coremodels.Model

	SubnetID          uint64   `bun:"subnet_id,notnull,unique:gcp_subnet_key"`
	VPCName           string   `bun:"vpc_name,notnull,unique:gcp_subnet_key"`
	ProjectID         string   `bun:"project_id,notnull,unique:gcp_subnet_key"`
	Name              string   `bun:"name,notnull"`
	Region            string   `bun:"region,notnull"`
	CreationTimestamp string   `bun:"creation_timestamp,nullzero"`
	Description       string   `bun:"description,notnull"`
	IPv4CIDRRange     string   `bun:"ipv4_cidr_range,notnull"`
	Gateway           net.IP   `bun:"gateway,nullzero,type:inet"`
	Purpose           string   `bun:"purpose,notnull"`
	Project           *Project `bun:"rel:has-one,join:project_id=project_id"`
	VPC               *VPC     `bun:"rel:has-one,join:vpc_name=name,join:project_id=project_id"`
}

Subnet represents a GCP Subnet

type SubnetToProject

type SubnetToProject struct {
	bun.BaseModel `bun:"table:l_gcp_subnet_to_project"`
	coremodels.Model

	ProjectID uuid.UUID `bun:"project_id,notnull,type:uuid,unique:l_gcp_subnet_to_project_key"`
	SubnetID  uuid.UUID `bun:"subnet_id,notnull,type:uuid,unique:l_gcp_subnet_to_project_key"`
}

SubnetToProject represents a link table connecting the Subnet with Project models.

type SubnetToVPC

type SubnetToVPC struct {
	bun.BaseModel `bun:"table:l_gcp_subnet_to_vpc"`
	coremodels.Model

	VPCID    uuid.UUID `bun:"vpc_id,notnull,type:uuid,unique:l_gcp_subnet_to_vpc_key"`
	SubnetID uuid.UUID `bun:"subnet_id,notnull,type:uuid,unique:l_gcp_subnet_to_vpc_key"`
}

SubnetToVPC represents a link table connecting the Subnet with VPC models.

type TargetPool added in v0.1.6

type TargetPool struct {
	bun.BaseModel `bun:"table:gcp_target_pool"`
	coremodels.Model

	TargetPoolID      uint64   `bun:"target_pool_id,notnull,unique:gcp_target_pool_key"`
	ProjectID         string   `bun:"project_id,notnull,unique:gcp_target_pool_key"`
	Name              string   `bun:"name,notnull"`
	Description       string   `bun:"description,notnull"`
	BackupPool        string   `bun:"backup_pool,nullzero"`
	CreationTimestamp string   `bun:"creation_timestamp,nullzero"`
	Region            string   `bun:"region,notnull"`
	SecurityPolicy    string   `bun:"security_policy,nullzero"`
	SessionAffinity   string   `bun:"session_affinity,notnull"`
	Project           *Project `bun:"rel:has-one,join:project_id=project_id"`
}

TargetPool represents a group of backend instances which receive incoming traffic from GCP load balancers.

type TargetPoolInstance added in v0.1.6

type TargetPoolInstance struct {
	bun.BaseModel `bun:"table:gcp_target_pool_instance"`
	coremodels.Model

	TargetPoolID          uint64      `bun:"target_pool_id,notnull,unique:gcp_target_pool_instance_key"`
	ProjectID             string      `bun:"project_id,notnull,unique:gcp_target_pool_instance_key"`
	InstanceName          string      `bun:"instance_name,notnull,unique:gcp_target_pool_instance_key"`
	InferredGardenerShoot string      `bun:"inferred_g_shoot,nullzero"`
	Project               *Project    `bun:"rel:has-one,join:project_id=project_id"`
	TargetPool            *TargetPool `bun:"rel:has-one,join:project_id=project_id,join:target_pool_id=target_pool_id"`
}

TargetPoolInstance represents an instance of a target pool.

type TargetPoolToInstance added in v0.1.6

type TargetPoolToInstance struct {
	bun.BaseModel `bun:"table:l_gcp_target_pool_to_instance"`
	coremodels.Model

	TargetPoolID uuid.UUID `bun:"target_pool_id,notnull,type:uuid,unique:l_gcp_target_pool_to_instance_key"`
	InstanceID   uuid.UUID `bun:"instance_id,notnull,type:uuid,unique:l_gcp_target_pool_to_instance_key"`
}

TargetPoolToInstance represents a link table connecting the TargetPool with TargetPoolInstance models.

type TargetPoolToProject added in v0.1.6

type TargetPoolToProject struct {
	bun.BaseModel `bun:"table:l_gcp_target_pool_to_project"`
	coremodels.Model

	TargetPoolID uuid.UUID `bun:"target_pool_id,notnull,type:uuid,unique:l_gcp_target_pool_to_project_key"`
	ProjectID    uuid.UUID `bun:"project_id,notnull,type:uuid,unique:l_gcp_target_pool_to_project_key"`
}

TargetPoolToProject represents a link table connecting the TargetPool with Project models.

type VPC

type VPC struct {
	bun.BaseModel `bun:"table:gcp_vpc"`
	coremodels.Model

	VPCID             uint64   `bun:"vpc_id,notnull,unique:gcp_vpc_key"`
	ProjectID         string   `bun:"project_id,notnull,unique:gcp_vpc_key"`
	Name              string   `bun:"name,notnull"`
	CreationTimestamp string   `bun:"creation_timestamp,nullzero"`
	Description       string   `bun:"description,notnull"`
	GatewayIPv4       string   `bun:"gateway_ipv4,notnull"`
	FirewallPolicy    string   `bun:"firewall_policy,notnull"`
	MTU               int32    `bun:"mtu,notnull"`
	Project           *Project `bun:"rel:has-one,join:project_id=project_id"`
}

VPC represents a GCP VPC

type VPCToProject

type VPCToProject struct {
	bun.BaseModel `bun:"table:l_gcp_vpc_to_project"`
	coremodels.Model

	ProjectID uuid.UUID `bun:"project_id,notnull,type:uuid,unique:l_gcp_vpc_to_project_key"`
	VPCID     uuid.UUID `bun:"vpc_id,notnull,type:uuid,unique:l_gcp_vpc_to_project_key"`
}

VPCToProject represents a link table connecting the Project with VPC models.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL