v1alpha1

package
v0.3.0 Latest Latest
Warning

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

Go to latest
Published: Apr 26, 2023 License: Apache-2.0 Imports: 7 Imported by: 1

Documentation

Overview

Package v1alpha1 contains the v1alpha1 group Sample resources of the Dummy provider. +kubebuilder:object:generate=true +groupName=iam.dummy.upbound.io +versionName=v1alpha1

Index

Constants

View Source
const (
	Group   = "iam.dummy.upbound.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 (
	RobotKind             = reflect.TypeOf(Robot{}).Name()
	RobotGroupKind        = schema.GroupKind{Group: Group, Kind: RobotKind}.String()
	RobotKindAPIVersion   = RobotKind + "." + SchemeGroupVersion.String()
	RobotGroupVersionKind = SchemeGroupVersion.WithKind(RobotKind)
)

Robot type metadata.

Functions

This section is empty.

Types

type Robot

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

	Spec   RobotSpec   `json:"spec"`
	Status RobotStatus `json:"status,omitempty"`
}

A Robot 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,dummy}

func (*Robot) DeepCopy

func (in *Robot) DeepCopy() *Robot

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

func (*Robot) DeepCopyInto

func (in *Robot) DeepCopyInto(out *Robot)

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

func (*Robot) DeepCopyObject

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

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

func (*Robot) GetCondition

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

GetCondition of this Robot.

func (*Robot) GetDeletionPolicy

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

GetDeletionPolicy of this Robot.

func (*Robot) GetProviderConfigReference

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

GetProviderConfigReference of this Robot.

func (*Robot) GetProviderReference

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

GetProviderReference of this Robot. Deprecated: Use GetProviderConfigReference.

func (*Robot) GetPublishConnectionDetailsTo

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

GetPublishConnectionDetailsTo of this Robot.

func (*Robot) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this Robot.

func (*Robot) SetConditions

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

SetConditions of this Robot.

func (*Robot) SetDeletionPolicy

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

SetDeletionPolicy of this Robot.

func (*Robot) SetProviderConfigReference

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

SetProviderConfigReference of this Robot.

func (*Robot) SetProviderReference

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

SetProviderReference of this Robot. Deprecated: Use SetProviderConfigReference.

func (*Robot) SetPublishConnectionDetailsTo

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

SetPublishConnectionDetailsTo of this Robot.

func (*Robot) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this Robot.

type RobotList

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

RobotList contains a list of Robot

func (*RobotList) DeepCopy

func (in *RobotList) DeepCopy() *RobotList

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

func (*RobotList) DeepCopyInto

func (in *RobotList) DeepCopyInto(out *RobotList)

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

func (*RobotList) DeepCopyObject

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

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

func (*RobotList) GetItems

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

GetItems of this RobotList.

type RobotObservation

type RobotObservation struct{}

RobotObservation are the observable fields of a Robot.

func (*RobotObservation) DeepCopy

func (in *RobotObservation) DeepCopy() *RobotObservation

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

func (*RobotObservation) DeepCopyInto

func (in *RobotObservation) DeepCopyInto(out *RobotObservation)

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

type RobotParameters

type RobotParameters struct {
	// Color is the color of the robot.
	Color string `json:"color"`
}

RobotParameters are the configurable fields of a Robot.

func (*RobotParameters) DeepCopy

func (in *RobotParameters) DeepCopy() *RobotParameters

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

func (*RobotParameters) DeepCopyInto

func (in *RobotParameters) DeepCopyInto(out *RobotParameters)

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

type RobotSpec

type RobotSpec struct {
	xpv1.ResourceSpec `json:",inline"`
	ForProvider       RobotParameters `json:"forProvider"`
}

A RobotSpec defines the desired state of a Robot.

func (*RobotSpec) DeepCopy

func (in *RobotSpec) DeepCopy() *RobotSpec

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

func (*RobotSpec) DeepCopyInto

func (in *RobotSpec) DeepCopyInto(out *RobotSpec)

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

type RobotStatus

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

A RobotStatus represents the observed state of a Robot.

func (*RobotStatus) DeepCopy

func (in *RobotStatus) DeepCopy() *RobotStatus

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

func (*RobotStatus) DeepCopyInto

func (in *RobotStatus) DeepCopyInto(out *RobotStatus)

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