...

Package v1beta1

import "github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/apis/vpcaccess/v1beta1"
Overview
Index

Overview ▾

Generate deepcopy object for vpcaccess/v1beta1 API group

Package v1beta1 contains API Schema definitions for the vpcaccess v1beta1 API group. +k8s:openapi-gen=true +k8s:deepcopy-gen=package,register +k8s:conversion-gen=github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/pkg/apis/vpcaccess +k8s:defaulter-gen=TypeMeta +groupName=vpcaccess.cnrm.cloud.google.com

Variables

var (
    // SchemeGroupVersion is the group version used to register these objects.
    SchemeGroupVersion = schema.GroupVersion{Group: "vpcaccess.cnrm.cloud.google.com", Version: "v1beta1"}

    // SchemeBuilder is used to add go types to the GroupVersionKind scheme.
    SchemeBuilder = &scheme.Builder{GroupVersion: SchemeGroupVersion}

    // AddToScheme is a global function that registers this API group & version to a scheme
    AddToScheme = SchemeBuilder.AddToScheme

    VPCAccessConnectorGVK = schema.GroupVersionKind{
        Group:   SchemeGroupVersion.Group,
        Version: SchemeGroupVersion.Version,
        Kind:    reflect.TypeOf(VPCAccessConnector{}).Name(),
    }
)

type ConnectorSubnet

type ConnectorSubnet struct {
    /* Immutable. Subnet name (relative, not fully qualified). E.g. if the full subnet selfLink is
    https://compute.googleapis.com/compute/v1/projects/{project}/regions/{region}/subnetworks/{subnetName} the correct input for this field would be {subnetName}" */
    // +optional
    NameRef *v1alpha1.ResourceRef `json:"nameRef,omitempty"`

    /* Immutable. Project in which the subnet exists. If not set, this project is assumed to be the project for which the connector create request was issued. */
    // +optional
    ProjectRef *v1alpha1.ResourceRef `json:"projectRef,omitempty"`
}

func (*ConnectorSubnet) DeepCopy

func (in *ConnectorSubnet) DeepCopy() *ConnectorSubnet

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConnectorSubnet.

func (*ConnectorSubnet) DeepCopyInto

func (in *ConnectorSubnet) DeepCopyInto(out *ConnectorSubnet)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type VPCAccessConnector

VPCAccessConnector is the Schema for the vpcaccess API +k8s:openapi-gen=true

type VPCAccessConnector struct {
    metav1.TypeMeta   `json:",inline"`
    metav1.ObjectMeta `json:"metadata,omitempty"`

    Spec   VPCAccessConnectorSpec   `json:"spec,omitempty"`
    Status VPCAccessConnectorStatus `json:"status,omitempty"`
}

func (*VPCAccessConnector) DeepCopy

func (in *VPCAccessConnector) DeepCopy() *VPCAccessConnector

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VPCAccessConnector.

func (*VPCAccessConnector) DeepCopyInto

func (in *VPCAccessConnector) DeepCopyInto(out *VPCAccessConnector)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*VPCAccessConnector) DeepCopyObject

func (in *VPCAccessConnector) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type VPCAccessConnectorList

VPCAccessConnectorList contains a list of VPCAccessConnector

type VPCAccessConnectorList struct {
    metav1.TypeMeta `json:",inline"`
    metav1.ListMeta `json:"metadata,omitempty"`
    Items           []VPCAccessConnector `json:"items"`
}

func (*VPCAccessConnectorList) DeepCopy

func (in *VPCAccessConnectorList) DeepCopy() *VPCAccessConnectorList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VPCAccessConnectorList.

func (*VPCAccessConnectorList) DeepCopyInto

func (in *VPCAccessConnectorList) DeepCopyInto(out *VPCAccessConnectorList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*VPCAccessConnectorList) DeepCopyObject

func (in *VPCAccessConnectorList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type VPCAccessConnectorSpec

type VPCAccessConnectorSpec struct {
    /* Immutable. The range of internal addresses that follows RFC 4632 notation. Example: '10.132.0.0/28'. */
    // +optional
    IpCidrRange *string `json:"ipCidrRange,omitempty"`

    /* Location represents the geographical location of the VPCAccessConnector. Specify a region name. Reference: GCP definition of regions/zones (https://cloud.google.com/compute/docs/regions-zones/) */
    Location string `json:"location"`

    /* Immutable. Machine type of VM Instance underlying connector. Default is e2-micro. */
    // +optional
    MachineType *string `json:"machineType,omitempty"`

    /* Immutable. Maximum value of instances in autoscaling group underlying the connector. */
    // +optional
    MaxInstances *int `json:"maxInstances,omitempty"`

    /* Immutable. Maximum throughput of the connector in Mbps, must be greater than 'min_throughput'. Default is 300. */
    // +optional
    MaxThroughput *int `json:"maxThroughput,omitempty"`

    /* Immutable. Minimum value of instances in autoscaling group underlying the connector. */
    // +optional
    MinInstances *int `json:"minInstances,omitempty"`

    /* Immutable. Minimum throughput of the connector in Mbps. Default and min is 200. */
    // +optional
    MinThroughput *int `json:"minThroughput,omitempty"`

    /* Immutable. Name or self_link of the VPC network. Required if 'ip_cidr_range' is set. */
    // +optional
    NetworkRef *v1alpha1.ResourceRef `json:"networkRef,omitempty"`

    /* Immutable. The project that this resource belongs to. */
    ProjectRef v1alpha1.ResourceRef `json:"projectRef"`

    /* Immutable. Optional. The name of the resource. Used for creation and acquisition. When unset, the value of `metadata.name` is used as the default. */
    // +optional
    ResourceID *string `json:"resourceID,omitempty"`

    /* Immutable. The subnet in which to house the connector. */
    // +optional
    Subnet *ConnectorSubnet `json:"subnet,omitempty"`
}

func (*VPCAccessConnectorSpec) DeepCopy

func (in *VPCAccessConnectorSpec) DeepCopy() *VPCAccessConnectorSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VPCAccessConnectorSpec.

func (*VPCAccessConnectorSpec) DeepCopyInto

func (in *VPCAccessConnectorSpec) DeepCopyInto(out *VPCAccessConnectorSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type VPCAccessConnectorStatus

type VPCAccessConnectorStatus struct {
    /* Conditions represent the latest available observations of the
       VPCAccessConnector's current state. */
    Conditions []v1alpha1.Condition `json:"conditions,omitempty"`
    /* List of projects using the connector. */
    // +optional
    ConnectedProjects []string `json:"connectedProjects,omitempty"`

    /* ObservedGeneration is the generation of the resource that was most recently observed by the Config Connector controller. If this is equal to metadata.generation, then that means that the current reported status reflects the most recent desired state of the resource. */
    // +optional
    ObservedGeneration *int `json:"observedGeneration,omitempty"`

    /* The fully qualified name of this VPC connector. */
    // +optional
    SelfLink *string `json:"selfLink,omitempty"`

    /* State of the VPC access connector. */
    // +optional
    State *string `json:"state,omitempty"`
}

func (*VPCAccessConnectorStatus) DeepCopy

func (in *VPCAccessConnectorStatus) DeepCopy() *VPCAccessConnectorStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VPCAccessConnectorStatus.

func (*VPCAccessConnectorStatus) DeepCopyInto

func (in *VPCAccessConnectorStatus) DeepCopyInto(out *VPCAccessConnectorStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.