v1alpha1

package
v0.0.0-...-276eb57 Latest Latest
Warning

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

Go to latest
Published: Aug 24, 2023 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Overview

Package v1alpha1 contains the v1alpha1 group Sample resources of the test provider. +kubebuilder:object:generate=true +groupName=kcpaved.test.crossplane.io +versionName=v1alpha1

Index

Constants

View Source
const (
	Group   = "kcpaved.test.crossplane.io"
	Version = "v1alpha1"
)

Package type metadata.

Variables

View Source
var (
	// SchemeGroupVersion is group version used to register these objects
	SchemeGroupVersion = schema.GroupVersion{Group: Group, Version: Version}

	// SchemeBuilder is used to add go types to the GroupVersionKind scheme
	SchemeBuilder = &scheme.Builder{GroupVersion: SchemeGroupVersion}
)
View Source
var (
	KafkaSecretKind             = reflect.TypeOf(KafkaSecret{}).Name()
	KafkaSecretGroupKind        = schema.GroupKind{Group: Group, Kind: KafkaSecretKind}.String()
	KafkaSecretKindAPIVersion   = KafkaSecretKind + "." + SchemeGroupVersion.String()
	KafkaSecretGroupVersionKind = SchemeGroupVersion.WithKind(KafkaSecretKind)
)

KafkaSecret type metadata.

Functions

This section is empty.

Types

type KafkaSecret

type KafkaSecret struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`

	Spec   KafkaSecretSpec   `json:"spec"`
	Status KafkaSecretStatus `json:"status,omitempty"`
}

A KafkaSecret is an example API type. +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,test}

func (*KafkaSecret) DeepCopy

func (in *KafkaSecret) DeepCopy() *KafkaSecret

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

func (*KafkaSecret) DeepCopyInto

func (in *KafkaSecret) DeepCopyInto(out *KafkaSecret)

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

func (*KafkaSecret) DeepCopyObject

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

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

func (*KafkaSecret) GetCondition

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

GetCondition of this KafkaSecret.

func (*KafkaSecret) GetDeletionPolicy

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

GetDeletionPolicy of this KafkaSecret.

func (*KafkaSecret) GetManagementPolicy

func (mg *KafkaSecret) GetManagementPolicy() xpv1.ManagementPolicy

GetManagementPolicy of this KafkaSecret.

func (*KafkaSecret) GetProviderConfigReference

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

GetProviderConfigReference of this KafkaSecret.

func (*KafkaSecret) GetProviderReference

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

GetProviderReference of this KafkaSecret. Deprecated: Use GetProviderConfigReference.

func (*KafkaSecret) GetPublishConnectionDetailsTo

func (mg *KafkaSecret) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this KafkaSecret.

func (*KafkaSecret) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this KafkaSecret.

func (*KafkaSecret) SetConditions

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

SetConditions of this KafkaSecret.

func (*KafkaSecret) SetDeletionPolicy

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

SetDeletionPolicy of this KafkaSecret.

func (*KafkaSecret) SetManagementPolicy

func (mg *KafkaSecret) SetManagementPolicy(r xpv1.ManagementPolicy)

SetManagementPolicy of this KafkaSecret.

func (*KafkaSecret) SetProviderConfigReference

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

SetProviderConfigReference of this KafkaSecret.

func (*KafkaSecret) SetProviderReference

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

SetProviderReference of this KafkaSecret. Deprecated: Use SetProviderConfigReference.

func (*KafkaSecret) SetPublishConnectionDetailsTo

func (mg *KafkaSecret) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this KafkaSecret.

func (*KafkaSecret) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this KafkaSecret.

type KafkaSecretList

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

KafkaSecretList contains a list of KafkaSecret

func (*KafkaSecretList) DeepCopy

func (in *KafkaSecretList) DeepCopy() *KafkaSecretList

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

func (*KafkaSecretList) DeepCopyInto

func (in *KafkaSecretList) DeepCopyInto(out *KafkaSecretList)

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

func (*KafkaSecretList) DeepCopyObject

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

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

func (*KafkaSecretList) GetItems

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

GetItems of this KafkaSecretList.

type KafkaSecretObservation

type KafkaSecretObservation struct {
	ObservableField string `json:"observableField,omitempty"`
}

KafkaSecretObservation are the observable fields of a KafkaSecret.

func (*KafkaSecretObservation) DeepCopy

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

func (*KafkaSecretObservation) DeepCopyInto

func (in *KafkaSecretObservation) DeepCopyInto(out *KafkaSecretObservation)

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

type KafkaSecretParameters

type KafkaSecretParameters struct {
	Namespace          string `json:"namespace"`
	ApiEndPoint        string `json:"apiEndPoint"`
	PolicyId           string `json:"policyId"`
	TruststoreCertPath string `json:"truststoreCertPath"`
	KeystoreKeyPath    string `json:"keystoreKeyPath,omitempty"`
	KeystoreCertPath   string `json:"keystoreCertPath,omitempty"`
}

KafkaSecretParameters are the configurable fields of a KafkaSecret.

func (*KafkaSecretParameters) DeepCopy

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

func (*KafkaSecretParameters) DeepCopyInto

func (in *KafkaSecretParameters) DeepCopyInto(out *KafkaSecretParameters)

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

type KafkaSecretSpec

type KafkaSecretSpec struct {
	xpv1.ResourceSpec `json:",inline"`
	ForProvider       KafkaSecretParameters `json:"forProvider"`
}

A KafkaSecretSpec defines the desired state of a KafkaSecret.

func (*KafkaSecretSpec) DeepCopy

func (in *KafkaSecretSpec) DeepCopy() *KafkaSecretSpec

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

func (*KafkaSecretSpec) DeepCopyInto

func (in *KafkaSecretSpec) DeepCopyInto(out *KafkaSecretSpec)

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

type KafkaSecretStatus

type KafkaSecretStatus struct {
	xpv1.ResourceStatus `json:",inline"`
	AtProvider          KafkaSecretObservation `json:"atProvider,omitempty"`
}

A KafkaSecretStatus represents the observed state of a KafkaSecret.

func (*KafkaSecretStatus) DeepCopy

func (in *KafkaSecretStatus) DeepCopy() *KafkaSecretStatus

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

func (*KafkaSecretStatus) DeepCopyInto

func (in *KafkaSecretStatus) DeepCopyInto(out *KafkaSecretStatus)

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