v1alpha1

package
v0.0.0-...-10a304b Latest Latest
Warning

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

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

Documentation

Overview

+kubebuilder:object:generate=true +groupName=cts.otc.jet.crossplane.io +versionName=v1alpha1

Index

Constants

View Source
const (
	CRDGroup   = "cts.otc.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 (
	TrackerV1_Kind             = "TrackerV1"
	TrackerV1_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: TrackerV1_Kind}.String()
	TrackerV1_KindAPIVersion   = TrackerV1_Kind + "." + CRDGroupVersion.String()
	TrackerV1_GroupVersionKind = CRDGroupVersion.WithKind(TrackerV1_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type TrackerV1

type TrackerV1 struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              TrackerV1Spec   `json:"spec"`
	Status            TrackerV1Status `json:"status,omitempty"`
}

TrackerV1 is the Schema for the TrackerV1s 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,otcjet}

func (*TrackerV1) DeepCopy

func (in *TrackerV1) DeepCopy() *TrackerV1

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

func (*TrackerV1) DeepCopyInto

func (in *TrackerV1) DeepCopyInto(out *TrackerV1)

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

func (*TrackerV1) DeepCopyObject

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

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

func (*TrackerV1) GetCondition

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

GetCondition of this TrackerV1.

func (*TrackerV1) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this TrackerV1

func (*TrackerV1) GetDeletionPolicy

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

GetDeletionPolicy of this TrackerV1.

func (*TrackerV1) GetID

func (tr *TrackerV1) GetID() string

GetID returns ID of underlying Terraform resource of this TrackerV1

func (*TrackerV1) GetObservation

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

GetObservation of this TrackerV1

func (*TrackerV1) GetParameters

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

GetParameters of this TrackerV1

func (*TrackerV1) GetProviderConfigReference

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

GetProviderConfigReference of this TrackerV1.

func (*TrackerV1) GetProviderReference

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

GetProviderReference of this TrackerV1. Deprecated: Use GetProviderConfigReference.

func (*TrackerV1) GetTerraformResourceType

func (mg *TrackerV1) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this TrackerV1

func (*TrackerV1) GetTerraformSchemaVersion

func (tr *TrackerV1) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*TrackerV1) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this TrackerV1.

func (*TrackerV1) LateInitialize

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

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

func (*TrackerV1) SetConditions

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

SetConditions of this TrackerV1.

func (*TrackerV1) SetDeletionPolicy

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

SetDeletionPolicy of this TrackerV1.

func (*TrackerV1) SetObservation

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

SetObservation for this TrackerV1

func (*TrackerV1) SetParameters

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

SetParameters for this TrackerV1

func (*TrackerV1) SetProviderConfigReference

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

SetProviderConfigReference of this TrackerV1.

func (*TrackerV1) SetProviderReference

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

SetProviderReference of this TrackerV1. Deprecated: Use SetProviderConfigReference.

func (*TrackerV1) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this TrackerV1.

type TrackerV1List

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

TrackerV1List contains a list of TrackerV1s

func (*TrackerV1List) DeepCopy

func (in *TrackerV1List) DeepCopy() *TrackerV1List

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

func (*TrackerV1List) DeepCopyInto

func (in *TrackerV1List) DeepCopyInto(out *TrackerV1List)

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

func (*TrackerV1List) DeepCopyObject

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

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

func (*TrackerV1List) GetItems

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

GetItems of this TrackerV1List.

type TrackerV1Observation

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

	TrackerName *string `json:"trackerName,omitempty" tf:"tracker_name,omitempty"`
}

func (*TrackerV1Observation) DeepCopy

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

func (*TrackerV1Observation) DeepCopyInto

func (in *TrackerV1Observation) DeepCopyInto(out *TrackerV1Observation)

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

type TrackerV1Parameters

type TrackerV1Parameters struct {

	// +kubebuilder:validation:Required
	BucketName *string `json:"bucketName" tf:"bucket_name,omitempty"`

	// +kubebuilder:validation:Optional
	FilePrefixName *string `json:"filePrefixName,omitempty" tf:"file_prefix_name,omitempty"`

	// +kubebuilder:validation:Optional
	IsSendAllKeyOperation *bool `json:"isSendAllKeyOperation,omitempty" tf:"is_send_all_key_operation,omitempty"`

	// +kubebuilder:validation:Required
	IsSupportSmn *bool `json:"isSupportSmn" tf:"is_support_smn,omitempty"`

	// +kubebuilder:validation:Optional
	NeedNotifyUserList []*string `json:"needNotifyUserList,omitempty" tf:"need_notify_user_list,omitempty"`

	// +kubebuilder:validation:Optional
	Operations []*string `json:"operations,omitempty" tf:"operations,omitempty"`

	// +kubebuilder:validation:Optional
	ProjectName *string `json:"projectName,omitempty" tf:"project_name,omitempty"`

	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// +kubebuilder:validation:Optional
	Status *string `json:"status,omitempty" tf:"status,omitempty"`

	// +kubebuilder:validation:Optional
	TopicID *string `json:"topicId,omitempty" tf:"topic_id,omitempty"`
}

func (*TrackerV1Parameters) DeepCopy

func (in *TrackerV1Parameters) DeepCopy() *TrackerV1Parameters

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

func (*TrackerV1Parameters) DeepCopyInto

func (in *TrackerV1Parameters) DeepCopyInto(out *TrackerV1Parameters)

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

type TrackerV1Spec

type TrackerV1Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     TrackerV1Parameters `json:"forProvider"`
}

TrackerV1Spec defines the desired state of TrackerV1

func (*TrackerV1Spec) DeepCopy

func (in *TrackerV1Spec) DeepCopy() *TrackerV1Spec

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

func (*TrackerV1Spec) DeepCopyInto

func (in *TrackerV1Spec) DeepCopyInto(out *TrackerV1Spec)

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

type TrackerV1Status

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

TrackerV1Status defines the observed state of TrackerV1.

func (*TrackerV1Status) DeepCopy

func (in *TrackerV1Status) DeepCopy() *TrackerV1Status

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

func (*TrackerV1Status) DeepCopyInto

func (in *TrackerV1Status) DeepCopyInto(out *TrackerV1Status)

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