Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=vpc.cloudamqp.jet.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type GCPPeering
- func (in *GCPPeering) DeepCopy() *GCPPeering
- func (in *GCPPeering) DeepCopyInto(out *GCPPeering)
- func (in *GCPPeering) DeepCopyObject() runtime.Object
- func (mg *GCPPeering) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *GCPPeering) GetConnectionDetailsMapping() map[string]string
- func (mg *GCPPeering) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *GCPPeering) GetID() string
- func (tr *GCPPeering) GetObservation() (map[string]interface{}, error)
- func (tr *GCPPeering) GetParameters() (map[string]interface{}, error)
- func (mg *GCPPeering) GetProviderConfigReference() *xpv1.Reference
- func (mg *GCPPeering) GetProviderReference() *xpv1.Reference
- func (mg *GCPPeering) GetTerraformResourceType() string
- func (tr *GCPPeering) GetTerraformSchemaVersion() int
- func (mg *GCPPeering) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *GCPPeering) LateInitialize(attrs []byte) (bool, error)
- func (mg *GCPPeering) SetConditions(c ...xpv1.Condition)
- func (mg *GCPPeering) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *GCPPeering) SetObservation(obs map[string]interface{}) error
- func (tr *GCPPeering) SetParameters(params map[string]interface{}) error
- func (mg *GCPPeering) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *GCPPeering) SetProviderReference(r *xpv1.Reference)
- func (mg *GCPPeering) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type GCPPeeringList
- type GCPPeeringObservation
- type GCPPeeringParameters
- type GCPPeeringSpec
- type GCPPeeringStatus
- type Peering
- func (in *Peering) DeepCopy() *Peering
- func (in *Peering) DeepCopyInto(out *Peering)
- func (in *Peering) DeepCopyObject() runtime.Object
- func (mg *Peering) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Peering) GetConnectionDetailsMapping() map[string]string
- func (mg *Peering) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Peering) GetID() string
- func (tr *Peering) GetObservation() (map[string]interface{}, error)
- func (tr *Peering) GetParameters() (map[string]interface{}, error)
- func (mg *Peering) GetProviderConfigReference() *xpv1.Reference
- func (mg *Peering) GetProviderReference() *xpv1.Reference
- func (mg *Peering) GetTerraformResourceType() string
- func (tr *Peering) GetTerraformSchemaVersion() int
- func (mg *Peering) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Peering) LateInitialize(attrs []byte) (bool, error)
- func (mg *Peering) SetConditions(c ...xpv1.Condition)
- func (mg *Peering) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *Peering) SetObservation(obs map[string]interface{}) error
- func (tr *Peering) SetParameters(params map[string]interface{}) error
- func (mg *Peering) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Peering) SetProviderReference(r *xpv1.Reference)
- func (mg *Peering) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type PeeringList
- type PeeringObservation
- type PeeringParameters
- type PeeringSpec
- type PeeringStatus
Constants ¶
const ( CRDGroup = "vpc.cloudamqp.jet.crossplane.io" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
var ( GCPPeering_Kind = "GCPPeering" GCPPeering_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: GCPPeering_Kind}.String() GCPPeering_KindAPIVersion = GCPPeering_Kind + "." + CRDGroupVersion.String() GCPPeering_GroupVersionKind = CRDGroupVersion.WithKind(GCPPeering_Kind) )
Repository type metadata.
var ( // CRDGroupVersion is the API Group Version used to register the objects CRDGroupVersion = schema.GroupVersion{Group: CRDGroup, Version: CRDVersion} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: CRDGroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
var ( Peering_Kind = "Peering" Peering_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Peering_Kind}.String() Peering_KindAPIVersion = Peering_Kind + "." + CRDGroupVersion.String() Peering_GroupVersionKind = CRDGroupVersion.WithKind(Peering_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type GCPPeering ¶
type GCPPeering struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec GCPPeeringSpec `json:"spec"` Status GCPPeeringStatus `json:"status,omitempty"` }
GCPPeering is the Schema for the GCPPeerings API +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,cloudamqpjet}
func (*GCPPeering) DeepCopy ¶
func (in *GCPPeering) DeepCopy() *GCPPeering
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPPeering.
func (*GCPPeering) DeepCopyInto ¶
func (in *GCPPeering) DeepCopyInto(out *GCPPeering)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*GCPPeering) DeepCopyObject ¶
func (in *GCPPeering) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*GCPPeering) GetCondition ¶
func (mg *GCPPeering) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this GCPPeering.
func (*GCPPeering) GetConnectionDetailsMapping ¶
func (tr *GCPPeering) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this GCPPeering
func (*GCPPeering) GetDeletionPolicy ¶
func (mg *GCPPeering) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this GCPPeering.
func (*GCPPeering) GetID ¶
func (tr *GCPPeering) GetID() string
GetID returns ID of underlying Terraform resource of this GCPPeering
func (*GCPPeering) GetObservation ¶
func (tr *GCPPeering) GetObservation() (map[string]interface{}, error)
GetObservation of this GCPPeering
func (*GCPPeering) GetParameters ¶
func (tr *GCPPeering) GetParameters() (map[string]interface{}, error)
GetParameters of this GCPPeering
func (*GCPPeering) GetProviderConfigReference ¶
func (mg *GCPPeering) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this GCPPeering.
func (*GCPPeering) GetProviderReference ¶
func (mg *GCPPeering) GetProviderReference() *xpv1.Reference
GetProviderReference of this GCPPeering. Deprecated: Use GetProviderConfigReference.
func (*GCPPeering) GetTerraformResourceType ¶
func (mg *GCPPeering) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this GCPPeering
func (*GCPPeering) GetTerraformSchemaVersion ¶
func (tr *GCPPeering) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*GCPPeering) GetWriteConnectionSecretToReference ¶
func (mg *GCPPeering) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this GCPPeering.
func (*GCPPeering) LateInitialize ¶
func (tr *GCPPeering) LateInitialize(attrs []byte) (bool, error)
LateInitialize this GCPPeering using its observed tfState. returns True if there are any spec changes for the resource.
func (*GCPPeering) SetConditions ¶
func (mg *GCPPeering) SetConditions(c ...xpv1.Condition)
SetConditions of this GCPPeering.
func (*GCPPeering) SetDeletionPolicy ¶
func (mg *GCPPeering) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this GCPPeering.
func (*GCPPeering) SetObservation ¶
func (tr *GCPPeering) SetObservation(obs map[string]interface{}) error
SetObservation for this GCPPeering
func (*GCPPeering) SetParameters ¶
func (tr *GCPPeering) SetParameters(params map[string]interface{}) error
SetParameters for this GCPPeering
func (*GCPPeering) SetProviderConfigReference ¶
func (mg *GCPPeering) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this GCPPeering.
func (*GCPPeering) SetProviderReference ¶
func (mg *GCPPeering) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this GCPPeering. Deprecated: Use SetProviderConfigReference.
func (*GCPPeering) SetWriteConnectionSecretToReference ¶
func (mg *GCPPeering) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this GCPPeering.
type GCPPeeringList ¶
type GCPPeeringList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []GCPPeering `json:"items"` }
GCPPeeringList contains a list of GCPPeerings
func (*GCPPeeringList) DeepCopy ¶
func (in *GCPPeeringList) DeepCopy() *GCPPeeringList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPPeeringList.
func (*GCPPeeringList) DeepCopyInto ¶
func (in *GCPPeeringList) DeepCopyInto(out *GCPPeeringList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*GCPPeeringList) DeepCopyObject ¶
func (in *GCPPeeringList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*GCPPeeringList) GetItems ¶
func (l *GCPPeeringList) GetItems() []resource.Managed
GetItems of this GCPPeeringList.
type GCPPeeringObservation ¶
type GCPPeeringObservation struct { AutoCreateRoutes *bool `json:"autoCreateRoutes,omitempty" tf:"auto_create_routes,omitempty"` ID *string `json:"id,omitempty" tf:"id,omitempty"` State *string `json:"state,omitempty" tf:"state,omitempty"` StateDetails *string `json:"stateDetails,omitempty" tf:"state_details,omitempty"` }
func (*GCPPeeringObservation) DeepCopy ¶
func (in *GCPPeeringObservation) DeepCopy() *GCPPeeringObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPPeeringObservation.
func (*GCPPeeringObservation) DeepCopyInto ¶
func (in *GCPPeeringObservation) DeepCopyInto(out *GCPPeeringObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GCPPeeringParameters ¶
type GCPPeeringParameters struct { // Instance identifier // +kubebuilder:validation:Required InstanceID *float64 `json:"instanceId" tf:"instance_id,omitempty"` // VPC network uri // +kubebuilder:validation:Required PeerNetworkURI *string `json:"peerNetworkUri" tf:"peer_network_uri,omitempty"` }
func (*GCPPeeringParameters) DeepCopy ¶
func (in *GCPPeeringParameters) DeepCopy() *GCPPeeringParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPPeeringParameters.
func (*GCPPeeringParameters) DeepCopyInto ¶
func (in *GCPPeeringParameters) DeepCopyInto(out *GCPPeeringParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GCPPeeringSpec ¶
type GCPPeeringSpec struct { v1.ResourceSpec `json:",inline"` ForProvider GCPPeeringParameters `json:"forProvider"` }
GCPPeeringSpec defines the desired state of GCPPeering
func (*GCPPeeringSpec) DeepCopy ¶
func (in *GCPPeeringSpec) DeepCopy() *GCPPeeringSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPPeeringSpec.
func (*GCPPeeringSpec) DeepCopyInto ¶
func (in *GCPPeeringSpec) DeepCopyInto(out *GCPPeeringSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GCPPeeringStatus ¶
type GCPPeeringStatus struct { v1.ResourceStatus `json:",inline"` AtProvider GCPPeeringObservation `json:"atProvider,omitempty"` }
GCPPeeringStatus defines the observed state of GCPPeering.
func (*GCPPeeringStatus) DeepCopy ¶
func (in *GCPPeeringStatus) DeepCopy() *GCPPeeringStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPPeeringStatus.
func (*GCPPeeringStatus) DeepCopyInto ¶
func (in *GCPPeeringStatus) DeepCopyInto(out *GCPPeeringStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Peering ¶
type Peering struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec PeeringSpec `json:"spec"` Status PeeringStatus `json:"status,omitempty"` }
Peering is the Schema for the Peerings API +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,cloudamqpjet}
func (*Peering) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Peering.
func (*Peering) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Peering) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Peering) GetCondition ¶
func (mg *Peering) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Peering.
func (*Peering) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this Peering
func (*Peering) GetDeletionPolicy ¶
func (mg *Peering) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Peering.
func (*Peering) GetObservation ¶
GetObservation of this Peering
func (*Peering) GetParameters ¶
GetParameters of this Peering
func (*Peering) GetProviderConfigReference ¶
GetProviderConfigReference of this Peering.
func (*Peering) GetProviderReference ¶
GetProviderReference of this Peering. Deprecated: Use GetProviderConfigReference.
func (*Peering) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Peering
func (*Peering) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Peering) GetWriteConnectionSecretToReference ¶
func (mg *Peering) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Peering.
func (*Peering) LateInitialize ¶
LateInitialize this Peering using its observed tfState. returns True if there are any spec changes for the resource.
func (*Peering) SetConditions ¶
SetConditions of this Peering.
func (*Peering) SetDeletionPolicy ¶
func (mg *Peering) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Peering.
func (*Peering) SetObservation ¶
SetObservation for this Peering
func (*Peering) SetParameters ¶
SetParameters for this Peering
func (*Peering) SetProviderConfigReference ¶
SetProviderConfigReference of this Peering.
func (*Peering) SetProviderReference ¶
SetProviderReference of this Peering. Deprecated: Use SetProviderConfigReference.
func (*Peering) SetWriteConnectionSecretToReference ¶
func (mg *Peering) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Peering.
type PeeringList ¶
type PeeringList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Peering `json:"items"` }
PeeringList contains a list of Peerings
func (*PeeringList) DeepCopy ¶
func (in *PeeringList) DeepCopy() *PeeringList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PeeringList.
func (*PeeringList) DeepCopyInto ¶
func (in *PeeringList) DeepCopyInto(out *PeeringList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*PeeringList) DeepCopyObject ¶
func (in *PeeringList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*PeeringList) GetItems ¶
func (l *PeeringList) GetItems() []resource.Managed
GetItems of this PeeringList.
type PeeringObservation ¶
type PeeringObservation struct { ID *string `json:"id,omitempty" tf:"id,omitempty"` Status *string `json:"status,omitempty" tf:"status,omitempty"` }
func (*PeeringObservation) DeepCopy ¶
func (in *PeeringObservation) DeepCopy() *PeeringObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PeeringObservation.
func (*PeeringObservation) DeepCopyInto ¶
func (in *PeeringObservation) DeepCopyInto(out *PeeringObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PeeringParameters ¶
type PeeringParameters struct { // Instance identifier // +kubebuilder:validation:Required InstanceID *float64 `json:"instanceId" tf:"instance_id,omitempty"` // VPC peering identifier // +kubebuilder:validation:Required PeeringID *string `json:"peeringId" tf:"peering_id,omitempty"` }
func (*PeeringParameters) DeepCopy ¶
func (in *PeeringParameters) DeepCopy() *PeeringParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PeeringParameters.
func (*PeeringParameters) DeepCopyInto ¶
func (in *PeeringParameters) DeepCopyInto(out *PeeringParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PeeringSpec ¶
type PeeringSpec struct { v1.ResourceSpec `json:",inline"` ForProvider PeeringParameters `json:"forProvider"` }
PeeringSpec defines the desired state of Peering
func (*PeeringSpec) DeepCopy ¶
func (in *PeeringSpec) DeepCopy() *PeeringSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PeeringSpec.
func (*PeeringSpec) DeepCopyInto ¶
func (in *PeeringSpec) DeepCopyInto(out *PeeringSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PeeringStatus ¶
type PeeringStatus struct { v1.ResourceStatus `json:",inline"` AtProvider PeeringObservation `json:"atProvider,omitempty"` }
PeeringStatus defines the observed state of Peering.
func (*PeeringStatus) DeepCopy ¶
func (in *PeeringStatus) DeepCopy() *PeeringStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PeeringStatus.
func (*PeeringStatus) DeepCopyInto ¶
func (in *PeeringStatus) DeepCopyInto(out *PeeringStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.