Documentation ¶
Overview ¶
Generate deepcopy object for networkconnectivity/v1beta1 API group
Package v1beta1 contains API Schema definitions for the networkconnectivity 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/networkconnectivity +k8s:defaulter-gen=TypeMeta +groupName=networkconnectivity.cnrm.cloud.google.com
Index ¶
- Variables
- type HubRoutingVpcsStatus
- type NetworkConnectivityHub
- type NetworkConnectivityHubList
- type NetworkConnectivityHubSpec
- type NetworkConnectivityHubStatus
- type NetworkConnectivitySpoke
- type NetworkConnectivitySpokeList
- type NetworkConnectivitySpokeSpec
- type NetworkConnectivitySpokeStatus
- type SpokeInstances
- type SpokeLinkedInterconnectAttachments
- type SpokeLinkedRouterApplianceInstances
- type SpokeLinkedVPCNetwork
- type SpokeLinkedVpnTunnels
Constants ¶
This section is empty.
Variables ¶
var ( // SchemeGroupVersion is the group version used to register these objects. SchemeGroupVersion = schema.GroupVersion{Group: "networkconnectivity.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 NetworkConnectivityHubGVK = schema.GroupVersionKind{ Group: SchemeGroupVersion.Group, Version: SchemeGroupVersion.Version, Kind: reflect.TypeOf(NetworkConnectivityHub{}).Name(), } NetworkConnectivitySpokeGVK = schema.GroupVersionKind{ Group: SchemeGroupVersion.Group, Version: SchemeGroupVersion.Version, Kind: reflect.TypeOf(NetworkConnectivitySpoke{}).Name(), } )
Functions ¶
This section is empty.
Types ¶
type HubRoutingVpcsStatus ¶
type HubRoutingVpcsStatus struct { /* The URI of the VPC network. */ // +optional Uri *string `json:"uri,omitempty"` }
func (*HubRoutingVpcsStatus) DeepCopy ¶
func (in *HubRoutingVpcsStatus) DeepCopy() *HubRoutingVpcsStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HubRoutingVpcsStatus.
func (*HubRoutingVpcsStatus) DeepCopyInto ¶
func (in *HubRoutingVpcsStatus) DeepCopyInto(out *HubRoutingVpcsStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NetworkConnectivityHub ¶
type NetworkConnectivityHub struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec NetworkConnectivityHubSpec `json:"spec,omitempty"` Status NetworkConnectivityHubStatus `json:"status,omitempty"` }
NetworkConnectivityHub is the Schema for the networkconnectivity API +k8s:openapi-gen=true
func (*NetworkConnectivityHub) DeepCopy ¶
func (in *NetworkConnectivityHub) DeepCopy() *NetworkConnectivityHub
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkConnectivityHub.
func (*NetworkConnectivityHub) DeepCopyInto ¶
func (in *NetworkConnectivityHub) DeepCopyInto(out *NetworkConnectivityHub)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*NetworkConnectivityHub) DeepCopyObject ¶
func (in *NetworkConnectivityHub) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type NetworkConnectivityHubList ¶
type NetworkConnectivityHubList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []NetworkConnectivityHub `json:"items"` }
NetworkConnectivityHubList contains a list of NetworkConnectivityHub
func (*NetworkConnectivityHubList) DeepCopy ¶
func (in *NetworkConnectivityHubList) DeepCopy() *NetworkConnectivityHubList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkConnectivityHubList.
func (*NetworkConnectivityHubList) DeepCopyInto ¶
func (in *NetworkConnectivityHubList) DeepCopyInto(out *NetworkConnectivityHubList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*NetworkConnectivityHubList) DeepCopyObject ¶
func (in *NetworkConnectivityHubList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type NetworkConnectivityHubSpec ¶
type NetworkConnectivityHubSpec struct { /* An optional description of the hub. */ // +optional Description *string `json:"description,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"` }
func (*NetworkConnectivityHubSpec) DeepCopy ¶
func (in *NetworkConnectivityHubSpec) DeepCopy() *NetworkConnectivityHubSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkConnectivityHubSpec.
func (*NetworkConnectivityHubSpec) DeepCopyInto ¶
func (in *NetworkConnectivityHubSpec) DeepCopyInto(out *NetworkConnectivityHubSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NetworkConnectivityHubStatus ¶
type NetworkConnectivityHubStatus struct { /* Conditions represent the latest available observations of the NetworkConnectivityHub's current state. */ Conditions []v1alpha1.Condition `json:"conditions,omitempty"` /* Output only. The time the hub was created. */ // +optional CreateTime *string `json:"createTime,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 *int64 `json:"observedGeneration,omitempty"` /* The VPC network associated with this hub's spokes. All of the VPN tunnels, VLAN attachments, and router appliance instances referenced by this hub's spokes must belong to this VPC network. This field is read-only. Network Connectivity Center automatically populates it based on the set of spokes attached to the hub. */ // +optional RoutingVpcs []HubRoutingVpcsStatus `json:"routingVpcs,omitempty"` /* Output only. The current lifecycle state of this hub. Possible values: STATE_UNSPECIFIED, CREATING, ACTIVE, DELETING */ // +optional State *string `json:"state,omitempty"` /* Output only. The Google-generated UUID for the hub. This value is unique across all hub resources. If a hub is deleted and another with the same name is created, the new hub is assigned a different unique_id. */ // +optional UniqueId *string `json:"uniqueId,omitempty"` /* Output only. The time the hub was last updated. */ // +optional UpdateTime *string `json:"updateTime,omitempty"` }
func (*NetworkConnectivityHubStatus) DeepCopy ¶
func (in *NetworkConnectivityHubStatus) DeepCopy() *NetworkConnectivityHubStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkConnectivityHubStatus.
func (*NetworkConnectivityHubStatus) DeepCopyInto ¶
func (in *NetworkConnectivityHubStatus) DeepCopyInto(out *NetworkConnectivityHubStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NetworkConnectivitySpoke ¶
type NetworkConnectivitySpoke struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec NetworkConnectivitySpokeSpec `json:"spec,omitempty"` Status NetworkConnectivitySpokeStatus `json:"status,omitempty"` }
NetworkConnectivitySpoke is the Schema for the networkconnectivity API +k8s:openapi-gen=true
func (*NetworkConnectivitySpoke) DeepCopy ¶
func (in *NetworkConnectivitySpoke) DeepCopy() *NetworkConnectivitySpoke
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkConnectivitySpoke.
func (*NetworkConnectivitySpoke) DeepCopyInto ¶
func (in *NetworkConnectivitySpoke) DeepCopyInto(out *NetworkConnectivitySpoke)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*NetworkConnectivitySpoke) DeepCopyObject ¶
func (in *NetworkConnectivitySpoke) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type NetworkConnectivitySpokeList ¶
type NetworkConnectivitySpokeList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []NetworkConnectivitySpoke `json:"items"` }
NetworkConnectivitySpokeList contains a list of NetworkConnectivitySpoke
func (*NetworkConnectivitySpokeList) DeepCopy ¶
func (in *NetworkConnectivitySpokeList) DeepCopy() *NetworkConnectivitySpokeList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkConnectivitySpokeList.
func (*NetworkConnectivitySpokeList) DeepCopyInto ¶
func (in *NetworkConnectivitySpokeList) DeepCopyInto(out *NetworkConnectivitySpokeList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*NetworkConnectivitySpokeList) DeepCopyObject ¶
func (in *NetworkConnectivitySpokeList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type NetworkConnectivitySpokeSpec ¶
type NetworkConnectivitySpokeSpec struct { /* An optional description of the spoke. */ // +optional Description *string `json:"description,omitempty"` /* Immutable. */ HubRef v1alpha1.ResourceRef `json:"hubRef"` /* Immutable. A collection of VLAN attachment resources. These resources should be redundant attachments that all advertise the same prefixes to Google Cloud. Alternatively, in active/passive configurations, all attachments should be capable of advertising the same prefixes. */ // +optional LinkedInterconnectAttachments *SpokeLinkedInterconnectAttachments `json:"linkedInterconnectAttachments,omitempty"` /* Immutable. The URIs of linked Router appliance resources */ // +optional LinkedRouterApplianceInstances *SpokeLinkedRouterApplianceInstances `json:"linkedRouterApplianceInstances,omitempty"` /* Immutable. VPC network that is associated with the spoke. */ // +optional LinkedVPCNetwork *SpokeLinkedVPCNetwork `json:"linkedVPCNetwork,omitempty"` /* Immutable. The URIs of linked VPN tunnel resources */ // +optional LinkedVpnTunnels *SpokeLinkedVpnTunnels `json:"linkedVpnTunnels,omitempty"` /* Immutable. The location for the resource */ Location string `json:"location"` /* 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"` }
func (*NetworkConnectivitySpokeSpec) DeepCopy ¶
func (in *NetworkConnectivitySpokeSpec) DeepCopy() *NetworkConnectivitySpokeSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkConnectivitySpokeSpec.
func (*NetworkConnectivitySpokeSpec) DeepCopyInto ¶
func (in *NetworkConnectivitySpokeSpec) DeepCopyInto(out *NetworkConnectivitySpokeSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NetworkConnectivitySpokeStatus ¶
type NetworkConnectivitySpokeStatus struct { /* Conditions represent the latest available observations of the NetworkConnectivitySpoke's current state. */ Conditions []v1alpha1.Condition `json:"conditions,omitempty"` /* Output only. The time the spoke was created. */ // +optional CreateTime *string `json:"createTime,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 *int64 `json:"observedGeneration,omitempty"` /* Output only. The current lifecycle state of this spoke. Possible values: STATE_UNSPECIFIED, CREATING, ACTIVE, DELETING */ // +optional State *string `json:"state,omitempty"` /* Output only. The Google-generated UUID for the spoke. This value is unique across all spoke resources. If a spoke is deleted and another with the same name is created, the new spoke is assigned a different unique_id. */ // +optional UniqueId *string `json:"uniqueId,omitempty"` /* Output only. The time the spoke was last updated. */ // +optional UpdateTime *string `json:"updateTime,omitempty"` }
func (*NetworkConnectivitySpokeStatus) DeepCopy ¶
func (in *NetworkConnectivitySpokeStatus) DeepCopy() *NetworkConnectivitySpokeStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkConnectivitySpokeStatus.
func (*NetworkConnectivitySpokeStatus) DeepCopyInto ¶
func (in *NetworkConnectivitySpokeStatus) DeepCopyInto(out *NetworkConnectivitySpokeStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SpokeInstances ¶
type SpokeInstances struct { /* Immutable. The IP address on the VM to use for peering. */ // +optional IpAddress *string `json:"ipAddress,omitempty"` /* Immutable. */ // +optional VirtualMachineRef *v1alpha1.ResourceRef `json:"virtualMachineRef,omitempty"` }
func (*SpokeInstances) DeepCopy ¶
func (in *SpokeInstances) DeepCopy() *SpokeInstances
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpokeInstances.
func (*SpokeInstances) DeepCopyInto ¶
func (in *SpokeInstances) DeepCopyInto(out *SpokeInstances)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SpokeLinkedInterconnectAttachments ¶
type SpokeLinkedInterconnectAttachments struct { /* Immutable. A value that controls whether site-to-site data transfer is enabled for these resources. Note that data transfer is available only in supported locations. */ SiteToSiteDataTransfer bool `json:"siteToSiteDataTransfer"` /* Immutable. */ Uris []v1alpha1.ResourceRef `json:"uris"` }
func (*SpokeLinkedInterconnectAttachments) DeepCopy ¶
func (in *SpokeLinkedInterconnectAttachments) DeepCopy() *SpokeLinkedInterconnectAttachments
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpokeLinkedInterconnectAttachments.
func (*SpokeLinkedInterconnectAttachments) DeepCopyInto ¶
func (in *SpokeLinkedInterconnectAttachments) DeepCopyInto(out *SpokeLinkedInterconnectAttachments)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SpokeLinkedRouterApplianceInstances ¶
type SpokeLinkedRouterApplianceInstances struct { /* Immutable. The list of router appliance instances */ Instances []SpokeInstances `json:"instances"` /* Immutable. A value that controls whether site-to-site data transfer is enabled for these resources. Note that data transfer is available only in supported locations. */ SiteToSiteDataTransfer bool `json:"siteToSiteDataTransfer"` }
func (*SpokeLinkedRouterApplianceInstances) DeepCopy ¶
func (in *SpokeLinkedRouterApplianceInstances) DeepCopy() *SpokeLinkedRouterApplianceInstances
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpokeLinkedRouterApplianceInstances.
func (*SpokeLinkedRouterApplianceInstances) DeepCopyInto ¶
func (in *SpokeLinkedRouterApplianceInstances) DeepCopyInto(out *SpokeLinkedRouterApplianceInstances)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SpokeLinkedVPCNetwork ¶ added in v1.111.0
type SpokeLinkedVPCNetwork struct { /* Immutable. IP ranges encompassing the subnets to be excluded from peering. */ // +optional ExcludeExportRanges []string `json:"excludeExportRanges,omitempty"` /* Immutable. */ UriRef v1alpha1.ResourceRef `json:"uriRef"` }
func (*SpokeLinkedVPCNetwork) DeepCopy ¶ added in v1.111.0
func (in *SpokeLinkedVPCNetwork) DeepCopy() *SpokeLinkedVPCNetwork
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpokeLinkedVPCNetwork.
func (*SpokeLinkedVPCNetwork) DeepCopyInto ¶ added in v1.111.0
func (in *SpokeLinkedVPCNetwork) DeepCopyInto(out *SpokeLinkedVPCNetwork)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SpokeLinkedVpnTunnels ¶
type SpokeLinkedVpnTunnels struct { /* Immutable. A value that controls whether site-to-site data transfer is enabled for these resources. Note that data transfer is available only in supported locations. */ SiteToSiteDataTransfer bool `json:"siteToSiteDataTransfer"` /* Immutable. */ Uris []v1alpha1.ResourceRef `json:"uris"` }
func (*SpokeLinkedVpnTunnels) DeepCopy ¶
func (in *SpokeLinkedVpnTunnels) DeepCopy() *SpokeLinkedVpnTunnels
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpokeLinkedVpnTunnels.
func (*SpokeLinkedVpnTunnels) DeepCopyInto ¶
func (in *SpokeLinkedVpnTunnels) DeepCopyInto(out *SpokeLinkedVpnTunnels)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.