v1alpha1

package
v0.0.0-...-a7d5e02 Latest Latest
Warning

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

Go to latest
Published: Feb 7, 2022 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Overview

+kubebuilder:object:generate=true +groupName=floating.hcloud.jet.crossplane.io +versionName=v1alpha1

Index

Constants

View Source
const (
	CRDGroup   = "floating.hcloud.jet.crossplane.io"
	CRDVersion = "v1alpha1"
)

Package type metadata.

Variables

View Source
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
)
View Source
var (
	IP_Kind             = "IP"
	IP_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: IP_Kind}.String()
	IP_KindAPIVersion   = IP_Kind + "." + CRDGroupVersion.String()
	IP_GroupVersionKind = CRDGroupVersion.WithKind(IP_Kind)
)

Repository type metadata.

View Source
var (
	IPAssignment_Kind             = "IPAssignment"
	IPAssignment_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: IPAssignment_Kind}.String()
	IPAssignment_KindAPIVersion   = IPAssignment_Kind + "." + CRDGroupVersion.String()
	IPAssignment_GroupVersionKind = CRDGroupVersion.WithKind(IPAssignment_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type IP

type IP struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              IPSpec   `json:"spec"`
	Status            IPStatus `json:"status,omitempty"`
}

IP is the Schema for the IPs 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,hcloudjet}

func (*IP) DeepCopy

func (in *IP) DeepCopy() *IP

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

func (*IP) DeepCopyInto

func (in *IP) DeepCopyInto(out *IP)

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

func (*IP) DeepCopyObject

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

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

func (*IP) GetCondition

func (mg *IP) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this IP.

func (*IP) GetConnectionDetailsMapping

func (tr *IP) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this IP

func (*IP) GetDeletionPolicy

func (mg *IP) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this IP.

func (*IP) GetID

func (tr *IP) GetID() string

GetID returns ID of underlying Terraform resource of this IP

func (*IP) GetObservation

func (tr *IP) GetObservation() (map[string]interface{}, error)

GetObservation of this IP

func (*IP) GetParameters

func (tr *IP) GetParameters() (map[string]interface{}, error)

GetParameters of this IP

func (*IP) GetProviderConfigReference

func (mg *IP) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this IP.

func (*IP) GetProviderReference

func (mg *IP) GetProviderReference() *xpv1.Reference

GetProviderReference of this IP. Deprecated: Use GetProviderConfigReference.

func (*IP) GetTerraformResourceType

func (mg *IP) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this IP

func (*IP) GetTerraformSchemaVersion

func (tr *IP) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*IP) GetWriteConnectionSecretToReference

func (mg *IP) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this IP.

func (*IP) LateInitialize

func (tr *IP) LateInitialize(attrs []byte) (bool, error)

LateInitialize this IP using its observed tfState. returns True if there are any spec changes for the resource.

func (*IP) SetConditions

func (mg *IP) SetConditions(c ...xpv1.Condition)

SetConditions of this IP.

func (*IP) SetDeletionPolicy

func (mg *IP) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this IP.

func (*IP) SetObservation

func (tr *IP) SetObservation(obs map[string]interface{}) error

SetObservation for this IP

func (*IP) SetParameters

func (tr *IP) SetParameters(params map[string]interface{}) error

SetParameters for this IP

func (*IP) SetProviderConfigReference

func (mg *IP) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this IP.

func (*IP) SetProviderReference

func (mg *IP) SetProviderReference(r *xpv1.Reference)

SetProviderReference of this IP. Deprecated: Use SetProviderConfigReference.

func (*IP) SetWriteConnectionSecretToReference

func (mg *IP) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this IP.

type IPAssignment

type IPAssignment struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              IPAssignmentSpec   `json:"spec"`
	Status            IPAssignmentStatus `json:"status,omitempty"`
}

IPAssignment is the Schema for the IPAssignments 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,hcloudjet}

func (*IPAssignment) DeepCopy

func (in *IPAssignment) DeepCopy() *IPAssignment

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

