Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=dedicatednashapartitionsnapshot.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type NashaPartitionSnapshot
- func (in *NashaPartitionSnapshot) DeepCopy() *NashaPartitionSnapshot
- func (in *NashaPartitionSnapshot) DeepCopyInto(out *NashaPartitionSnapshot)
- func (in *NashaPartitionSnapshot) DeepCopyObject() runtime.Object
- func (mg *NashaPartitionSnapshot) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *NashaPartitionSnapshot) GetConnectionDetailsMapping() map[string]string
- func (mg *NashaPartitionSnapshot) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *NashaPartitionSnapshot) GetID() string
- func (tr *NashaPartitionSnapshot) GetInitParameters() (map[string]any, error)
- func (mg *NashaPartitionSnapshot) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *NashaPartitionSnapshot) GetObservation() (map[string]any, error)
- func (tr *NashaPartitionSnapshot) GetParameters() (map[string]any, error)
- func (mg *NashaPartitionSnapshot) GetProviderConfigReference() *xpv1.Reference
- func (mg *NashaPartitionSnapshot) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *NashaPartitionSnapshot) GetTerraformResourceType() string
- func (tr *NashaPartitionSnapshot) GetTerraformSchemaVersion() int
- func (mg *NashaPartitionSnapshot) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *NashaPartitionSnapshot) LateInitialize(attrs []byte) (bool, error)
- func (mg *NashaPartitionSnapshot) SetConditions(c ...xpv1.Condition)
- func (mg *NashaPartitionSnapshot) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *NashaPartitionSnapshot) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *NashaPartitionSnapshot) SetObservation(obs map[string]any) error
- func (tr *NashaPartitionSnapshot) SetParameters(params map[string]any) error
- func (mg *NashaPartitionSnapshot) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *NashaPartitionSnapshot) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *NashaPartitionSnapshot) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type NashaPartitionSnapshotInitParameters
- type NashaPartitionSnapshotList
- type NashaPartitionSnapshotObservation
- type NashaPartitionSnapshotParameters
- type NashaPartitionSnapshotSpec
- type NashaPartitionSnapshotStatus
Constants ¶
const ( CRDGroup = "dedicatednashapartitionsnapshot.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 ( NashaPartitionSnapshot_Kind = "NashaPartitionSnapshot" NashaPartitionSnapshot_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: NashaPartitionSnapshot_Kind}.String() NashaPartitionSnapshot_KindAPIVersion = NashaPartitionSnapshot_Kind + "." + CRDGroupVersion.String() NashaPartitionSnapshot_GroupVersionKind = CRDGroupVersion.WithKind(NashaPartitionSnapshot_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type NashaPartitionSnapshot ¶
type NashaPartitionSnapshot struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` // +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.partitionName) || (has(self.initProvider) && has(self.initProvider.partitionName))",message="spec.forProvider.partitionName is a required parameter" // +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.serviceName) || (has(self.initProvider) && has(self.initProvider.serviceName))",message="spec.forProvider.serviceName is a required parameter" // +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.type) || (has(self.initProvider) && has(self.initProvider.type))",message="spec.forProvider.type is a required parameter" Spec NashaPartitionSnapshotSpec `json:"spec"` Status NashaPartitionSnapshotStatus `json:"status,omitempty"` }
NashaPartitionSnapshot is the Schema for the NashaPartitionSnapshots API. <no value> +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,ovh}
func (*NashaPartitionSnapshot) DeepCopy ¶
func (in *NashaPartitionSnapshot) DeepCopy() *NashaPartitionSnapshot
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NashaPartitionSnapshot.
func (*NashaPartitionSnapshot) DeepCopyInto ¶
func (in *NashaPartitionSnapshot) DeepCopyInto(out *NashaPartitionSnapshot)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*NashaPartitionSnapshot) DeepCopyObject ¶
func (in *NashaPartitionSnapshot) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*NashaPartitionSnapshot) GetCondition ¶
func (mg *NashaPartitionSnapshot) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this NashaPartitionSnapshot.
func (*NashaPartitionSnapshot) GetConnectionDetailsMapping ¶
func (tr *NashaPartitionSnapshot) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this NashaPartitionSnapshot
func (*NashaPartitionSnapshot) GetDeletionPolicy ¶
func (mg *NashaPartitionSnapshot) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this NashaPartitionSnapshot.
func (*NashaPartitionSnapshot) GetID ¶
func (tr *NashaPartitionSnapshot) GetID() string
GetID returns ID of underlying Terraform resource of this NashaPartitionSnapshot
func (*NashaPartitionSnapshot) GetInitParameters ¶
func (tr *NashaPartitionSnapshot) GetInitParameters() (map[string]any, error)
GetInitParameters of this NashaPartitionSnapshot
func (*NashaPartitionSnapshot) GetManagementPolicies ¶
func (mg *NashaPartitionSnapshot) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this NashaPartitionSnapshot.
func (*NashaPartitionSnapshot) GetObservation ¶
func (tr *NashaPartitionSnapshot) GetObservation() (map[string]any, error)
GetObservation of this NashaPartitionSnapshot
func (*NashaPartitionSnapshot) GetParameters ¶
func (tr *NashaPartitionSnapshot) GetParameters() (map[string]any, error)
GetParameters of this NashaPartitionSnapshot
func (*NashaPartitionSnapshot) GetProviderConfigReference ¶
func (mg *NashaPartitionSnapshot) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this NashaPartitionSnapshot.
func (*NashaPartitionSnapshot) GetPublishConnectionDetailsTo ¶
func (mg *NashaPartitionSnapshot) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this NashaPartitionSnapshot.
func (*NashaPartitionSnapshot) GetTerraformResourceType ¶
func (mg *NashaPartitionSnapshot) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this NashaPartitionSnapshot
func (*NashaPartitionSnapshot) GetTerraformSchemaVersion ¶
func (tr *NashaPartitionSnapshot) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*NashaPartitionSnapshot) GetWriteConnectionSecretToReference ¶
func (mg *NashaPartitionSnapshot) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this NashaPartitionSnapshot.
func (*NashaPartitionSnapshot) LateInitialize ¶
func (tr *NashaPartitionSnapshot) LateInitialize(attrs []byte) (bool, error)
LateInitialize this NashaPartitionSnapshot using its observed tfState. returns True if there are any spec changes for the resource.
func (*NashaPartitionSnapshot) SetConditions ¶
func (mg *NashaPartitionSnapshot) SetConditions(c ...xpv1.Condition)
SetConditions of this NashaPartitionSnapshot.
func (*NashaPartitionSnapshot) SetDeletionPolicy ¶
func (mg *NashaPartitionSnapshot) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this NashaPartitionSnapshot.
func (*NashaPartitionSnapshot) SetManagementPolicies ¶
func (mg *NashaPartitionSnapshot) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies of this NashaPartitionSnapshot.
func (*NashaPartitionSnapshot) SetObservation ¶
func (tr *NashaPartitionSnapshot) SetObservation(obs map[string]any) error
SetObservation for this NashaPartitionSnapshot
func (*NashaPartitionSnapshot) SetParameters ¶
func (tr *NashaPartitionSnapshot) SetParameters(params map[string]any) error
SetParameters for this NashaPartitionSnapshot
func (*NashaPartitionSnapshot) SetProviderConfigReference ¶
func (mg *NashaPartitionSnapshot) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this NashaPartitionSnapshot.
func (*NashaPartitionSnapshot) SetPublishConnectionDetailsTo ¶
func (mg *NashaPartitionSnapshot) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this NashaPartitionSnapshot.
func (*NashaPartitionSnapshot) SetWriteConnectionSecretToReference ¶
func (mg *NashaPartitionSnapshot) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this NashaPartitionSnapshot.
type NashaPartitionSnapshotInitParameters ¶
type NashaPartitionSnapshotInitParameters struct { PartitionName *string `json:"partitionName,omitempty" tf:"partition_name,omitempty"` ServiceName *string `json:"serviceName,omitempty" tf:"service_name,omitempty"` Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*NashaPartitionSnapshotInitParameters) DeepCopy ¶
func (in *NashaPartitionSnapshotInitParameters) DeepCopy() *NashaPartitionSnapshotInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NashaPartitionSnapshotInitParameters.
func (*NashaPartitionSnapshotInitParameters) DeepCopyInto ¶
func (in *NashaPartitionSnapshotInitParameters) DeepCopyInto(out *NashaPartitionSnapshotInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NashaPartitionSnapshotList ¶
type NashaPartitionSnapshotList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []NashaPartitionSnapshot `json:"items"` }
NashaPartitionSnapshotList contains a list of NashaPartitionSnapshots
func (*NashaPartitionSnapshotList) DeepCopy ¶
func (in *NashaPartitionSnapshotList) DeepCopy() *NashaPartitionSnapshotList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NashaPartitionSnapshotList.
func (*NashaPartitionSnapshotList) DeepCopyInto ¶
func (in *NashaPartitionSnapshotList) DeepCopyInto(out *NashaPartitionSnapshotList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*NashaPartitionSnapshotList) DeepCopyObject ¶
func (in *NashaPartitionSnapshotList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*NashaPartitionSnapshotList) GetItems ¶
func (l *NashaPartitionSnapshotList) GetItems() []resource.Managed
GetItems of this NashaPartitionSnapshotList.
type NashaPartitionSnapshotObservation ¶
type NashaPartitionSnapshotObservation struct { ID *string `json:"id,omitempty" tf:"id,omitempty"` PartitionName *string `json:"partitionName,omitempty" tf:"partition_name,omitempty"` ServiceName *string `json:"serviceName,omitempty" tf:"service_name,omitempty"` Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*NashaPartitionSnapshotObservation) DeepCopy ¶
func (in *NashaPartitionSnapshotObservation) DeepCopy() *NashaPartitionSnapshotObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NashaPartitionSnapshotObservation.
func (*NashaPartitionSnapshotObservation) DeepCopyInto ¶
func (in *NashaPartitionSnapshotObservation) DeepCopyInto(out *NashaPartitionSnapshotObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NashaPartitionSnapshotParameters ¶
type NashaPartitionSnapshotParameters struct { // +kubebuilder:validation:Optional PartitionName *string `json:"partitionName,omitempty" tf:"partition_name,omitempty"` // +kubebuilder:validation:Optional ServiceName *string `json:"serviceName,omitempty" tf:"service_name,omitempty"` // +kubebuilder:validation:Optional Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*NashaPartitionSnapshotParameters) DeepCopy ¶
func (in *NashaPartitionSnapshotParameters) DeepCopy() *NashaPartitionSnapshotParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NashaPartitionSnapshotParameters.
func (*NashaPartitionSnapshotParameters) DeepCopyInto ¶
func (in *NashaPartitionSnapshotParameters) DeepCopyInto(out *NashaPartitionSnapshotParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NashaPartitionSnapshotSpec ¶
type NashaPartitionSnapshotSpec struct { v1.ResourceSpec `json:",inline"` ForProvider NashaPartitionSnapshotParameters `json:"forProvider"` // THIS IS A BETA FIELD. It will be honored // unless the Management Policies feature flag is disabled. // InitProvider holds the same fields as ForProvider, with the exception // of Identifier and other resource reference fields. The fields that are // in InitProvider are merged into ForProvider when the resource is created. // The same fields are also added to the terraform ignore_changes hook, to // avoid updating them after creation. This is useful for fields that are // required on creation, but we do not desire to update them after creation, // for example because of an external controller is managing them, like an // autoscaler. InitProvider NashaPartitionSnapshotInitParameters `json:"initProvider,omitempty"` }
NashaPartitionSnapshotSpec defines the desired state of NashaPartitionSnapshot
func (*NashaPartitionSnapshotSpec) DeepCopy ¶
func (in *NashaPartitionSnapshotSpec) DeepCopy() *NashaPartitionSnapshotSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NashaPartitionSnapshotSpec.
func (*NashaPartitionSnapshotSpec) DeepCopyInto ¶
func (in *NashaPartitionSnapshotSpec) DeepCopyInto(out *NashaPartitionSnapshotSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NashaPartitionSnapshotStatus ¶
type NashaPartitionSnapshotStatus struct { v1.ResourceStatus `json:",inline"` AtProvider NashaPartitionSnapshotObservation `json:"atProvider,omitempty"` }
NashaPartitionSnapshotStatus defines the observed state of NashaPartitionSnapshot.
func (*NashaPartitionSnapshotStatus) DeepCopy ¶
func (in *NashaPartitionSnapshotStatus) DeepCopy() *NashaPartitionSnapshotStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NashaPartitionSnapshotStatus.
func (*NashaPartitionSnapshotStatus) DeepCopyInto ¶
func (in *NashaPartitionSnapshotStatus) DeepCopyInto(out *NashaPartitionSnapshotStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.