v1alpha1

package
v1.0.0 Latest Latest
Warning

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

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

Documentation

Overview

+kubebuilder:object:generate=true +groupName=workers.cloudflare.jet.crossplane.io +versionName=v1alpha1

Index

Constants

View Source
const (
	CRDGroup   = "workers.cloudflare.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 (
	Kv_Kind             = "Kv"
	Kv_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Kv_Kind}.String()
	Kv_KindAPIVersion   = Kv_Kind + "." + CRDGroupVersion.String()
	Kv_GroupVersionKind = CRDGroupVersion.WithKind(Kv_Kind)
)

Repository type metadata.

View Source
var (
	KvNamespace_Kind             = "KvNamespace"
	KvNamespace_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: KvNamespace_Kind}.String()
	KvNamespace_KindAPIVersion   = KvNamespace_Kind + "." + CRDGroupVersion.String()
	KvNamespace_GroupVersionKind = CRDGroupVersion.WithKind(KvNamespace_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type Kv

type Kv struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              KvSpec   `json:"spec"`
	Status            KvStatus `json:"status,omitempty"`
}

Kv is the Schema for the Kvs 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,cloudflarejet}

func (*Kv) DeepCopy

func (in *Kv) DeepCopy() *Kv

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

func (*Kv) DeepCopyInto

func (in *Kv) DeepCopyInto(out *Kv)

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

func (*Kv) DeepCopyObject

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

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

func (*Kv) GetCondition

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

GetCondition of this Kv.

func (*Kv) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this Kv

func (*Kv) GetDeletionPolicy

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

GetDeletionPolicy of this Kv.

func (*Kv) GetID

func (tr *Kv) GetID() string

GetID returns ID of underlying Terraform resource of this Kv

func (*Kv) GetObservation

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

GetObservation of this Kv

func (*Kv) GetParameters

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

GetParameters of this Kv

func (*Kv) GetProviderConfigReference

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

GetProviderConfigReference of this Kv.

func (*Kv) GetProviderReference

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

GetProviderReference of this Kv. Deprecated: Use GetProviderConfigReference.

func (*Kv) GetTerraformResourceType

func (mg *Kv) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Kv

func (*Kv) GetTerraformSchemaVersion

func (tr *Kv) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Kv) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this Kv.

func (*Kv) LateInitialize

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

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

func (*Kv) SetConditions

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

SetConditions of this Kv.

func (*Kv) SetDeletionPolicy

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

SetDeletionPolicy of this Kv.

func (*Kv) SetObservation

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

SetObservation for this Kv

func (*Kv) SetParameters

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

SetParameters for this Kv

func (*Kv) SetProviderConfigReference

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

SetProviderConfigReference of this Kv.

func (*Kv) SetProviderReference

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

SetProviderReference of this Kv. Deprecated: Use SetProviderConfigReference.

func (*Kv) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this Kv.

type KvList

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

KvList contains a list of Kvs

func (*KvList) DeepCopy

func (in *KvList) DeepCopy() *KvList

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

func (*KvList) DeepCopyInto

func (in *KvList) DeepCopyInto(out *KvList)

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

func (*KvList) DeepCopyObject

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

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

func (*KvList) GetItems

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

GetItems of this KvList.

type KvNamespace

type KvNamespace struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              KvNamespaceSpec   `json:"spec"`
	Status            KvNamespaceStatus `json:"status,omitempty"`
}

KvNamespace is the Schema for the KvNamespaces 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,cloudflarejet}

func (*KvNamespace) DeepCopy

func (in *KvNamespace) DeepCopy() *KvNamespace

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

func (*KvNamespace) DeepCopyInto

func (in *KvNamespace) DeepCopyInto(out *KvNamespace)

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

func (*KvNamespace) DeepCopyObject

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

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

func (*KvNamespace) GetCondition

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

GetCondition of this KvNamespace.

func (*KvNamespace) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this KvNamespace

func (*KvNamespace) GetDeletionPolicy

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

GetDeletionPolicy of this KvNamespace.

func (*KvNamespace) GetID

func (tr *KvNamespace) GetID() string

GetID returns ID of underlying Terraform resource of this KvNamespace

func (*KvNamespace) GetObservation

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

GetObservation of this KvNamespace

func (*KvNamespace) GetParameters

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

GetParameters of this KvNamespace

func (*KvNamespace) GetProviderConfigReference

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

GetProviderConfigReference of this KvNamespace.

func (*KvNamespace) GetProviderReference

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

