Documentation ¶
Overview ¶
+groupName=proxy.aws.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 ProtocolPolicy
- func (in *ProtocolPolicy) DeepCopy() *ProtocolPolicy
- func (in *ProtocolPolicy) DeepCopyInto(out *ProtocolPolicy)
- func (in *ProtocolPolicy) DeepCopyObject() runtime.Object
- func (r *ProtocolPolicy) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *ProtocolPolicy) ValidateCreate() error
- func (r *ProtocolPolicy) ValidateDelete() error
- func (r *ProtocolPolicy) ValidateUpdate(old runtime.Object) error
- type ProtocolPolicyList
- type ProtocolPolicySpec
- type ProtocolPolicySpecResource
- type ProtocolPolicyStatus
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: proxy.GroupName, Version: "v1alpha1"}
Functions ¶
func GetDecoder ¶
func GetDecoder() map[string]jsoniter.ValDecoder
func GetEncoder ¶
func GetEncoder() map[string]jsoniter.ValEncoder
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type ProtocolPolicy ¶
type ProtocolPolicy struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ProtocolPolicySpec `json:"spec,omitempty"` Status ProtocolPolicyStatus `json:"status,omitempty"` }
func (*ProtocolPolicy) DeepCopy ¶
func (in *ProtocolPolicy) DeepCopy() *ProtocolPolicy
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProtocolPolicy.
func (*ProtocolPolicy) DeepCopyInto ¶
func (in *ProtocolPolicy) DeepCopyInto(out *ProtocolPolicy)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ProtocolPolicy) DeepCopyObject ¶
func (in *ProtocolPolicy) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ProtocolPolicy) SetupWebhookWithManager ¶
func (r *ProtocolPolicy) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*ProtocolPolicy) ValidateCreate ¶
func (r *ProtocolPolicy) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*ProtocolPolicy) ValidateDelete ¶
func (r *ProtocolPolicy) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*ProtocolPolicy) ValidateUpdate ¶
func (r *ProtocolPolicy) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type ProtocolPolicyList ¶
type ProtocolPolicyList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of ProtocolPolicy CRD objects Items []ProtocolPolicy `json:"items,omitempty"` }
ProtocolPolicyList is a list of ProtocolPolicys
func (*ProtocolPolicyList) DeepCopy ¶
func (in *ProtocolPolicyList) DeepCopy() *ProtocolPolicyList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProtocolPolicyList.
func (*ProtocolPolicyList) DeepCopyInto ¶
func (in *ProtocolPolicyList) DeepCopyInto(out *ProtocolPolicyList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ProtocolPolicyList) DeepCopyObject ¶
func (in *ProtocolPolicyList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ProtocolPolicySpec ¶
type ProtocolPolicySpec struct { State *ProtocolPolicySpecResource `json:"state,omitempty" tf:"-"` Resource ProtocolPolicySpecResource `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 (*ProtocolPolicySpec) DeepCopy ¶
func (in *ProtocolPolicySpec) DeepCopy() *ProtocolPolicySpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProtocolPolicySpec.
func (*ProtocolPolicySpec) DeepCopyInto ¶
func (in *ProtocolPolicySpec) DeepCopyInto(out *ProtocolPolicySpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProtocolPolicySpecResource ¶
type ProtocolPolicySpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` InstancePorts []string `json:"instancePorts" tf:"instance_ports"` LoadBalancer *string `json:"loadBalancer" tf:"load_balancer"` }
func (*ProtocolPolicySpecResource) DeepCopy ¶
func (in *ProtocolPolicySpecResource) DeepCopy() *ProtocolPolicySpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProtocolPolicySpecResource.
func (*ProtocolPolicySpecResource) DeepCopyInto ¶
func (in *ProtocolPolicySpecResource) DeepCopyInto(out *ProtocolPolicySpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProtocolPolicyStatus ¶
type ProtocolPolicyStatus 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 (*ProtocolPolicyStatus) DeepCopy ¶
func (in *ProtocolPolicyStatus) DeepCopy() *ProtocolPolicyStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProtocolPolicyStatus.
func (*ProtocolPolicyStatus) DeepCopyInto ¶
func (in *ProtocolPolicyStatus) DeepCopyInto(out *ProtocolPolicyStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.