Documentation ¶
Overview ¶
+groupName=security.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 Group
- func (in *Group) DeepCopy() *Group
- func (in *Group) DeepCopyInto(out *Group)
- func (in *Group) DeepCopyObject() runtime.Object
- func (r *Group) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *Group) ValidateCreate() error
- func (r *Group) ValidateDelete() error
- func (r *Group) ValidateUpdate(old runtime.Object) error
- type GroupList
- type GroupRule
- func (in *GroupRule) DeepCopy() *GroupRule
- func (in *GroupRule) DeepCopyInto(out *GroupRule)
- func (in *GroupRule) DeepCopyObject() runtime.Object
- func (r *GroupRule) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *GroupRule) ValidateCreate() error
- func (r *GroupRule) ValidateDelete() error
- func (r *GroupRule) ValidateUpdate(old runtime.Object) error
- type GroupRuleList
- type GroupRuleSpec
- type GroupRuleSpecResource
- type GroupRuleStatus
- type GroupSpec
- type GroupSpecEgress
- type GroupSpecIngress
- type GroupSpecResource
- type GroupStatus
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: security.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 Group ¶
type Group struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec GroupSpec `json:"spec,omitempty"` Status GroupStatus `json:"status,omitempty"` }
func (*Group) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Group.
func (*Group) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Group) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Group) SetupWebhookWithManager ¶
func (*Group) ValidateCreate ¶
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*Group) ValidateDelete ¶
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type GroupList ¶
type GroupList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of Group CRD objects Items []Group `json:"items,omitempty"` }
GroupList is a list of Groups
func (*GroupList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupList.
func (*GroupList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*GroupList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type GroupRule ¶
type GroupRule struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec GroupRuleSpec `json:"spec,omitempty"` Status GroupRuleStatus `json:"status,omitempty"` }
func (*GroupRule) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupRule.
func (*GroupRule) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*GroupRule) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*GroupRule) SetupWebhookWithManager ¶
func (*GroupRule) ValidateCreate ¶
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*GroupRule) ValidateDelete ¶
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type GroupRuleList ¶
type GroupRuleList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of GroupRule CRD objects Items []GroupRule `json:"items,omitempty"` }
GroupRuleList is a list of GroupRules
func (*GroupRuleList) DeepCopy ¶
func (in *GroupRuleList) DeepCopy() *GroupRuleList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupRuleList.
func (*GroupRuleList) DeepCopyInto ¶
func (in *GroupRuleList) DeepCopyInto(out *GroupRuleList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*GroupRuleList) DeepCopyObject ¶
func (in *GroupRuleList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type GroupRuleSpec ¶
type GroupRuleSpec struct { State *GroupRuleSpecResource `json:"state,omitempty" tf:"-"` Resource GroupRuleSpecResource `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 (*GroupRuleSpec) DeepCopy ¶
func (in *GroupRuleSpec) DeepCopy() *GroupRuleSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupRuleSpec.
func (*GroupRuleSpec) DeepCopyInto ¶
func (in *GroupRuleSpec) DeepCopyInto(out *GroupRuleSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GroupRuleSpecResource ¶
type GroupRuleSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` // +optional CidrBlocks []string `json:"cidrBlocks,omitempty" tf:"cidr_blocks"` // +optional Description *string `json:"description,omitempty" tf:"description"` FromPort *int64 `json:"fromPort" tf:"from_port"` // +optional Ipv6CIDRBlocks []string `json:"ipv6CIDRBlocks,omitempty" tf:"ipv6_cidr_blocks"` // +optional PrefixListIDS []string `json:"prefixListIDS,omitempty" tf:"prefix_list_ids"` Protocol *string `json:"protocol" tf:"protocol"` SecurityGroupID *string `json:"securityGroupID" tf:"security_group_id"` // +optional Self *bool `json:"self,omitempty" tf:"self"` // +optional SourceSecurityGroupID *string `json:"sourceSecurityGroupID,omitempty" tf:"source_security_group_id"` ToPort *int64 `json:"toPort" tf:"to_port"` // Type of rule, ingress (inbound) or egress (outbound). Type *string `json:"type" tf:"type"` }
func (*GroupRuleSpecResource) DeepCopy ¶
func (in *GroupRuleSpecResource) DeepCopy() *GroupRuleSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupRuleSpecResource.
func (*GroupRuleSpecResource) DeepCopyInto ¶
func (in *GroupRuleSpecResource) DeepCopyInto(out *GroupRuleSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GroupRuleStatus ¶
type GroupRuleStatus 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 (*GroupRuleStatus) DeepCopy ¶
func (in *GroupRuleStatus) DeepCopy() *GroupRuleStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupRuleStatus.
func (*GroupRuleStatus) DeepCopyInto ¶
func (in *GroupRuleStatus) DeepCopyInto(out *GroupRuleStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GroupSpec ¶
type GroupSpec struct { State *GroupSpecResource `json:"state,omitempty" tf:"-"` Resource GroupSpecResource `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 (*GroupSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupSpec.
func (*GroupSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GroupSpecEgress ¶
type GroupSpecEgress struct { // +optional CidrBlocks []string `json:"cidrBlocks,omitempty" tf:"cidr_blocks"` // +optional Description *string `json:"description,omitempty" tf:"description"` FromPort *int64 `json:"fromPort" tf:"from_port"` // +optional Ipv6CIDRBlocks []string `json:"ipv6CIDRBlocks,omitempty" tf:"ipv6_cidr_blocks"` // +optional PrefixListIDS []string `json:"prefixListIDS,omitempty" tf:"prefix_list_ids"` Protocol *string `json:"protocol" tf:"protocol"` // +optional SecurityGroups []string `json:"securityGroups,omitempty" tf:"security_groups"` // +optional Self *bool `json:"self,omitempty" tf:"self"` ToPort *int64 `json:"toPort" tf:"to_port"` }
func (*GroupSpecEgress) DeepCopy ¶
func (in *GroupSpecEgress) DeepCopy() *GroupSpecEgress
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupSpecEgress.
func (*GroupSpecEgress) DeepCopyInto ¶
func (in *GroupSpecEgress) DeepCopyInto(out *GroupSpecEgress)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GroupSpecIngress ¶
type GroupSpecIngress struct { // +optional CidrBlocks []string `json:"cidrBlocks,omitempty" tf:"cidr_blocks"` // +optional Description *string `json:"description,omitempty" tf:"description"` FromPort *int64 `json:"fromPort" tf:"from_port"` // +optional Ipv6CIDRBlocks []string `json:"ipv6CIDRBlocks,omitempty" tf:"ipv6_cidr_blocks"` // +optional PrefixListIDS []string `json:"prefixListIDS,omitempty" tf:"prefix_list_ids"` Protocol *string `json:"protocol" tf:"protocol"` // +optional SecurityGroups []string `json:"securityGroups,omitempty" tf:"security_groups"` // +optional Self *bool `json:"self,omitempty" tf:"self"` ToPort *int64 `json:"toPort" tf:"to_port"` }
func (*GroupSpecIngress) DeepCopy ¶
func (in *GroupSpecIngress) DeepCopy() *GroupSpecIngress
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupSpecIngress.
func (*GroupSpecIngress) DeepCopyInto ¶
func (in *GroupSpecIngress) DeepCopyInto(out *GroupSpecIngress)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GroupSpecResource ¶
type GroupSpecResource struct { Timeouts *base.ResourceTimeout `json:"timeouts,omitempty" tf:"timeouts"` ID string `json:"id,omitempty" tf:"id,omitempty"` // +optional Arn *string `json:"arn,omitempty" tf:"arn"` // +optional Description *string `json:"description,omitempty" tf:"description"` // +optional Egress []GroupSpecEgress `json:"egress,omitempty" tf:"egress"` // +optional Ingress []GroupSpecIngress `json:"ingress,omitempty" tf:"ingress"` // +optional Name *string `json:"name,omitempty" tf:"name"` // +optional NamePrefix *string `json:"namePrefix,omitempty" tf:"name_prefix"` // +optional OwnerID *string `json:"ownerID,omitempty" tf:"owner_id"` // +optional RevokeRulesOnDelete *bool `json:"revokeRulesOnDelete,omitempty" tf:"revoke_rules_on_delete"` // +optional Tags *map[string]string `json:"tags,omitempty" tf:"tags"` // +optional TagsAll *map[string]string `json:"tagsAll,omitempty" tf:"tags_all"` // +optional VpcID *string `json:"vpcID,omitempty" tf:"vpc_id"` }
func (*GroupSpecResource) DeepCopy ¶
func (in *GroupSpecResource) DeepCopy() *GroupSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupSpecResource.
func (*GroupSpecResource) DeepCopyInto ¶
func (in *GroupSpecResource) DeepCopyInto(out *GroupSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GroupStatus ¶
type GroupStatus 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 (*GroupStatus) DeepCopy ¶
func (in *GroupStatus) DeepCopy() *GroupStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupStatus.
func (*GroupStatus) DeepCopyInto ¶
func (in *GroupStatus) DeepCopyInto(out *GroupStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.