Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=nsxtlbhttprequestrewriterule.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type BodyConditionObservation
- type BodyConditionParameters
- type CookieConditionObservation
- type CookieConditionParameters
- type HeaderConditionObservation
- type HeaderConditionParameters
- type HeaderRewriteActionObservation
- type HeaderRewriteActionParameters
- type IPConditionObservation
- type IPConditionParameters
- type LbHttpRequestRewriteRule
- func (in *LbHttpRequestRewriteRule) DeepCopy() *LbHttpRequestRewriteRule
- func (in *LbHttpRequestRewriteRule) DeepCopyInto(out *LbHttpRequestRewriteRule)
- func (in *LbHttpRequestRewriteRule) DeepCopyObject() runtime.Object
- func (mg *LbHttpRequestRewriteRule) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *LbHttpRequestRewriteRule) GetConnectionDetailsMapping() map[string]string
- func (mg *LbHttpRequestRewriteRule) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *LbHttpRequestRewriteRule) GetID() string
- func (mg *LbHttpRequestRewriteRule) GetManagementPolicy() xpv1.ManagementPolicy
- func (tr *LbHttpRequestRewriteRule) GetObservation() (map[string]any, error)
- func (tr *LbHttpRequestRewriteRule) GetParameters() (map[string]any, error)
- func (mg *LbHttpRequestRewriteRule) GetProviderConfigReference() *xpv1.Reference
- func (mg *LbHttpRequestRewriteRule) GetProviderReference() *xpv1.Reference
- func (mg *LbHttpRequestRewriteRule) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *LbHttpRequestRewriteRule) GetTerraformResourceType() string
- func (tr *LbHttpRequestRewriteRule) GetTerraformSchemaVersion() int
- func (mg *LbHttpRequestRewriteRule) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *LbHttpRequestRewriteRule) LateInitialize(attrs []byte) (bool, error)
- func (mg *LbHttpRequestRewriteRule) SetConditions(c ...xpv1.Condition)
- func (mg *LbHttpRequestRewriteRule) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *LbHttpRequestRewriteRule) SetManagementPolicy(r xpv1.ManagementPolicy)
- func (tr *LbHttpRequestRewriteRule) SetObservation(obs map[string]any) error
- func (tr *LbHttpRequestRewriteRule) SetParameters(params map[string]any) error
- func (mg *LbHttpRequestRewriteRule) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *LbHttpRequestRewriteRule) SetProviderReference(r *xpv1.Reference)
- func (mg *LbHttpRequestRewriteRule) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *LbHttpRequestRewriteRule) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type LbHttpRequestRewriteRuleList
- func (in *LbHttpRequestRewriteRuleList) DeepCopy() *LbHttpRequestRewriteRuleList
- func (in *LbHttpRequestRewriteRuleList) DeepCopyInto(out *LbHttpRequestRewriteRuleList)
- func (in *LbHttpRequestRewriteRuleList) DeepCopyObject() runtime.Object
- func (l *LbHttpRequestRewriteRuleList) GetItems() []resource.Managed
- type LbHttpRequestRewriteRuleObservation
- type LbHttpRequestRewriteRuleParameters
- type LbHttpRequestRewriteRuleSpec
- type LbHttpRequestRewriteRuleStatus
- type MethodConditionObservation
- type MethodConditionParameters
- type TCPConditionObservation
- type TCPConditionParameters
- type TagObservation
- type TagParameters
- type URIArgumentsConditionObservation
- type URIArgumentsConditionParameters
- type URIConditionObservation
- type URIConditionParameters
- type URIRewriteActionObservation
- type URIRewriteActionParameters
- type VersionConditionObservation
- type VersionConditionParameters
Constants ¶
const ( CRDGroup = "nsxtlbhttprequestrewriterule.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 ( LbHttpRequestRewriteRule_Kind = "LbHttpRequestRewriteRule" LbHttpRequestRewriteRule_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: LbHttpRequestRewriteRule_Kind}.String() LbHttpRequestRewriteRule_KindAPIVersion = LbHttpRequestRewriteRule_Kind + "." + CRDGroupVersion.String() LbHttpRequestRewriteRule_GroupVersionKind = CRDGroupVersion.WithKind(LbHttpRequestRewriteRule_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type BodyConditionObservation ¶
type BodyConditionObservation 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"` Value *string `json:"value,omitempty" tf:"value,omitempty"` }
func (*BodyConditionObservation) DeepCopy ¶
func (in *BodyConditionObservation) DeepCopy() *BodyConditionObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BodyConditionObservation.
func (*BodyConditionObservation) DeepCopyInto ¶
func (in *BodyConditionObservation) DeepCopyInto(out *BodyConditionObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BodyConditionParameters ¶
type BodyConditionParameters 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 Value *string `json:"value" tf:"value,omitempty"` }
func (*BodyConditionParameters) DeepCopy ¶
func (in *BodyConditionParameters) DeepCopy() *BodyConditionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BodyConditionParameters.
func (*BodyConditionParameters) DeepCopyInto ¶
func (in *BodyConditionParameters) DeepCopyInto(out *BodyConditionParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
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 HeaderConditionObservation ¶
type HeaderConditionObservation 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 (*HeaderConditionObservation) DeepCopy ¶
func (in *HeaderConditionObservation) DeepCopy() *HeaderConditionObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HeaderConditionObservation.
func (*HeaderConditionObservation) DeepCopyInto ¶
func (in *HeaderConditionObservation) DeepCopyInto(out *HeaderConditionObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HeaderConditionParameters ¶
type HeaderConditionParameters 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 (*HeaderConditionParameters) DeepCopy ¶
func (in *HeaderConditionParameters) DeepCopy() *HeaderConditionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HeaderConditionParameters.
func (*HeaderConditionParameters) DeepCopyInto ¶
func (in *HeaderConditionParameters) DeepCopyInto(out *HeaderConditionParameters)
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 LbHttpRequestRewriteRule ¶
type LbHttpRequestRewriteRule struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec LbHttpRequestRewriteRuleSpec `json:"spec"` Status LbHttpRequestRewriteRuleStatus `json:"status,omitempty"` }
LbHttpRequestRewriteRule is the Schema for the LbHttpRequestRewriteRules 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 (*LbHttpRequestRewriteRule) DeepCopy ¶
func (in *LbHttpRequestRewriteRule) DeepCopy() *LbHttpRequestRewriteRule
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LbHttpRequestRewriteRule.
func (*LbHttpRequestRewriteRule) DeepCopyInto ¶
func (in *LbHttpRequestRewriteRule) DeepCopyInto(out *LbHttpRequestRewriteRule)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*LbHttpRequestRewriteRule) DeepCopyObject ¶
func (in *LbHttpRequestRewriteRule) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*LbHttpRequestRewriteRule) GetCondition ¶
func (mg *LbHttpRequestRewriteRule) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this LbHttpRequestRewriteRule.
func (*LbHttpRequestRewriteRule) GetConnectionDetailsMapping ¶
func (tr *LbHttpRequestRewriteRule) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this LbHttpRequestRewriteRule
func (*LbHttpRequestRewriteRule) GetDeletionPolicy ¶
func (mg *LbHttpRequestRewriteRule) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this LbHttpRequestRewriteRule.
func (*LbHttpRequestRewriteRule) GetID ¶
func (tr *LbHttpRequestRewriteRule) GetID() string
GetID returns ID of underlying Terraform resource of this LbHttpRequestRewriteRule
func (*LbHttpRequestRewriteRule) GetManagementPolicy ¶
func (mg *LbHttpRequestRewriteRule) GetManagementPolicy() xpv1.ManagementPolicy
GetManagementPolicy of this LbHttpRequestRewriteRule.
func (*LbHttpRequestRewriteRule) GetObservation ¶
func (tr *LbHttpRequestRewriteRule) GetObservation() (map[string]any, error)
GetObservation of this LbHttpRequestRewriteRule
func (*LbHttpRequestRewriteRule) GetParameters ¶
func (tr *LbHttpRequestRewriteRule) GetParameters() (map[string]any, error)
GetParameters of this LbHttpRequestRewriteRule
func (*LbHttpRequestRewriteRule) GetProviderConfigReference ¶
func (mg *LbHttpRequestRewriteRule) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this LbHttpRequestRewriteRule.
func (*LbHttpRequestRewriteRule) GetProviderReference ¶
func (mg *LbHttpRequestRewriteRule) GetProviderReference() *xpv1.Reference
GetProviderReference of this LbHttpRequestRewriteRule. Deprecated: Use GetProviderConfigReference.
func (*LbHttpRequestRewriteRule) GetPublishConnectionDetailsTo ¶
func (mg *LbHttpRequestRewriteRule) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this LbHttpRequestRewriteRule.
func (*LbHttpRequestRewriteRule) GetTerraformResourceType ¶
func (mg *LbHttpRequestRewriteRule) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this LbHttpRequestRewriteRule
func (*LbHttpRequestRewriteRule) GetTerraformSchemaVersion ¶
func (tr *LbHttpRequestRewriteRule) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*LbHttpRequestRewriteRule) GetWriteConnectionSecretToReference ¶
func (mg *LbHttpRequestRewriteRule) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this LbHttpRequestRewriteRule.
func (*LbHttpRequestRewriteRule) LateInitialize ¶
func (tr *LbHttpRequestRewriteRule) LateInitialize(attrs []byte) (bool, error)
LateInitialize this LbHttpRequestRewriteRule using its observed tfState. returns True if there are any spec changes for the resource.
func (*LbHttpRequestRewriteRule) SetConditions ¶
func (mg *LbHttpRequestRewriteRule) SetConditions(c ...xpv1.Condition)
SetConditions of this LbHttpRequestRewriteRule.
func (*LbHttpRequestRewriteRule) SetDeletionPolicy ¶
func (mg *LbHttpRequestRewriteRule) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this LbHttpRequestRewriteRule.
func (*LbHttpRequestRewriteRule) SetManagementPolicy ¶
func (mg *LbHttpRequestRewriteRule) SetManagementPolicy(r xpv1.ManagementPolicy)
SetManagementPolicy of this LbHttpRequestRewriteRule.
func (*LbHttpRequestRewriteRule) SetObservation ¶
func (tr *LbHttpRequestRewriteRule) SetObservation(obs map[string]any) error
SetObservation for this LbHttpRequestRewriteRule
func (*LbHttpRequestRewriteRule) SetParameters ¶
func (tr *LbHttpRequestRewriteRule) SetParameters(params map[string]any) error
SetParameters for this LbHttpRequestRewriteRule
func (*LbHttpRequestRewriteRule) SetProviderConfigReference ¶
func (mg *LbHttpRequestRewriteRule) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this LbHttpRequestRewriteRule.
func (*LbHttpRequestRewriteRule) SetProviderReference ¶
func (mg *LbHttpRequestRewriteRule) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this LbHttpRequestRewriteRule. Deprecated: Use SetProviderConfigReference.
func (*LbHttpRequestRewriteRule) SetPublishConnectionDetailsTo ¶
func (mg *LbHttpRequestRewriteRule) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this LbHttpRequestRewriteRule.
func (*LbHttpRequestRewriteRule) SetWriteConnectionSecretToReference ¶
func (mg *LbHttpRequestRewriteRule) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this LbHttpRequestRewriteRule.
type LbHttpRequestRewriteRuleList ¶
type LbHttpRequestRewriteRuleList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []LbHttpRequestRewriteRule `json:"items"` }
LbHttpRequestRewriteRuleList contains a list of LbHttpRequestRewriteRules
func (*LbHttpRequestRewriteRuleList) DeepCopy ¶
func (in *LbHttpRequestRewriteRuleList) DeepCopy() *LbHttpRequestRewriteRuleList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LbHttpRequestRewriteRuleList.
func (*LbHttpRequestRewriteRuleList) DeepCopyInto ¶
func (in *LbHttpRequestRewriteRuleList) DeepCopyInto(out *LbHttpRequestRewriteRuleList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*LbHttpRequestRewriteRuleList) DeepCopyObject ¶
func (in *LbHttpRequestRewriteRuleList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*LbHttpRequestRewriteRuleList) GetItems ¶
func (l *LbHttpRequestRewriteRuleList) GetItems() []resource.Managed
GetItems of this LbHttpRequestRewriteRuleList.
type LbHttpRequestRewriteRuleObservation ¶
type LbHttpRequestRewriteRuleObservation struct { // Rule condition based on http request body BodyCondition []BodyConditionObservation `json:"bodyCondition,omitempty" tf:"body_condition,omitempty"` // 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"` // Rule condition based on http header HeaderCondition []HeaderConditionObservation `json:"headerCondition,omitempty" tf:"header_condition,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"` // 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"` // Uri to replace original URI in outgoing request URIRewriteAction []URIRewriteActionObservation `json:"uriRewriteAction,omitempty" tf:"uri_rewrite_action,omitempty"` // Rule condition based on http request version VersionCondition []VersionConditionObservation `json:"versionCondition,omitempty" tf:"version_condition,omitempty"` }
func (*LbHttpRequestRewriteRuleObservation) DeepCopy ¶
func (in *LbHttpRequestRewriteRuleObservation) DeepCopy() *LbHttpRequestRewriteRuleObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LbHttpRequestRewriteRuleObservation.
func (*LbHttpRequestRewriteRuleObservation) DeepCopyInto ¶
func (in *LbHttpRequestRewriteRuleObservation) DeepCopyInto(out *LbHttpRequestRewriteRuleObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LbHttpRequestRewriteRuleParameters ¶
type LbHttpRequestRewriteRuleParameters struct { // Rule condition based on http request body // +kubebuilder:validation:Optional BodyCondition []BodyConditionParameters `json:"bodyCondition,omitempty" tf:"body_condition,omitempty"` // 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"` // Rule condition based on http header // +kubebuilder:validation:Optional HeaderCondition []HeaderConditionParameters `json:"headerCondition,omitempty" tf:"header_condition,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 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"` // Uri to replace original URI in outgoing request // +kubebuilder:validation:Optional URIRewriteAction []URIRewriteActionParameters `json:"uriRewriteAction,omitempty" tf:"uri_rewrite_action,omitempty"` // Rule condition based on http request version // +kubebuilder:validation:Optional VersionCondition []VersionConditionParameters `json:"versionCondition,omitempty" tf:"version_condition,omitempty"` }
func (*LbHttpRequestRewriteRuleParameters) DeepCopy ¶
func (in *LbHttpRequestRewriteRuleParameters) DeepCopy() *LbHttpRequestRewriteRuleParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LbHttpRequestRewriteRuleParameters.
func (*LbHttpRequestRewriteRuleParameters) DeepCopyInto ¶
func (in *LbHttpRequestRewriteRuleParameters) DeepCopyInto(out *LbHttpRequestRewriteRuleParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LbHttpRequestRewriteRuleSpec ¶
type LbHttpRequestRewriteRuleSpec struct { v1.ResourceSpec `json:",inline"` ForProvider LbHttpRequestRewriteRuleParameters `json:"forProvider"` }
LbHttpRequestRewriteRuleSpec defines the desired state of LbHttpRequestRewriteRule
func (*LbHttpRequestRewriteRuleSpec) DeepCopy ¶
func (in *LbHttpRequestRewriteRuleSpec) DeepCopy() *LbHttpRequestRewriteRuleSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LbHttpRequestRewriteRuleSpec.
func (*LbHttpRequestRewriteRuleSpec) DeepCopyInto ¶
func (in *LbHttpRequestRewriteRuleSpec) DeepCopyInto(out *LbHttpRequestRewriteRuleSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LbHttpRequestRewriteRuleStatus ¶
type LbHttpRequestRewriteRuleStatus struct { v1.ResourceStatus `json:",inline"` AtProvider LbHttpRequestRewriteRuleObservation `json:"atProvider,omitempty"` }
LbHttpRequestRewriteRuleStatus defines the observed state of LbHttpRequestRewriteRule.
func (*LbHttpRequestRewriteRuleStatus) DeepCopy ¶
func (in *LbHttpRequestRewriteRuleStatus) DeepCopy() *LbHttpRequestRewriteRuleStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LbHttpRequestRewriteRuleStatus.
func (*LbHttpRequestRewriteRuleStatus) DeepCopyInto ¶
func (in *LbHttpRequestRewriteRuleStatus) DeepCopyInto(out *LbHttpRequestRewriteRuleStatus)
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 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 URIRewriteActionObservation ¶
type URIRewriteActionObservation struct { URI *string `json:"uri,omitempty" tf:"uri,omitempty"` URIArguments *string `json:"uriArguments,omitempty" tf:"uri_arguments,omitempty"` }
func (*URIRewriteActionObservation) DeepCopy ¶
func (in *URIRewriteActionObservation) DeepCopy() *URIRewriteActionObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new URIRewriteActionObservation.
func (*URIRewriteActionObservation) DeepCopyInto ¶
func (in *URIRewriteActionObservation) DeepCopyInto(out *URIRewriteActionObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type URIRewriteActionParameters ¶
type URIRewriteActionParameters struct { // +kubebuilder:validation:Required URI *string `json:"uri" tf:"uri,omitempty"` // +kubebuilder:validation:Optional URIArguments *string `json:"uriArguments,omitempty" tf:"uri_arguments,omitempty"` }
func (*URIRewriteActionParameters) DeepCopy ¶
func (in *URIRewriteActionParameters) DeepCopy() *URIRewriteActionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new URIRewriteActionParameters.
func (*URIRewriteActionParameters) DeepCopyInto ¶
func (in *URIRewriteActionParameters) DeepCopyInto(out *URIRewriteActionParameters)
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.