v1alpha1

package
v0.5.0 Latest Latest
Warning

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

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

Documentation

Overview

+groupName=object.upcloud.kubeform.com

Index

Constants

This section is empty.

Variables

View Source
var (
	// TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api.
	// localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes.
	SchemeBuilder runtime.SchemeBuilder

	AddToScheme = localSchemeBuilder.AddToScheme
)
View Source
var SchemeGroupVersion = schema.GroupVersion{Group: object.GroupName, Version: "v1alpha1"}

Functions

func GetDecoder

func GetDecoder() map[string]jsoniter.ValDecoder

func GetEncoder

func GetEncoder() map[string]jsoniter.ValEncoder

func Kind

func Kind(kind string) schema.GroupKind

Kind takes an unqualified kind and returns a Group qualified GroupKind

func Resource

func Resource(resource string) schema.GroupResource

Resource takes an unqualified resource and returns a Group qualified GroupResource

Types

type Storage

type Storage struct {
	metav1.TypeMeta   `json:",inline,omitempty"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              StorageSpec   `json:"spec,omitempty"`
	Status            StorageStatus `json:"status,omitempty"`
}

func (*Storage) DeepCopy

func (in *Storage) DeepCopy() *Storage

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

func (*Storage) DeepCopyInto

func (in *Storage) DeepCopyInto(out *Storage)

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

func (*Storage) DeepCopyObject

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

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

func (*Storage) SetupWebhookWithManager

func (r *Storage) SetupWebhookWithManager(mgr ctrl.Manager) error

func (*Storage) ValidateCreate

func (r *Storage) ValidateCreate() error

ValidateCreate implements webhook.Validator so a webhook will be registered for the type

func (*Storage) ValidateDelete

func (r *Storage) ValidateDelete() error

ValidateDelete implements webhook.Validator so a webhook will be registered for the type

func (*Storage) ValidateUpdate

func (r *Storage) ValidateUpdate(old runtime.Object) error

ValidateUpdate implements webhook.Validator so a webhook will be registered for the type

type StorageList

type StorageList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	// Items is a list of Storage CRD objects
	Items []Storage `json:"items,omitempty"`
}

StorageList is a list of Storages

func (*StorageList) DeepCopy

func (in *StorageList) DeepCopy() *StorageList

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

func (*StorageList) DeepCopyInto

func (in *StorageList) DeepCopyInto(out *StorageList)

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

func (*StorageList) DeepCopyObject

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

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

type StorageSpec

type StorageSpec struct {
	State *StorageSpecResource `json:"state,omitempty" tf:"-"`

	Resource StorageSpecResource `json:"resource" tf:"resource"`

	UpdatePolicy base.UpdatePolicy `json:"updatePolicy,omitempty" tf:"-"`

	TerminationPolicy base.TerminationPolicy `json:"terminationPolicy,omitempty" tf:"-"`

	ProviderRef core.LocalObjectReference `json:"providerRef" tf:"-"`

	BackendRef *core.LocalObjectReference `json:"backendRef,omitempty" tf:"-"`
}

func (*StorageSpec) DeepCopy

func (in *StorageSpec) DeepCopy() *StorageSpec

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

func (*StorageSpec) DeepCopyInto

func (in *StorageSpec) DeepCopyInto(out *StorageSpec)

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

type StorageSpecBucket

type StorageSpecBucket struct {
	// The name of the bucket
	Name *string `json:"name" tf:"name"`
}

func (*StorageSpecBucket) DeepCopy

func (in *StorageSpecBucket) DeepCopy() *StorageSpecBucket

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

func (*StorageSpecBucket) DeepCopyInto

func (in *StorageSpecBucket) DeepCopyInto(out *StorageSpecBucket)

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

type StorageSpecResource

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

	// The access key used to identify user
	AccessKey *string `json:"accessKey" tf:"access_key"`
	// +optional
	Bucket []StorageSpecBucket `json:"bucket,omitempty" tf:"bucket"`
	// +optional
	Created *string `json:"created,omitempty" tf:"created"`
	// The description of the object storage instance to be created
	Description *string `json:"description" tf:"description"`
	// The name of the object storage instance to be created
	Name *string `json:"name" tf:"name"`
	// The secret key used to authenticate user
	SecretKey *string `json:"secretKey" tf:"secret_key"`
	// The size of the object storage instance in gigabytes
	Size *int64 `json:"size" tf:"size"`
	// +optional
	State *string `json:"state,omitempty" tf:"state"`
	// +optional
	Url *string `json:"url,omitempty" tf:"url"`
	// +optional
	UsedSpace *int64 `json:"usedSpace,omitempty" tf:"used_space"`
	// The zone in which the object storage instance will be created
	Zone *string `json:"zone" tf:"zone"`
}

func (*StorageSpecResource) DeepCopy

func (in *StorageSpecResource) DeepCopy() *StorageSpecResource

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

func (*StorageSpecResource) DeepCopyInto

func (in *StorageSpecResource) DeepCopyInto(out *StorageSpecResource)

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

type StorageStatus

type StorageStatus struct {
	// Resource generation, which is updated on mutation by the API Server.
	// +optional
	ObservedGeneration int64 `json:"observedGeneration,omitempty"`
	// +optional
	Phase status.Status `json:"phase,omitempty"`
	// +optional
	Conditions []kmapi.Condition `json:"conditions,omitempty"`
}

func (*StorageStatus) DeepCopy

func (in *StorageStatus) DeepCopy() *StorageStatus

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

func (*StorageStatus) DeepCopyInto

func (in *StorageStatus) DeepCopyInto(out *StorageStatus)

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