GetProviderReference of this KvNamespace. Deprecated: Use GetProviderConfigReference.

func (*KvNamespace) GetTerraformResourceType

func (mg *KvNamespace) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this KvNamespace

func (*KvNamespace) GetTerraformSchemaVersion

func (tr *KvNamespace) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*KvNamespace) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this KvNamespace.

func (*KvNamespace) LateInitialize

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

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

func (*KvNamespace) SetConditions

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

SetConditions of this KvNamespace.

func (*KvNamespace) SetDeletionPolicy

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

SetDeletionPolicy of this KvNamespace.

func (*KvNamespace) SetObservation

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

SetObservation for this KvNamespace

func (*KvNamespace) SetParameters

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

SetParameters for this KvNamespace

func (*KvNamespace) SetProviderConfigReference

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

SetProviderConfigReference of this KvNamespace.

func (*KvNamespace) SetProviderReference

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

SetProviderReference of this KvNamespace. Deprecated: Use SetProviderConfigReference.

func (*KvNamespace) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this KvNamespace.

type KvNamespaceList

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

KvNamespaceList contains a list of KvNamespaces

func (*KvNamespaceList) DeepCopy

func (in *KvNamespaceList) DeepCopy() *KvNamespaceList

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

func (*KvNamespaceList) DeepCopyInto

func (in *KvNamespaceList) DeepCopyInto(out *KvNamespaceList)

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

func (*KvNamespaceList) DeepCopyObject

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

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

func (*KvNamespaceList) GetItems

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

GetItems of this KvNamespaceList.

type KvNamespaceObservation

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

func (*KvNamespaceObservation) DeepCopy

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

func (*KvNamespaceObservation) DeepCopyInto

func (in *KvNamespaceObservation) DeepCopyInto(out *KvNamespaceObservation)

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

type KvNamespaceParameters

type KvNamespaceParameters struct {

	// +kubebuilder:validation:Required
	Title *string `json:"title" tf:"title,omitempty"`
}

func (*KvNamespaceParameters) DeepCopy

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

func (*KvNamespaceParameters) DeepCopyInto

func (in *KvNamespaceParameters) DeepCopyInto(out *KvNamespaceParameters)

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

type KvNamespaceSpec

type KvNamespaceSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     KvNamespaceParameters `json:"forProvider"`
}

KvNamespaceSpec defines the desired state of KvNamespace

func (*KvNamespaceSpec) DeepCopy

func (in *KvNamespaceSpec) DeepCopy() *KvNamespaceSpec

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

func (*KvNamespaceSpec) DeepCopyInto

func (in *KvNamespaceSpec) DeepCopyInto(out *KvNamespaceSpec)

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

type KvNamespaceStatus

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

KvNamespaceStatus defines the observed state of KvNamespace.

func (*KvNamespaceStatus) DeepCopy

func (in *KvNamespaceStatus) DeepCopy() *KvNamespaceStatus

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

func (*KvNamespaceStatus) DeepCopyInto

func (in *KvNamespaceStatus) DeepCopyInto(out *KvNamespaceStatus)

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

type KvObservation

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

func (*KvObservation) DeepCopy

func (in *KvObservation) DeepCopy() *KvObservation

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

func (*KvObservation) DeepCopyInto

func (in *KvObservation) DeepCopyInto(out *KvObservation)

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

type KvParameters

type KvParameters struct {

	// +kubebuilder:validation:Required
	Key *string `json:"key" tf:"key,omitempty"`

	// +kubebuilder:validation:Required
	NamespaceID *string `json:"namespaceId" tf:"namespace_id,omitempty"`

	// +kubebuilder:validation:Required
	Value *string `json:"value" tf:"value,omitempty"`
}

func (*KvParameters) DeepCopy

func (in *KvParameters) DeepCopy() *KvParameters

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

func (*KvParameters) DeepCopyInto

func (in *KvParameters) DeepCopyInto(out *KvParameters)

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

type KvSpec

type KvSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     KvParameters `json:"forProvider"`
}

KvSpec defines the desired state of Kv

func (*KvSpec) DeepCopy

func (in *KvSpec) DeepCopy() *KvSpec

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

func (*KvSpec) DeepCopyInto

func (in *KvSpec) DeepCopyInto(out *KvSpec)

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

type KvStatus

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

KvStatus defines the observed state of Kv.

func (*KvStatus) DeepCopy

func (in *KvStatus) DeepCopy() *KvStatus

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

func (*KvStatus) DeepCopyInto

func (in *KvStatus) DeepCopyInto(out *KvStatus)

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