func (*IPAssignment) DeepCopyInto

func (in *IPAssignment) DeepCopyInto(out *IPAssignment)

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

func (*IPAssignment) DeepCopyObject

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

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

func (*IPAssignment) GetCondition

func (mg *IPAssignment) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this IPAssignment.

func (*IPAssignment) GetConnectionDetailsMapping

func (tr *IPAssignment) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this IPAssignment

func (*IPAssignment) GetDeletionPolicy

func (mg *IPAssignment) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this IPAssignment.

func (*IPAssignment) GetID

func (tr *IPAssignment) GetID() string

GetID returns ID of underlying Terraform resource of this IPAssignment

func (*IPAssignment) GetObservation

func (tr *IPAssignment) GetObservation() (map[string]interface{}, error)

GetObservation of this IPAssignment

func (*IPAssignment) GetParameters

func (tr *IPAssignment) GetParameters() (map[string]interface{}, error)

GetParameters of this IPAssignment

func (*IPAssignment) GetProviderConfigReference

func (mg *IPAssignment) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this IPAssignment.

func (*IPAssignment) GetProviderReference

func (mg *IPAssignment) GetProviderReference() *xpv1.Reference

GetProviderReference of this IPAssignment. Deprecated: Use GetProviderConfigReference.

func (*IPAssignment) GetTerraformResourceType

func (mg *IPAssignment) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this IPAssignment

func (*IPAssignment) GetTerraformSchemaVersion

func (tr *IPAssignment) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*IPAssignment) GetWriteConnectionSecretToReference

func (mg *IPAssignment) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this IPAssignment.

func (*IPAssignment) LateInitialize

func (tr *IPAssignment) LateInitialize(attrs []byte) (bool, error)

LateInitialize this IPAssignment using its observed tfState. returns True if there are any spec changes for the resource.

func (*IPAssignment) SetConditions

func (mg *IPAssignment) SetConditions(c ...xpv1.Condition)

SetConditions of this IPAssignment.

func (*IPAssignment) SetDeletionPolicy

func (mg *IPAssignment) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this IPAssignment.

func (*IPAssignment) SetObservation

func (tr *IPAssignment) SetObservation(obs map[string]interface{}) error

SetObservation for this IPAssignment

func (*IPAssignment) SetParameters

func (tr *IPAssignment) SetParameters(params map[string]interface{}) error

SetParameters for this IPAssignment

func (*IPAssignment) SetProviderConfigReference

func (mg *IPAssignment) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this IPAssignment.

func (*IPAssignment) SetProviderReference

func (mg *IPAssignment) SetProviderReference(r *xpv1.Reference)

SetProviderReference of this IPAssignment. Deprecated: Use SetProviderConfigReference.

func (*IPAssignment) SetWriteConnectionSecretToReference

func (mg *IPAssignment) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this IPAssignment.

type IPAssignmentList

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

IPAssignmentList contains a list of IPAssignments

func (*IPAssignmentList) DeepCopy

func (in *IPAssignmentList) DeepCopy() *IPAssignmentList

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

func (*IPAssignmentList) DeepCopyInto

func (in *IPAssignmentList) DeepCopyInto(out *IPAssignmentList)

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

func (*IPAssignmentList) DeepCopyObject

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

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

func (*IPAssignmentList) GetItems

func (l *IPAssignmentList) GetItems() []resource.Managed

GetItems of this IPAssignmentList.

type IPAssignmentObservation

type IPAssignmentObservation struct {
	ID *string `json:"id,omitempty" tf:"id,omitempty"`
}

func (*IPAssignmentObservation) DeepCopy

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

func (*IPAssignmentObservation) DeepCopyInto

func (in *IPAssignmentObservation) DeepCopyInto(out *IPAssignmentObservation)

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

type IPAssignmentParameters

