v1alpha1

package
v0.3.0 Latest Latest
Warning

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

Go to latest
Published: Dec 8, 2022 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Overview

+kubebuilder:object:generate=true +groupName=projectuserattachment.taikun.jet.crossplane.io +versionName=v1alpha1

Index

Constants

View Source
const (
	CRDGroup   = "projectuserattachment.taikun.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 (
	UserAttachment_Kind             = "UserAttachment"
	UserAttachment_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: UserAttachment_Kind}.String()
	UserAttachment_KindAPIVersion   = UserAttachment_Kind + "." + CRDGroupVersion.String()
	UserAttachment_GroupVersionKind = CRDGroupVersion.WithKind(UserAttachment_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type UserAttachment

type UserAttachment struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              UserAttachmentSpec   `json:"spec"`
	Status            UserAttachmentStatus `json:"status,omitempty"`
}

UserAttachment is the Schema for the UserAttachments API. <no value> +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,taikunjet}

func (*UserAttachment) DeepCopy

func (in *UserAttachment) DeepCopy() *UserAttachment

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

func (*UserAttachment) DeepCopyInto

func (in *UserAttachment) DeepCopyInto(out *UserAttachment)

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

func (*UserAttachment) DeepCopyObject

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

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

func (*UserAttachment) GetCondition

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

GetCondition of this UserAttachment.

func (*UserAttachment) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this UserAttachment

func (*UserAttachment) GetDeletionPolicy

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

GetDeletionPolicy of this UserAttachment.

func (*UserAttachment) GetID

func (tr *UserAttachment) GetID() string

GetID returns ID of underlying Terraform resource of this UserAttachment

func (*UserAttachment) GetObservation

func (tr *UserAttachment) GetObservation() (map[string]any, error)

GetObservation of this UserAttachment

func (*UserAttachment) GetParameters

func (tr *UserAttachment) GetParameters() (map[string]any, error)

GetParameters of this UserAttachment

func (*UserAttachment) GetProviderConfigReference

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

GetProviderConfigReference of this UserAttachment.

func (*UserAttachment) GetProviderReference

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

GetProviderReference of this UserAttachment. Deprecated: Use GetProviderConfigReference.

func (*UserAttachment) GetPublishConnectionDetailsTo

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

GetPublishConnectionDetailsTo of this UserAttachment.

func (*UserAttachment) GetTerraformResourceType

func (mg *UserAttachment) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this UserAttachment

func (*UserAttachment) GetTerraformSchemaVersion

func (tr *UserAttachment) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*UserAttachment) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this UserAttachment.

func (*UserAttachment) LateInitialize

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

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

func (*UserAttachment) ResolveReferences

func (mg *UserAttachment) ResolveReferences(ctx context.Context, c client.Reader) error

ResolveReferences of this UserAttachment.

func (*UserAttachment) SetConditions

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

SetConditions of this UserAttachment.

func (*UserAttachment) SetDeletionPolicy

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

SetDeletionPolicy of this UserAttachment.

func (*UserAttachment) SetObservation

func (tr *UserAttachment) SetObservation(obs map[string]any) error

SetObservation for this UserAttachment

func (*UserAttachment) SetParameters

func (tr *UserAttachment) SetParameters(params map[string]any) error

SetParameters for this UserAttachment

func (*UserAttachment) SetProviderConfigReference

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

SetProviderConfigReference of this UserAttachment.

func (*UserAttachment) SetProviderReference

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

SetProviderReference of this UserAttachment. Deprecated: Use SetProviderConfigReference.

func (*UserAttachment) SetPublishConnectionDetailsTo

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

SetPublishConnectionDetailsTo of this UserAttachment.

func (*UserAttachment) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this UserAttachment.

type UserAttachmentList

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

UserAttachmentList contains a list of UserAttachments

func (*UserAttachmentList) DeepCopy

func (in *UserAttachmentList) DeepCopy() *UserAttachmentList

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

func (*UserAttachmentList) DeepCopyInto

func (in *UserAttachmentList) DeepCopyInto(out *UserAttachmentList)

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

func (*UserAttachmentList) DeepCopyObject

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

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

func (*UserAttachmentList) GetItems

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

GetItems of this UserAttachmentList.

type UserAttachmentObservation

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

	// Name of the project.
	ProjectName *string `json:"projectName,omitempty" tf:"project_name,omitempty"`
}

func (*UserAttachmentObservation) DeepCopy

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

func (*UserAttachmentObservation) DeepCopyInto

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

type UserAttachmentParameters

type UserAttachmentParameters struct {

	// ID of the project.
	// +crossplane:generate:reference:type=github.com/itera-io/provider-jet-taikun/apis/project/v1alpha1.Project
	// +kubebuilder:validation:Optional
	ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"`

	// Reference to a Project in project to populate projectId.
	// +kubebuilder:validation:Optional
	ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"`

	// Selector for a Project in project to populate projectId.
	// +kubebuilder:validation:Optional
	ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"`

	// ID of the user.
	// +crossplane:generate:reference:type=github.com/itera-io/provider-jet-taikun/apis/user/v1alpha1.User
	// +kubebuilder:validation:Optional
	UserID *string `json:"userId,omitempty" tf:"user_id,omitempty"`

	// Reference to a User in user to populate userId.
	// +kubebuilder:validation:Optional
	UserIDRef *v1.Reference `json:"userIdRef,omitempty" tf:"-"`

	// Selector for a User in user to populate userId.
	// +kubebuilder:validation:Optional
	UserIDSelector *v1.Selector `json:"userIdSelector,omitempty" tf:"-"`
}

func (*UserAttachmentParameters) DeepCopy

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

func (*UserAttachmentParameters) DeepCopyInto

func (in *UserAttachmentParameters) DeepCopyInto(out *UserAttachmentParameters)

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

type UserAttachmentSpec

type UserAttachmentSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     UserAttachmentParameters `json:"forProvider"`
}

UserAttachmentSpec defines the desired state of UserAttachment

func (*UserAttachmentSpec) DeepCopy

func (in *UserAttachmentSpec) DeepCopy() *UserAttachmentSpec

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

func (*UserAttachmentSpec) DeepCopyInto

func (in *UserAttachmentSpec) DeepCopyInto(out *UserAttachmentSpec)

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

type UserAttachmentStatus

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

UserAttachmentStatus defines the observed state of UserAttachment.

func (*UserAttachmentStatus) DeepCopy

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

func (*UserAttachmentStatus) DeepCopyInto

func (in *UserAttachmentStatus) DeepCopyInto(out *UserAttachmentStatus)

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