Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "kweb.dev", Version: "v1alpha1"} KindAWSAuth = KindInfo{ Resource: GroupVersion.WithResource("awsauth"), // contains filtered or unexported fields } AllKinds = KindInfoList{KindAWSAuth} )
Functions ¶
This section is empty.
Types ¶
type AWSAuth ¶
type AWSAuth struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec AWSAuthSpec `json:"spec,omitempty"` }
func (*AWSAuth) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuth.
func (*AWSAuth) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AWSAuth) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type AWSAuthList ¶
type AWSAuthList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []AWSAuth `json:"items"` }
AWSAuthList is a list of AWSAuth objects.
func (*AWSAuthList) DeepCopy ¶
func (in *AWSAuthList) DeepCopy() *AWSAuthList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuthList.
func (*AWSAuthList) DeepCopyInto ¶
func (in *AWSAuthList) DeepCopyInto(out *AWSAuthList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AWSAuthList) DeepCopyObject ¶
func (in *AWSAuthList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type AWSAuthSpec ¶
type AWSAuthSpec struct {
Role string `json:"role,omitempty"`
}
func (*AWSAuthSpec) DeepCopy ¶
func (in *AWSAuthSpec) DeepCopy() *AWSAuthSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuthSpec.
func (*AWSAuthSpec) DeepCopyInto ¶
func (in *AWSAuthSpec) DeepCopyInto(out *AWSAuthSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type KindInfo ¶
type KindInfo struct { Resource schema.GroupVersionResource // contains filtered or unexported fields }
KindInfo holds type meta-information
func (*KindInfo) GroupResource ¶
func (k *KindInfo) GroupResource() schema.GroupResource
GroupResource returns the GroupResource for the kind
type KindInfoList ¶
type KindInfoList []KindInfo
func (KindInfoList) AddToScheme ¶
func (l KindInfoList) AddToScheme(scheme *runtime.Scheme) error