type IPAssignmentParameters struct {

	// +kubebuilder:validation:Required
	FloatingIPID *int64 `json:"floatingIpId" tf:"floating_ip_id,omitempty"`

	// +kubebuilder:validation:Required
	ServerID *int64 `json:"serverId" tf:"server_id,omitempty"`
}

func (*IPAssignmentParameters) DeepCopy

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

func (*IPAssignmentParameters) DeepCopyInto

func (in *IPAssignmentParameters) DeepCopyInto(out *IPAssignmentParameters)

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

type IPAssignmentSpec

type IPAssignmentSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     IPAssignmentParameters `json:"forProvider"`
}

IPAssignmentSpec defines the desired state of IPAssignment

func (*IPAssignmentSpec) DeepCopy

func (in *IPAssignmentSpec) DeepCopy() *IPAssignmentSpec

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

func (*IPAssignmentSpec) DeepCopyInto

func (in *IPAssignmentSpec) DeepCopyInto(out *IPAssignmentSpec)

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

type IPAssignmentStatus

type IPAssignmentStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        IPAssignmentObservation `json:"atProvider,omitempty"`
}

IPAssignmentStatus defines the observed state of IPAssignment.

func (*IPAssignmentStatus) DeepCopy

func (in *IPAssignmentStatus) DeepCopy() *IPAssignmentStatus

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

func (*IPAssignmentStatus) DeepCopyInto

func (in *IPAssignmentStatus) DeepCopyInto(out *IPAssignmentStatus)

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

type IPList

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

IPList contains a list of IPs

func (*IPList) DeepCopy

func (in *IPList) DeepCopy() *IPList

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

func (*IPList) DeepCopyInto

func (in *IPList) DeepCopyInto(out *IPList)

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

func (*IPList) DeepCopyObject

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

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

func (*IPList) GetItems

func (l *IPList) GetItems() []resource.Managed

GetItems of this IPList.

type IPObservation

type IPObservation struct {
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	IPAddress *string `json:"ipAddress,omitempty" tf:"ip_address,omitempty"`

	IPNetwork *string `json:"ipNetwork,omitempty" tf:"ip_network,omitempty"`
}

func (*IPObservation) DeepCopy

func (in *IPObservation) DeepCopy() *IPObservation

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

func (*IPObservation) DeepCopyInto

func (in *IPObservation) DeepCopyInto(out *IPObservation)

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

type IPParameters

type IPParameters struct {

	// +kubebuilder:validation:Optional
	DeleteProtection *bool `json:"deleteProtection,omitempty" tf:"delete_protection,omitempty"`

	// +kubebuilder:validation:Optional
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// +kubebuilder:validation:Optional
	HomeLocation *string `json:"homeLocation,omitempty" tf:"home_location,omitempty"`

	// +kubebuilder:validation:Optional
	Labels map[string]string `json:"labels,omitempty" tf:"labels,omitempty"`

	// +kubebuilder:validation:Optional
	ServerID *int64 `json:"serverId,omitempty" tf:"server_id,omitempty"`

	// +kubebuilder:validation:Required
	Type *string `json:"type" tf:"type,omitempty"`
}

func (*IPParameters) DeepCopy

func (in *IPParameters) DeepCopy() *IPParameters

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

func (*IPParameters) DeepCopyInto

func (in *IPParameters) DeepCopyInto(out *IPParameters)

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

type IPSpec

type IPSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     IPParameters `json:"forProvider"`
}

IPSpec defines the desired state of IP

func (*IPSpec) DeepCopy

func (in *IPSpec) DeepCopy() *IPSpec

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

func (*IPSpec) DeepCopyInto

func (in *IPSpec) DeepCopyInto(out *IPSpec)

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

type IPStatus

type IPStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        IPObservation `json:"atProvider,omitempty"`
}

IPStatus defines the observed state of IP.

func (*IPStatus) DeepCopy

func (in *IPStatus) DeepCopy() *IPStatus

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

func (*IPStatus) DeepCopyInto

func (in *IPStatus) DeepCopyInto(out *IPStatus)

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

Jump to

Keyboard shortcuts

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