Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=category_value.nutanix.jet.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type Value
- func (in *Value) DeepCopy() *Value
- func (in *Value) DeepCopyInto(out *Value)
- func (in *Value) DeepCopyObject() runtime.Object
- func (mg *Value) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Value) GetConnectionDetailsMapping() map[string]string
- func (mg *Value) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Value) GetID() string
- func (tr *Value) GetObservation() (map[string]interface{}, error)
- func (tr *Value) GetParameters() (map[string]interface{}, error)
- func (mg *Value) GetProviderConfigReference() *xpv1.Reference
- func (mg *Value) GetProviderReference() *xpv1.Reference
- func (mg *Value) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Value) GetTerraformResourceType() string
- func (tr *Value) GetTerraformSchemaVersion() int
- func (mg *Value) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Value) LateInitialize(attrs []byte) (bool, error)
- func (mg *Value) SetConditions(c ...xpv1.Condition)
- func (mg *Value) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *Value) SetObservation(obs map[string]interface{}) error
- func (tr *Value) SetParameters(params map[string]interface{}) error
- func (mg *Value) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Value) SetProviderReference(r *xpv1.Reference)
- func (mg *Value) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Value) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ValueList
- type ValueObservation
- type ValueParameters
- type ValueSpec
- type ValueStatus
Constants ¶
const ( CRDGroup = "category_value.nutanix.jet.crossplane.io" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
var ( // CRDGroupVersion is the API Group Version used to register the objects CRDGroupVersion = schema.GroupVersion{Group: CRDGroup, Version: CRDVersion} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: CRDGroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
var ( Value_Kind = "Value" Value_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Value_Kind}.String() Value_KindAPIVersion = Value_Kind + "." + CRDGroupVersion.String() Value_GroupVersionKind = CRDGroupVersion.WithKind(Value_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type Value ¶
type Value struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ValueSpec `json:"spec"` Status ValueStatus `json:"status,omitempty"` }
Value is the Schema for the Values API +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,nutanixjet}
func (*Value) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Value.
func (*Value) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Value) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Value) GetCondition ¶
func (mg *Value) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Value.
func (*Value) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this Value
func (*Value) GetDeletionPolicy ¶
func (mg *Value) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Value.
func (*Value) GetObservation ¶
GetObservation of this Value
func (*Value) GetParameters ¶
GetParameters of this Value
func (*Value) GetProviderConfigReference ¶
GetProviderConfigReference of this Value.
func (*Value) GetProviderReference ¶
GetProviderReference of this Value. Deprecated: Use GetProviderConfigReference.
func (*Value) GetPublishConnectionDetailsTo ¶
func (mg *Value) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Value.
func (*Value) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Value
func (*Value) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Value) GetWriteConnectionSecretToReference ¶
func (mg *Value) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Value.
func (*Value) LateInitialize ¶
LateInitialize this Value using its observed tfState. returns True if there are any spec changes for the resource.
func (*Value) SetConditions ¶
SetConditions of this Value.
func (*Value) SetDeletionPolicy ¶
func (mg *Value) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Value.
func (*Value) SetObservation ¶
SetObservation for this Value
func (*Value) SetParameters ¶
SetParameters for this Value
func (*Value) SetProviderConfigReference ¶
SetProviderConfigReference of this Value.
func (*Value) SetProviderReference ¶
SetProviderReference of this Value. Deprecated: Use SetProviderConfigReference.
func (*Value) SetPublishConnectionDetailsTo ¶
func (mg *Value) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Value.
func (*Value) SetWriteConnectionSecretToReference ¶
func (mg *Value) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Value.
type ValueList ¶
type ValueList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Value `json:"items"` }
ValueList contains a list of Values
func (*ValueList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ValueList.
func (*ValueList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ValueList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ValueObservation ¶
type ValueObservation struct { APIVersion *string `json:"apiVersion,omitempty" tf:"api_version,omitempty"` ID *string `json:"id,omitempty" tf:"id,omitempty"` SystemDefined *bool `json:"systemDefined,omitempty" tf:"system_defined,omitempty"` }
func (*ValueObservation) DeepCopy ¶
func (in *ValueObservation) DeepCopy() *ValueObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ValueObservation.
func (*ValueObservation) DeepCopyInto ¶
func (in *ValueObservation) DeepCopyInto(out *ValueObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ValueParameters ¶
type ValueParameters struct { // +kubebuilder:validation:Optional Description *string `json:"description,omitempty" tf:"description,omitempty"` // +kubebuilder:validation:Required Name *string `json:"name" tf:"name,omitempty"` // +kubebuilder:validation:Required Value *string `json:"value" tf:"value,omitempty"` }
func (*ValueParameters) DeepCopy ¶
func (in *ValueParameters) DeepCopy() *ValueParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ValueParameters.
func (*ValueParameters) DeepCopyInto ¶
func (in *ValueParameters) DeepCopyInto(out *ValueParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ValueSpec ¶
type ValueSpec struct { v1.ResourceSpec `json:",inline"` ForProvider ValueParameters `json:"forProvider"` }
ValueSpec defines the desired state of Value
func (*ValueSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ValueSpec.
func (*ValueSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ValueStatus ¶
type ValueStatus struct { v1.ResourceStatus `json:",inline"` AtProvider ValueObservation `json:"atProvider,omitempty"` }
ValueStatus defines the observed state of Value.
func (*ValueStatus) DeepCopy ¶
func (in *ValueStatus) DeepCopy() *ValueStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ValueStatus.
func (*ValueStatus) DeepCopyInto ¶
func (in *ValueStatus) DeepCopyInto(out *ValueStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.