Documentation ¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the aws v1alpha1 API group +kubebuilder:object:generate=true +groupName=aws.furio.me
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "aws.furio.me", Version: "v1alpha1"} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
This section is empty.
Types ¶
type IAMRecycler ¶
type IAMRecycler struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec IAMRecyclerSpec `json:"spec,omitempty"` Status IAMRecyclerStatus `json:"status,omitempty"` }
IAMRecycler is the Schema for the iamrecyclers API
func (*IAMRecycler) DeepCopy ¶
func (in *IAMRecycler) DeepCopy() *IAMRecycler
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IAMRecycler.
func (*IAMRecycler) DeepCopyInto ¶
func (in *IAMRecycler) DeepCopyInto(out *IAMRecycler)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*IAMRecycler) DeepCopyObject ¶
func (in *IAMRecycler) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type IAMRecyclerList ¶
type IAMRecyclerList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []IAMRecycler `json:"items"` }
IAMRecyclerList contains a list of IAMRecycler
func (*IAMRecyclerList) DeepCopy ¶
func (in *IAMRecyclerList) DeepCopy() *IAMRecyclerList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IAMRecyclerList.
func (*IAMRecyclerList) DeepCopyInto ¶
func (in *IAMRecyclerList) DeepCopyInto(out *IAMRecyclerList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*IAMRecyclerList) DeepCopyObject ¶
func (in *IAMRecyclerList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type IAMRecyclerSpec ¶
type IAMRecyclerSpec struct { // Secret object name in the same namespace //+kubebuilder:validation:MinLength=1 Secret string `json:"secret"` // Name of the data in the secret that contains the ACCESS KEY //+kubebuilder:validation:MinLength=1 DataKeyAccesskey string `json:"datakeyaccesskey"` // Name of the data in the secret that contains the SECRET KEY //+kubebuilder:validation:MinLength=1 DataKeySecretkey string `json:"datakeysecretkey"` // IAM user on the AWS account from which generate the key //+kubebuilder:validation:MinLength=1 IAMUser string `json:"iamuser"` // Recycle time in minutes //+kubebuilder:validation:Minimum=1 Recycle int `json:"recycle"` }
IAMRecyclerSpec defines the desired state of IAMRecycler
func (*IAMRecyclerSpec) DeepCopy ¶
func (in *IAMRecyclerSpec) DeepCopy() *IAMRecyclerSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IAMRecyclerSpec.
func (*IAMRecyclerSpec) DeepCopyInto ¶
func (in *IAMRecyclerSpec) DeepCopyInto(out *IAMRecyclerSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IAMRecyclerStatus ¶
type IAMRecyclerStatus struct { // +optional LastRecycleTime *metav1.Time `json:"lastRecycleTime,omitempty"` }
IAMRecyclerStatus defines the observed state of IAMRecycler
func (*IAMRecyclerStatus) DeepCopy ¶
func (in *IAMRecyclerStatus) DeepCopy() *IAMRecyclerStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IAMRecyclerStatus.
func (*IAMRecyclerStatus) DeepCopyInto ¶
func (in *IAMRecyclerStatus) DeepCopyInto(out *IAMRecyclerStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.