Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=ip.infoblox-nios.upbound.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type Allocation
- func (in *Allocation) DeepCopy() *Allocation
- func (in *Allocation) DeepCopyInto(out *Allocation)
- func (in *Allocation) DeepCopyObject() runtime.Object
- func (mg *Allocation) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Allocation) GetConnectionDetailsMapping() map[string]string
- func (mg *Allocation) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Allocation) GetID() string
- func (mg *Allocation) GetManagementPolicy() xpv1.ManagementPolicy
- func (tr *Allocation) GetObservation() (map[string]any, error)
- func (tr *Allocation) GetParameters() (map[string]any, error)
- func (mg *Allocation) GetProviderConfigReference() *xpv1.Reference
- func (mg *Allocation) GetProviderReference() *xpv1.Reference
- func (mg *Allocation) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Allocation) GetTerraformResourceType() string
- func (tr *Allocation) GetTerraformSchemaVersion() int
- func (mg *Allocation) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Allocation) LateInitialize(attrs []byte) (bool, error)
- func (mg *Allocation) SetConditions(c ...xpv1.Condition)
- func (mg *Allocation) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *Allocation) SetManagementPolicy(r xpv1.ManagementPolicy)
- func (tr *Allocation) SetObservation(obs map[string]any) error
- func (tr *Allocation) SetParameters(params map[string]any) error
- func (mg *Allocation) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Allocation) SetProviderReference(r *xpv1.Reference)
- func (mg *Allocation) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Allocation) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type AllocationList
- type AllocationObservation
- type AllocationParameters
- type AllocationSpec
- type AllocationStatus
- type Association
- func (in *Association) DeepCopy() *Association
- func (in *Association) DeepCopyInto(out *Association)
- func (in *Association) DeepCopyObject() runtime.Object
- func (mg *Association) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Association) GetConnectionDetailsMapping() map[string]string
- func (mg *Association) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Association) GetID() string
- func (mg *Association) GetManagementPolicy() xpv1.ManagementPolicy
- func (tr *Association) GetObservation() (map[string]any, error)
- func (tr *Association) GetParameters() (map[string]any, error)
- func (mg *Association) GetProviderConfigReference() *xpv1.Reference
- func (mg *Association) GetProviderReference() *xpv1.Reference
- func (mg *Association) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Association) GetTerraformResourceType() string
- func (tr *Association) GetTerraformSchemaVersion() int
- func (mg *Association) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Association) LateInitialize(attrs []byte) (bool, error)
- func (mg *Association) SetConditions(c ...xpv1.Condition)
- func (mg *Association) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *Association) SetManagementPolicy(r xpv1.ManagementPolicy)
- func (tr *Association) SetObservation(obs map[string]any) error
- func (tr *Association) SetParameters(params map[string]any) error
- func (mg *Association) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Association) SetProviderReference(r *xpv1.Reference)
- func (mg *Association) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Association) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type AssociationList
- type AssociationObservation
- type AssociationParameters
- type AssociationSpec
- type AssociationStatus
Constants ¶
const ( CRDGroup = "ip.infoblox-nios.upbound.io" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
var ( Allocation_Kind = "Allocation" Allocation_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Allocation_Kind}.String() Allocation_KindAPIVersion = Allocation_Kind + "." + CRDGroupVersion.String() Allocation_GroupVersionKind = CRDGroupVersion.WithKind(Allocation_Kind) )
Repository type metadata.
var ( Association_Kind = "Association" Association_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Association_Kind}.String() Association_KindAPIVersion = Association_Kind + "." + CRDGroupVersion.String() Association_GroupVersionKind = CRDGroupVersion.WithKind(Association_Kind) )
Repository type metadata.
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 )
Functions ¶
This section is empty.
Types ¶
type Allocation ¶
type Allocation struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` // +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.fqdn)",message="fqdn is a required parameter" Spec AllocationSpec `json:"spec"` Status AllocationStatus `json:"status,omitempty"` }
Allocation is the Schema for the Allocations 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,infoblox-nios}
func (*Allocation) DeepCopy ¶
func (in *Allocation) DeepCopy() *Allocation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Allocation.
func (*Allocation) DeepCopyInto ¶
func (in *Allocation) DeepCopyInto(out *Allocation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Allocation) DeepCopyObject ¶
func (in *Allocation) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Allocation) GetCondition ¶
func (mg *Allocation) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Allocation.
func (*Allocation) GetConnectionDetailsMapping ¶
func (tr *Allocation) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this Allocation
func (*Allocation) GetDeletionPolicy ¶
func (mg *Allocation) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Allocation.
func (*Allocation) GetID ¶
func (tr *Allocation) GetID() string
GetID returns ID of underlying Terraform resource of this Allocation
func (*Allocation) GetManagementPolicy ¶
func (mg *Allocation) GetManagementPolicy() xpv1.ManagementPolicy
GetManagementPolicy of this Allocation.
func (*Allocation) GetObservation ¶
func (tr *Allocation) GetObservation() (map[string]any, error)
GetObservation of this Allocation
func (*Allocation) GetParameters ¶
func (tr *Allocation) GetParameters() (map[string]any, error)
GetParameters of this Allocation
func (*Allocation) GetProviderConfigReference ¶
func (mg *Allocation) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this Allocation.
func (*Allocation) GetProviderReference ¶
func (mg *Allocation) GetProviderReference() *xpv1.Reference
GetProviderReference of this Allocation. Deprecated: Use GetProviderConfigReference.
func (*Allocation) GetPublishConnectionDetailsTo ¶
func (mg *Allocation) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Allocation.
func (*Allocation) GetTerraformResourceType ¶
func (mg *Allocation) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this Allocation
func (*Allocation) GetTerraformSchemaVersion ¶
func (tr *Allocation) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Allocation) GetWriteConnectionSecretToReference ¶
func (mg *Allocation) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Allocation.
func (*Allocation) LateInitialize ¶
func (tr *Allocation) LateInitialize(attrs []byte) (bool, error)
LateInitialize this Allocation using its observed tfState. returns True if there are any spec changes for the resource.
func (*Allocation) SetConditions ¶
func (mg *Allocation) SetConditions(c ...xpv1.Condition)
SetConditions of this Allocation.
func (*Allocation) SetDeletionPolicy ¶
func (mg *Allocation) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Allocation.
func (*Allocation) SetManagementPolicy ¶
func (mg *Allocation) SetManagementPolicy(r xpv1.ManagementPolicy)
SetManagementPolicy of this Allocation.
func (*Allocation) SetObservation ¶
func (tr *Allocation) SetObservation(obs map[string]any) error
SetObservation for this Allocation
func (*Allocation) SetParameters ¶
func (tr *Allocation) SetParameters(params map[string]any) error
SetParameters for this Allocation
func (*Allocation) SetProviderConfigReference ¶
func (mg *Allocation) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this Allocation.
func (*Allocation) SetProviderReference ¶
func (mg *Allocation) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this Allocation. Deprecated: Use SetProviderConfigReference.
func (*Allocation) SetPublishConnectionDetailsTo ¶
func (mg *Allocation) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Allocation.
func (*Allocation) SetWriteConnectionSecretToReference ¶
func (mg *Allocation) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Allocation.
type AllocationList ¶
type AllocationList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Allocation `json:"items"` }
AllocationList contains a list of Allocations
func (*AllocationList) DeepCopy ¶
func (in *AllocationList) DeepCopy() *AllocationList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AllocationList.
func (*AllocationList) DeepCopyInto ¶
func (in *AllocationList) DeepCopyInto(out *AllocationList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AllocationList) DeepCopyObject ¶
func (in *AllocationList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*AllocationList) GetItems ¶
func (l *AllocationList) GetItems() []resource.Managed
GetItems of this AllocationList.
type AllocationObservation ¶
type AllocationObservation struct { // Value which comes from 'ipv4_addr' (if specified) or from auto-allocation function (using 'ipv4_cidr'). AllocatedIPv4Addr *string `json:"allocatedIpv4Addr,omitempty" tf:"allocated_ipv4_addr,omitempty"` // Value which comes from 'ipv6_addr' (if specified) or from auto-allocation function (using 'ipv6_cidr'). AllocatedIPv6Addr *string `json:"allocatedIpv6Addr,omitempty" tf:"allocated_ipv6_addr,omitempty"` // A description of IP address allocation. Comment *string `json:"comment,omitempty" tf:"comment,omitempty"` // DNS view under which the zone has been created. DNSView *string `json:"dnsView,omitempty" tf:"dns_view,omitempty"` // flag that defines if the host record is to be used for DNS purposes. EnableDNS *bool `json:"enableDns,omitempty" tf:"enable_dns,omitempty"` // The extensible attributes for IP address allocation, as a map in JSON format ExtAttrs *string `json:"extAttrs,omitempty" tf:"ext_attrs,omitempty"` // The host name for Host Record in FQDN format. Fqdn *string `json:"fqdn,omitempty" tf:"fqdn,omitempty"` ID *string `json:"id,omitempty" tf:"id,omitempty"` // IPv4 address of cloud instance.Set a valid IP address for static allocation and leave empty if dynamically allocated. IPv4Addr *string `json:"ipv4Addr,omitempty" tf:"ipv4_addr,omitempty"` // The IPv4 cidr from which an IPv4 address will be allocated. IPv4Cidr *string `json:"ipv4Cidr,omitempty" tf:"ipv4_cidr,omitempty"` // IPv6 address of cloud instance.Set a valid IP address for static allocation and leave empty if dynamically allocated. IPv6Addr *string `json:"ipv6Addr,omitempty" tf:"ipv6_addr,omitempty"` // The IPv6 cidr from which an IPv6 address will be allocated. IPv6Cidr *string `json:"ipv6Cidr,omitempty" tf:"ipv6_cidr,omitempty"` InternalID *string `json:"internalId,omitempty" tf:"internal_id,omitempty"` // network view name on NIOS server. NetworkView *string `json:"networkView,omitempty" tf:"network_view,omitempty"` // NIOS object's reference, not to be set by a user. Ref *string `json:"ref,omitempty" tf:"ref,omitempty"` // TTL attribute value for the record. TTL *float64 `json:"ttl,omitempty" tf:"ttl,omitempty"` }
func (*AllocationObservation) DeepCopy ¶
func (in *AllocationObservation) DeepCopy() *AllocationObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AllocationObservation.
func (*AllocationObservation) DeepCopyInto ¶
func (in *AllocationObservation) DeepCopyInto(out *AllocationObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AllocationParameters ¶
type AllocationParameters struct { // Value which comes from 'ipv4_addr' (if specified) or from auto-allocation function (using 'ipv4_cidr'). // +kubebuilder:validation:Optional AllocatedIPv4Addr *string `json:"allocatedIpv4Addr,omitempty" tf:"allocated_ipv4_addr,omitempty"` // Value which comes from 'ipv6_addr' (if specified) or from auto-allocation function (using 'ipv6_cidr'). // +kubebuilder:validation:Optional AllocatedIPv6Addr *string `json:"allocatedIpv6Addr,omitempty" tf:"allocated_ipv6_addr,omitempty"` // A description of IP address allocation. // +kubebuilder:validation:Optional Comment *string `json:"comment,omitempty" tf:"comment,omitempty"` // DNS view under which the zone has been created. // +kubebuilder:validation:Optional DNSView *string `json:"dnsView,omitempty" tf:"dns_view,omitempty"` // flag that defines if the host record is to be used for DNS purposes. // +kubebuilder:validation:Optional EnableDNS *bool `json:"enableDns,omitempty" tf:"enable_dns,omitempty"` // The extensible attributes for IP address allocation, as a map in JSON format // +kubebuilder:validation:Optional ExtAttrs *string `json:"extAttrs,omitempty" tf:"ext_attrs,omitempty"` // The host name for Host Record in FQDN format. // +kubebuilder:validation:Optional Fqdn *string `json:"fqdn,omitempty" tf:"fqdn,omitempty"` // IPv4 address of cloud instance.Set a valid IP address for static allocation and leave empty if dynamically allocated. // +kubebuilder:validation:Optional IPv4Addr *string `json:"ipv4Addr,omitempty" tf:"ipv4_addr,omitempty"` // The IPv4 cidr from which an IPv4 address will be allocated. // +kubebuilder:validation:Optional IPv4Cidr *string `json:"ipv4Cidr,omitempty" tf:"ipv4_cidr,omitempty"` // IPv6 address of cloud instance.Set a valid IP address for static allocation and leave empty if dynamically allocated. // +kubebuilder:validation:Optional IPv6Addr *string `json:"ipv6Addr,omitempty" tf:"ipv6_addr,omitempty"` // The IPv6 cidr from which an IPv6 address will be allocated. // +kubebuilder:validation:Optional IPv6Cidr *string `json:"ipv6Cidr,omitempty" tf:"ipv6_cidr,omitempty"` // network view name on NIOS server. // +kubebuilder:validation:Optional NetworkView *string `json:"networkView,omitempty" tf:"network_view,omitempty"` // TTL attribute value for the record. // +kubebuilder:validation:Optional TTL *float64 `json:"ttl,omitempty" tf:"ttl,omitempty"` }
func (*AllocationParameters) DeepCopy ¶
func (in *AllocationParameters) DeepCopy() *AllocationParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AllocationParameters.
func (*AllocationParameters) DeepCopyInto ¶
func (in *AllocationParameters) DeepCopyInto(out *AllocationParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AllocationSpec ¶
type AllocationSpec struct { v1.ResourceSpec `json:",inline"` ForProvider AllocationParameters `json:"forProvider"` }
AllocationSpec defines the desired state of Allocation
func (*AllocationSpec) DeepCopy ¶
func (in *AllocationSpec) DeepCopy() *AllocationSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AllocationSpec.
func (*AllocationSpec) DeepCopyInto ¶
func (in *AllocationSpec) DeepCopyInto(out *AllocationSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AllocationStatus ¶
type AllocationStatus struct { v1.ResourceStatus `json:",inline"` AtProvider AllocationObservation `json:"atProvider,omitempty"` }
AllocationStatus defines the observed state of Allocation.
func (*AllocationStatus) DeepCopy ¶
func (in *AllocationStatus) DeepCopy() *AllocationStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AllocationStatus.
func (*AllocationStatus) DeepCopyInto ¶
func (in *AllocationStatus) DeepCopyInto(out *AllocationStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Association ¶
type Association struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec AssociationSpec `json:"spec"` Status AssociationStatus `json:"status,omitempty"` }
Association is the Schema for the Associations 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,infoblox-nios}
func (*Association) DeepCopy ¶
func (in *Association) DeepCopy() *Association
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Association.
func (*Association) DeepCopyInto ¶
func (in *Association) DeepCopyInto(out *Association)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Association) DeepCopyObject ¶
func (in *Association) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Association) GetCondition ¶
func (mg *Association) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Association.
func (*Association) GetConnectionDetailsMapping ¶
func (tr *Association) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this Association
func (*Association) GetDeletionPolicy ¶
func (mg *Association) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Association.
func (*Association) GetID ¶
func (tr *Association) GetID() string
GetID returns ID of underlying Terraform resource of this Association
func (*Association) GetManagementPolicy ¶
func (mg *Association) GetManagementPolicy() xpv1.ManagementPolicy
GetManagementPolicy of this Association.
func (*Association) GetObservation ¶
func (tr *Association) GetObservation() (map[string]any, error)
GetObservation of this Association
func (*Association) GetParameters ¶
func (tr *Association) GetParameters() (map[string]any, error)
GetParameters of this Association
func (*Association) GetProviderConfigReference ¶
func (mg *Association) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this Association.
func (*Association) GetProviderReference ¶
func (mg *Association) GetProviderReference() *xpv1.Reference
GetProviderReference of this Association. Deprecated: Use GetProviderConfigReference.
func (*Association) GetPublishConnectionDetailsTo ¶
func (mg *Association) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Association.
func (*Association) GetTerraformResourceType ¶
func (mg *Association) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this Association
func (*Association) GetTerraformSchemaVersion ¶
func (tr *Association) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Association) GetWriteConnectionSecretToReference ¶
func (mg *Association) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Association.
func (*Association) LateInitialize ¶
func (tr *Association) LateInitialize(attrs []byte) (bool, error)
LateInitialize this Association using its observed tfState. returns True if there are any spec changes for the resource.
func (*Association) SetConditions ¶
func (mg *Association) SetConditions(c ...xpv1.Condition)
SetConditions of this Association.
func (*Association) SetDeletionPolicy ¶
func (mg *Association) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Association.
func (*Association) SetManagementPolicy ¶
func (mg *Association) SetManagementPolicy(r xpv1.ManagementPolicy)
SetManagementPolicy of this Association.
func (*Association) SetObservation ¶
func (tr *Association) SetObservation(obs map[string]any) error
SetObservation for this Association
func (*Association) SetParameters ¶
func (tr *Association) SetParameters(params map[string]any) error
SetParameters for this Association
func (*Association) SetProviderConfigReference ¶
func (mg *Association) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this Association.
func (*Association) SetProviderReference ¶
func (mg *Association) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this Association. Deprecated: Use SetProviderConfigReference.
func (*Association) SetPublishConnectionDetailsTo ¶
func (mg *Association) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Association.
func (*Association) SetWriteConnectionSecretToReference ¶
func (mg *Association) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Association.
type AssociationList ¶
type AssociationList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Association `json:"items"` }
AssociationList contains a list of Associations
func (*AssociationList) DeepCopy ¶
func (in *AssociationList) DeepCopy() *AssociationList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssociationList.
func (*AssociationList) DeepCopyInto ¶
func (in *AssociationList) DeepCopyInto(out *AssociationList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AssociationList) DeepCopyObject ¶
func (in *AssociationList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*AssociationList) GetItems ¶
func (l *AssociationList) GetItems() []resource.Managed
GetItems of this AssociationList.
type AssociationObservation ¶
type AssociationObservation struct { // DHCP unique identifier for IPv6. Duid *string `json:"duid,omitempty" tf:"duid,omitempty"` // The flag which defines if the host record is to be used for IPAM purposes. EnableDHCP *bool `json:"enableDhcp,omitempty" tf:"enable_dhcp,omitempty"` ID *string `json:"id,omitempty" tf:"id,omitempty"` // This value must point to the ID of the appropriate allocation resource. Required on resource creation. InternalID *string `json:"internalId,omitempty" tf:"internal_id,omitempty"` // MAC address of a cloud instance. MacAddr *string `json:"macAddr,omitempty" tf:"mac_addr,omitempty"` // NIOS object's reference, not to be set by a user. Ref *string `json:"ref,omitempty" tf:"ref,omitempty"` }
func (*AssociationObservation) DeepCopy ¶
func (in *AssociationObservation) DeepCopy() *AssociationObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssociationObservation.
func (*AssociationObservation) DeepCopyInto ¶
func (in *AssociationObservation) DeepCopyInto(out *AssociationObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AssociationParameters ¶
type AssociationParameters struct { // DHCP unique identifier for IPv6. // +kubebuilder:validation:Optional Duid *string `json:"duid,omitempty" tf:"duid,omitempty"` // The flag which defines if the host record is to be used for IPAM purposes. // +kubebuilder:validation:Optional EnableDHCP *bool `json:"enableDhcp,omitempty" tf:"enable_dhcp,omitempty"` // This value must point to the ID of the appropriate allocation resource. Required on resource creation. // +kubebuilder:validation:Optional InternalID *string `json:"internalId,omitempty" tf:"internal_id,omitempty"` // MAC address of a cloud instance. // +kubebuilder:validation:Optional MacAddr *string `json:"macAddr,omitempty" tf:"mac_addr,omitempty"` }
func (*AssociationParameters) DeepCopy ¶
func (in *AssociationParameters) DeepCopy() *AssociationParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssociationParameters.
func (*AssociationParameters) DeepCopyInto ¶
func (in *AssociationParameters) DeepCopyInto(out *AssociationParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AssociationSpec ¶
type AssociationSpec struct { v1.ResourceSpec `json:",inline"` ForProvider AssociationParameters `json:"forProvider"` }
AssociationSpec defines the desired state of Association
func (*AssociationSpec) DeepCopy ¶
func (in *AssociationSpec) DeepCopy() *AssociationSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssociationSpec.
func (*AssociationSpec) DeepCopyInto ¶
func (in *AssociationSpec) DeepCopyInto(out *AssociationSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AssociationStatus ¶
type AssociationStatus struct { v1.ResourceStatus `json:",inline"` AtProvider AssociationObservation `json:"atProvider,omitempty"` }
AssociationStatus defines the observed state of Association.
func (*AssociationStatus) DeepCopy ¶
func (in *AssociationStatus) DeepCopy() *AssociationStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssociationStatus.
func (*AssociationStatus) DeepCopyInto ¶
func (in *AssociationStatus) DeepCopyInto(out *AssociationStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.