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=security.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: security.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 CenterGroup added in v0.4.0

type CenterGroup struct {
	metav1.TypeMeta   `json:",inline,omitempty"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              CenterGroupSpec   `json:"spec,omitempty"`
	Status            CenterGroupStatus `json:"status,omitempty"`
}

func (*CenterGroup) DeepCopy added in v0.4.0

func (in *CenterGroup) DeepCopy() *CenterGroup

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

func (*CenterGroup) DeepCopyInto added in v0.4.0

func (in *CenterGroup) DeepCopyInto(out *CenterGroup)

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

func (*CenterGroup) DeepCopyObject added in v0.4.0

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

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

func (*CenterGroup) SetupWebhookWithManager added in v0.4.0

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

func (*CenterGroup) ValidateCreate added in v0.4.0

func (r *CenterGroup) ValidateCreate() error

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

func (*CenterGroup) ValidateDelete added in v0.4.0

func (r *CenterGroup) ValidateDelete() error

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

func (*CenterGroup) ValidateUpdate added in v0.4.0

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

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

type CenterGroupList added in v0.4.0

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

CenterGroupList is a list of CenterGroups

func (*CenterGroupList) DeepCopy added in v0.4.0

func (in *CenterGroupList) DeepCopy() *CenterGroupList

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

func (*CenterGroupList) DeepCopyInto added in v0.4.0

func (in *CenterGroupList) DeepCopyInto(out *CenterGroupList)

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

func (*CenterGroupList) DeepCopyObject added in v0.4.0

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

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

type CenterGroupSpec added in v0.4.0

type CenterGroupSpec struct {
	State *CenterGroupSpecResource `json:"state,omitempty" tf:"-"`

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

func (in *CenterGroupSpec) DeepCopy() *CenterGroupSpec

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

func (*CenterGroupSpec) DeepCopyInto added in v0.4.0

func (in *CenterGroupSpec) DeepCopyInto(out *CenterGroupSpec)

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

type CenterGroupSpecResource added in v0.4.0

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

	// +optional
	GroupID *string `json:"groupID,omitempty" tf:"group_id"`
	// +optional
	GroupName *string `json:"groupName,omitempty" tf:"group_name"`
}

func (*CenterGroupSpecResource) DeepCopy added in v0.4.0

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

func (*CenterGroupSpecResource) DeepCopyInto added in v0.4.0

func (in *CenterGroupSpecResource) DeepCopyInto(out *CenterGroupSpecResource)

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

type CenterGroupStatus added in v0.4.0

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

func (in *CenterGroupStatus) DeepCopy() *CenterGroupStatus

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

func (*CenterGroupStatus) DeepCopyInto added in v0.4.0

func (in *CenterGroupStatus) DeepCopyInto(out *CenterGroupStatus)

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

type CenterServiceLinkedRole added in v0.5.0

type CenterServiceLinkedRole struct {
	metav1.TypeMeta   `json:",inline,omitempty"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              CenterServiceLinkedRoleSpec   `json:"spec,omitempty"`
	Status            CenterServiceLinkedRoleStatus `json:"status,omitempty"`
}

func (*CenterServiceLinkedRole) DeepCopy added in v0.5.0

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

func (*CenterServiceLinkedRole) DeepCopyInto added in v0.5.0

func (in *CenterServiceLinkedRole) DeepCopyInto(out *CenterServiceLinkedRole)

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

func (*CenterServiceLinkedRole) DeepCopyObject added in v0.5.0

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

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

func (*CenterServiceLinkedRole) SetupWebhookWithManager added in v0.5.0

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

func (*CenterServiceLinkedRole) ValidateCreate added in v0.5.0

func (r *CenterServiceLinkedRole) ValidateCreate() error

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

func (*CenterServiceLinkedRole) ValidateDelete added in v0.5.0

func (r *CenterServiceLinkedRole) ValidateDelete() error

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

func (*CenterServiceLinkedRole) ValidateUpdate added in v0.5.0

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

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

type CenterServiceLinkedRoleList added in v0.5.0

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

CenterServiceLinkedRoleList is a list of CenterServiceLinkedRoles

func (*CenterServiceLinkedRoleList) DeepCopy added in v0.5.0

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

func (*CenterServiceLinkedRoleList) DeepCopyInto added in v0.5.0

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

func (*CenterServiceLinkedRoleList) DeepCopyObject added in v0.5.0

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

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

