v1alpha1

package
v0.0.0-...-c585dde 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=status.uptimerobot.jet.crossplane.io +versionName=v1alpha1

Index

Constants

View Source
const (
	CRDGroup   = "status.uptimerobot.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 (
	Page_Kind             = "Page"
	Page_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Page_Kind}.String()
	Page_KindAPIVersion   = Page_Kind + "." + CRDGroupVersion.String()
	Page_GroupVersionKind = CRDGroupVersion.WithKind(Page_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type Page

type Page struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              PageSpec   `json:"spec"`
	Status            PageStatus `json:"status,omitempty"`
}

Page is the Schema for the Pages 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,uptimerobotjet}

func (*Page) DeepCopy

func (in *Page) DeepCopy() *Page

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

func (*Page) DeepCopyInto

func (in *Page) DeepCopyInto(out *Page)

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

func (*Page) DeepCopyObject

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

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

func (*Page) GetCondition

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

GetCondition of this Page.

func (*Page) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this Page

func (*Page) GetDeletionPolicy

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

GetDeletionPolicy of this Page.

func (*Page) GetID

func (tr *Page) GetID() string

GetID returns ID of underlying Terraform resource of this Page

func (*Page) GetObservation

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

GetObservation of this Page

func (*Page) GetParameters

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

GetParameters of this Page

func (*Page) GetProviderConfigReference

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

GetProviderConfigReference of this Page.

func (*Page) GetProviderReference

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

GetProviderReference of this Page. Deprecated: Use GetProviderConfigReference.

func (*Page) GetTerraformResourceType

func (mg *Page) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Page

func (*Page) GetTerraformSchemaVersion

func (tr *Page) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Page) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this Page.

func (*Page) LateInitialize

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

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

func (*Page) SetConditions

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

SetConditions of this Page.

func (*Page) SetDeletionPolicy

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

SetDeletionPolicy of this Page.

func (*Page) SetObservation

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

SetObservation for this Page

func (*Page) SetParameters

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

SetParameters for this Page

func (*Page) SetProviderConfigReference

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

SetProviderConfigReference of this Page.

func (*Page) SetProviderReference

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

SetProviderReference of this Page. Deprecated: Use SetProviderConfigReference.

func (*Page) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this Page.

type PageList

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

PageList contains a list of Pages

func (*PageList) DeepCopy

func (in *PageList) DeepCopy() *PageList

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

func (*PageList) DeepCopyInto

func (in *PageList) DeepCopyInto(out *PageList)

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

func (*PageList) DeepCopyObject

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

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

func (*PageList) GetItems

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

GetItems of this PageList.

type PageObservation

type PageObservation struct {
	CustomURL *string `json:"customUrl,omitempty" tf:"custom_url,omitempty"`

	DNSAddress *string `json:"dnsAddress,omitempty" tf:"dns_address,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	StandardURL *string `json:"standardUrl,omitempty" tf:"standard_url,omitempty"`
}

func (*PageObservation) DeepCopy

func (in *PageObservation) DeepCopy() *PageObservation

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

func (*PageObservation) DeepCopyInto

func (in *PageObservation) DeepCopyInto(out *PageObservation)

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

type PageParameters

type PageParameters struct {

	// +kubebuilder:validation:Optional
	CustomDomain *string `json:"customDomain,omitempty" tf:"custom_domain,omitempty"`

	// +kubebuilder:validation:Required
	FriendlyName *string `json:"friendlyName" tf:"friendly_name,omitempty"`

	// +kubebuilder:validation:Optional
	Monitors []*float64 `json:"monitors,omitempty" tf:"monitors,omitempty"`

	// +kubebuilder:validation:Optional
	Password *string `json:"password,omitempty" tf:"password,omitempty"`

	// +kubebuilder:validation:Optional
	Sort *string `json:"sort,omitempty" tf:"sort,omitempty"`

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

func (*PageParameters) DeepCopy

func (in *PageParameters) DeepCopy() *PageParameters

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

func (*PageParameters) DeepCopyInto

func (in *PageParameters) DeepCopyInto(out *PageParameters)

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

type PageSpec

type PageSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     PageParameters `json:"forProvider"`
}

PageSpec defines the desired state of Page

func (*PageSpec) DeepCopy

func (in *PageSpec) DeepCopy() *PageSpec

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

func (*PageSpec) DeepCopyInto

func (in *PageSpec) DeepCopyInto(out *PageSpec)

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

type PageStatus

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

PageStatus defines the observed state of Page.

func (*PageStatus) DeepCopy

func (in *PageStatus) DeepCopy() *PageStatus

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

func (*PageStatus) DeepCopyInto

func (in *PageStatus) DeepCopyInto(out *PageStatus)

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