Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=dlp.upbound.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type ContextAwarenessInitParameters
- type ContextAwarenessObservation
- type ContextAwarenessParameters
- type EntryInitParameters
- type EntryObservation
- type EntryParameters
- type PatternInitParameters
- type PatternObservation
- type PatternParameters
- type Profile
- func (in *Profile) DeepCopy() *Profile
- func (in *Profile) DeepCopyInto(out *Profile)
- func (in *Profile) DeepCopyObject() runtime.Object
- func (mg *Profile) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Profile) GetConnectionDetailsMapping() map[string]string
- func (mg *Profile) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Profile) GetID() string
- func (tr *Profile) GetInitParameters() (map[string]any, error)
- func (mg *Profile) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *Profile) GetObservation() (map[string]any, error)
- func (tr *Profile) GetParameters() (map[string]any, error)
- func (mg *Profile) GetProviderConfigReference() *xpv1.Reference
- func (mg *Profile) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Profile) GetTerraformResourceType() string
- func (tr *Profile) GetTerraformSchemaVersion() int
- func (mg *Profile) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Profile) LateInitialize(attrs []byte) (bool, error)
- func (mg *Profile) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *Profile) SetConditions(c ...xpv1.Condition)
- func (mg *Profile) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *Profile) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *Profile) SetObservation(obs map[string]any) error
- func (tr *Profile) SetParameters(params map[string]any) error
- func (mg *Profile) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Profile) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Profile) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ProfileInitParameters
- type ProfileList
- type ProfileObservation
- type ProfileParameters
- type ProfileSpec
- type ProfileStatus
- type SkipInitParameters
- type SkipObservation
- type SkipParameters
Constants ¶
const ( CRDGroup = "dlp.upbound.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 ( Profile_Kind = "Profile" Profile_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Profile_Kind}.String() Profile_KindAPIVersion = Profile_Kind + "." + CRDGroupVersion.String() Profile_GroupVersionKind = CRDGroupVersion.WithKind(Profile_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type ContextAwarenessInitParameters ¶
type ContextAwarenessInitParameters struct { // (Boolean) Whether the entry is active. Defaults to false. // Scan the context of predefined entries to only return matches surrounded by keywords. Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` // (Block List, Min: 1, Max: 1) Content types to exclude from context analysis and return all matches. (see below for nested schema) // Content types to exclude from context analysis and return all matches. Skip []SkipInitParameters `json:"skip,omitempty" tf:"skip,omitempty"` }
func (*ContextAwarenessInitParameters) DeepCopy ¶
func (in *ContextAwarenessInitParameters) DeepCopy() *ContextAwarenessInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContextAwarenessInitParameters.
func (*ContextAwarenessInitParameters) DeepCopyInto ¶
func (in *ContextAwarenessInitParameters) DeepCopyInto(out *ContextAwarenessInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ContextAwarenessObservation ¶
type ContextAwarenessObservation struct { // (Boolean) Whether the entry is active. Defaults to false. // Scan the context of predefined entries to only return matches surrounded by keywords. Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` // (Block List, Min: 1, Max: 1) Content types to exclude from context analysis and return all matches. (see below for nested schema) // Content types to exclude from context analysis and return all matches. Skip []SkipObservation `json:"skip,omitempty" tf:"skip,omitempty"` }
func (*ContextAwarenessObservation) DeepCopy ¶
func (in *ContextAwarenessObservation) DeepCopy() *ContextAwarenessObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContextAwarenessObservation.
func (*ContextAwarenessObservation) DeepCopyInto ¶
func (in *ContextAwarenessObservation) DeepCopyInto(out *ContextAwarenessObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ContextAwarenessParameters ¶
type ContextAwarenessParameters struct { // (Boolean) Whether the entry is active. Defaults to false. // Scan the context of predefined entries to only return matches surrounded by keywords. // +kubebuilder:validation:Optional Enabled *bool `json:"enabled" tf:"enabled,omitempty"` // (Block List, Min: 1, Max: 1) Content types to exclude from context analysis and return all matches. (see below for nested schema) // Content types to exclude from context analysis and return all matches. // +kubebuilder:validation:Optional Skip []SkipParameters `json:"skip" tf:"skip,omitempty"` }
func (*ContextAwarenessParameters) DeepCopy ¶
func (in *ContextAwarenessParameters) DeepCopy() *ContextAwarenessParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContextAwarenessParameters.
func (*ContextAwarenessParameters) DeepCopyInto ¶
func (in *ContextAwarenessParameters) DeepCopyInto(out *ContextAwarenessParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EntryInitParameters ¶
type EntryInitParameters struct { // (Boolean) Whether the entry is active. Defaults to false. // Whether the entry is active. Defaults to `false`. Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` // (String) The ID of this resource. // Unique entry identifier. ID *string `json:"id,omitempty" tf:"id,omitempty"` // (String) Name of the profile. Modifying this attribute will force creation of a new resource. // Name of the entry to deploy. Name *string `json:"name,omitempty" tf:"name,omitempty"` // (Block List, Max: 1) (see below for nested schema) Pattern []PatternInitParameters `json:"pattern,omitempty" tf:"pattern,omitempty"` }
func (*EntryInitParameters) DeepCopy ¶
func (in *EntryInitParameters) DeepCopy() *EntryInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EntryInitParameters.
func (*EntryInitParameters) DeepCopyInto ¶
func (in *EntryInitParameters) DeepCopyInto(out *EntryInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EntryObservation ¶
type EntryObservation struct { // (Boolean) Whether the entry is active. Defaults to false. // Whether the entry is active. Defaults to `false`. Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` // (String) The ID of this resource. // Unique entry identifier. ID *string `json:"id,omitempty" tf:"id,omitempty"` // (String) Name of the profile. Modifying this attribute will force creation of a new resource. // Name of the entry to deploy. Name *string `json:"name,omitempty" tf:"name,omitempty"` // (Block List, Max: 1) (see below for nested schema) Pattern []PatternObservation `json:"pattern,omitempty" tf:"pattern,omitempty"` }
func (*EntryObservation) DeepCopy ¶
func (in *EntryObservation) DeepCopy() *EntryObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EntryObservation.
func (*EntryObservation) DeepCopyInto ¶
func (in *EntryObservation) DeepCopyInto(out *EntryObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EntryParameters ¶
type EntryParameters struct { // (Boolean) Whether the entry is active. Defaults to false. // Whether the entry is active. Defaults to `false`. // +kubebuilder:validation:Optional Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` // (String) The ID of this resource. // Unique entry identifier. // +kubebuilder:validation:Optional ID *string `json:"id,omitempty" tf:"id,omitempty"` // (String) Name of the profile. Modifying this attribute will force creation of a new resource. // Name of the entry to deploy. // +kubebuilder:validation:Optional Name *string `json:"name" tf:"name,omitempty"` // (Block List, Max: 1) (see below for nested schema) // +kubebuilder:validation:Optional Pattern []PatternParameters `json:"pattern,omitempty" tf:"pattern,omitempty"` }
func (*EntryParameters) DeepCopy ¶
func (in *EntryParameters) DeepCopy() *EntryParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EntryParameters.
func (*EntryParameters) DeepCopyInto ¶
func (in *EntryParameters) DeepCopyInto(out *EntryParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PatternInitParameters ¶
type PatternInitParameters struct { // (String) The regex that defines the pattern. // The regex that defines the pattern. Regex *string `json:"regex,omitempty" tf:"regex,omitempty"` // (String) The validation algorithm to apply with this pattern. // The validation algorithm to apply with this pattern. Validation *string `json:"validation,omitempty" tf:"validation,omitempty"` }
func (*PatternInitParameters) DeepCopy ¶
func (in *PatternInitParameters) DeepCopy() *PatternInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PatternInitParameters.
func (*PatternInitParameters) DeepCopyInto ¶
func (in *PatternInitParameters) DeepCopyInto(out *PatternInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PatternObservation ¶
type PatternObservation struct { // (String) The regex that defines the pattern. // The regex that defines the pattern. Regex *string `json:"regex,omitempty" tf:"regex,omitempty"` // (String) The validation algorithm to apply with this pattern. // The validation algorithm to apply with this pattern. Validation *string `json:"validation,omitempty" tf:"validation,omitempty"` }
func (*PatternObservation) DeepCopy ¶
func (in *PatternObservation) DeepCopy() *PatternObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PatternObservation.
func (*PatternObservation) DeepCopyInto ¶
func (in *PatternObservation) DeepCopyInto(out *PatternObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PatternParameters ¶
type PatternParameters struct { // (String) The regex that defines the pattern. // The regex that defines the pattern. // +kubebuilder:validation:Optional Regex *string `json:"regex" tf:"regex,omitempty"` // (String) The validation algorithm to apply with this pattern. // The validation algorithm to apply with this pattern. // +kubebuilder:validation:Optional Validation *string `json:"validation,omitempty" tf:"validation,omitempty"` }
func (*PatternParameters) DeepCopy ¶
func (in *PatternParameters) DeepCopy() *PatternParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PatternParameters.
func (*PatternParameters) DeepCopyInto ¶
func (in *PatternParameters) DeepCopyInto(out *PatternParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Profile ¶
type Profile 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.allowedMatchCount) || (has(self.initProvider) && has(self.initProvider.allowedMatchCount))",message="spec.forProvider.allowedMatchCount is a required parameter" // +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.entry) || (has(self.initProvider) && has(self.initProvider.entry))",message="spec.forProvider.entry is a required parameter" // +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.name) || (has(self.initProvider) && has(self.initProvider.name))",message="spec.forProvider.name 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 ProfileSpec `json:"spec"` Status ProfileStatus `json:"status,omitempty"` }
Profile is the Schema for the Profiles API. Provides a Cloudflare DLP Profile resource. Data Loss Prevention profiles are a set of entries that can be matched in HTTP bodies or files. They are referenced in Zero Trust Gateway rules. +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,cloudflare}
func (*Profile) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Profile.
func (*Profile) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Profile) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Profile) GetCondition ¶
func (mg *Profile) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Profile.
func (*Profile) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this Profile
func (*Profile) GetDeletionPolicy ¶
func (mg *Profile) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Profile.
func (*Profile) GetInitParameters ¶
GetInitParameters of this Profile
func (*Profile) GetManagementPolicies ¶
func (mg *Profile) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this Profile.
func (*Profile) GetObservation ¶
GetObservation of this Profile
func (*Profile) GetParameters ¶
GetParameters of this Profile
func (*Profile) GetProviderConfigReference ¶
GetProviderConfigReference of this Profile.
func (*Profile) GetPublishConnectionDetailsTo ¶
func (mg *Profile) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Profile.
func (*Profile) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Profile
func (*Profile) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Profile) GetWriteConnectionSecretToReference ¶
func (mg *Profile) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Profile.
func (*Profile) LateInitialize ¶
LateInitialize this Profile using its observed tfState. returns True if there are any spec changes for the resource.
func (*Profile) ResolveReferences ¶
ResolveReferences of this Profile.
func (*Profile) SetConditions ¶
SetConditions of this Profile.
func (*Profile) SetDeletionPolicy ¶
func (mg *Profile) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Profile.
func (*Profile) SetManagementPolicies ¶
func (mg *Profile) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies of this Profile.
func (*Profile) SetObservation ¶
SetObservation for this Profile
func (*Profile) SetParameters ¶
SetParameters for this Profile
func (*Profile) SetProviderConfigReference ¶
SetProviderConfigReference of this Profile.
func (*Profile) SetPublishConnectionDetailsTo ¶
func (mg *Profile) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Profile.
func (*Profile) SetWriteConnectionSecretToReference ¶
func (mg *Profile) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Profile.
type ProfileInitParameters ¶
type ProfileInitParameters struct { // (Number) Related DLP policies will trigger when the match count exceeds the number set. // Related DLP policies will trigger when the match count exceeds the number set. AllowedMatchCount *float64 `json:"allowedMatchCount,omitempty" tf:"allowed_match_count,omitempty"` // (Block List, Max: 1) Scan the context of predefined entries to only return matches surrounded by keywords. (see below for nested schema) // Scan the context of predefined entries to only return matches surrounded by keywords. ContextAwareness []ContextAwarenessInitParameters `json:"contextAwareness,omitempty" tf:"context_awareness,omitempty"` // (String) Brief summary of the profile and its intended use. // Brief summary of the profile and its intended use. Description *string `json:"description,omitempty" tf:"description,omitempty"` // (Block Set, Min: 1) List of entries to apply to the profile. (see below for nested schema) // List of entries to apply to the profile. Entry []EntryInitParameters `json:"entry,omitempty" tf:"entry,omitempty"` // (String) Name of the profile. Modifying this attribute will force creation of a new resource. // Name of the profile. **Modifying this attribute will force creation of a new resource.** Name *string `json:"name,omitempty" tf:"name,omitempty"` // (Boolean) If true, scan images via OCR to determine if any text present matches filters. // If true, scan images via OCR to determine if any text present matches filters. OcrEnabled *bool `json:"ocrEnabled,omitempty" tf:"ocr_enabled,omitempty"` // (String) The type of the profile. Available values: custom, predefined. Modifying this attribute will force creation of a new resource. // The type of the profile. Available values: `custom`, `predefined`. **Modifying this attribute will force creation of a new resource.** Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*ProfileInitParameters) DeepCopy ¶
func (in *ProfileInitParameters) DeepCopy() *ProfileInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProfileInitParameters.
func (*ProfileInitParameters) DeepCopyInto ¶
func (in *ProfileInitParameters) DeepCopyInto(out *ProfileInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProfileList ¶
type ProfileList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Profile `json:"items"` }
ProfileList contains a list of Profiles
func (*ProfileList) DeepCopy ¶
func (in *ProfileList) DeepCopy() *ProfileList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProfileList.
func (*ProfileList) DeepCopyInto ¶
func (in *ProfileList) DeepCopyInto(out *ProfileList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ProfileList) DeepCopyObject ¶
func (in *ProfileList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ProfileList) GetItems ¶
func (l *ProfileList) GetItems() []resource.Managed
GetItems of this ProfileList.
type ProfileObservation ¶
type ProfileObservation struct { // (String) The account identifier to target for the resource. Modifying this attribute will force creation of a new resource. // The account identifier to target for the resource. **Modifying this attribute will force creation of a new resource.** AccountID *string `json:"accountId,omitempty" tf:"account_id,omitempty"` // (Number) Related DLP policies will trigger when the match count exceeds the number set. // Related DLP policies will trigger when the match count exceeds the number set. AllowedMatchCount *float64 `json:"allowedMatchCount,omitempty" tf:"allowed_match_count,omitempty"` // (Block List, Max: 1) Scan the context of predefined entries to only return matches surrounded by keywords. (see below for nested schema) // Scan the context of predefined entries to only return matches surrounded by keywords. ContextAwareness []ContextAwarenessObservation `json:"contextAwareness,omitempty" tf:"context_awareness,omitempty"` // (String) Brief summary of the profile and its intended use. // Brief summary of the profile and its intended use. Description *string `json:"description,omitempty" tf:"description,omitempty"` // (Block Set, Min: 1) List of entries to apply to the profile. (see below for nested schema) // List of entries to apply to the profile. Entry []EntryObservation `json:"entry,omitempty" tf:"entry,omitempty"` // (String) The ID of this resource. ID *string `json:"id,omitempty" tf:"id,omitempty"` // (String) Name of the profile. Modifying this attribute will force creation of a new resource. // Name of the profile. **Modifying this attribute will force creation of a new resource.** Name *string `json:"name,omitempty" tf:"name,omitempty"` // (Boolean) If true, scan images via OCR to determine if any text present matches filters. // If true, scan images via OCR to determine if any text present matches filters. OcrEnabled *bool `json:"ocrEnabled,omitempty" tf:"ocr_enabled,omitempty"` // (String) The type of the profile. Available values: custom, predefined. Modifying this attribute will force creation of a new resource. // The type of the profile. Available values: `custom`, `predefined`. **Modifying this attribute will force creation of a new resource.** Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*ProfileObservation) DeepCopy ¶
func (in *ProfileObservation) DeepCopy() *ProfileObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProfileObservation.
func (*ProfileObservation) DeepCopyInto ¶
func (in *ProfileObservation) DeepCopyInto(out *ProfileObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProfileParameters ¶
type ProfileParameters struct { // (String) The account identifier to target for the resource. Modifying this attribute will force creation of a new resource. // The account identifier to target for the resource. **Modifying this attribute will force creation of a new resource.** // +crossplane:generate:reference:type=github.com/milkpirate/provider-cloudflare/apis/account/v1alpha1.Account // +kubebuilder:validation:Optional AccountID *string `json:"accountId,omitempty" tf:"account_id,omitempty"` // Reference to a Account in account to populate accountId. // +kubebuilder:validation:Optional AccountIDRef *v1.Reference `json:"accountIdRef,omitempty" tf:"-"` // Selector for a Account in account to populate accountId. // +kubebuilder:validation:Optional AccountIDSelector *v1.Selector `json:"accountIdSelector,omitempty" tf:"-"` // (Number) Related DLP policies will trigger when the match count exceeds the number set. // Related DLP policies will trigger when the match count exceeds the number set. // +kubebuilder:validation:Optional AllowedMatchCount *float64 `json:"allowedMatchCount,omitempty" tf:"allowed_match_count,omitempty"` // (Block List, Max: 1) Scan the context of predefined entries to only return matches surrounded by keywords. (see below for nested schema) // Scan the context of predefined entries to only return matches surrounded by keywords. // +kubebuilder:validation:Optional ContextAwareness []ContextAwarenessParameters `json:"contextAwareness,omitempty" tf:"context_awareness,omitempty"` // (String) Brief summary of the profile and its intended use. // Brief summary of the profile and its intended use. // +kubebuilder:validation:Optional Description *string `json:"description,omitempty" tf:"description,omitempty"` // (Block Set, Min: 1) List of entries to apply to the profile. (see below for nested schema) // List of entries to apply to the profile. // +kubebuilder:validation:Optional Entry []EntryParameters `json:"entry,omitempty" tf:"entry,omitempty"` // (String) Name of the profile. Modifying this attribute will force creation of a new resource. // Name of the profile. **Modifying this attribute will force creation of a new resource.** // +kubebuilder:validation:Optional Name *string `json:"name,omitempty" tf:"name,omitempty"` // (Boolean) If true, scan images via OCR to determine if any text present matches filters. // If true, scan images via OCR to determine if any text present matches filters. // +kubebuilder:validation:Optional OcrEnabled *bool `json:"ocrEnabled,omitempty" tf:"ocr_enabled,omitempty"` // (String) The type of the profile. Available values: custom, predefined. Modifying this attribute will force creation of a new resource. // The type of the profile. Available values: `custom`, `predefined`. **Modifying this attribute will force creation of a new resource.** // +kubebuilder:validation:Optional Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*ProfileParameters) DeepCopy ¶
func (in *ProfileParameters) DeepCopy() *ProfileParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProfileParameters.
func (*ProfileParameters) DeepCopyInto ¶
func (in *ProfileParameters) DeepCopyInto(out *ProfileParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProfileSpec ¶
type ProfileSpec struct { v1.ResourceSpec `json:",inline"` ForProvider ProfileParameters `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 ProfileInitParameters `json:"initProvider,omitempty"` }
ProfileSpec defines the desired state of Profile
func (*ProfileSpec) DeepCopy ¶
func (in *ProfileSpec) DeepCopy() *ProfileSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProfileSpec.
func (*ProfileSpec) DeepCopyInto ¶
func (in *ProfileSpec) DeepCopyInto(out *ProfileSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProfileStatus ¶
type ProfileStatus struct { v1.ResourceStatus `json:",inline"` AtProvider ProfileObservation `json:"atProvider,omitempty"` }
ProfileStatus defines the observed state of Profile.
func (*ProfileStatus) DeepCopy ¶
func (in *ProfileStatus) DeepCopy() *ProfileStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProfileStatus.
func (*ProfileStatus) DeepCopyInto ¶
func (in *ProfileStatus) DeepCopyInto(out *ProfileStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SkipInitParameters ¶
type SkipInitParameters struct { // (Boolean) Return all matches, regardless of context analysis result, if the data is a file. // Return all matches, regardless of context analysis result, if the data is a file. Files *bool `json:"files,omitempty" tf:"files,omitempty"` }
func (*SkipInitParameters) DeepCopy ¶
func (in *SkipInitParameters) DeepCopy() *SkipInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SkipInitParameters.
func (*SkipInitParameters) DeepCopyInto ¶
func (in *SkipInitParameters) DeepCopyInto(out *SkipInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SkipObservation ¶
type SkipObservation struct { // (Boolean) Return all matches, regardless of context analysis result, if the data is a file. // Return all matches, regardless of context analysis result, if the data is a file. Files *bool `json:"files,omitempty" tf:"files,omitempty"` }
func (*SkipObservation) DeepCopy ¶
func (in *SkipObservation) DeepCopy() *SkipObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SkipObservation.
func (*SkipObservation) DeepCopyInto ¶
func (in *SkipObservation) DeepCopyInto(out *SkipObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SkipParameters ¶
type SkipParameters struct { // (Boolean) Return all matches, regardless of context analysis result, if the data is a file. // Return all matches, regardless of context analysis result, if the data is a file. // +kubebuilder:validation:Optional Files *bool `json:"files" tf:"files,omitempty"` }
func (*SkipParameters) DeepCopy ¶
func (in *SkipParameters) DeepCopy() *SkipParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SkipParameters.
func (*SkipParameters) DeepCopyInto ¶
func (in *SkipParameters) DeepCopyInto(out *SkipParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.