Documentation
¶
Overview ¶
+kubebuilder:object:generate=true +groupName=ldap.mongodbatlas.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 (mg *Configuration) GetManagementPolicy() xpv1.ManagementPolicy
- func (tr *Configuration) GetObservation() (map[string]any, error)
- func (tr *Configuration) GetParameters() (map[string]any, error)
- func (mg *Configuration) GetProviderConfigReference() *xpv1.Reference
- func (mg *Configuration) GetProviderReference() *xpv1.Reference
- func (mg *Configuration) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- 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) SetConditions(c ...xpv1.Condition)
- func (mg *Configuration) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *Configuration) SetManagementPolicy(r xpv1.ManagementPolicy)
- func (tr *Configuration) SetObservation(obs map[string]any) error
- func (tr *Configuration) SetParameters(params map[string]any) error
- func (mg *Configuration) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Configuration) SetProviderReference(r *xpv1.Reference)
- func (mg *Configuration) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- 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 (mg *Verify) GetManagementPolicy() xpv1.ManagementPolicy
- func (tr *Verify) GetObservation() (map[string]any, error)
- func (tr *Verify) GetParameters() (map[string]any, error)
- func (mg *Verify) GetProviderConfigReference() *xpv1.Reference
- func (mg *Verify) GetProviderReference() *xpv1.Reference
- func (mg *Verify) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- 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) SetConditions(c ...xpv1.Condition)
- func (mg *Verify) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *Verify) SetManagementPolicy(r xpv1.ManagementPolicy)
- func (tr *Verify) SetObservation(obs map[string]any) error
- func (tr *Verify) SetParameters(params map[string]any) error
- func (mg *Verify) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Verify) SetProviderReference(r *xpv1.Reference)
- func (mg *Verify) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Verify) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type VerifyList
- type VerifyObservation
- type VerifyParameters
- type VerifySpec
- type VerifyStatus
Constants ¶
const ( CRDGroup = "ldap.mongodbatlas.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"`
// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.authenticationEnabled)",message="authenticationEnabled is a required parameter"
// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.bindPasswordSecretRef)",message="bindPasswordSecretRef is a required parameter"
// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.bindUsername)",message="bindUsername is a required parameter"
// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.hostname)",message="hostname is a required parameter"
// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.projectId)",message="projectId is a required parameter"
Spec ConfigurationSpec `json:"spec"`
Status ConfigurationStatus `json:"status,omitempty"`
}
Configuration is the Schema for the Configurations 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,mongodbatlas}
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) GetManagementPolicy ¶
func (mg *Configuration) GetManagementPolicy() xpv1.ManagementPolicy
GetManagementPolicy of this Configuration.
func (*Configuration) GetObservation ¶
func (tr *Configuration) GetObservation() (map[string]any, error)
GetObservation of this Configuration
func (*Configuration) GetParameters ¶
func (tr *Configuration) GetParameters() (map[string]any, 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) GetPublishConnectionDetailsTo ¶
func (mg *Configuration) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Configuration.
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) 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) SetManagementPolicy ¶
func (mg *Configuration) SetManagementPolicy(r xpv1.ManagementPolicy)
SetManagementPolicy of this Configuration.
func (*Configuration) SetObservation ¶
func (tr *Configuration) SetObservation(obs map[string]any) error
SetObservation for this Configuration
func (*Configuration) SetParameters ¶
func (tr *Configuration) SetParameters(params map[string]any) 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) SetPublishConnectionDetailsTo ¶
func (mg *Configuration) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Configuration.
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 {
AuthenticationEnabled *bool `json:"authenticationEnabled,omitempty" tf:"authentication_enabled,omitempty"`
AuthorizationEnabled *bool `json:"authorizationEnabled,omitempty" tf:"authorization_enabled,omitempty"`
AuthzQueryTemplate *string `json:"authzQueryTemplate,omitempty" tf:"authz_query_template,omitempty"`
BindUsername *string `json:"bindUsername,omitempty" tf:"bind_username,omitempty"`
CACertificate *string `json:"caCertificate,omitempty" tf:"ca_certificate,omitempty"`
Hostname *string `json:"hostname,omitempty" tf:"hostname,omitempty"`
ID *string `json:"id,omitempty" tf:"id,omitempty"`
Port *float64 `json:"port,omitempty" tf:"port,omitempty"`
ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"`
UserToDnMapping []UserToDnMappingObservation `json:"userToDnMapping,omitempty" tf:"user_to_dn_mapping,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:Optional
AuthenticationEnabled *bool `json:"authenticationEnabled,omitempty" 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:Optional
BindPasswordSecretRef v1.SecretKeySelector `json:"bindPasswordSecretRef" tf:"-"`
// +kubebuilder:validation:Optional
BindUsername *string `json:"bindUsername,omitempty" tf:"bind_username,omitempty"`
// +kubebuilder:validation:Optional
CACertificate *string `json:"caCertificate,omitempty" tf:"ca_certificate,omitempty"`
// +kubebuilder:validation:Optional
Hostname *string `json:"hostname,omitempty" tf:"hostname,omitempty"`
// +kubebuilder:validation:Optional
Port *float64 `json:"port,omitempty" tf:"port,omitempty"`
// +kubebuilder:validation:Optional
ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"`
// +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 {
Href *string `json:"href,omitempty" tf:"href,omitempty"`
Rel *string `json:"rel,omitempty" tf:"rel,omitempty"`
}
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 {
}
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 {
LdapQuery *string `json:"ldapQuery,omitempty" tf:"ldap_query,omitempty"`
Match *string `json:"match,omitempty" tf:"match,omitempty"`
Substitution *string `json:"substitution,omitempty" tf:"substitution,omitempty"`
}
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 {
Status *string `json:"status,omitempty" tf:"status,omitempty"`
ValidationType *string `json:"validationType,omitempty" tf:"validation_type,omitempty"`
}
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 {
}
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"`
// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.bindPassword)",message="bindPassword is a required parameter"
// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.bindUsername)",message="bindUsername is a required parameter"
// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.hostname)",message="hostname is a required parameter"
// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.port)",message="port is a required parameter"
// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.projectId)",message="projectId is a required parameter"
Spec VerifySpec `json:"spec"`
Status VerifyStatus `json:"status,omitempty"`
}
Verify is the Schema for the Verifys 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,mongodbatlas}
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) GetManagementPolicy ¶
func (mg *Verify) GetManagementPolicy() xpv1.ManagementPolicy
GetManagementPolicy 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) GetPublishConnectionDetailsTo ¶
func (mg *Verify) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Verify.
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) SetConditions ¶
SetConditions of this Verify.
func (*Verify) SetDeletionPolicy ¶
func (mg *Verify) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Verify.
func (*Verify) SetManagementPolicy ¶
func (mg *Verify) SetManagementPolicy(r xpv1.ManagementPolicy)
SetManagementPolicy 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) SetPublishConnectionDetailsTo ¶
func (mg *Verify) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Verify.
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 {
AuthzQueryTemplate *string `json:"authzQueryTemplate,omitempty" tf:"authz_query_template,omitempty"`
BindPassword *string `json:"bindPassword,omitempty" tf:"bind_password,omitempty"`
BindUsername *string `json:"bindUsername,omitempty" tf:"bind_username,omitempty"`
CACertificate *string `json:"caCertificate,omitempty" tf:"ca_certificate,omitempty"`
Hostname *string `json:"hostname,omitempty" tf:"hostname,omitempty"`
ID *string `json:"id,omitempty" tf:"id,omitempty"`
Links []LinksObservation `json:"links,omitempty" tf:"links,omitempty"`
Port *float64 `json:"port,omitempty" tf:"port,omitempty"`
ProjectID *string `json:"projectId,omitempty" tf:"project_id,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:Optional
BindPassword *string `json:"bindPassword,omitempty" tf:"bind_password,omitempty"`
// +kubebuilder:validation:Optional
BindUsername *string `json:"bindUsername,omitempty" tf:"bind_username,omitempty"`
// +kubebuilder:validation:Optional
CACertificate *string `json:"caCertificate,omitempty" tf:"ca_certificate,omitempty"`
// +kubebuilder:validation:Optional
Hostname *string `json:"hostname,omitempty" tf:"hostname,omitempty"`
// +kubebuilder:validation:Optional
Port *float64 `json:"port,omitempty" tf:"port,omitempty"`
// +kubebuilder:validation:Optional
ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"`
}
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.