var ( // SchemeGroupVersion is the group version used to register these objects. SchemeGroupVersion = schema.GroupVersion{Group: "servicenetworking.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 ServiceNetworkingConnectionGVK = schema.GroupVersionKind{ Group: SchemeGroupVersion.Group, Version: SchemeGroupVersion.Version, Kind: reflect.TypeOf(ServiceNetworkingConnection{}).Name(), } )
ServiceNetworkingConnection is the Schema for the servicenetworking API +k8s:openapi-gen=true
type ServiceNetworkingConnection struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ServiceNetworkingConnectionSpec `json:"spec,omitempty"` Status ServiceNetworkingConnectionStatus `json:"status,omitempty"` }
func (in *ServiceNetworkingConnection) DeepCopy() *ServiceNetworkingConnection
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceNetworkingConnection.
func (in *ServiceNetworkingConnection) DeepCopyInto(out *ServiceNetworkingConnection)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ServiceNetworkingConnection) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
ServiceNetworkingConnectionList contains a list of ServiceNetworkingConnection
type ServiceNetworkingConnectionList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []ServiceNetworkingConnection `json:"items"` }
func (in *ServiceNetworkingConnectionList) DeepCopy() *ServiceNetworkingConnectionList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceNetworkingConnectionList.
func (in *ServiceNetworkingConnectionList) DeepCopyInto(out *ServiceNetworkingConnectionList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ServiceNetworkingConnectionList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ServiceNetworkingConnectionSpec struct { NetworkRef v1alpha1.ResourceRef `json:"networkRef"` ReservedPeeringRanges []v1alpha1.ResourceRef `json:"reservedPeeringRanges"` /* Immutable. Provider peering service that is managing peering connectivity for a service provider organization. For Google services that support this functionality it is 'servicenetworking.googleapis.com'. */ Service string `json:"service"` }
func (in *ServiceNetworkingConnectionSpec) DeepCopy() *ServiceNetworkingConnectionSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceNetworkingConnectionSpec.
func (in *ServiceNetworkingConnectionSpec) DeepCopyInto(out *ServiceNetworkingConnectionSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceNetworkingConnectionStatus struct { /* Conditions represent the latest available observations of the ServiceNetworkingConnection's current state. */ Conditions []v1alpha1.Condition `json:"conditions,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"` // +optional Peering *string `json:"peering,omitempty"` }
func (in *ServiceNetworkingConnectionStatus) DeepCopy() *ServiceNetworkingConnectionStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceNetworkingConnectionStatus.
func (in *ServiceNetworkingConnectionStatus) DeepCopyInto(out *ServiceNetworkingConnectionStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.