Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=nsxtlbhttpresponserewriterule.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type CookieConditionObservation
- type CookieConditionParameters
- type HeaderRewriteActionObservation
- type HeaderRewriteActionParameters
- type IPConditionObservation
- type IPConditionParameters
- type LbHttpResponseRewriteRule
- func (in *LbHttpResponseRewriteRule) DeepCopy() *LbHttpResponseRewriteRule
- func (in *LbHttpResponseRewriteRule) DeepCopyInto(out *LbHttpResponseRewriteRule)
- func (in *LbHttpResponseRewriteRule) DeepCopyObject() runtime.Object
- func (mg *LbHttpResponseRewriteRule) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *LbHttpResponseRewriteRule) GetConnectionDetailsMapping() map[string]string
- func (mg *LbHttpResponseRewriteRule) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *LbHttpResponseRewriteRule) GetID() string
- func (mg *LbHttpResponseRewriteRule) GetManagementPolicy() xpv1.ManagementPolicy
- func (tr *LbHttpResponseRewriteRule) GetObservation() (map[string]any, error)
- func (tr *LbHttpResponseRewriteRule) GetParameters() (map[string]any, error)
- func (mg *LbHttpResponseRewriteRule) GetProviderConfigReference() *xpv1.Reference
- func (mg *LbHttpResponseRewriteRule) GetProviderReference() *xpv1.Reference
- func (mg *LbHttpResponseRewriteRule) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *LbHttpResponseRewriteRule) GetTerraformResourceType() string
- func (tr *LbHttpResponseRewriteRule) GetTerraformSchemaVersion() int
- func (mg *LbHttpResponseRewriteRule) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *LbHttpResponseRewriteRule) LateInitialize(attrs []byte) (bool, error)
- func (mg *LbHttpResponseRewriteRule) SetConditions(c ...xpv1.Condition)
- func (mg *LbHttpResponseRewriteRule) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *LbHttpResponseRewriteRule) SetManagementPolicy(r xpv1.ManagementPolicy)
- func (tr *LbHttpResponseRewriteRule) SetObservation(obs map[string]any) error
- func (tr *LbHttpResponseRewriteRule) SetParameters(params map[string]any) error
- func (mg *LbHttpResponseRewriteRule) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *LbHttpResponseRewriteRule) SetProviderReference(r *xpv1.Reference)
- func (mg *LbHttpResponseRewriteRule) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *LbHttpResponseRewriteRule) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type LbHttpResponseRewriteRuleList
- func (in *LbHttpResponseRewriteRuleList) DeepCopy() *LbHttpResponseRewriteRuleList
- func (in *LbHttpResponseRewriteRuleList) DeepCopyInto(out *LbHttpResponseRewriteRuleList)
- func (in *LbHttpResponseRewriteRuleList) DeepCopyObject() runtime.Object
- func (l *LbHttpResponseRewriteRuleList) GetItems() []resource.Managed
- type LbHttpResponseRewriteRuleObservation
- type LbHttpResponseRewriteRuleParameters
- type LbHttpResponseRewriteRuleSpec
- type LbHttpResponseRewriteRuleStatus
- type MethodConditionObservation
- type MethodConditionParameters
- type RequestHeaderConditionObservation
- type RequestHeaderConditionParameters
- type ResponseHeaderConditionObservation
- type ResponseHeaderConditionParameters
- type TCPConditionObservation
- type TCPConditionParameters
- type TagObservation
- type TagParameters
- type URIArgumentsConditionObservation
- type URIArgumentsConditionParameters
- type URIConditionObservation
- type URIConditionParameters
- type VersionConditionObservation
- type VersionConditionParameters
Constants ¶
const ( CRDGroup = "nsxtlbhttpresponserewriterule.crossplane.io" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
var ( // CRDGroupVersion is the API Group Version used to register the objects CRDGroupVersion = schema.GroupVersion{Group: CRDGroup, Version: CRDVersion} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: CRDGroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
var ( LbHttpResponseRewriteRule_Kind = "LbHttpResponseRewriteRule" LbHttpResponseRewriteRule_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: LbHttpResponseRewriteRule_Kind}.String() LbHttpResponseRewriteRule_KindAPIVersion = LbHttpResponseRewriteRule_Kind + "." + CRDGroupVersion.String() LbHttpResponseRewriteRule_GroupVersionKind = CRDGroupVersion.WithKind(LbHttpResponseRewriteRule_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type CookieConditionObservation ¶
type CookieConditionObservation struct { // If true, case is significant in condition matching CaseSensitive *bool `json:"caseSensitive,omitempty" tf:"case_sensitive,omitempty"` // Whether to reverse match result of this condition Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` // Match type (STARTS_WITH, ENDS_WITH, EQUALS, CONTAINS, REGEX) MatchType *string `json:"matchType,omitempty" tf:"match_type,omitempty"` Name *string `json:"name,omitempty" tf:"name,omitempty"` Value *string `json:"value,omitempty" tf:"value,omitempty"` }
func (*CookieConditionObservation) DeepCopy ¶
func (in *CookieConditionObservation) DeepCopy() *CookieConditionObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CookieConditionObservation.
func (*CookieConditionObservation) DeepCopyInto ¶
func (in *CookieConditionObservation) DeepCopyInto(out *CookieConditionObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CookieConditionParameters ¶
type CookieConditionParameters struct { // If true, case is significant in condition matching // +kubebuilder:validation:Optional CaseSensitive *bool `json:"caseSensitive,omitempty" tf:"case_sensitive,omitempty"` // Whether to reverse match result of this condition // +kubebuilder:validation:Optional Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` // Match type (STARTS_WITH, ENDS_WITH, EQUALS, CONTAINS, REGEX) // +kubebuilder:validation:Required MatchType *string `json:"matchType" tf:"match_type,omitempty"` // +kubebuilder:validation:Required Name *string `json:"name" tf:"name,omitempty"` // +kubebuilder:validation:Required Value *string `json:"value" tf:"value,omitempty"` }
func (*CookieConditionParameters) DeepCopy ¶
func (in *CookieConditionParameters) DeepCopy() *CookieConditionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CookieConditionParameters.
func (*CookieConditionParameters) DeepCopyInto ¶
func (in *CookieConditionParameters) DeepCopyInto(out *CookieConditionParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HeaderRewriteActionObservation ¶
type HeaderRewriteActionObservation struct { Name *string `json:"name,omitempty" tf:"name,omitempty"` Value *string `json:"value,omitempty" tf:"value,omitempty"` }
func (*HeaderRewriteActionObservation) DeepCopy ¶
func (in *HeaderRewriteActionObservation) DeepCopy() *HeaderRewriteActionObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HeaderRewriteActionObservation.
func (*HeaderRewriteActionObservation) DeepCopyInto ¶
func (in *HeaderRewriteActionObservation) DeepCopyInto(out *HeaderRewriteActionObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HeaderRewriteActionParameters ¶
type HeaderRewriteActionParameters struct { // +kubebuilder:validation:Required Name *string `json:"name" tf:"name,omitempty"` // +kubebuilder:validation:Optional Value *string `json:"value,omitempty" tf:"value,omitempty"` }
func (*HeaderRewriteActionParameters) DeepCopy ¶
func (in *HeaderRewriteActionParameters) DeepCopy() *HeaderRewriteActionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HeaderRewriteActionParameters.
func (*HeaderRewriteActionParameters) DeepCopyInto ¶
func (in *HeaderRewriteActionParameters) DeepCopyInto(out *HeaderRewriteActionParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IPConditionObservation ¶
type IPConditionObservation struct { // Whether to reverse match result of this condition Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` SourceAddress *string `json:"sourceAddress,omitempty" tf:"source_address,omitempty"` }
func (*IPConditionObservation) DeepCopy ¶
func (in *IPConditionObservation) DeepCopy() *IPConditionObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPConditionObservation.
func (*IPConditionObservation) DeepCopyInto ¶
func (in *IPConditionObservation) DeepCopyInto(out *IPConditionObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IPConditionParameters ¶
type IPConditionParameters struct { // Whether to reverse match result of this condition // +kubebuilder:validation:Optional Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` // +kubebuilder:validation:Required SourceAddress *string `json:"sourceAddress" tf:"source_address,omitempty"` }
func (*IPConditionParameters) DeepCopy ¶
func (in *IPConditionParameters) DeepCopy() *IPConditionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPConditionParameters.
func (*IPConditionParameters) DeepCopyInto ¶
func (in *IPConditionParameters) DeepCopyInto(out *IPConditionParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LbHttpResponseRewriteRule ¶
type LbHttpResponseRewriteRule struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` // +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.headerRewriteAction)",message="headerRewriteAction is a required parameter" Spec LbHttpResponseRewriteRuleSpec `json:"spec"` Status LbHttpResponseRewriteRuleStatus `json:"status,omitempty"` }
LbHttpResponseRewriteRule is the Schema for the LbHttpResponseRewriteRules 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,nsxt}
func (*LbHttpResponseRewriteRule) DeepCopy ¶
func (in *LbHttpResponseRewriteRule) DeepCopy() *LbHttpResponseRewriteRule
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LbHttpResponseRewriteRule.
func (*LbHttpResponseRewriteRule) DeepCopyInto ¶
func (in *LbHttpResponseRewriteRule) DeepCopyInto(out *LbHttpResponseRewriteRule)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*LbHttpResponseRewriteRule) DeepCopyObject ¶
func (in *LbHttpResponseRewriteRule) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*LbHttpResponseRewriteRule) GetCondition ¶
func (mg *LbHttpResponseRewriteRule) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this LbHttpResponseRewriteRule.
func (*LbHttpResponseRewriteRule) GetConnectionDetailsMapping ¶
func (tr *LbHttpResponseRewriteRule) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this LbHttpResponseRewriteRule
func (*LbHttpResponseRewriteRule) GetDeletionPolicy ¶
func (mg *LbHttpResponseRewriteRule) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this LbHttpResponseRewriteRule.
func (*LbHttpResponseRewriteRule) GetID ¶
func (tr *LbHttpResponseRewriteRule) GetID() string
GetID returns ID of underlying Terraform resource of this LbHttpResponseRewriteRule
func (*LbHttpResponseRewriteRule) GetManagementPolicy ¶
func (mg *LbHttpResponseRewriteRule) GetManagementPolicy() xpv1.ManagementPolicy
GetManagementPolicy of this LbHttpResponseRewriteRule.
func (*LbHttpResponseRewriteRule) GetObservation ¶
func (tr *LbHttpResponseRewriteRule) GetObservation() (map[string]any, error)
GetObservation of this LbHttpResponseRewriteRule
func (*LbHttpResponseRewriteRule) GetParameters ¶
func (tr *LbHttpResponseRewriteRule) GetParameters() (map[string]any, error)
GetParameters of this LbHttpResponseRewriteRule
func (*LbHttpResponseRewriteRule) GetProviderConfigReference ¶
func (mg *LbHttpResponseRewriteRule) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this LbHttpResponseRewriteRule.
func (*LbHttpResponseRewriteRule) GetProviderReference ¶
func (mg *LbHttpResponseRewriteRule) GetProviderReference() *xpv1.Reference
GetProviderReference of this LbHttpResponseRewriteRule. Deprecated: Use GetProviderConfigReference.
func (*LbHttpResponseRewriteRule) GetPublishConnectionDetailsTo ¶
func (mg *LbHttpResponseRewriteRule) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this LbHttpResponseRewriteRule.
func (*LbHttpResponseRewriteRule) GetTerraformResourceType ¶
func (mg *LbHttpResponseRewriteRule) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this LbHttpResponseRewriteRule
func (*LbHttpResponseRewriteRule) GetTerraformSchemaVersion ¶
func (tr *LbHttpResponseRewriteRule) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*LbHttpResponseRewriteRule) GetWriteConnectionSecretToReference ¶
func (mg *LbHttpResponseRewriteRule) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this LbHttpResponseRewriteRule.
func (*LbHttpResponseRewriteRule) LateInitialize ¶
func (tr *LbHttpResponseRewriteRule) LateInitialize(attrs []byte) (bool, error)
LateInitialize this LbHttpResponseRewriteRule using its observed tfState. returns True if there are any spec changes for the resource.
func (*LbHttpResponseRewriteRule) SetConditions ¶
func (mg *LbHttpResponseRewriteRule) SetConditions(c ...xpv1.Condition)
SetConditions of this LbHttpResponseRewriteRule.
func (*LbHttpResponseRewriteRule) SetDeletionPolicy ¶
func (mg *LbHttpResponseRewriteRule) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this LbHttpResponseRewriteRule.
func (*LbHttpResponseRewriteRule) SetManagementPolicy ¶
func (mg *LbHttpResponseRewriteRule) SetManagementPolicy(r xpv1.ManagementPolicy)
SetManagementPolicy of this LbHttpResponseRewriteRule.
func (*LbHttpResponseRewriteRule) SetObservation ¶
func (tr *LbHttpResponseRewriteRule) SetObservation(obs map[string]any) error
SetObservation for this LbHttpResponseRewriteRule
func (*LbHttpResponseRewriteRule) SetParameters ¶
func (tr *LbHttpResponseRewriteRule) SetParameters(params map[string]any) error
SetParameters for this LbHttpResponseRewriteRule
func (*LbHttpResponseRewriteRule) SetProviderConfigReference ¶
func (mg *LbHttpResponseRewriteRule) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this LbHttpResponseRewriteRule.
func (*LbHttpResponseRewriteRule) SetProviderReference ¶
func (mg *LbHttpResponseRewriteRule) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this LbHttpResponseRewriteRule. Deprecated: Use SetProviderConfigReference.
func (*LbHttpResponseRewriteRule) SetPublishConnectionDetailsTo ¶
func (mg *LbHttpResponseRewriteRule) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this LbHttpResponseRewriteRule.
func (*LbHttpResponseRewriteRule) SetWriteConnectionSecretToReference ¶
func (mg *LbHttpResponseRewriteRule) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this LbHttpResponseRewriteRule.
type LbHttpResponseRewriteRuleList ¶
type LbHttpResponseRewriteRuleList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []LbHttpResponseRewriteRule `json:"items"` }
LbHttpResponseRewriteRuleList contains a list of LbHttpResponseRewriteRules
func (*LbHttpResponseRewriteRuleList) DeepCopy ¶
func (in *LbHttpResponseRewriteRuleList) DeepCopy() *LbHttpResponseRewriteRuleList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LbHttpResponseRewriteRuleList.
func (*LbHttpResponseRewriteRuleList) DeepCopyInto ¶
func (in *LbHttpResponseRewriteRuleList) DeepCopyInto(out *LbHttpResponseRewriteRuleList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*LbHttpResponseRewriteRuleList) DeepCopyObject ¶
func (in *LbHttpResponseRewriteRuleList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*LbHttpResponseRewriteRuleList) GetItems ¶
func (l *LbHttpResponseRewriteRuleList) GetItems() []resource.Managed
GetItems of this LbHttpResponseRewriteRuleList.
type LbHttpResponseRewriteRuleObservation ¶
type LbHttpResponseRewriteRuleObservation struct { // Rule condition based on http header CookieCondition []CookieConditionObservation `json:"cookieCondition,omitempty" tf:"cookie_condition,omitempty"` // Description of this resource Description *string `json:"description,omitempty" tf:"description,omitempty"` // The display name of this resource. Defaults to ID if not set DisplayName *string `json:"displayName,omitempty" tf:"display_name,omitempty"` // Header to replace original header in outgoing message HeaderRewriteAction []HeaderRewriteActionObservation `json:"headerRewriteAction,omitempty" tf:"header_rewrite_action,omitempty"` ID *string `json:"id,omitempty" tf:"id,omitempty"` // Rule condition based on IP settings of the message IPCondition []IPConditionObservation `json:"ipCondition,omitempty" tf:"ip_condition,omitempty"` // Strategy when multiple match conditions are specified in one rule (ANY vs ALL) MatchStrategy *string `json:"matchStrategy,omitempty" tf:"match_strategy,omitempty"` // Rule condition based on http request method MethodCondition []MethodConditionObservation `json:"methodCondition,omitempty" tf:"method_condition,omitempty"` // Rule condition based on http header RequestHeaderCondition []RequestHeaderConditionObservation `json:"requestHeaderCondition,omitempty" tf:"request_header_condition,omitempty"` // Rule condition based on http header ResponseHeaderCondition []ResponseHeaderConditionObservation `json:"responseHeaderCondition,omitempty" tf:"response_header_condition,omitempty"` // The _revision property describes the current revision of the resource. To prevent clients from overwriting each other's changes, PUT operations must include the current _revision of the resource, which clients should obtain by issuing a GET operation. If the _revision provided in a PUT request is missing or stale, the operation will be rejected Revision *float64 `json:"revision,omitempty" tf:"revision,omitempty"` // Rule condition based on TCP settings of the message TCPCondition []TCPConditionObservation `json:"tcpCondition,omitempty" tf:"tcp_condition,omitempty"` // Set of opaque identifiers meaningful to the user Tag []TagObservation `json:"tag,omitempty" tf:"tag,omitempty"` // Rule condition based on http request URI arguments (query string) URIArgumentsCondition []URIArgumentsConditionObservation `json:"uriArgumentsCondition,omitempty" tf:"uri_arguments_condition,omitempty"` // Rule condition based on http request URI URICondition []URIConditionObservation `json:"uriCondition,omitempty" tf:"uri_condition,omitempty"` // Rule condition based on http request version VersionCondition []VersionConditionObservation `json:"versionCondition,omitempty" tf:"version_condition,omitempty"` }
func (*LbHttpResponseRewriteRuleObservation) DeepCopy ¶
func (in *LbHttpResponseRewriteRuleObservation) DeepCopy() *LbHttpResponseRewriteRuleObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LbHttpResponseRewriteRuleObservation.
func (*LbHttpResponseRewriteRuleObservation) DeepCopyInto ¶
func (in *LbHttpResponseRewriteRuleObservation) DeepCopyInto(out *LbHttpResponseRewriteRuleObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LbHttpResponseRewriteRuleParameters ¶
type LbHttpResponseRewriteRuleParameters struct { // Rule condition based on http header // +kubebuilder:validation:Optional CookieCondition []CookieConditionParameters `json:"cookieCondition,omitempty" tf:"cookie_condition,omitempty"` // Description of this resource // +kubebuilder:validation:Optional Description *string `json:"description,omitempty" tf:"description,omitempty"` // The display name of this resource. Defaults to ID if not set // +kubebuilder:validation:Optional DisplayName *string `json:"displayName,omitempty" tf:"display_name,omitempty"` // Header to replace original header in outgoing message // +kubebuilder:validation:Optional HeaderRewriteAction []HeaderRewriteActionParameters `json:"headerRewriteAction,omitempty" tf:"header_rewrite_action,omitempty"` // Rule condition based on IP settings of the message // +kubebuilder:validation:Optional IPCondition []IPConditionParameters `json:"ipCondition,omitempty" tf:"ip_condition,omitempty"` // Strategy when multiple match conditions are specified in one rule (ANY vs ALL) // +kubebuilder:validation:Optional MatchStrategy *string `json:"matchStrategy,omitempty" tf:"match_strategy,omitempty"` // Rule condition based on http request method // +kubebuilder:validation:Optional MethodCondition []MethodConditionParameters `json:"methodCondition,omitempty" tf:"method_condition,omitempty"` // Rule condition based on http header // +kubebuilder:validation:Optional RequestHeaderCondition []RequestHeaderConditionParameters `json:"requestHeaderCondition,omitempty" tf:"request_header_condition,omitempty"` // Rule condition based on http header // +kubebuilder:validation:Optional ResponseHeaderCondition []ResponseHeaderConditionParameters `json:"responseHeaderCondition,omitempty" tf:"response_header_condition,omitempty"` // Rule condition based on TCP settings of the message // +kubebuilder:validation:Optional TCPCondition []TCPConditionParameters `json:"tcpCondition,omitempty" tf:"tcp_condition,omitempty"` // Set of opaque identifiers meaningful to the user // +kubebuilder:validation:Optional Tag []TagParameters `json:"tag,omitempty" tf:"tag,omitempty"` // Rule condition based on http request URI arguments (query string) // +kubebuilder:validation:Optional URIArgumentsCondition []URIArgumentsConditionParameters `json:"uriArgumentsCondition,omitempty" tf:"uri_arguments_condition,omitempty"` // Rule condition based on http request URI // +kubebuilder:validation:Optional URICondition []URIConditionParameters `json:"uriCondition,omitempty" tf:"uri_condition,omitempty"` // Rule condition based on http request version // +kubebuilder:validation:Optional VersionCondition []VersionConditionParameters `json:"versionCondition,omitempty" tf:"version_condition,omitempty"` }
func (*LbHttpResponseRewriteRuleParameters) DeepCopy ¶
func (in *LbHttpResponseRewriteRuleParameters) DeepCopy() *LbHttpResponseRewriteRuleParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LbHttpResponseRewriteRuleParameters.
func (*LbHttpResponseRewriteRuleParameters) DeepCopyInto ¶
func (in *LbHttpResponseRewriteRuleParameters) DeepCopyInto(out *LbHttpResponseRewriteRuleParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LbHttpResponseRewriteRuleSpec ¶
type LbHttpResponseRewriteRuleSpec struct { v1.ResourceSpec `json:",inline"` ForProvider LbHttpResponseRewriteRuleParameters `json:"forProvider"` }
LbHttpResponseRewriteRuleSpec defines the desired state of LbHttpResponseRewriteRule
func (*LbHttpResponseRewriteRuleSpec) DeepCopy ¶
func (in *LbHttpResponseRewriteRuleSpec) DeepCopy() *LbHttpResponseRewriteRuleSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LbHttpResponseRewriteRuleSpec.
func (*LbHttpResponseRewriteRuleSpec) DeepCopyInto ¶
func (in *LbHttpResponseRewriteRuleSpec) DeepCopyInto(out *LbHttpResponseRewriteRuleSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LbHttpResponseRewriteRuleStatus ¶
type LbHttpResponseRewriteRuleStatus struct { v1.ResourceStatus `json:",inline"` AtProvider LbHttpResponseRewriteRuleObservation `json:"atProvider,omitempty"` }
LbHttpResponseRewriteRuleStatus defines the observed state of LbHttpResponseRewriteRule.
func (*LbHttpResponseRewriteRuleStatus) DeepCopy ¶
func (in *LbHttpResponseRewriteRuleStatus) DeepCopy() *LbHttpResponseRewriteRuleStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LbHttpResponseRewriteRuleStatus.
func (*LbHttpResponseRewriteRuleStatus) DeepCopyInto ¶
func (in *LbHttpResponseRewriteRuleStatus) DeepCopyInto(out *LbHttpResponseRewriteRuleStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type MethodConditionObservation ¶
type MethodConditionObservation struct { // Whether to reverse match result of this condition Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` Method *string `json:"method,omitempty" tf:"method,omitempty"` }
func (*MethodConditionObservation) DeepCopy ¶
func (in *MethodConditionObservation) DeepCopy() *MethodConditionObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MethodConditionObservation.
func (*MethodConditionObservation) DeepCopyInto ¶
func (in *MethodConditionObservation) DeepCopyInto(out *MethodConditionObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type MethodConditionParameters ¶
type MethodConditionParameters struct { // Whether to reverse match result of this condition // +kubebuilder:validation:Optional Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` // +kubebuilder:validation:Required Method *string `json:"method" tf:"method,omitempty"` }
func (*MethodConditionParameters) DeepCopy ¶
func (in *MethodConditionParameters) DeepCopy() *MethodConditionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MethodConditionParameters.
func (*MethodConditionParameters) DeepCopyInto ¶
func (in *MethodConditionParameters) DeepCopyInto(out *MethodConditionParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RequestHeaderConditionObservation ¶
type RequestHeaderConditionObservation struct { // If true, case is significant in condition matching CaseSensitive *bool `json:"caseSensitive,omitempty" tf:"case_sensitive,omitempty"` // Whether to reverse match result of this condition Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` // Match type (STARTS_WITH, ENDS_WITH, EQUALS, CONTAINS, REGEX) MatchType *string `json:"matchType,omitempty" tf:"match_type,omitempty"` Name *string `json:"name,omitempty" tf:"name,omitempty"` Value *string `json:"value,omitempty" tf:"value,omitempty"` }
func (*RequestHeaderConditionObservation) DeepCopy ¶
func (in *RequestHeaderConditionObservation) DeepCopy() *RequestHeaderConditionObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RequestHeaderConditionObservation.
func (*RequestHeaderConditionObservation) DeepCopyInto ¶
func (in *RequestHeaderConditionObservation) DeepCopyInto(out *RequestHeaderConditionObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RequestHeaderConditionParameters ¶
type RequestHeaderConditionParameters struct { // If true, case is significant in condition matching // +kubebuilder:validation:Optional CaseSensitive *bool `json:"caseSensitive,omitempty" tf:"case_sensitive,omitempty"` // Whether to reverse match result of this condition // +kubebuilder:validation:Optional Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` // Match type (STARTS_WITH, ENDS_WITH, EQUALS, CONTAINS, REGEX) // +kubebuilder:validation:Required MatchType *string `json:"matchType" tf:"match_type,omitempty"` // +kubebuilder:validation:Required Name *string `json:"name" tf:"name,omitempty"` // +kubebuilder:validation:Required Value *string `json:"value" tf:"value,omitempty"` }
func (*RequestHeaderConditionParameters) DeepCopy ¶
func (in *RequestHeaderConditionParameters) DeepCopy() *RequestHeaderConditionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RequestHeaderConditionParameters.
func (*RequestHeaderConditionParameters) DeepCopyInto ¶
func (in *RequestHeaderConditionParameters) DeepCopyInto(out *RequestHeaderConditionParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResponseHeaderConditionObservation ¶
type ResponseHeaderConditionObservation struct { // If true, case is significant in condition matching CaseSensitive *bool `json:"caseSensitive,omitempty" tf:"case_sensitive,omitempty"` // Whether to reverse match result of this condition Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` // Match type (STARTS_WITH, ENDS_WITH, EQUALS, CONTAINS, REGEX) MatchType *string `json:"matchType,omitempty" tf:"match_type,omitempty"` Name *string `json:"name,omitempty" tf:"name,omitempty"` Value *string `json:"value,omitempty" tf:"value,omitempty"` }
func (*ResponseHeaderConditionObservation) DeepCopy ¶
func (in *ResponseHeaderConditionObservation) DeepCopy() *ResponseHeaderConditionObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResponseHeaderConditionObservation.
func (*ResponseHeaderConditionObservation) DeepCopyInto ¶
func (in *ResponseHeaderConditionObservation) DeepCopyInto(out *ResponseHeaderConditionObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResponseHeaderConditionParameters ¶
type ResponseHeaderConditionParameters struct { // If true, case is significant in condition matching // +kubebuilder:validation:Optional CaseSensitive *bool `json:"caseSensitive,omitempty" tf:"case_sensitive,omitempty"` // Whether to reverse match result of this condition // +kubebuilder:validation:Optional Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` // Match type (STARTS_WITH, ENDS_WITH, EQUALS, CONTAINS, REGEX) // +kubebuilder:validation:Required MatchType *string `json:"matchType" tf:"match_type,omitempty"` // +kubebuilder:validation:Required Name *string `json:"name" tf:"name,omitempty"` // +kubebuilder:validation:Required Value *string `json:"value" tf:"value,omitempty"` }
func (*ResponseHeaderConditionParameters) DeepCopy ¶
func (in *ResponseHeaderConditionParameters) DeepCopy() *ResponseHeaderConditionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResponseHeaderConditionParameters.
func (*ResponseHeaderConditionParameters) DeepCopyInto ¶
func (in *ResponseHeaderConditionParameters) DeepCopyInto(out *ResponseHeaderConditionParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TCPConditionObservation ¶
type TCPConditionObservation struct { // Whether to reverse match result of this condition Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` SourcePort *string `json:"sourcePort,omitempty" tf:"source_port,omitempty"` }
func (*TCPConditionObservation) DeepCopy ¶
func (in *TCPConditionObservation) DeepCopy() *TCPConditionObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPConditionObservation.
func (*TCPConditionObservation) DeepCopyInto ¶
func (in *TCPConditionObservation) DeepCopyInto(out *TCPConditionObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TCPConditionParameters ¶
type TCPConditionParameters struct { // Whether to reverse match result of this condition // +kubebuilder:validation:Optional Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` // +kubebuilder:validation:Required SourcePort *string `json:"sourcePort" tf:"source_port,omitempty"` }
func (*TCPConditionParameters) DeepCopy ¶
func (in *TCPConditionParameters) DeepCopy() *TCPConditionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPConditionParameters.
func (*TCPConditionParameters) DeepCopyInto ¶
func (in *TCPConditionParameters) DeepCopyInto(out *TCPConditionParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TagObservation ¶
type TagObservation struct { Scope *string `json:"scope,omitempty" tf:"scope,omitempty"` Tag *string `json:"tag,omitempty" tf:"tag,omitempty"` }
func (*TagObservation) DeepCopy ¶
func (in *TagObservation) DeepCopy() *TagObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagObservation.
func (*TagObservation) DeepCopyInto ¶
func (in *TagObservation) DeepCopyInto(out *TagObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TagParameters ¶
type TagParameters struct { // +kubebuilder:validation:Optional Scope *string `json:"scope,omitempty" tf:"scope,omitempty"` // +kubebuilder:validation:Optional Tag *string `json:"tag,omitempty" tf:"tag,omitempty"` }
func (*TagParameters) DeepCopy ¶
func (in *TagParameters) DeepCopy() *TagParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagParameters.
func (*TagParameters) DeepCopyInto ¶
func (in *TagParameters) DeepCopyInto(out *TagParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type URIArgumentsConditionObservation ¶
type URIArgumentsConditionObservation struct { // If true, case is significant in condition matching CaseSensitive *bool `json:"caseSensitive,omitempty" tf:"case_sensitive,omitempty"` // Whether to reverse match result of this condition Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` // Match type (STARTS_WITH, ENDS_WITH, EQUALS, CONTAINS, REGEX) MatchType *string `json:"matchType,omitempty" tf:"match_type,omitempty"` URIArguments *string `json:"uriArguments,omitempty" tf:"uri_arguments,omitempty"` }
func (*URIArgumentsConditionObservation) DeepCopy ¶
func (in *URIArgumentsConditionObservation) DeepCopy() *URIArgumentsConditionObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new URIArgumentsConditionObservation.
func (*URIArgumentsConditionObservation) DeepCopyInto ¶
func (in *URIArgumentsConditionObservation) DeepCopyInto(out *URIArgumentsConditionObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type URIArgumentsConditionParameters ¶
type URIArgumentsConditionParameters struct { // If true, case is significant in condition matching // +kubebuilder:validation:Optional CaseSensitive *bool `json:"caseSensitive,omitempty" tf:"case_sensitive,omitempty"` // Whether to reverse match result of this condition // +kubebuilder:validation:Optional Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` // Match type (STARTS_WITH, ENDS_WITH, EQUALS, CONTAINS, REGEX) // +kubebuilder:validation:Required MatchType *string `json:"matchType" tf:"match_type,omitempty"` // +kubebuilder:validation:Required URIArguments *string `json:"uriArguments" tf:"uri_arguments,omitempty"` }
func (*URIArgumentsConditionParameters) DeepCopy ¶
func (in *URIArgumentsConditionParameters) DeepCopy() *URIArgumentsConditionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new URIArgumentsConditionParameters.
func (*URIArgumentsConditionParameters) DeepCopyInto ¶
func (in *URIArgumentsConditionParameters) DeepCopyInto(out *URIArgumentsConditionParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type URIConditionObservation ¶
type URIConditionObservation struct { // If true, case is significant in condition matching CaseSensitive *bool `json:"caseSensitive,omitempty" tf:"case_sensitive,omitempty"` // Whether to reverse match result of this condition Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` // Match type (STARTS_WITH, ENDS_WITH, EQUALS, CONTAINS, REGEX) MatchType *string `json:"matchType,omitempty" tf:"match_type,omitempty"` URI *string `json:"uri,omitempty" tf:"uri,omitempty"` }
func (*URIConditionObservation) DeepCopy ¶
func (in *URIConditionObservation) DeepCopy() *URIConditionObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new URIConditionObservation.
func (*URIConditionObservation) DeepCopyInto ¶
func (in *URIConditionObservation) DeepCopyInto(out *URIConditionObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type URIConditionParameters ¶
type URIConditionParameters struct { // If true, case is significant in condition matching // +kubebuilder:validation:Optional CaseSensitive *bool `json:"caseSensitive,omitempty" tf:"case_sensitive,omitempty"` // Whether to reverse match result of this condition // +kubebuilder:validation:Optional Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` // Match type (STARTS_WITH, ENDS_WITH, EQUALS, CONTAINS, REGEX) // +kubebuilder:validation:Required MatchType *string `json:"matchType" tf:"match_type,omitempty"` // +kubebuilder:validation:Required URI *string `json:"uri" tf:"uri,omitempty"` }
func (*URIConditionParameters) DeepCopy ¶
func (in *URIConditionParameters) DeepCopy() *URIConditionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new URIConditionParameters.
func (*URIConditionParameters) DeepCopyInto ¶
func (in *URIConditionParameters) DeepCopyInto(out *URIConditionParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type VersionConditionObservation ¶
type VersionConditionObservation struct { // Whether to reverse match result of this condition Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` Version *string `json:"version,omitempty" tf:"version,omitempty"` }
func (*VersionConditionObservation) DeepCopy ¶
func (in *VersionConditionObservation) DeepCopy() *VersionConditionObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VersionConditionObservation.
func (*VersionConditionObservation) DeepCopyInto ¶
func (in *VersionConditionObservation) DeepCopyInto(out *VersionConditionObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type VersionConditionParameters ¶
type VersionConditionParameters struct { // Whether to reverse match result of this condition // +kubebuilder:validation:Optional Inverse *bool `json:"inverse,omitempty" tf:"inverse,omitempty"` // +kubebuilder:validation:Required Version *string `json:"version" tf:"version,omitempty"` }
func (*VersionConditionParameters) DeepCopy ¶
func (in *VersionConditionParameters) DeepCopy() *VersionConditionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VersionConditionParameters.
func (*VersionConditionParameters) DeepCopyInto ¶
func (in *VersionConditionParameters) DeepCopyInto(out *VersionConditionParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.