Documentation ¶
Overview ¶
Package v1alpha1 contains API types that extend the Crossplane API. v1alpha1 composition revision schema is identical to v1beta1 +kubebuilder:object:generate=true +groupName=apiextensions.crossplane.io +versionName=v1alpha1
Index ¶
Constants ¶
const ( Group = "apiextensions.crossplane.io" Version = "v1alpha1" )
Package type metadata.
Variables ¶
var ( // SchemeGroupVersion is group version used to register these objects SchemeGroupVersion = schema.GroupVersion{Group: Group, Version: Version} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: SchemeGroupVersion} // AddToScheme adds all registered types to scheme AddToScheme = SchemeBuilder.AddToScheme )
var ( EnvironmentConfigKind = reflect.TypeOf(EnvironmentConfig{}).Name() EnvironmentConfigGroupKind = schema.GroupKind{Group: Group, Kind: EnvironmentConfigKind}.String() EnvironmentConfigKindAPIVersion = EnvironmentConfigKind + "." + SchemeGroupVersion.String() EnvironmentConfigGroupVersionKind = SchemeGroupVersion.WithKind(EnvironmentConfigKind) )
Composition type metadata.
Functions ¶
This section is empty.
Types ¶
type EnvironmentConfig ¶ added in v1.11.0
type EnvironmentConfig struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` // The data of this EnvironmentConfig. // This may contain any kind of structure that can be serialized into JSON. // +optional Data map[string]extv1.JSON `json:"data,omitempty"` }
A EnvironmentConfig contains a set of arbitrary, unstructured values. +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:resource:scope=Cluster,categories=crossplane,shortName=envcfg
func (*EnvironmentConfig) DeepCopy ¶ added in v1.11.0
func (in *EnvironmentConfig) DeepCopy() *EnvironmentConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvironmentConfig.
func (*EnvironmentConfig) DeepCopyInto ¶ added in v1.11.0
func (in *EnvironmentConfig) DeepCopyInto(out *EnvironmentConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*EnvironmentConfig) DeepCopyObject ¶ added in v1.11.0
func (in *EnvironmentConfig) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type EnvironmentConfigList ¶ added in v1.11.0
type EnvironmentConfigList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []EnvironmentConfig `json:"items"` }
EnvironmentConfigList contains a list of EnvironmentConfigs.
func (*EnvironmentConfigList) DeepCopy ¶ added in v1.11.0
func (in *EnvironmentConfigList) DeepCopy() *EnvironmentConfigList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvironmentConfigList.
func (*EnvironmentConfigList) DeepCopyInto ¶ added in v1.11.0
func (in *EnvironmentConfigList) DeepCopyInto(out *EnvironmentConfigList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*EnvironmentConfigList) DeepCopyObject ¶ added in v1.11.0
func (in *EnvironmentConfigList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.