Documentation ¶
Overview ¶
Package v1alpha1 contains the v1alpha1 group Sample resources of the test provider. +kubebuilder:object:generate=true +groupName=testgroup.test.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type TestType
- func (in *TestType) DeepCopy() *TestType
- func (in *TestType) DeepCopyInto(out *TestType)
- func (in *TestType) DeepCopyObject() runtime.Object
- func (mg *TestType) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (mg *TestType) GetDeletionPolicy() xpv1.DeletionPolicy
- func (mg *TestType) GetManagementPolicy() xpv1.ManagementPolicy
- func (mg *TestType) GetProviderConfigReference() *xpv1.Reference
- func (mg *TestType) GetProviderReference() *xpv1.Reference
- func (mg *TestType) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *TestType) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (mg *TestType) SetConditions(c ...xpv1.Condition)
- func (mg *TestType) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *TestType) SetManagementPolicy(r xpv1.ManagementPolicy)
- func (mg *TestType) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *TestType) SetProviderReference(r *xpv1.Reference)
- func (mg *TestType) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *TestType) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type TestTypeList
- type TestTypeObservation
- type TestTypeParameters
- type TestTypeSpec
- type TestTypeStatus
Constants ¶
const ( Group = "testgroup.test.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} )
var ( TestTypeKind = reflect.TypeOf(TestType{}).Name() TestTypeGroupKind = schema.GroupKind{Group: Group, Kind: TestTypeKind}.String() TestTypeKindAPIVersion = TestTypeKind + "." + SchemeGroupVersion.String() TestTypeGroupVersionKind = SchemeGroupVersion.WithKind(TestTypeKind) )
TestType type metadata.
Functions ¶
This section is empty.
Types ¶
type TestType ¶
type TestType struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec TestTypeSpec `json:"spec"` Status TestTypeStatus `json:"status,omitempty"` }
A TestType is an example API type. +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,test}
func (*TestType) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TestType.
func (*TestType) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*TestType) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*TestType) GetCondition ¶
func (mg *TestType) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this TestType.
func (*TestType) GetDeletionPolicy ¶
func (mg *TestType) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this TestType.
func (*TestType) GetManagementPolicy ¶
func (mg *TestType) GetManagementPolicy() xpv1.ManagementPolicy
GetManagementPolicy of this TestType.
func (*TestType) GetProviderConfigReference ¶
GetProviderConfigReference of this TestType.
func (*TestType) GetProviderReference ¶
GetProviderReference of this TestType. Deprecated: Use GetProviderConfigReference.
func (*TestType) GetPublishConnectionDetailsTo ¶
func (mg *TestType) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this TestType.
func (*TestType) GetWriteConnectionSecretToReference ¶
func (mg *TestType) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this TestType.
func (*TestType) SetConditions ¶
SetConditions of this TestType.
func (*TestType) SetDeletionPolicy ¶
func (mg *TestType) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this TestType.
func (*TestType) SetManagementPolicy ¶
func (mg *TestType) SetManagementPolicy(r xpv1.ManagementPolicy)
SetManagementPolicy of this TestType.
func (*TestType) SetProviderConfigReference ¶
SetProviderConfigReference of this TestType.
func (*TestType) SetProviderReference ¶
SetProviderReference of this TestType. Deprecated: Use SetProviderConfigReference.
func (*TestType) SetPublishConnectionDetailsTo ¶
func (mg *TestType) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this TestType.
func (*TestType) SetWriteConnectionSecretToReference ¶
func (mg *TestType) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this TestType.
type TestTypeList ¶
type TestTypeList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []TestType `json:"items"` }
TestTypeList contains a list of TestType
func (*TestTypeList) DeepCopy ¶
func (in *TestTypeList) DeepCopy() *TestTypeList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TestTypeList.
func (*TestTypeList) DeepCopyInto ¶
func (in *TestTypeList) DeepCopyInto(out *TestTypeList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*TestTypeList) DeepCopyObject ¶
func (in *TestTypeList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*TestTypeList) GetItems ¶
func (l *TestTypeList) GetItems() []resource.Managed
GetItems of this TestTypeList.
type TestTypeObservation ¶
type TestTypeObservation struct {
ObservableField string `json:"observableField,omitempty"`
}
TestTypeObservation are the observable fields of a TestType.
func (*TestTypeObservation) DeepCopy ¶
func (in *TestTypeObservation) DeepCopy() *TestTypeObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TestTypeObservation.
func (*TestTypeObservation) DeepCopyInto ¶
func (in *TestTypeObservation) DeepCopyInto(out *TestTypeObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TestTypeParameters ¶
type TestTypeParameters struct { ConfigurableField string `json:"configurableField"` ApiEndPoint string `json:"apiEndPoint"` PolicyId string `json:"policyId"` SslPath string `json:"sslPath"` }
TestTypeParameters are the configurable fields of a TestType.
func (*TestTypeParameters) DeepCopy ¶
func (in *TestTypeParameters) DeepCopy() *TestTypeParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TestTypeParameters.
func (*TestTypeParameters) DeepCopyInto ¶
func (in *TestTypeParameters) DeepCopyInto(out *TestTypeParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TestTypeSpec ¶
type TestTypeSpec struct { xpv1.ResourceSpec `json:",inline"` ForProvider TestTypeParameters `json:"forProvider"` }
A TestTypeSpec defines the desired state of a TestType.
func (*TestTypeSpec) DeepCopy ¶
func (in *TestTypeSpec) DeepCopy() *TestTypeSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TestTypeSpec.
func (*TestTypeSpec) DeepCopyInto ¶
func (in *TestTypeSpec) DeepCopyInto(out *TestTypeSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TestTypeStatus ¶
type TestTypeStatus struct { xpv1.ResourceStatus `json:",inline"` AtProvider TestTypeObservation `json:"atProvider,omitempty"` }
A TestTypeStatus represents the observed state of a TestType.
func (*TestTypeStatus) DeepCopy ¶
func (in *TestTypeStatus) DeepCopy() *TestTypeStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TestTypeStatus.
func (*TestTypeStatus) DeepCopyInto ¶
func (in *TestTypeStatus) DeepCopyInto(out *TestTypeStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.