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: 2

Documentation

Overview

+groupName=dcdn.alicloud.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: dcdn.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 Domain

type Domain struct {
	metav1.TypeMeta   `json:",inline,omitempty"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              DomainSpec   `json:"spec,omitempty"`
	Status            DomainStatus `json:"status,omitempty"`
}

func (*Domain) DeepCopy

func (in *Domain) DeepCopy() *Domain

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

func (*Domain) DeepCopyInto

func (in *Domain) DeepCopyInto(out *Domain)

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

func (*Domain) DeepCopyObject

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

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

func (*Domain) SetupWebhookWithManager

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

func (*Domain) ValidateCreate

func (r *Domain) ValidateCreate() error

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

func (*Domain) ValidateDelete

func (r *Domain) ValidateDelete() error

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

func (*Domain) ValidateUpdate

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

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

type DomainConfig added in v0.4.0

type DomainConfig struct {
	metav1.TypeMeta   `json:",inline,omitempty"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              DomainConfigSpec   `json:"spec,omitempty"`
	Status            DomainConfigStatus `json:"status,omitempty"`
}

func (*DomainConfig) DeepCopy added in v0.4.0

func (in *DomainConfig) DeepCopy() *DomainConfig

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

func (*DomainConfig) DeepCopyInto added in v0.4.0

func (in *DomainConfig) DeepCopyInto(out *DomainConfig)

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

func (*DomainConfig) DeepCopyObject added in v0.4.0

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

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

func (*DomainConfig) SetupWebhookWithManager added in v0.4.0

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

func (*DomainConfig) ValidateCreate added in v0.4.0

func (r *DomainConfig) ValidateCreate() error

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

func (*DomainConfig) ValidateDelete added in v0.4.0

func (r *DomainConfig) ValidateDelete() error

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

func (*DomainConfig) ValidateUpdate added in v0.4.0

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

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

type DomainConfigList added in v0.4.0

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

DomainConfigList is a list of DomainConfigs

func (*DomainConfigList) DeepCopy added in v0.4.0

func (in *DomainConfigList) DeepCopy() *DomainConfigList

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

func (*DomainConfigList) DeepCopyInto added in v0.4.0

func (in *DomainConfigList) DeepCopyInto(out *DomainConfigList)

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

func (*DomainConfigList) DeepCopyObject added in v0.4.0

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

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

type DomainConfigSpec added in v0.4.0