type CenterServiceLinkedRoleSpec added in v0.5.0

type CenterServiceLinkedRoleSpec struct {
	State *CenterServiceLinkedRoleSpecResource `json:"state,omitempty" tf:"-"`

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

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

func (*CenterServiceLinkedRoleSpec) DeepCopyInto added in v0.5.0

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

type CenterServiceLinkedRoleSpecResource added in v0.5.0

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

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

	// +optional
	Status *bool `json:"status,omitempty" tf:"status"`
}

func (*CenterServiceLinkedRoleSpecResource) DeepCopy added in v0.5.0

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

func (*CenterServiceLinkedRoleSpecResource) DeepCopyInto added in v0.5.0

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

type CenterServiceLinkedRoleStatus added in v0.5.0

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

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

func (*CenterServiceLinkedRoleStatus) DeepCopyInto added in v0.5.0

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

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

func (in *Group) DeepCopy() *Group

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

func (*Group) DeepCopyInto

func (in *Group) DeepCopyInto(out *Group)

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

func (*Group) DeepCopyObject

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

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

func (*Group) SetupWebhookWithManager

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

func (*Group) ValidateCreate

func (r *Group) ValidateCreate() error

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

func (*Group) ValidateDelete

func (r *Group) ValidateDelete() error

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

func (*Group) ValidateUpdate

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

ValidateUpdate 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

func (in *GroupList) DeepCopy() *GroupList

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

func (*GroupList) DeepCopyInto

func (in *GroupList) DeepCopyInto(out *GroupList)

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

func (*GroupList) DeepCopyObject

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

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

func (in *GroupRule) DeepCopy() *GroupRule

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

func (*GroupRule) DeepCopyInto

func (in *GroupRule) DeepCopyInto(out *GroupRule)

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

func (*GroupRule) DeepCopyObject

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

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

func (*GroupRule) SetupWebhookWithManager

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

func (*GroupRule) ValidateCreate

func (r *GroupRule) ValidateCreate() error

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

func (*GroupRule) ValidateDelete

func (r *GroupRule) ValidateDelete() error

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

func (*GroupRule) ValidateUpdate

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

ValidateUpdate 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
	CidrIP *string `json:"cidrIP,omitempty" tf:"cidr_ip"`
	// +optional
	Description *string `json:"description,omitempty" tf:"description"`
	IpProtocol  *string `json:"ipProtocol" tf:"ip_protocol"`
	// +optional
	NicType *string `json:"nicType,omitempty" tf:"nic_type"`
	// +optional
	Policy *string `json:"policy,omitempty" tf:"policy"`
	// +optional
	PortRange *string `json:"portRange,omitempty" tf:"port_range"`
	// +optional
	PrefixListID *string `json:"prefixListID,omitempty" tf:"prefix_list_id"`
	// +optional
	Priority        *int64  `json:"priority,omitempty" tf:"priority"`
	SecurityGroupID *string `json:"securityGroupID" tf:"security_group_id"`
	// +optional
	SourceGroupOwnerAccount *string `json:"sourceGroupOwnerAccount,omitempty" tf:"source_group_owner_account"`
	// +optional
	SourceSecurityGroupID *string `json:"sourceSecurityGroupID,omitempty" tf:"source_security_group_id"`
	// Type of rule, ingress (inbound) or egress (outbound).
	Type *string `json:"type" tf:"type"`
}

func (*GroupRuleSpecResource) DeepCopy

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

func (in *GroupSpec) DeepCopy() *GroupSpec

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

func (*GroupSpec) DeepCopyInto

func (in *GroupSpec) DeepCopyInto(out *GroupSpec)

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

type GroupSpecResource

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

	// +optional
	Description *string `json:"description,omitempty" tf:"description"`
	// +optional
	// Deprecated
	InnerAccess *bool `json:"innerAccess,omitempty" tf:"inner_access"`
	// +optional
	InnerAccessPolicy *string `json:"innerAccessPolicy,omitempty" tf:"inner_access_policy"`
	// +optional
	Name *string `json:"name,omitempty" tf:"name"`
	// +optional
	ResourceGroupID *string `json:"resourceGroupID,omitempty" tf:"resource_group_id"`
	// +optional
	SecurityGroupType *string `json:"securityGroupType,omitempty" tf:"security_group_type"`
	// +optional
	Tags map[string]string `json:"tags,omitempty" tf:"tags"`
	// +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.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL