Documentation ¶
Overview ¶
+groupName=cloud9.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 EnvironmentEc2
- func (in *EnvironmentEc2) DeepCopy() *EnvironmentEc2
- func (in *EnvironmentEc2) DeepCopyInto(out *EnvironmentEc2)
- func (in *EnvironmentEc2) DeepCopyObject() runtime.Object
- func (r *EnvironmentEc2) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *EnvironmentEc2) ValidateCreate() error
- func (r *EnvironmentEc2) ValidateDelete() error
- func (r *EnvironmentEc2) ValidateUpdate(old runtime.Object) error
- type EnvironmentEc2List
- type EnvironmentEc2Spec
- type EnvironmentEc2SpecResource
- type EnvironmentEc2Status
- type EnvironmentMembership
- func (in *EnvironmentMembership) DeepCopy() *EnvironmentMembership
- func (in *EnvironmentMembership) DeepCopyInto(out *EnvironmentMembership)
- func (in *EnvironmentMembership) DeepCopyObject() runtime.Object
- func (r *EnvironmentMembership) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *EnvironmentMembership) ValidateCreate() error
- func (r *EnvironmentMembership) ValidateDelete() error
- func (r *EnvironmentMembership) ValidateUpdate(old runtime.Object) error
- type EnvironmentMembershipList
- type EnvironmentMembershipSpec
- type EnvironmentMembershipSpecResource
- type EnvironmentMembershipStatus
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: cloud9.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 EnvironmentEc2 ¶
type EnvironmentEc2 struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec EnvironmentEc2Spec `json:"spec,omitempty"` Status EnvironmentEc2Status `json:"status,omitempty"` }
func (*EnvironmentEc2) DeepCopy ¶
func (in *EnvironmentEc2) DeepCopy() *EnvironmentEc2
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvironmentEc2.
func (*EnvironmentEc2) DeepCopyInto ¶
func (in *EnvironmentEc2) DeepCopyInto(out *EnvironmentEc2)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*EnvironmentEc2) DeepCopyObject ¶
func (in *EnvironmentEc2) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*EnvironmentEc2) SetupWebhookWithManager ¶
func (r *EnvironmentEc2) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*EnvironmentEc2) ValidateCreate ¶
func (r *EnvironmentEc2) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*EnvironmentEc2) ValidateDelete ¶
func (r *EnvironmentEc2) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*EnvironmentEc2) ValidateUpdate ¶
func (r *EnvironmentEc2) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type EnvironmentEc2List ¶
type EnvironmentEc2List struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of EnvironmentEc2 CRD objects Items []EnvironmentEc2 `json:"items,omitempty"` }
EnvironmentEc2List is a list of EnvironmentEc2s
func (*EnvironmentEc2List) DeepCopy ¶
func (in *EnvironmentEc2List) DeepCopy() *EnvironmentEc2List
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvironmentEc2List.
func (*EnvironmentEc2List) DeepCopyInto ¶
func (in *EnvironmentEc2List) DeepCopyInto(out *EnvironmentEc2List)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*EnvironmentEc2List) DeepCopyObject ¶
func (in *EnvironmentEc2List) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type EnvironmentEc2Spec ¶
type EnvironmentEc2Spec struct { State *EnvironmentEc2SpecResource `json:"state,omitempty" tf:"-"` Resource EnvironmentEc2SpecResource `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 (*EnvironmentEc2Spec) DeepCopy ¶
func (in *EnvironmentEc2Spec) DeepCopy() *EnvironmentEc2Spec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvironmentEc2Spec.
func (*EnvironmentEc2Spec) DeepCopyInto ¶
func (in *EnvironmentEc2Spec) DeepCopyInto(out *EnvironmentEc2Spec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EnvironmentEc2SpecResource ¶
type EnvironmentEc2SpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` // +optional Arn *string `json:"arn,omitempty" tf:"arn"` // +optional AutomaticStopTimeMinutes *int64 `json:"automaticStopTimeMinutes,omitempty" tf:"automatic_stop_time_minutes"` // +optional Description *string `json:"description,omitempty" tf:"description"` InstanceType *string `json:"instanceType" tf:"instance_type"` Name *string `json:"name" tf:"name"` // +optional OwnerArn *string `json:"ownerArn,omitempty" tf:"owner_arn"` // +optional SubnetID *string `json:"subnetID,omitempty" tf:"subnet_id"` // +optional Tags *map[string]string `json:"tags,omitempty" tf:"tags"` // +optional TagsAll *map[string]string `json:"tagsAll,omitempty" tf:"tags_all"` // +optional Type *string `json:"type,omitempty" tf:"type"` }
func (*EnvironmentEc2SpecResource) DeepCopy ¶
func (in *EnvironmentEc2SpecResource) DeepCopy() *EnvironmentEc2SpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvironmentEc2SpecResource.
func (*EnvironmentEc2SpecResource) DeepCopyInto ¶
func (in *EnvironmentEc2SpecResource) DeepCopyInto(out *EnvironmentEc2SpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EnvironmentEc2Status ¶
type EnvironmentEc2Status 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 (*EnvironmentEc2Status) DeepCopy ¶
func (in *EnvironmentEc2Status) DeepCopy() *EnvironmentEc2Status
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvironmentEc2Status.
func (*EnvironmentEc2Status) DeepCopyInto ¶
func (in *EnvironmentEc2Status) DeepCopyInto(out *EnvironmentEc2Status)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EnvironmentMembership ¶ added in v0.5.0
type EnvironmentMembership struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec EnvironmentMembershipSpec `json:"spec,omitempty"` Status EnvironmentMembershipStatus `json:"status,omitempty"` }
func (*EnvironmentMembership) DeepCopy ¶ added in v0.5.0
func (in *EnvironmentMembership) DeepCopy() *EnvironmentMembership
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvironmentMembership.
func (*EnvironmentMembership) DeepCopyInto ¶ added in v0.5.0
func (in *EnvironmentMembership) DeepCopyInto(out *EnvironmentMembership)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*EnvironmentMembership) DeepCopyObject ¶ added in v0.5.0
func (in *EnvironmentMembership) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*EnvironmentMembership) SetupWebhookWithManager ¶ added in v0.5.0
func (r *EnvironmentMembership) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*EnvironmentMembership) ValidateCreate ¶ added in v0.5.0
func (r *EnvironmentMembership) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*EnvironmentMembership) ValidateDelete ¶ added in v0.5.0
func (r *EnvironmentMembership) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*EnvironmentMembership) ValidateUpdate ¶ added in v0.5.0
func (r *EnvironmentMembership) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type EnvironmentMembershipList ¶ added in v0.5.0
type EnvironmentMembershipList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of EnvironmentMembership CRD objects Items []EnvironmentMembership `json:"items,omitempty"` }
EnvironmentMembershipList is a list of EnvironmentMemberships
func (*EnvironmentMembershipList) DeepCopy ¶ added in v0.5.0
func (in *EnvironmentMembershipList) DeepCopy() *EnvironmentMembershipList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvironmentMembershipList.
func (*EnvironmentMembershipList) DeepCopyInto ¶ added in v0.5.0
func (in *EnvironmentMembershipList) DeepCopyInto(out *EnvironmentMembershipList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*EnvironmentMembershipList) DeepCopyObject ¶ added in v0.5.0
func (in *EnvironmentMembershipList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type EnvironmentMembershipSpec ¶ added in v0.5.0
type EnvironmentMembershipSpec struct { State *EnvironmentMembershipSpecResource `json:"state,omitempty" tf:"-"` Resource EnvironmentMembershipSpecResource `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 (*EnvironmentMembershipSpec) DeepCopy ¶ added in v0.5.0
func (in *EnvironmentMembershipSpec) DeepCopy() *EnvironmentMembershipSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvironmentMembershipSpec.
func (*EnvironmentMembershipSpec) DeepCopyInto ¶ added in v0.5.0
func (in *EnvironmentMembershipSpec) DeepCopyInto(out *EnvironmentMembershipSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EnvironmentMembershipSpecResource ¶ added in v0.5.0
type EnvironmentMembershipSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` EnvironmentID *string `json:"environmentID" tf:"environment_id"` Permissions *string `json:"permissions" tf:"permissions"` UserArn *string `json:"userArn" tf:"user_arn"` // +optional UserID *string `json:"userID,omitempty" tf:"user_id"` }
func (*EnvironmentMembershipSpecResource) DeepCopy ¶ added in v0.5.0
func (in *EnvironmentMembershipSpecResource) DeepCopy() *EnvironmentMembershipSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvironmentMembershipSpecResource.
func (*EnvironmentMembershipSpecResource) DeepCopyInto ¶ added in v0.5.0
func (in *EnvironmentMembershipSpecResource) DeepCopyInto(out *EnvironmentMembershipSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EnvironmentMembershipStatus ¶ added in v0.5.0
type EnvironmentMembershipStatus 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 (*EnvironmentMembershipStatus) DeepCopy ¶ added in v0.5.0
func (in *EnvironmentMembershipStatus) DeepCopy() *EnvironmentMembershipStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvironmentMembershipStatus.
func (*EnvironmentMembershipStatus) DeepCopyInto ¶ added in v0.5.0
func (in *EnvironmentMembershipStatus) DeepCopyInto(out *EnvironmentMembershipStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.