type DomainConfigSpec struct {
	State *DomainConfigSpecResource `json:"state,omitempty" tf:"-"`

	Resource DomainConfigSpecResource `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 (*DomainConfigSpec) DeepCopy added in v0.4.0

func (in *DomainConfigSpec) DeepCopy() *DomainConfigSpec

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

func (*DomainConfigSpec) DeepCopyInto added in v0.4.0

func (in *DomainConfigSpec) DeepCopyInto(out *DomainConfigSpec)

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

type DomainConfigSpecFunctionArgs added in v0.4.0

type DomainConfigSpecFunctionArgs struct {
	ArgName  *string `json:"argName" tf:"arg_name"`
	ArgValue *string `json:"argValue" tf:"arg_value"`
}

func (*DomainConfigSpecFunctionArgs) DeepCopy added in v0.4.0

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

func (*DomainConfigSpecFunctionArgs) DeepCopyInto added in v0.4.0

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

type DomainConfigSpecResource added in v0.4.0

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

	// +optional
	ConfigID     *string                        `json:"configID,omitempty" tf:"config_id"`
	DomainName   *string                        `json:"domainName" tf:"domain_name"`
	FunctionArgs []DomainConfigSpecFunctionArgs `json:"functionArgs" tf:"function_args"`
	FunctionName *string                        `json:"functionName" tf:"function_name"`
	// +optional
	Status *string `json:"status,omitempty" tf:"status"`
}

func (*DomainConfigSpecResource) DeepCopy added in v0.4.0

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

func (*DomainConfigSpecResource) DeepCopyInto added in v0.4.0

func (in *DomainConfigSpecResource) DeepCopyInto(out *DomainConfigSpecResource)

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

type DomainConfigStatus added in v0.4.0

type DomainConfigStatus 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 (*DomainConfigStatus) DeepCopy added in v0.4.0

func (in *DomainConfigStatus) DeepCopy() *DomainConfigStatus

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

func (*DomainConfigStatus) DeepCopyInto added in v0.4.0

func (in *DomainConfigStatus) DeepCopyInto(out *DomainConfigStatus)

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

type DomainList

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

DomainList is a list of Domains

func (*DomainList) DeepCopy

func (in *DomainList) DeepCopy() *DomainList

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

func (*DomainList) DeepCopyInto

func (in *DomainList) DeepCopyInto(out *DomainList)

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

func (*DomainList) DeepCopyObject

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

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

type DomainSpec

type DomainSpec struct {
	State *DomainSpecResource `json:"state,omitempty" tf:"-"`

	Resource DomainSpecResource `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 (*DomainSpec) DeepCopy

func (in *DomainSpec) DeepCopy() *DomainSpec

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

func (*DomainSpec) DeepCopyInto

func (in *DomainSpec) DeepCopyInto(out *DomainSpec)

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

type DomainSpecResource

type DomainSpecResource struct {
	Timeouts *base.ResourceTimeout `json:"timeouts,omitempty" tf:"timeouts"`

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

	// +optional
	CertName *string `json:"certName,omitempty" tf:"cert_name"`
	// +optional
	CertType *string `json:"certType,omitempty" tf:"cert_type"`
	// +optional
	CheckURL   *string `json:"checkURL,omitempty" tf:"check_url"`
	DomainName *string `json:"domainName" tf:"domain_name"`
	// +optional
	ForceSet *string `json:"forceSet,omitempty" tf:"force_set"`
	// +optional
	ResourceGroupID *string `json:"resourceGroupID,omitempty" tf:"resource_group_id"`
	// +optional
	Scope *string `json:"scope,omitempty" tf:"scope"`
	// +optional
	SecurityToken *string             `json:"securityToken,omitempty" tf:"security_token"`
	Sources       []DomainSpecSources `json:"sources" tf:"sources"`
	// +optional
	SslPri *string `json:"sslPri,omitempty" tf:"ssl_pri"`
	// +optional
	SslProtocol *string `json:"sslProtocol,omitempty" tf:"ssl_protocol"`
	// +optional
	SslPub *string `json:"sslPub,omitempty" tf:"ssl_pub"`
	// +optional
	Status *string `json:"status,omitempty" tf:"status"`
	// +optional
	TopLevelDomain *string `json:"topLevelDomain,omitempty" tf:"top_level_domain"`
}

func (*DomainSpecResource) DeepCopy

func (in *DomainSpecResource) DeepCopy() *DomainSpecResource

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

func (*DomainSpecResource) DeepCopyInto

func (in *DomainSpecResource) DeepCopyInto(out *DomainSpecResource)

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

type DomainSpecSources

type DomainSpecSources struct {
	Content *string `json:"content" tf:"content"`
	// +optional
	Port *int64 `json:"port,omitempty" tf:"port"`
	// +optional
	Priority *string `json:"priority,omitempty" tf:"priority"`
	Type     *string `json:"type" tf:"type"`
	// +optional
	Weight *string `json:"weight,omitempty" tf:"weight"`
}

func (*DomainSpecSources) DeepCopy

func (in *DomainSpecSources) DeepCopy() *DomainSpecSources

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

func (*DomainSpecSources) DeepCopyInto

func (in *DomainSpecSources) DeepCopyInto(out *DomainSpecSources)

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

type DomainStatus

type DomainStatus 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 (*DomainStatus) DeepCopy

func (in *DomainStatus) DeepCopy() *DomainStatus

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

func (*DomainStatus) DeepCopyInto

func (in *DomainStatus) DeepCopyInto(out *DomainStatus)

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

type IpaDomain added in v0.5.0

type IpaDomain struct {
	metav1.TypeMeta   `json:",inline,omitempty"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              IpaDomainSpec   `json:"spec,omitempty"`
	Status            IpaDomainStatus `json:"status,omitempty"`
}

func (*IpaDomain) DeepCopy added in v0.5.0

func (in *IpaDomain) DeepCopy() *IpaDomain

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

func (*IpaDomain) DeepCopyInto added in v0.5.0

func (in *IpaDomain) DeepCopyInto(out *IpaDomain)

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

func (*IpaDomain) DeepCopyObject added in v0.5.0

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

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

func (*IpaDomain) SetupWebhookWithManager added in v0.5.0

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

func (*IpaDomain) ValidateCreate added in v0.5.0

func (r *IpaDomain) ValidateCreate() error

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

func (*IpaDomain) ValidateDelete added in v0.5.0

func (r *IpaDomain) ValidateDelete() error

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

func (*IpaDomain) ValidateUpdate added in v0.5.0

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

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

type IpaDomainList added in v0.5.0

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

IpaDomainList is a list of IpaDomains

func (*IpaDomainList) DeepCopy added in v0.5.0

func (in *IpaDomainList) DeepCopy() *IpaDomainList

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

func (*IpaDomainList) DeepCopyInto added in v0.5.0

func (in *IpaDomainList) DeepCopyInto(out *IpaDomainList)

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

func (*IpaDomainList) DeepCopyObject added in v0.5.0

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

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

type IpaDomainSpec added in v0.5.0

type IpaDomainSpec struct {
	State *IpaDomainSpecResource `json:"state,omitempty" tf:"-"`

	Resource IpaDomainSpecResource `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 (*IpaDomainSpec) DeepCopy added in v0.5.0

func (in *IpaDomainSpec) DeepCopy() *IpaDomainSpec

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

func (*IpaDomainSpec) DeepCopyInto added in v0.5.0

func (in *IpaDomainSpec) DeepCopyInto(out *IpaDomainSpec)

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

type IpaDomainSpecResource added in v0.5.0

type IpaDomainSpecResource struct {
	Timeouts *base.ResourceTimeout `json:"timeouts,omitempty" tf:"timeouts"`

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

	DomainName *string `json:"domainName" tf:"domain_name"`
	// +optional
	ResourceGroupID *string `json:"resourceGroupID,omitempty" tf:"resource_group_id"`
	// +optional
	Scope   *string                `json:"scope,omitempty" tf:"scope"`
	Sources []IpaDomainSpecSources `json:"sources" tf:"sources"`
	// +optional
	Status *string `json:"status,omitempty" tf:"status"`
}

func (*IpaDomainSpecResource) DeepCopy added in v0.5.0

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

func (*IpaDomainSpecResource) DeepCopyInto added in v0.5.0

func (in *IpaDomainSpecResource) DeepCopyInto(out *IpaDomainSpecResource)

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

type IpaDomainSpecSources added in v0.5.0

type IpaDomainSpecSources struct {
	Content  *string `json:"content" tf:"content"`
	Port     *int64  `json:"port" tf:"port"`
	Priority *string `json:"priority" tf:"priority"`
	Type     *string `json:"type" tf:"type"`
	Weight   *int64  `json:"weight" tf:"weight"`
}

func (*IpaDomainSpecSources) DeepCopy added in v0.5.0

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

func (*IpaDomainSpecSources) DeepCopyInto added in v0.5.0

func (in *IpaDomainSpecSources) DeepCopyInto(out *IpaDomainSpecSources)

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

type IpaDomainStatus added in v0.5.0

type IpaDomainStatus 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 (*IpaDomainStatus) DeepCopy added in v0.5.0

func (in *IpaDomainStatus) DeepCopy() *IpaDomainStatus

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

func (*IpaDomainStatus) DeepCopyInto added in v0.5.0

func (in *IpaDomainStatus) DeepCopyInto(out *IpaDomainStatus)

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