Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=ldap.mongodba.jet.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type Configuration
- func (in *Configuration) DeepCopy() *Configuration
- func (in *Configuration) DeepCopyInto(out *Configuration)
- func (in *Configuration) DeepCopyObject() runtime.Object
- func (mg *Configuration) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Configuration) GetConnectionDetailsMapping() map[string]string
- func (mg *Configuration) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Configuration) GetID() string
- func (tr *Configuration) GetObservation() (map[string]interface{}, error)
- func (tr *Configuration) GetParameters() (map[string]interface{}, error)
- func (mg *Configuration) GetProviderConfigReference() *xpv1.Reference
- func (mg *Configuration) GetProviderReference() *xpv1.Reference
- func (mg *Configuration) GetTerraformResourceType() string
- func (tr *Configuration) GetTerraformSchemaVersion() int
- func (mg *Configuration) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Configuration) LateInitialize(attrs []byte) (bool, error)
- func (mg *Configuration) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *Configuration) SetConditions(c ...xpv1.Condition)
- func (mg *Configuration) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *Configuration) SetObservation(obs map[string]interface{}) error
- func (tr *Configuration) SetParameters(params map[string]interface{}) error
- func (mg *Configuration) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Configuration) SetProviderReference(r *xpv1.Reference)
- func (mg *Configuration) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ConfigurationList
- type ConfigurationObservation
- type ConfigurationParameters
- type ConfigurationSpec
- type ConfigurationStatus
- type LinksObservation
- type LinksParameters
- type UserToDnMappingObservation
- type UserToDnMappingParameters
- type ValidationsObservation
- type ValidationsParameters
- type Verify
- func (in *Verify) DeepCopy() *Verify
- func (in *Verify) DeepCopyInto(out *Verify)
- func (in *Verify) DeepCopyObject() runtime.Object
- func (mg *Verify) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Verify) GetConnectionDetailsMapping() map[string]string
- func (mg *Verify) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Verify) GetID() string
- func (tr *Verify) GetObservation() (map[string]interface{}, error)
- func (tr *Verify) GetParameters() (map[string]interface{}, error)
- func (mg *Verify) GetProviderConfigReference() *xpv1.Reference
- func (mg *Verify) GetProviderReference() *xpv1.Reference
- func (mg *Verify) GetTerraformResourceType() string
- func (tr *Verify) GetTerraformSchemaVersion() int
- func (mg *Verify) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Verify) LateInitialize(attrs []byte) (bool, error)
- func (mg *Verify) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *Verify) SetConditions(c ...xpv1.Condition)
- func (mg *Verify) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *Verify) SetObservation(obs map[string]interface{}) error
- func (tr *Verify) SetParameters(params map[string]interface{}) error
- func (mg *Verify) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Verify) SetProviderReference(r *xpv1.Reference)
- func (mg *Verify) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type VerifyList
- type VerifyObservation
- type VerifyParameters
- type VerifySpec
- type VerifyStatus
Constants ¶
const ( CRDGroup = "ldap.mongodba.jet.crossplane.io" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
var ( Configuration_Kind = "Configuration" Configuration_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Configuration_Kind}.String() Configuration_KindAPIVersion = Configuration_Kind + "." + CRDGroupVersion.String() Configuration_GroupVersionKind = CRDGroupVersion.WithKind(Configuration_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 )
var ( Verify_Kind = "Verify" Verify_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Verify_Kind}.String() Verify_KindAPIVersion = Verify_Kind + "." + CRDGroupVersion.String() Verify_GroupVersionKind = CRDGroupVersion.WithKind(Verify_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type Configuration ¶
type Configuration struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ConfigurationSpec `json:"spec"` Status ConfigurationStatus `json:"status,omitempty"` }
Configuration is the Schema for the Configurations 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,mongodbajet}
func (*Configuration) DeepCopy ¶
func (in *Configuration) DeepCopy() *Configuration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Configuration.
func (*Configuration) DeepCopyInto ¶
func (in *Configuration) DeepCopyInto(out *Configuration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Configuration) DeepCopyObject ¶
func (in *Configuration) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Configuration) GetCondition ¶
func (mg *Configuration) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Configuration.
func (*Configuration) GetConnectionDetailsMapping ¶
func (tr *Configuration) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this Configuration
func (*Configuration) GetDeletionPolicy ¶
func (mg *Configuration) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Configuration.
func (*Configuration) GetID ¶
func (tr *Configuration) GetID() string
GetID returns ID of underlying Terraform resource of this Configuration
func (*Configuration) GetObservation ¶
func (tr *Configuration) GetObservation() (map[string]interface{}, error)
GetObservation of this Configuration
func (*Configuration) GetParameters ¶
func (tr *Configuration) GetParameters() (map[string]interface{}, error)
GetParameters of this Configuration
func (*Configuration) GetProviderConfigReference ¶
func (mg *Configuration) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this Configuration.
func (*Configuration) GetProviderReference ¶
func (mg *Configuration) GetProviderReference() *xpv1.Reference
GetProviderReference of this Configuration. Deprecated: Use GetProviderConfigReference.
func (*Configuration) GetTerraformResourceType ¶
func (mg *Configuration) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this Configuration
func (*Configuration) GetTerraformSchemaVersion ¶
func (tr *Configuration) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Configuration) GetWriteConnectionSecretToReference ¶
func (mg *Configuration) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Configuration.
func (*Configuration) LateInitialize ¶
func (tr *Configuration) LateInitialize(attrs []byte) (bool, error)
LateInitialize this Configuration using its observed tfState. returns True if there are any spec changes for the resource.
func (*Configuration) ResolveReferences ¶
ResolveReferences of this Configuration.
func (*Configuration) SetConditions ¶
func (mg *Configuration) SetConditions(c ...xpv1.Condition)
SetConditions of this Configuration.
func (*Configuration) SetDeletionPolicy ¶
func (mg *Configuration) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Configuration.
func (*Configuration) SetObservation ¶
func (tr *Configuration) SetObservation(obs map[string]interface{}) error
SetObservation for this Configuration
func (*Configuration) SetParameters ¶
func (tr *Configuration) SetParameters(params map[string]interface{}) error
SetParameters for this Configuration
func (*Configuration) SetProviderConfigReference ¶
func (mg *Configuration) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this Configuration.
func (*Configuration) SetProviderReference ¶
func (mg *Configuration) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this Configuration. Deprecated: Use SetProviderConfigReference.
func (*Configuration) SetWriteConnectionSecretToReference ¶
func (mg *Configuration) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Configuration.
type ConfigurationList ¶
type ConfigurationList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Configuration `json:"items"` }
ConfigurationList contains a list of Configurations
func (*ConfigurationList) DeepCopy ¶
func (in *ConfigurationList) DeepCopy() *ConfigurationList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigurationList.
func (*ConfigurationList) DeepCopyInto ¶
func (in *ConfigurationList) DeepCopyInto(out *ConfigurationList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ConfigurationList) DeepCopyObject ¶
func (in *ConfigurationList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ConfigurationList) GetItems ¶
func (l *ConfigurationList) GetItems() []resource.Managed
GetItems of this ConfigurationList.
type ConfigurationObservation ¶
type ConfigurationObservation struct {
ID *string `json:"id,omitempty" tf:"id,omitempty"`
}
func (*ConfigurationObservation) DeepCopy ¶
func (in *ConfigurationObservation) DeepCopy() *ConfigurationObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigurationObservation.
func (*ConfigurationObservation) DeepCopyInto ¶
func (in *ConfigurationObservation) DeepCopyInto(out *ConfigurationObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ConfigurationParameters ¶
type ConfigurationParameters struct { // +kubebuilder:validation:Required AuthenticationEnabled *bool `json:"authenticationEnabled" tf:"authentication_enabled,omitempty"` // +kubebuilder:validation:Optional AuthorizationEnabled *bool `json:"authorizationEnabled,omitempty" tf:"authorization_enabled,omitempty"` // +kubebuilder:validation:Optional AuthzQueryTemplate *string `json:"authzQueryTemplate,omitempty" tf:"authz_query_template,omitempty"` // +kubebuilder:validation:Required BindPasswordSecretRef v1.SecretKeySelector `json:"bindPasswordSecretRef" tf:"-"` // +kubebuilder:validation:Required BindUsername *string `json:"bindUsername" tf:"bind_username,omitempty"` // +kubebuilder:validation:Optional CACertificate *string `json:"caCertificate,omitempty" tf:"ca_certificate,omitempty"` // +kubebuilder:validation:Required Hostname *string `json:"hostname" tf:"hostname,omitempty"` // +kubebuilder:validation:Optional Port *float64 `json:"port,omitempty" tf:"port,omitempty"` // +crossplane:generate:reference:type=github.com/timgchile/provider-jet-mongodba/apis/mongodba/v1alpha1.Project // +crossplane:generate:reference:extractor=github.com/timgchile/provider-jet-mongodba/config/common.ExtractResourceID() // +kubebuilder:validation:Optional ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` // +kubebuilder:validation:Optional UserToDnMapping []UserToDnMappingParameters `json:"userToDnMapping,omitempty" tf:"user_to_dn_mapping,omitempty"` }
func (*ConfigurationParameters) DeepCopy ¶
func (in *ConfigurationParameters) DeepCopy() *ConfigurationParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigurationParameters.
func (*ConfigurationParameters) DeepCopyInto ¶
func (in *ConfigurationParameters) DeepCopyInto(out *ConfigurationParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ConfigurationSpec ¶
type ConfigurationSpec struct { v1.ResourceSpec `json:",inline"` ForProvider ConfigurationParameters `json:"forProvider"` }
ConfigurationSpec defines the desired state of Configuration
func (*ConfigurationSpec) DeepCopy ¶
func (in *ConfigurationSpec) DeepCopy() *ConfigurationSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigurationSpec.
func (*ConfigurationSpec) DeepCopyInto ¶
func (in *ConfigurationSpec) DeepCopyInto(out *ConfigurationSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ConfigurationStatus ¶
type ConfigurationStatus struct { v1.ResourceStatus `json:",inline"` AtProvider ConfigurationObservation `json:"atProvider,omitempty"` }
ConfigurationStatus defines the observed state of Configuration.
func (*ConfigurationStatus) DeepCopy ¶
func (in *ConfigurationStatus) DeepCopy() *ConfigurationStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigurationStatus.
func (*ConfigurationStatus) DeepCopyInto ¶
func (in *ConfigurationStatus) DeepCopyInto(out *ConfigurationStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LinksObservation ¶
type LinksObservation struct { }
func (*LinksObservation) DeepCopy ¶
func (in *LinksObservation) DeepCopy() *LinksObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LinksObservation.
func (*LinksObservation) DeepCopyInto ¶
func (in *LinksObservation) DeepCopyInto(out *LinksObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LinksParameters ¶
type LinksParameters struct { // +kubebuilder:validation:Required Href *string `json:"href" tf:"href,omitempty"` // +kubebuilder:validation:Required Rel *string `json:"rel" tf:"rel,omitempty"` }
func (*LinksParameters) DeepCopy ¶
func (in *LinksParameters) DeepCopy() *LinksParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LinksParameters.
func (*LinksParameters) DeepCopyInto ¶
func (in *LinksParameters) DeepCopyInto(out *LinksParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type UserToDnMappingObservation ¶
type UserToDnMappingObservation struct { }
func (*UserToDnMappingObservation) DeepCopy ¶
func (in *UserToDnMappingObservation) DeepCopy() *UserToDnMappingObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserToDnMappingObservation.
func (*UserToDnMappingObservation) DeepCopyInto ¶
func (in *UserToDnMappingObservation) DeepCopyInto(out *UserToDnMappingObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type UserToDnMappingParameters ¶
type UserToDnMappingParameters struct { // +kubebuilder:validation:Optional LdapQuery *string `json:"ldapQuery,omitempty" tf:"ldap_query,omitempty"` // +kubebuilder:validation:Optional Match *string `json:"match,omitempty" tf:"match,omitempty"` // +kubebuilder:validation:Optional Substitution *string `json:"substitution,omitempty" tf:"substitution,omitempty"` }
func (*UserToDnMappingParameters) DeepCopy ¶
func (in *UserToDnMappingParameters) DeepCopy() *UserToDnMappingParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserToDnMappingParameters.
func (*UserToDnMappingParameters) DeepCopyInto ¶
func (in *UserToDnMappingParameters) DeepCopyInto(out *UserToDnMappingParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ValidationsObservation ¶
type ValidationsObservation struct { }
func (*ValidationsObservation) DeepCopy ¶
func (in *ValidationsObservation) DeepCopy() *ValidationsObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ValidationsObservation.
func (*ValidationsObservation) DeepCopyInto ¶
func (in *ValidationsObservation) DeepCopyInto(out *ValidationsObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ValidationsParameters ¶
type ValidationsParameters struct { // +kubebuilder:validation:Required Status *string `json:"status" tf:"status,omitempty"` // +kubebuilder:validation:Required ValidationType *string `json:"validationType" tf:"validation_type,omitempty"` }
func (*ValidationsParameters) DeepCopy ¶
func (in *ValidationsParameters) DeepCopy() *ValidationsParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ValidationsParameters.
func (*ValidationsParameters) DeepCopyInto ¶
func (in *ValidationsParameters) DeepCopyInto(out *ValidationsParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Verify ¶
type Verify struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec VerifySpec `json:"spec"` Status VerifyStatus `json:"status,omitempty"` }
Verify is the Schema for the Verifys 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,mongodbajet}
func (*Verify) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Verify.
func (*Verify) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Verify) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Verify) GetCondition ¶
func (mg *Verify) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Verify.
func (*Verify) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this Verify
func (*Verify) GetDeletionPolicy ¶
func (mg *Verify) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Verify.
func (*Verify) GetObservation ¶
GetObservation of this Verify
func (*Verify) GetParameters ¶
GetParameters of this Verify
func (*Verify) GetProviderConfigReference ¶
GetProviderConfigReference of this Verify.
func (*Verify) GetProviderReference ¶
GetProviderReference of this Verify. Deprecated: Use GetProviderConfigReference.
func (*Verify) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Verify
func (*Verify) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Verify) GetWriteConnectionSecretToReference ¶
func (mg *Verify) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Verify.
func (*Verify) LateInitialize ¶
LateInitialize this Verify using its observed tfState. returns True if there are any spec changes for the resource.
func (*Verify) ResolveReferences ¶
ResolveReferences of this Verify.
func (*Verify) SetConditions ¶
SetConditions of this Verify.
func (*Verify) SetDeletionPolicy ¶
func (mg *Verify) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Verify.
func (*Verify) SetObservation ¶
SetObservation for this Verify
func (*Verify) SetParameters ¶
SetParameters for this Verify
func (*Verify) SetProviderConfigReference ¶
SetProviderConfigReference of this Verify.
func (*Verify) SetProviderReference ¶
SetProviderReference of this Verify. Deprecated: Use SetProviderConfigReference.
func (*Verify) SetWriteConnectionSecretToReference ¶
func (mg *Verify) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Verify.
type VerifyList ¶
type VerifyList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Verify `json:"items"` }
VerifyList contains a list of Verifys
func (*VerifyList) DeepCopy ¶
func (in *VerifyList) DeepCopy() *VerifyList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VerifyList.
func (*VerifyList) DeepCopyInto ¶
func (in *VerifyList) DeepCopyInto(out *VerifyList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*VerifyList) DeepCopyObject ¶
func (in *VerifyList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*VerifyList) GetItems ¶
func (l *VerifyList) GetItems() []resource.Managed
GetItems of this VerifyList.
type VerifyObservation ¶
type VerifyObservation struct { ID *string `json:"id,omitempty" tf:"id,omitempty"` Links []LinksObservation `json:"links,omitempty" tf:"links,omitempty"` RequestID *string `json:"requestId,omitempty" tf:"request_id,omitempty"` Status *string `json:"status,omitempty" tf:"status,omitempty"` Validations []ValidationsObservation `json:"validations,omitempty" tf:"validations,omitempty"` }
func (*VerifyObservation) DeepCopy ¶
func (in *VerifyObservation) DeepCopy() *VerifyObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VerifyObservation.
func (*VerifyObservation) DeepCopyInto ¶
func (in *VerifyObservation) DeepCopyInto(out *VerifyObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type VerifyParameters ¶
type VerifyParameters struct { // +kubebuilder:validation:Optional AuthzQueryTemplate *string `json:"authzQueryTemplate,omitempty" tf:"authz_query_template,omitempty"` // +kubebuilder:validation:Required BindPassword *string `json:"bindPassword" tf:"bind_password,omitempty"` // +kubebuilder:validation:Required BindUsername *string `json:"bindUsername" tf:"bind_username,omitempty"` // +kubebuilder:validation:Optional CACertificate *string `json:"caCertificate,omitempty" tf:"ca_certificate,omitempty"` // +kubebuilder:validation:Required Hostname *string `json:"hostname" tf:"hostname,omitempty"` // +kubebuilder:validation:Required Port *float64 `json:"port" tf:"port,omitempty"` // +crossplane:generate:reference:type=github.com/timgchile/provider-jet-mongodba/apis/mongodba/v1alpha1.Project // +crossplane:generate:reference:extractor=github.com/timgchile/provider-jet-mongodba/config/common.ExtractResourceID() // +kubebuilder:validation:Optional ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` }
func (*VerifyParameters) DeepCopy ¶
func (in *VerifyParameters) DeepCopy() *VerifyParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VerifyParameters.
func (*VerifyParameters) DeepCopyInto ¶
func (in *VerifyParameters) DeepCopyInto(out *VerifyParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type VerifySpec ¶
type VerifySpec struct { v1.ResourceSpec `json:",inline"` ForProvider VerifyParameters `json:"forProvider"` }
VerifySpec defines the desired state of Verify
func (*VerifySpec) DeepCopy ¶
func (in *VerifySpec) DeepCopy() *VerifySpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VerifySpec.
func (*VerifySpec) DeepCopyInto ¶
func (in *VerifySpec) DeepCopyInto(out *VerifySpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type VerifyStatus ¶
type VerifyStatus struct { v1.ResourceStatus `json:",inline"` AtProvider VerifyObservation `json:"atProvider,omitempty"` }
VerifyStatus defines the observed state of Verify.
func (*VerifyStatus) DeepCopy ¶
func (in *VerifyStatus) DeepCopy() *VerifyStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VerifyStatus.
func (*VerifyStatus) DeepCopyInto ¶
func (in *VerifyStatus) DeepCopyInto(out *VerifyStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.