Documentation ¶
Overview ¶
+groupName=scdn.alicloud.kubeform.com
Index ¶
- Variables
- func GetDecoder() map[string]jsoniter.ValDecoder
- func GetEncoder() map[string]jsoniter.ValEncoder
- func Kind(kind string) schema.GroupKind
- func Resource(resource string) schema.GroupResource
- type Domain
- func (in *Domain) DeepCopy() *Domain
- func (in *Domain) DeepCopyInto(out *Domain)
- func (in *Domain) DeepCopyObject() runtime.Object
- func (r *Domain) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *Domain) ValidateCreate() error
- func (r *Domain) ValidateDelete() error
- func (r *Domain) ValidateUpdate(old runtime.Object) error
- type DomainConfig
- func (in *DomainConfig) DeepCopy() *DomainConfig
- func (in *DomainConfig) DeepCopyInto(out *DomainConfig)
- func (in *DomainConfig) DeepCopyObject() runtime.Object
- func (r *DomainConfig) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *DomainConfig) ValidateCreate() error
- func (r *DomainConfig) ValidateDelete() error
- func (r *DomainConfig) ValidateUpdate(old runtime.Object) error
- type DomainConfigList
- type DomainConfigSpec
- type DomainConfigSpecFunctionArgs
- type DomainConfigSpecResource
- type DomainConfigStatus
- type DomainList
- type DomainSpec
- type DomainSpecCertInfos
- type DomainSpecResource
- type DomainSpecSources
- type DomainStatus
Constants ¶
This section is empty.
Variables ¶
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 )
var SchemeGroupVersion = schema.GroupVersion{Group: scdn.GroupName, Version: "v1alpha1"}
Functions ¶
func GetDecoder ¶
func GetDecoder() map[string]jsoniter.ValDecoder
func GetEncoder ¶
func GetEncoder() map[string]jsoniter.ValEncoder
func Kind ¶
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 ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Domain.
func (*Domain) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Domain) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Domain) SetupWebhookWithManager ¶
func (*Domain) ValidateCreate ¶
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*Domain) ValidateDelete ¶
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type DomainConfig ¶
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 ¶
func (in *DomainConfig) DeepCopy() *DomainConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DomainConfig.
func (*DomainConfig) DeepCopyInto ¶
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 ¶
func (in *DomainConfig) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*DomainConfig) SetupWebhookWithManager ¶
func (r *DomainConfig) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*DomainConfig) ValidateCreate ¶
func (r *DomainConfig) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*DomainConfig) ValidateDelete ¶
func (r *DomainConfig) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*DomainConfig) ValidateUpdate ¶
func (r *DomainConfig) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type DomainConfigList ¶
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 ¶
func (in *DomainConfigList) DeepCopy() *DomainConfigList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DomainConfigList.
func (*DomainConfigList) DeepCopyInto ¶
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 ¶
func (in *DomainConfigList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type DomainConfigSpec ¶
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 ¶
func (in *DomainConfigSpec) DeepCopy() *DomainConfigSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DomainConfigSpec.
func (*DomainConfigSpec) DeepCopyInto ¶
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 ¶
type DomainConfigSpecFunctionArgs struct { ArgName *string `json:"argName" tf:"arg_name"` ArgValue *string `json:"argValue" tf:"arg_value"` }
func (*DomainConfigSpecFunctionArgs) DeepCopy ¶
func (in *DomainConfigSpecFunctionArgs) DeepCopy() *DomainConfigSpecFunctionArgs
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DomainConfigSpecFunctionArgs.
func (*DomainConfigSpecFunctionArgs) DeepCopyInto ¶
func (in *DomainConfigSpecFunctionArgs) DeepCopyInto(out *DomainConfigSpecFunctionArgs)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DomainConfigSpecResource ¶
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 ¶
func (in *DomainConfigSpecResource) DeepCopy() *DomainConfigSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DomainConfigSpecResource.
func (*DomainConfigSpecResource) DeepCopyInto ¶
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 ¶
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 ¶
func (in *DomainConfigStatus) DeepCopy() *DomainConfigStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DomainConfigStatus.
func (*DomainConfigStatus) DeepCopyInto ¶
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:"-"` SecretRef *core.LocalObjectReference `json:"secretRef,omitempty" 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 DomainSpecCertInfos ¶
type DomainSpecCertInfos struct { // +optional CertName *string `json:"certName,omitempty" tf:"cert_name"` // +optional CertType *string `json:"certType,omitempty" tf:"cert_type"` // +optional SslPri *string `json:"-" sensitive:"true" tf:"ssl_pri"` // +optional SslProtocol *string `json:"sslProtocol,omitempty" tf:"ssl_protocol"` // +optional SslPub *string `json:"sslPub,omitempty" tf:"ssl_pub"` }
func (*DomainSpecCertInfos) DeepCopy ¶
func (in *DomainSpecCertInfos) DeepCopy() *DomainSpecCertInfos
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DomainSpecCertInfos.
func (*DomainSpecCertInfos) DeepCopyInto ¶
func (in *DomainSpecCertInfos) DeepCopyInto(out *DomainSpecCertInfos)
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 BizName *string `json:"bizName,omitempty" tf:"biz_name"` // +optional CertInfos []DomainSpecCertInfos `json:"certInfos,omitempty" tf:"cert_infos"` // +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"` Sources []DomainSpecSources `json:"sources" tf:"sources"` // +optional Status *string `json:"status,omitempty" tf:"status"` }
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 Enabled *string `json:"enabled,omitempty" tf:"enabled"` Port *int64 `json:"port" tf:"port"` Priority *string `json:"priority" tf:"priority"` Type *string `json:"type" tf:"type"` }
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.