v1beta1

package
v1.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 2, 2024 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Overview

+kubebuilder:object:generate=true +groupName=elb.aws.upbound.io +versionName=v1beta1

Index

Constants

View Source
const (
	CRDGroup   = "elb.aws.upbound.io"
	CRDVersion = "v1beta1"
)

Package type metadata.

Variables

View Source
var (
	AppCookieStickinessPolicy_Kind             = "AppCookieStickinessPolicy"
	AppCookieStickinessPolicy_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: AppCookieStickinessPolicy_Kind}.String()
	AppCookieStickinessPolicy_KindAPIVersion   = AppCookieStickinessPolicy_Kind + "." + CRDGroupVersion.String()
	AppCookieStickinessPolicy_GroupVersionKind = CRDGroupVersion.WithKind(AppCookieStickinessPolicy_Kind)
)

Repository type metadata.

View Source
var (
	Attachment_Kind             = "Attachment"
	Attachment_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Attachment_Kind}.String()
	Attachment_KindAPIVersion   = Attachment_Kind + "." + CRDGroupVersion.String()
	Attachment_GroupVersionKind = CRDGroupVersion.WithKind(Attachment_Kind)
)

Repository type metadata.

View Source
var (
	BackendServerPolicy_Kind             = "BackendServerPolicy"
	BackendServerPolicy_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: BackendServerPolicy_Kind}.String()
	BackendServerPolicy_KindAPIVersion   = BackendServerPolicy_Kind + "." + CRDGroupVersion.String()
	BackendServerPolicy_GroupVersionKind = CRDGroupVersion.WithKind(BackendServerPolicy_Kind)
)

Repository type metadata.

View Source
var (
	ELB_Kind             = "ELB"
	ELB_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: ELB_Kind}.String()
	ELB_KindAPIVersion   = ELB_Kind + "." + CRDGroupVersion.String()
	ELB_GroupVersionKind = CRDGroupVersion.WithKind(ELB_Kind)
)

Repository type metadata.

View Source
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
)
View Source
var (
	LBCookieStickinessPolicy_Kind             = "LBCookieStickinessPolicy"
	LBCookieStickinessPolicy_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: LBCookieStickinessPolicy_Kind}.String()
	LBCookieStickinessPolicy_KindAPIVersion   = LBCookieStickinessPolicy_Kind + "." + CRDGroupVersion.String()
	LBCookieStickinessPolicy_GroupVersionKind = CRDGroupVersion.WithKind(LBCookieStickinessPolicy_Kind)
)

Repository type metadata.

View Source
var (
	LBSSLNegotiationPolicy_Kind             = "LBSSLNegotiationPolicy"
	LBSSLNegotiationPolicy_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: LBSSLNegotiationPolicy_Kind}.String()
	LBSSLNegotiationPolicy_KindAPIVersion   = LBSSLNegotiationPolicy_Kind + "." + CRDGroupVersion.String()
	LBSSLNegotiationPolicy_GroupVersionKind = CRDGroupVersion.WithKind(LBSSLNegotiationPolicy_Kind)
)

Repository type metadata.

View Source
var (
	ListenerPolicy_Kind             = "ListenerPolicy"
	ListenerPolicy_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: ListenerPolicy_Kind}.String()
	ListenerPolicy_KindAPIVersion   = ListenerPolicy_Kind + "." + CRDGroupVersion.String()
	ListenerPolicy_GroupVersionKind = CRDGroupVersion.WithKind(ListenerPolicy_Kind)
)

Repository type metadata.

View Source
var (
	Policy_Kind             = "Policy"
	Policy_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Policy_Kind}.String()
	Policy_KindAPIVersion   = Policy_Kind + "." + CRDGroupVersion.String()
	Policy_GroupVersionKind = CRDGroupVersion.WithKind(Policy_Kind)
)

Repository type metadata.

View Source
var (
	ProxyProtocolPolicy_Kind             = "ProxyProtocolPolicy"
	ProxyProtocolPolicy_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: ProxyProtocolPolicy_Kind}.String()
	ProxyProtocolPolicy_KindAPIVersion   = ProxyProtocolPolicy_Kind + "." + CRDGroupVersion.String()
	ProxyProtocolPolicy_GroupVersionKind = CRDGroupVersion.WithKind(ProxyProtocolPolicy_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type AccessLogsInitParameters added in v0.38.0

type AccessLogsInitParameters struct {

	// The S3 bucket name to store the logs in.
	Bucket *string `json:"bucket,omitempty" tf:"bucket,omitempty"`

	// The S3 bucket prefix. Logs are stored in the root if not configured.
	BucketPrefix *string `json:"bucketPrefix,omitempty" tf:"bucket_prefix,omitempty"`

	// Boolean to enable / disable access_logs. Default is true
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// The publishing interval in minutes. Valid values: 5 and 60. Default: 60
	Interval *float64 `json:"interval,omitempty" tf:"interval,omitempty"`
}

func (*AccessLogsInitParameters) DeepCopy added in v0.38.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AccessLogsInitParameters.

func (*AccessLogsInitParameters) DeepCopyInto added in v0.38.0

func (in *AccessLogsInitParameters) DeepCopyInto(out *AccessLogsInitParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AccessLogsObservation

type AccessLogsObservation struct {

	// The S3 bucket name to store the logs in.
	Bucket *string `json:"bucket,omitempty" tf:"bucket,omitempty"`

	// The S3 bucket prefix. Logs are stored in the root if not configured.
	BucketPrefix *string `json:"bucketPrefix,omitempty" tf:"bucket_prefix,omitempty"`

	// Boolean to enable / disable access_logs. Default is true
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// The publishing interval in minutes. Valid values: 5 and 60. Default: 60
	Interval *float64 `json:"interval,omitempty" tf:"interval,omitempty"`
}

func (*AccessLogsObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AccessLogsObservation.

func (*AccessLogsObservation) DeepCopyInto

func (in *AccessLogsObservation) DeepCopyInto(out *AccessLogsObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AccessLogsParameters

type AccessLogsParameters struct {

	// The S3 bucket name to store the logs in.
	// +kubebuilder:validation:Optional
	Bucket *string `json:"bucket" tf:"bucket,omitempty"`

	// The S3 bucket prefix. Logs are stored in the root if not configured.
	// +kubebuilder:validation:Optional
	BucketPrefix *string `json:"bucketPrefix,omitempty" tf:"bucket_prefix,omitempty"`

	// Boolean to enable / disable access_logs. Default is true
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// The publishing interval in minutes. Valid values: 5 and 60. Default: 60
	// +kubebuilder:validation:Optional
	Interval *float64 `json:"interval,omitempty" tf:"interval,omitempty"`
}

func (*AccessLogsParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AccessLogsParameters.

func (*AccessLogsParameters) DeepCopyInto

func (in *AccessLogsParameters) DeepCopyInto(out *AccessLogsParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AppCookieStickinessPolicy added in v0.25.0

type AppCookieStickinessPolicy 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.cookieName) || (has(self.initProvider) && has(self.initProvider.cookieName))",message="spec.forProvider.cookieName is a required parameter"
	Spec   AppCookieStickinessPolicySpec   `json:"spec"`
	Status AppCookieStickinessPolicyStatus `json:"status,omitempty"`
}

AppCookieStickinessPolicy is the Schema for the AppCookieStickinessPolicys API. Provides an application cookie stickiness policy, which allows an ELB to wed its stickiness cookie to a cookie generated by your application. +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,aws}

func (*AppCookieStickinessPolicy) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppCookieStickinessPolicy.

func (*AppCookieStickinessPolicy) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*AppCookieStickinessPolicy) DeepCopyObject added in v0.25.0

func (in *AppCookieStickinessPolicy) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*AppCookieStickinessPolicy) GetCondition added in v0.25.0

GetCondition of this AppCookieStickinessPolicy.

func (*AppCookieStickinessPolicy) GetConnectionDetailsMapping added in v0.25.0

func (tr *AppCookieStickinessPolicy) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this AppCookieStickinessPolicy

func (*AppCookieStickinessPolicy) GetDeletionPolicy added in v0.25.0

func (mg *AppCookieStickinessPolicy) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this AppCookieStickinessPolicy.

func (*AppCookieStickinessPolicy) GetID added in v0.25.0

func (tr *AppCookieStickinessPolicy) GetID() string

GetID returns ID of underlying Terraform resource of this AppCookieStickinessPolicy

func (*AppCookieStickinessPolicy) GetInitParameters added in v0.38.0

func (tr *AppCookieStickinessPolicy) GetInitParameters() (map[string]any, error)

GetInitParameters of this AppCookieStickinessPolicy

func (*AppCookieStickinessPolicy) GetManagementPolicies added in v0.38.0

func (mg *AppCookieStickinessPolicy) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this AppCookieStickinessPolicy.

func (*AppCookieStickinessPolicy) GetMergedParameters added in v0.44.0

func (tr *AppCookieStickinessPolicy) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this AppCookieStickinessPolicy

func (*AppCookieStickinessPolicy) GetObservation added in v0.25.0

func (tr *AppCookieStickinessPolicy) GetObservation() (map[string]any, error)

GetObservation of this AppCookieStickinessPolicy

func (*AppCookieStickinessPolicy) GetParameters added in v0.25.0

func (tr *AppCookieStickinessPolicy) GetParameters() (map[string]any, error)

GetParameters of this AppCookieStickinessPolicy

func (*AppCookieStickinessPolicy) GetProviderConfigReference added in v0.25.0

func (mg *AppCookieStickinessPolicy) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this AppCookieStickinessPolicy.

func (*AppCookieStickinessPolicy) GetPublishConnectionDetailsTo added in v0.25.0

func (mg *AppCookieStickinessPolicy) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this AppCookieStickinessPolicy.

func (*AppCookieStickinessPolicy) GetTerraformResourceType added in v0.25.0

func (mg *AppCookieStickinessPolicy) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this AppCookieStickinessPolicy

func (*AppCookieStickinessPolicy) GetTerraformSchemaVersion added in v0.25.0

func (tr *AppCookieStickinessPolicy) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*AppCookieStickinessPolicy) GetWriteConnectionSecretToReference added in v0.25.0

func (mg *AppCookieStickinessPolicy) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this AppCookieStickinessPolicy.

func (*AppCookieStickinessPolicy) Hub added in v0.47.2

func (tr *AppCookieStickinessPolicy) Hub()

Hub marks this type as a conversion hub.

func (*AppCookieStickinessPolicy) LateInitialize added in v0.25.0

func (tr *AppCookieStickinessPolicy) LateInitialize(attrs []byte) (bool, error)

LateInitialize this AppCookieStickinessPolicy using its observed tfState. returns True if there are any spec changes for the resource.

func (*AppCookieStickinessPolicy) ResolveReferences added in v0.25.0

func (mg *AppCookieStickinessPolicy) ResolveReferences(
	ctx context.Context, c client.Reader) error

func (*AppCookieStickinessPolicy) SetConditions added in v0.25.0

func (mg *AppCookieStickinessPolicy) SetConditions(c ...xpv1.Condition)

SetConditions of this AppCookieStickinessPolicy.

func (*AppCookieStickinessPolicy) SetDeletionPolicy added in v0.25.0

func (mg *AppCookieStickinessPolicy) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this AppCookieStickinessPolicy.

func (*AppCookieStickinessPolicy) SetManagementPolicies added in v0.38.0

func (mg *AppCookieStickinessPolicy) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this AppCookieStickinessPolicy.

func (*AppCookieStickinessPolicy) SetObservation added in v0.25.0

func (tr *AppCookieStickinessPolicy) SetObservation(obs map[string]any) error

SetObservation for this AppCookieStickinessPolicy

func (*AppCookieStickinessPolicy) SetParameters added in v0.25.0

func (tr *AppCookieStickinessPolicy) SetParameters(params map[string]any) error

SetParameters for this AppCookieStickinessPolicy

func (*AppCookieStickinessPolicy) SetProviderConfigReference added in v0.25.0

func (mg *AppCookieStickinessPolicy) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this AppCookieStickinessPolicy.

func (*AppCookieStickinessPolicy) SetPublishConnectionDetailsTo added in v0.25.0

func (mg *AppCookieStickinessPolicy) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this AppCookieStickinessPolicy.

func (*AppCookieStickinessPolicy) SetWriteConnectionSecretToReference added in v0.25.0

func (mg *AppCookieStickinessPolicy) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this AppCookieStickinessPolicy.

type AppCookieStickinessPolicyInitParameters added in v0.38.0

type AppCookieStickinessPolicyInitParameters struct {

	// Application cookie whose lifetime the ELB's cookie should follow.
	CookieName *string `json:"cookieName,omitempty" tf:"cookie_name,omitempty"`
}

func (*AppCookieStickinessPolicyInitParameters) DeepCopy added in v0.38.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppCookieStickinessPolicyInitParameters.

func (*AppCookieStickinessPolicyInitParameters) DeepCopyInto added in v0.38.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AppCookieStickinessPolicyList added in v0.25.0

type AppCookieStickinessPolicyList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []AppCookieStickinessPolicy `json:"items"`
}

AppCookieStickinessPolicyList contains a list of AppCookieStickinessPolicys

func (*AppCookieStickinessPolicyList) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppCookieStickinessPolicyList.

func (*AppCookieStickinessPolicyList) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*AppCookieStickinessPolicyList) DeepCopyObject added in v0.25.0

func (in *AppCookieStickinessPolicyList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*AppCookieStickinessPolicyList) GetItems added in v0.25.0

GetItems of this AppCookieStickinessPolicyList.

type AppCookieStickinessPolicyObservation added in v0.25.0

type AppCookieStickinessPolicyObservation struct {

	// Application cookie whose lifetime the ELB's cookie should follow.
	CookieName *string `json:"cookieName,omitempty" tf:"cookie_name,omitempty"`

	// ID of the policy.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// Load balancer port to which the policy
	// should be applied. This must be an active listener on the load
	// balancer.
	LBPort *float64 `json:"lbPort,omitempty" tf:"lb_port,omitempty"`

	// Name of load balancer to which the policy
	// should be attached.
	LoadBalancer *string `json:"loadBalancer,omitempty" tf:"load_balancer,omitempty"`
}

func (*AppCookieStickinessPolicyObservation) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppCookieStickinessPolicyObservation.

func (*AppCookieStickinessPolicyObservation) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AppCookieStickinessPolicyParameters added in v0.25.0

type AppCookieStickinessPolicyParameters struct {

	// Application cookie whose lifetime the ELB's cookie should follow.
	// +kubebuilder:validation:Optional
	CookieName *string `json:"cookieName,omitempty" tf:"cookie_name,omitempty"`

	// Load balancer port to which the policy
	// should be applied. This must be an active listener on the load
	// balancer.
	// +kubebuilder:validation:Required
	LBPort *float64 `json:"lbPort" tf:"lb_port,omitempty"`

	// Name of load balancer to which the policy
	// should be attached.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/elb/v1beta1.ELB
	// +kubebuilder:validation:Optional
	LoadBalancer *string `json:"loadBalancer,omitempty" tf:"load_balancer,omitempty"`

	// Reference to a ELB in elb to populate loadBalancer.
	// +kubebuilder:validation:Optional
	LoadBalancerRef *v1.Reference `json:"loadBalancerRef,omitempty" tf:"-"`

	// Selector for a ELB in elb to populate loadBalancer.
	// +kubebuilder:validation:Optional
	LoadBalancerSelector *v1.Selector `json:"loadBalancerSelector,omitempty" tf:"-"`

	// Region is the region you'd like your resource to be created in.
	// +upjet:crd:field:TFTag=-
	// +kubebuilder:validation:Required
	Region *string `json:"region" tf:"-"`
}

func (*AppCookieStickinessPolicyParameters) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppCookieStickinessPolicyParameters.

func (*AppCookieStickinessPolicyParameters) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AppCookieStickinessPolicySpec added in v0.25.0

type AppCookieStickinessPolicySpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     AppCookieStickinessPolicyParameters `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 AppCookieStickinessPolicyInitParameters `json:"initProvider,omitempty"`
}

AppCookieStickinessPolicySpec defines the desired state of AppCookieStickinessPolicy

func (*AppCookieStickinessPolicySpec) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppCookieStickinessPolicySpec.

func (*AppCookieStickinessPolicySpec) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AppCookieStickinessPolicyStatus added in v0.25.0

type AppCookieStickinessPolicyStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        AppCookieStickinessPolicyObservation `json:"atProvider,omitempty"`
}

AppCookieStickinessPolicyStatus defines the observed state of AppCookieStickinessPolicy.

func (*AppCookieStickinessPolicyStatus) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppCookieStickinessPolicyStatus.

func (*AppCookieStickinessPolicyStatus) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type Attachment

type Attachment struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              AttachmentSpec   `json:"spec"`
	Status            AttachmentStatus `json:"status,omitempty"`
}

Attachment is the Schema for the Attachments API. Provides an Elastic Load Balancer Attachment resource. +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,aws}

func (*Attachment) DeepCopy

func (in *Attachment) DeepCopy() *Attachment

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Attachment.

func (*Attachment) DeepCopyInto

func (in *Attachment) DeepCopyInto(out *Attachment)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Attachment) DeepCopyObject

func (in *Attachment) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*Attachment) GetCondition

func (mg *Attachment) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this Attachment.

func (*Attachment) GetConnectionDetailsMapping

func (tr *Attachment) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this Attachment

func (*Attachment) GetDeletionPolicy

func (mg *Attachment) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this Attachment.

func (*Attachment) GetID

func (tr *Attachment) GetID() string

GetID returns ID of underlying Terraform resource of this Attachment

func (*Attachment) GetInitParameters added in v0.38.0

func (tr *Attachment) GetInitParameters() (map[string]any, error)

GetInitParameters of this Attachment

func (*Attachment) GetManagementPolicies added in v0.38.0

func (mg *Attachment) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this Attachment.

func (*Attachment) GetMergedParameters added in v0.44.0

func (tr *Attachment) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this Attachment

func (*Attachment) GetObservation

func (tr *Attachment) GetObservation() (map[string]any, error)

GetObservation of this Attachment

func (*Attachment) GetParameters

func (tr *Attachment) GetParameters() (map[string]any, error)

GetParameters of this Attachment

func (*Attachment) GetProviderConfigReference

func (mg *Attachment) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this Attachment.

func (*Attachment) GetPublishConnectionDetailsTo

func (mg *Attachment) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this Attachment.

func (*Attachment) GetTerraformResourceType

func (mg *Attachment) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Attachment

func (*Attachment) GetTerraformSchemaVersion

func (tr *Attachment) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Attachment) GetWriteConnectionSecretToReference

func (mg *Attachment) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this Attachment.

func (*Attachment) Hub added in v0.47.2

func (tr *Attachment) Hub()

Hub marks this type as a conversion hub.

func (*Attachment) LateInitialize

func (tr *Attachment) LateInitialize(attrs []byte) (bool, error)

LateInitialize this Attachment using its observed tfState. returns True if there are any spec changes for the resource.

func (*Attachment) ResolveReferences

func (mg *Attachment) ResolveReferences(ctx context.Context, c client.Reader) error

ResolveReferences of this Attachment.

func (*Attachment) SetConditions

func (mg *Attachment) SetConditions(c ...xpv1.Condition)

SetConditions of this Attachment.

func (*Attachment) SetDeletionPolicy

func (mg *Attachment) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this Attachment.

func (*Attachment) SetManagementPolicies added in v0.38.0

func (mg *Attachment) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this Attachment.

func (*Attachment) SetObservation

func (tr *Attachment) SetObservation(obs map[string]any) error

SetObservation for this Attachment

func (*Attachment) SetParameters

func (tr *Attachment) SetParameters(params map[string]any) error

SetParameters for this Attachment

func (*Attachment) SetProviderConfigReference

func (mg *Attachment) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this Attachment.

func (*Attachment) SetPublishConnectionDetailsTo

func (mg *Attachment) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this Attachment.

func (*Attachment) SetWriteConnectionSecretToReference

func (mg *Attachment) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this Attachment.

type AttachmentInitParameters added in v0.38.0

type AttachmentInitParameters struct {

	// The name of the ELB.
	// +crossplane:generate:reference:type=ELB
	ELB *string `json:"elb,omitempty" tf:"elb,omitempty"`

	// Reference to a ELB to populate elb.
	// +kubebuilder:validation:Optional
	ELBRef *v1.Reference `json:"elbRef,omitempty" tf:"-"`

	// Selector for a ELB to populate elb.
	// +kubebuilder:validation:Optional
	ELBSelector *v1.Selector `json:"elbSelector,omitempty" tf:"-"`

	// Instance ID to place in the ELB pool.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/ec2/v1beta1.Instance
	Instance *string `json:"instance,omitempty" tf:"instance,omitempty"`

	// Reference to a Instance in ec2 to populate instance.
	// +kubebuilder:validation:Optional
	InstanceRef *v1.Reference `json:"instanceRef,omitempty" tf:"-"`

	// Selector for a Instance in ec2 to populate instance.
	// +kubebuilder:validation:Optional
	InstanceSelector *v1.Selector `json:"instanceSelector,omitempty" tf:"-"`
}

func (*AttachmentInitParameters) DeepCopy added in v0.38.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttachmentInitParameters.

func (*AttachmentInitParameters) DeepCopyInto added in v0.38.0

func (in *AttachmentInitParameters) DeepCopyInto(out *AttachmentInitParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AttachmentList

type AttachmentList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []Attachment `json:"items"`
}

AttachmentList contains a list of Attachments

func (*AttachmentList) DeepCopy

func (in *AttachmentList) DeepCopy() *AttachmentList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttachmentList.

func (*AttachmentList) DeepCopyInto

func (in *AttachmentList) DeepCopyInto(out *AttachmentList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*AttachmentList) DeepCopyObject

func (in *AttachmentList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*AttachmentList) GetItems

func (l *AttachmentList) GetItems() []resource.Managed

GetItems of this AttachmentList.

type AttachmentObservation

type AttachmentObservation struct {

	// The name of the ELB.
	ELB *string `json:"elb,omitempty" tf:"elb,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// Instance ID to place in the ELB pool.
	Instance *string `json:"instance,omitempty" tf:"instance,omitempty"`
}

func (*AttachmentObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttachmentObservation.

func (*AttachmentObservation) DeepCopyInto

func (in *AttachmentObservation) DeepCopyInto(out *AttachmentObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AttachmentParameters

type AttachmentParameters struct {

	// The name of the ELB.
	// +crossplane:generate:reference:type=ELB
	// +kubebuilder:validation:Optional
	ELB *string `json:"elb,omitempty" tf:"elb,omitempty"`

	// Reference to a ELB to populate elb.
	// +kubebuilder:validation:Optional
	ELBRef *v1.Reference `json:"elbRef,omitempty" tf:"-"`

	// Selector for a ELB to populate elb.
	// +kubebuilder:validation:Optional
	ELBSelector *v1.Selector `json:"elbSelector,omitempty" tf:"-"`

	// Instance ID to place in the ELB pool.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/ec2/v1beta1.Instance
	// +kubebuilder:validation:Optional
	Instance *string `json:"instance,omitempty" tf:"instance,omitempty"`

	// Reference to a Instance in ec2 to populate instance.
	// +kubebuilder:validation:Optional
	InstanceRef *v1.Reference `json:"instanceRef,omitempty" tf:"-"`

	// Selector for a Instance in ec2 to populate instance.
	// +kubebuilder:validation:Optional
	InstanceSelector *v1.Selector `json:"instanceSelector,omitempty" tf:"-"`

	// Region is the region you'd like your resource to be created in.
	// +upjet:crd:field:TFTag=-
	// +kubebuilder:validation:Required
	Region *string `json:"region" tf:"-"`
}

func (*AttachmentParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttachmentParameters.

func (*AttachmentParameters) DeepCopyInto

func (in *AttachmentParameters) DeepCopyInto(out *AttachmentParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AttachmentSpec

type AttachmentSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     AttachmentParameters `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 AttachmentInitParameters `json:"initProvider,omitempty"`
}

AttachmentSpec defines the desired state of Attachment

func (*AttachmentSpec) DeepCopy

func (in *AttachmentSpec) DeepCopy() *AttachmentSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttachmentSpec.

func (*AttachmentSpec) DeepCopyInto

func (in *AttachmentSpec) DeepCopyInto(out *AttachmentSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AttachmentStatus

type AttachmentStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        AttachmentObservation `json:"atProvider,omitempty"`
}

AttachmentStatus defines the observed state of Attachment.

func (*AttachmentStatus) DeepCopy

func (in *AttachmentStatus) DeepCopy() *AttachmentStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttachmentStatus.

func (*AttachmentStatus) DeepCopyInto

func (in *AttachmentStatus) DeepCopyInto(out *AttachmentStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AttributeInitParameters added in v0.38.0

type AttributeInitParameters struct {

	// The name of the SSL negotiation policy.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The value of the attribute
	Value *string `json:"value,omitempty" tf:"value,omitempty"`
}

func (*AttributeInitParameters) DeepCopy added in v0.38.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttributeInitParameters.

func (*AttributeInitParameters) DeepCopyInto added in v0.38.0

func (in *AttributeInitParameters) DeepCopyInto(out *AttributeInitParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AttributeObservation added in v0.25.0

type AttributeObservation struct {

	// The name of the SSL negotiation policy.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The value of the attribute
	Value *string `json:"value,omitempty" tf:"value,omitempty"`
}

func (*AttributeObservation) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttributeObservation.

func (*AttributeObservation) DeepCopyInto added in v0.25.0

func (in *AttributeObservation) DeepCopyInto(out *AttributeObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AttributeParameters added in v0.25.0

type AttributeParameters struct {

	// The name of the SSL negotiation policy.
	// +kubebuilder:validation:Optional
	Name *string `json:"name" tf:"name,omitempty"`

	// The value of the attribute
	// +kubebuilder:validation:Optional
	Value *string `json:"value" tf:"value,omitempty"`
}

func (*AttributeParameters) DeepCopy added in v0.25.0

func (in *AttributeParameters) DeepCopy() *AttributeParameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttributeParameters.

func (*AttributeParameters) DeepCopyInto added in v0.25.0

func (in *AttributeParameters) DeepCopyInto(out *AttributeParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type BackendServerPolicy added in v0.25.0

type BackendServerPolicy 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.instancePort) || (has(self.initProvider) && has(self.initProvider.instancePort))",message="spec.forProvider.instancePort is a required parameter"
	Spec   BackendServerPolicySpec   `json:"spec"`
	Status BackendServerPolicyStatus `json:"status,omitempty"`
}

BackendServerPolicy is the Schema for the BackendServerPolicys API. Attaches a load balancer policy to an ELB backend server. +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,aws}

func (*BackendServerPolicy) DeepCopy added in v0.25.0

func (in *BackendServerPolicy) DeepCopy() *BackendServerPolicy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendServerPolicy.

func (*BackendServerPolicy) DeepCopyInto added in v0.25.0

func (in *BackendServerPolicy) DeepCopyInto(out *BackendServerPolicy)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*BackendServerPolicy) DeepCopyObject added in v0.25.0

func (in *BackendServerPolicy) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*BackendServerPolicy) GetCondition added in v0.25.0

func (mg *BackendServerPolicy) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this BackendServerPolicy.

func (*BackendServerPolicy) GetConnectionDetailsMapping added in v0.25.0

func (tr *BackendServerPolicy) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this BackendServerPolicy

func (*BackendServerPolicy) GetDeletionPolicy added in v0.25.0

func (mg *BackendServerPolicy) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this BackendServerPolicy.

func (*BackendServerPolicy) GetID added in v0.25.0

func (tr *BackendServerPolicy) GetID() string

GetID returns ID of underlying Terraform resource of this BackendServerPolicy

func (*BackendServerPolicy) GetInitParameters added in v0.38.0

func (tr *BackendServerPolicy) GetInitParameters() (map[string]any, error)

GetInitParameters of this BackendServerPolicy

func (*BackendServerPolicy) GetManagementPolicies added in v0.38.0

func (mg *BackendServerPolicy) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this BackendServerPolicy.

func (*BackendServerPolicy) GetMergedParameters added in v0.44.0

func (tr *BackendServerPolicy) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this BackendServerPolicy

func (*BackendServerPolicy) GetObservation added in v0.25.0

func (tr *BackendServerPolicy) GetObservation() (map[string]any, error)

GetObservation of this BackendServerPolicy

func (*BackendServerPolicy) GetParameters added in v0.25.0

func (tr *BackendServerPolicy) GetParameters() (map[string]any, error)

GetParameters of this BackendServerPolicy

func (*BackendServerPolicy) GetProviderConfigReference added in v0.25.0

func (mg *BackendServerPolicy) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this BackendServerPolicy.

func (*BackendServerPolicy) GetPublishConnectionDetailsTo added in v0.25.0

func (mg *BackendServerPolicy) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this BackendServerPolicy.

func (*BackendServerPolicy) GetTerraformResourceType added in v0.25.0

func (mg *BackendServerPolicy) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this BackendServerPolicy

func (*BackendServerPolicy) GetTerraformSchemaVersion added in v0.25.0

func (tr *BackendServerPolicy) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*BackendServerPolicy) GetWriteConnectionSecretToReference added in v0.25.0

func (mg *BackendServerPolicy) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this BackendServerPolicy.

func (*BackendServerPolicy) Hub added in v0.47.2

func (tr *BackendServerPolicy) Hub()

Hub marks this type as a conversion hub.

func (*BackendServerPolicy) LateInitialize added in v0.25.0

func (tr *BackendServerPolicy) LateInitialize(attrs []byte) (bool, error)

LateInitialize this BackendServerPolicy using its observed tfState. returns True if there are any spec changes for the resource.

func (*BackendServerPolicy) ResolveReferences added in v0.25.0

func (mg *BackendServerPolicy) ResolveReferences(ctx context.Context, c client.Reader) error

ResolveReferences of this BackendServerPolicy.

func (*BackendServerPolicy) SetConditions added in v0.25.0

func (mg *BackendServerPolicy) SetConditions(c ...xpv1.Condition)

SetConditions of this BackendServerPolicy.

func (*BackendServerPolicy) SetDeletionPolicy added in v0.25.0

func (mg *BackendServerPolicy) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this BackendServerPolicy.

func (*BackendServerPolicy) SetManagementPolicies added in v0.38.0

func (mg *BackendServerPolicy) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this BackendServerPolicy.

func (*BackendServerPolicy) SetObservation added in v0.25.0

func (tr *BackendServerPolicy) SetObservation(obs map[string]any) error

SetObservation for this BackendServerPolicy

func (*BackendServerPolicy) SetParameters added in v0.25.0

func (tr *BackendServerPolicy) SetParameters(params map[string]any) error

SetParameters for this BackendServerPolicy

func (*BackendServerPolicy) SetProviderConfigReference added in v0.25.0

func (mg *BackendServerPolicy) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this BackendServerPolicy.

func (*BackendServerPolicy) SetPublishConnectionDetailsTo added in v0.25.0

func (mg *BackendServerPolicy) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this BackendServerPolicy.

func (*BackendServerPolicy) SetWriteConnectionSecretToReference added in v0.25.0

func (mg *BackendServerPolicy) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this BackendServerPolicy.

type BackendServerPolicyInitParameters added in v0.38.0

type BackendServerPolicyInitParameters struct {

	// The instance port to apply the policy to.
	InstancePort *float64 `json:"instancePort,omitempty" tf:"instance_port,omitempty"`

	// The load balancer to attach the policy to.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/elb/v1beta1.ELB
	LoadBalancerName *string `json:"loadBalancerName,omitempty" tf:"load_balancer_name,omitempty"`

	// Reference to a ELB in elb to populate loadBalancerName.
	// +kubebuilder:validation:Optional
	LoadBalancerNameRef *v1.Reference `json:"loadBalancerNameRef,omitempty" tf:"-"`

	// Selector for a ELB in elb to populate loadBalancerName.
	// +kubebuilder:validation:Optional
	LoadBalancerNameSelector *v1.Selector `json:"loadBalancerNameSelector,omitempty" tf:"-"`

	// List of Policy Names to apply to the backend server.
	// +listType=set
	PolicyNames []*string `json:"policyNames,omitempty" tf:"policy_names,omitempty"`
}

func (*BackendServerPolicyInitParameters) DeepCopy added in v0.38.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendServerPolicyInitParameters.

func (*BackendServerPolicyInitParameters) DeepCopyInto added in v0.38.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type BackendServerPolicyList added in v0.25.0

type BackendServerPolicyList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []BackendServerPolicy `json:"items"`
}

BackendServerPolicyList contains a list of BackendServerPolicys

func (*BackendServerPolicyList) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendServerPolicyList.

func (*BackendServerPolicyList) DeepCopyInto added in v0.25.0

func (in *BackendServerPolicyList) DeepCopyInto(out *BackendServerPolicyList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*BackendServerPolicyList) DeepCopyObject added in v0.25.0

func (in *BackendServerPolicyList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*BackendServerPolicyList) GetItems added in v0.25.0

func (l *BackendServerPolicyList) GetItems() []resource.Managed

GetItems of this BackendServerPolicyList.

type BackendServerPolicyObservation added in v0.25.0

type BackendServerPolicyObservation struct {

	// The ID of the policy.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The instance port to apply the policy to.
	InstancePort *float64 `json:"instancePort,omitempty" tf:"instance_port,omitempty"`

	// The load balancer to attach the policy to.
	LoadBalancerName *string `json:"loadBalancerName,omitempty" tf:"load_balancer_name,omitempty"`

	// List of Policy Names to apply to the backend server.
	// +listType=set
	PolicyNames []*string `json:"policyNames,omitempty" tf:"policy_names,omitempty"`
}

func (*BackendServerPolicyObservation) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendServerPolicyObservation.

func (*BackendServerPolicyObservation) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type BackendServerPolicyParameters added in v0.25.0

type BackendServerPolicyParameters struct {

	// The instance port to apply the policy to.
	// +kubebuilder:validation:Optional
	InstancePort *float64 `json:"instancePort,omitempty" tf:"instance_port,omitempty"`

	// The load balancer to attach the policy to.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/elb/v1beta1.ELB
	// +kubebuilder:validation:Optional
	LoadBalancerName *string `json:"loadBalancerName,omitempty" tf:"load_balancer_name,omitempty"`

	// Reference to a ELB in elb to populate loadBalancerName.
	// +kubebuilder:validation:Optional
	LoadBalancerNameRef *v1.Reference `json:"loadBalancerNameRef,omitempty" tf:"-"`

	// Selector for a ELB in elb to populate loadBalancerName.
	// +kubebuilder:validation:Optional
	LoadBalancerNameSelector *v1.Selector `json:"loadBalancerNameSelector,omitempty" tf:"-"`

	// List of Policy Names to apply to the backend server.
	// +kubebuilder:validation:Optional
	// +listType=set
	PolicyNames []*string `json:"policyNames,omitempty" tf:"policy_names,omitempty"`

	// Region is the region you'd like your resource to be created in.
	// +upjet:crd:field:TFTag=-
	// +kubebuilder:validation:Required
	Region *string `json:"region" tf:"-"`
}

func (*BackendServerPolicyParameters) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendServerPolicyParameters.

func (*BackendServerPolicyParameters) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type BackendServerPolicySpec added in v0.25.0

type BackendServerPolicySpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     BackendServerPolicyParameters `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 BackendServerPolicyInitParameters `json:"initProvider,omitempty"`
}

BackendServerPolicySpec defines the desired state of BackendServerPolicy

func (*BackendServerPolicySpec) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendServerPolicySpec.

func (*BackendServerPolicySpec) DeepCopyInto added in v0.25.0

func (in *BackendServerPolicySpec) DeepCopyInto(out *BackendServerPolicySpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type BackendServerPolicyStatus added in v0.25.0

type BackendServerPolicyStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        BackendServerPolicyObservation `json:"atProvider,omitempty"`
}

BackendServerPolicyStatus defines the observed state of BackendServerPolicy.

func (*BackendServerPolicyStatus) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendServerPolicyStatus.

func (*BackendServerPolicyStatus) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ELB

type ELB 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.listener) || (has(self.initProvider) && has(self.initProvider.listener))",message="spec.forProvider.listener is a required parameter"
	Spec   ELBSpec   `json:"spec"`
	Status ELBStatus `json:"status,omitempty"`
}

ELB is the Schema for the ELBs API. Provides an Elastic Load Balancer resource. +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,aws}

func (*ELB) DeepCopy

func (in *ELB) DeepCopy() *ELB

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ELB.

func (*ELB) DeepCopyInto

func (in *ELB) DeepCopyInto(out *ELB)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ELB) DeepCopyObject

func (in *ELB) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ELB) GetCondition

func (mg *ELB) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this ELB.

func (*ELB) GetConnectionDetailsMapping

func (tr *ELB) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this ELB

func (*ELB) GetDeletionPolicy

func (mg *ELB) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this ELB.

func (*ELB) GetID

func (tr *ELB) GetID() string

GetID returns ID of underlying Terraform resource of this ELB

func (*ELB) GetInitParameters added in v0.38.0

func (tr *ELB) GetInitParameters() (map[string]any, error)

GetInitParameters of this ELB

func (*ELB) GetManagementPolicies added in v0.38.0

func (mg *ELB) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this ELB.

func (*ELB) GetMergedParameters added in v0.44.0

func (tr *ELB) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this ELB

func (*ELB) GetObservation

func (tr *ELB) GetObservation() (map[string]any, error)

GetObservation of this ELB

func (*ELB) GetParameters

func (tr *ELB) GetParameters() (map[string]any, error)

GetParameters of this ELB

func (*ELB) GetProviderConfigReference

func (mg *ELB) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this ELB.

func (*ELB) GetPublishConnectionDetailsTo

func (mg *ELB) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this ELB.

func (*ELB) GetTerraformResourceType

func (mg *ELB) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this ELB

func (*ELB) GetTerraformSchemaVersion

func (tr *ELB) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*ELB) GetWriteConnectionSecretToReference

func (mg *ELB) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this ELB.

func (*ELB) Hub added in v0.47.2

func (tr *ELB) Hub()

Hub marks this type as a conversion hub.

func (*ELB) LateInitialize

func (tr *ELB) LateInitialize(attrs []byte) (bool, error)

LateInitialize this ELB using its observed tfState. returns True if there are any spec changes for the resource.

func (*ELB) ResolveReferences

func (mg *ELB) ResolveReferences(ctx context.Context, c client.Reader) error

ResolveReferences of this ELB.

func (*ELB) SetConditions

func (mg *ELB) SetConditions(c ...xpv1.Condition)

SetConditions of this ELB.

func (*ELB) SetDeletionPolicy

func (mg *ELB) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this ELB.

func (*ELB) SetManagementPolicies added in v0.38.0

func (mg *ELB) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this ELB.

func (*ELB) SetObservation

func (tr *ELB) SetObservation(obs map[string]any) error

SetObservation for this ELB

func (*ELB) SetParameters

func (tr *ELB) SetParameters(params map[string]any) error

SetParameters for this ELB

func (*ELB) SetProviderConfigReference

func (mg *ELB) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this ELB.

func (*ELB) SetPublishConnectionDetailsTo

func (mg *ELB) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this ELB.

func (*ELB) SetWriteConnectionSecretToReference

func (mg *ELB) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this ELB.

type ELBInitParameters added in v0.38.0

type ELBInitParameters struct {

	// An Access Logs block. Access Logs documented below.
	AccessLogs []AccessLogsInitParameters `json:"accessLogs,omitempty" tf:"access_logs,omitempty"`

	// The AZ's to serve traffic in.
	// +listType=set
	AvailabilityZones []*string `json:"availabilityZones,omitempty" tf:"availability_zones,omitempty"`

	// Boolean to enable connection draining. Default: false
	ConnectionDraining *bool `json:"connectionDraining,omitempty" tf:"connection_draining,omitempty"`

	// The time in seconds to allow for connections to drain. Default: 300
	ConnectionDrainingTimeout *float64 `json:"connectionDrainingTimeout,omitempty" tf:"connection_draining_timeout,omitempty"`

	// Enable cross-zone load balancing. Default: true
	CrossZoneLoadBalancing *bool `json:"crossZoneLoadBalancing,omitempty" tf:"cross_zone_load_balancing,omitempty"`

	// Determines how the load balancer handles requests that might pose a security risk to an application due to HTTP desync. Valid values are monitor, defensive (default), strictest.
	DesyncMitigationMode *string `json:"desyncMitigationMode,omitempty" tf:"desync_mitigation_mode,omitempty"`

	// A health_check block. Health Check documented below.
	HealthCheck []HealthCheckInitParameters `json:"healthCheck,omitempty" tf:"health_check,omitempty"`

	// The time in seconds that the connection is allowed to be idle. Default: 60
	IdleTimeout *float64 `json:"idleTimeout,omitempty" tf:"idle_timeout,omitempty"`

	// A list of instance ids to place in the ELB pool.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/ec2/v1beta1.Instance
	// +listType=set
	Instances []*string `json:"instances,omitempty" tf:"instances,omitempty"`

	// References to Instance in ec2 to populate instances.
	// +kubebuilder:validation:Optional
	InstancesRefs []v1.Reference `json:"instancesRefs,omitempty" tf:"-"`

	// Selector for a list of Instance in ec2 to populate instances.
	// +kubebuilder:validation:Optional
	InstancesSelector *v1.Selector `json:"instancesSelector,omitempty" tf:"-"`

	// If true, ELB will be an internal ELB.
	Internal *bool `json:"internal,omitempty" tf:"internal,omitempty"`

	// A list of listener blocks. Listeners documented below.
	Listener []ListenerInitParameters `json:"listener,omitempty" tf:"listener,omitempty"`

	// A list of security group IDs to assign to the ELB.
	// Only valid if creating an ELB within a VPC
	// +listType=set
	SecurityGroups []*string `json:"securityGroups,omitempty" tf:"security_groups,omitempty"`

	// The name of the security group that you can use as
	// part of your inbound rules for your load balancer's back-end application
	// instances. Use this for Classic or Default VPC only.
	SourceSecurityGroup *string `json:"sourceSecurityGroup,omitempty" tf:"source_security_group,omitempty"`

	// A list of subnet IDs to attach to the ELB. When an update to subnets will remove all current subnets, this will force a new resource.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/ec2/v1beta1.Subnet
	// +listType=set
	Subnets []*string `json:"subnets,omitempty" tf:"subnets,omitempty"`

	// References to Subnet in ec2 to populate subnets.
	// +kubebuilder:validation:Optional
	SubnetsRefs []v1.Reference `json:"subnetsRefs,omitempty" tf:"-"`

	// Selector for a list of Subnet in ec2 to populate subnets.
	// +kubebuilder:validation:Optional
	SubnetsSelector *v1.Selector `json:"subnetsSelector,omitempty" tf:"-"`

	// Key-value map of resource tags.
	// +mapType=granular
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`
}

func (*ELBInitParameters) DeepCopy added in v0.38.0

func (in *ELBInitParameters) DeepCopy() *ELBInitParameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ELBInitParameters.

func (*ELBInitParameters) DeepCopyInto added in v0.38.0

func (in *ELBInitParameters) DeepCopyInto(out *ELBInitParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ELBList

type ELBList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []ELB `json:"items"`
}

ELBList contains a list of ELBs

func (*ELBList) DeepCopy

func (in *ELBList) DeepCopy() *ELBList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ELBList.

func (*ELBList) DeepCopyInto

func (in *ELBList) DeepCopyInto(out *ELBList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ELBList) DeepCopyObject

func (in *ELBList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ELBList) GetItems

func (l *ELBList) GetItems() []resource.Managed

GetItems of this ELBList.

type ELBObservation

type ELBObservation struct {

	// An Access Logs block. Access Logs documented below.
	AccessLogs []AccessLogsObservation `json:"accessLogs,omitempty" tf:"access_logs,omitempty"`

	// The ARN of the ELB
	Arn *string `json:"arn,omitempty" tf:"arn,omitempty"`

	// The AZ's to serve traffic in.
	// +listType=set
	AvailabilityZones []*string `json:"availabilityZones,omitempty" tf:"availability_zones,omitempty"`

	// Boolean to enable connection draining. Default: false
	ConnectionDraining *bool `json:"connectionDraining,omitempty" tf:"connection_draining,omitempty"`

	// The time in seconds to allow for connections to drain. Default: 300
	ConnectionDrainingTimeout *float64 `json:"connectionDrainingTimeout,omitempty" tf:"connection_draining_timeout,omitempty"`

	// Enable cross-zone load balancing. Default: true
	CrossZoneLoadBalancing *bool `json:"crossZoneLoadBalancing,omitempty" tf:"cross_zone_load_balancing,omitempty"`

	// The DNS name of the ELB
	DNSName *string `json:"dnsName,omitempty" tf:"dns_name,omitempty"`

	// Determines how the load balancer handles requests that might pose a security risk to an application due to HTTP desync. Valid values are monitor, defensive (default), strictest.
	DesyncMitigationMode *string `json:"desyncMitigationMode,omitempty" tf:"desync_mitigation_mode,omitempty"`

	// A health_check block. Health Check documented below.
	HealthCheck []HealthCheckObservation `json:"healthCheck,omitempty" tf:"health_check,omitempty"`

	// The name of the ELB
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The time in seconds that the connection is allowed to be idle. Default: 60
	IdleTimeout *float64 `json:"idleTimeout,omitempty" tf:"idle_timeout,omitempty"`

	// A list of instance ids to place in the ELB pool.
	// +listType=set
	Instances []*string `json:"instances,omitempty" tf:"instances,omitempty"`

	// If true, ELB will be an internal ELB.
	Internal *bool `json:"internal,omitempty" tf:"internal,omitempty"`

	// A list of listener blocks. Listeners documented below.
	Listener []ListenerObservation `json:"listener,omitempty" tf:"listener,omitempty"`

	// A list of security group IDs to assign to the ELB.
	// Only valid if creating an ELB within a VPC
	// +listType=set
	SecurityGroups []*string `json:"securityGroups,omitempty" tf:"security_groups,omitempty"`

	// The name of the security group that you can use as
	// part of your inbound rules for your load balancer's back-end application
	// instances. Use this for Classic or Default VPC only.
	SourceSecurityGroup *string `json:"sourceSecurityGroup,omitempty" tf:"source_security_group,omitempty"`

	// The ID of the security group that you can use as
	// part of your inbound rules for your load balancer's back-end application
	// instances. Only available on ELBs launched in a VPC.
	SourceSecurityGroupID *string `json:"sourceSecurityGroupId,omitempty" tf:"source_security_group_id,omitempty"`

	// A list of subnet IDs to attach to the ELB. When an update to subnets will remove all current subnets, this will force a new resource.
	// +listType=set
	Subnets []*string `json:"subnets,omitempty" tf:"subnets,omitempty"`

	// Key-value map of resource tags.
	// +mapType=granular
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`

	// A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
	// +mapType=granular
	TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"`

	// The canonical hosted zone ID of the ELB (to be used in a Route 53 Alias record)
	ZoneID *string `json:"zoneId,omitempty" tf:"zone_id,omitempty"`
}

func (*ELBObservation) DeepCopy

func (in *ELBObservation) DeepCopy() *ELBObservation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ELBObservation.

func (*ELBObservation) DeepCopyInto

func (in *ELBObservation) DeepCopyInto(out *ELBObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ELBParameters

type ELBParameters struct {

	// An Access Logs block. Access Logs documented below.
	// +kubebuilder:validation:Optional
	AccessLogs []AccessLogsParameters `json:"accessLogs,omitempty" tf:"access_logs,omitempty"`

	// The AZ's to serve traffic in.
	// +kubebuilder:validation:Optional
	// +listType=set
	AvailabilityZones []*string `json:"availabilityZones,omitempty" tf:"availability_zones,omitempty"`

	// Boolean to enable connection draining. Default: false
	// +kubebuilder:validation:Optional
	ConnectionDraining *bool `json:"connectionDraining,omitempty" tf:"connection_draining,omitempty"`

	// The time in seconds to allow for connections to drain. Default: 300
	// +kubebuilder:validation:Optional
	ConnectionDrainingTimeout *float64 `json:"connectionDrainingTimeout,omitempty" tf:"connection_draining_timeout,omitempty"`

	// Enable cross-zone load balancing. Default: true
	// +kubebuilder:validation:Optional
	CrossZoneLoadBalancing *bool `json:"crossZoneLoadBalancing,omitempty" tf:"cross_zone_load_balancing,omitempty"`

	// Determines how the load balancer handles requests that might pose a security risk to an application due to HTTP desync. Valid values are monitor, defensive (default), strictest.
	// +kubebuilder:validation:Optional
	DesyncMitigationMode *string `json:"desyncMitigationMode,omitempty" tf:"desync_mitigation_mode,omitempty"`

	// A health_check block. Health Check documented below.
	// +kubebuilder:validation:Optional
	HealthCheck []HealthCheckParameters `json:"healthCheck,omitempty" tf:"health_check,omitempty"`

	// The time in seconds that the connection is allowed to be idle. Default: 60
	// +kubebuilder:validation:Optional
	IdleTimeout *float64 `json:"idleTimeout,omitempty" tf:"idle_timeout,omitempty"`

	// A list of instance ids to place in the ELB pool.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/ec2/v1beta1.Instance
	// +kubebuilder:validation:Optional
	// +listType=set
	Instances []*string `json:"instances,omitempty" tf:"instances,omitempty"`

	// References to Instance in ec2 to populate instances.
	// +kubebuilder:validation:Optional
	InstancesRefs []v1.Reference `json:"instancesRefs,omitempty" tf:"-"`

	// Selector for a list of Instance in ec2 to populate instances.
	// +kubebuilder:validation:Optional
	InstancesSelector *v1.Selector `json:"instancesSelector,omitempty" tf:"-"`

	// If true, ELB will be an internal ELB.
	// +kubebuilder:validation:Optional
	Internal *bool `json:"internal,omitempty" tf:"internal,omitempty"`

	// A list of listener blocks. Listeners documented below.
	// +kubebuilder:validation:Optional
	Listener []ListenerParameters `json:"listener,omitempty" tf:"listener,omitempty"`

	// Region is the region you'd like your resource to be created in.
	// +upjet:crd:field:TFTag=-
	// +kubebuilder:validation:Required
	Region *string `json:"region" tf:"-"`

	// A list of security group IDs to assign to the ELB.
	// Only valid if creating an ELB within a VPC
	// +kubebuilder:validation:Optional
	// +listType=set
	SecurityGroups []*string `json:"securityGroups,omitempty" tf:"security_groups,omitempty"`

	// The name of the security group that you can use as
	// part of your inbound rules for your load balancer's back-end application
	// instances. Use this for Classic or Default VPC only.
	// +kubebuilder:validation:Optional
	SourceSecurityGroup *string `json:"sourceSecurityGroup,omitempty" tf:"source_security_group,omitempty"`

	// A list of subnet IDs to attach to the ELB. When an update to subnets will remove all current subnets, this will force a new resource.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/ec2/v1beta1.Subnet
	// +kubebuilder:validation:Optional
	// +listType=set
	Subnets []*string `json:"subnets,omitempty" tf:"subnets,omitempty"`

	// References to Subnet in ec2 to populate subnets.
	// +kubebuilder:validation:Optional
	SubnetsRefs []v1.Reference `json:"subnetsRefs,omitempty" tf:"-"`

	// Selector for a list of Subnet in ec2 to populate subnets.
	// +kubebuilder:validation:Optional
	SubnetsSelector *v1.Selector `json:"subnetsSelector,omitempty" tf:"-"`

	// Key-value map of resource tags.
	// +kubebuilder:validation:Optional
	// +mapType=granular
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`
}

func (*ELBParameters) DeepCopy

func (in *ELBParameters) DeepCopy() *ELBParameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ELBParameters.

func (*ELBParameters) DeepCopyInto

func (in *ELBParameters) DeepCopyInto(out *ELBParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ELBSpec

type ELBSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     ELBParameters `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 ELBInitParameters `json:"initProvider,omitempty"`
}

ELBSpec defines the desired state of ELB

func (*ELBSpec) DeepCopy

func (in *ELBSpec) DeepCopy() *ELBSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ELBSpec.

func (*ELBSpec) DeepCopyInto

func (in *ELBSpec) DeepCopyInto(out *ELBSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ELBStatus

type ELBStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        ELBObservation `json:"atProvider,omitempty"`
}

ELBStatus defines the observed state of ELB.

func (*ELBStatus) DeepCopy

func (in *ELBStatus) DeepCopy() *ELBStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ELBStatus.

func (*ELBStatus) DeepCopyInto

func (in *ELBStatus) DeepCopyInto(out *ELBStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type HealthCheckInitParameters added in v0.38.0

type HealthCheckInitParameters struct {

	// The number of checks before the instance is declared healthy.
	HealthyThreshold *float64 `json:"healthyThreshold,omitempty" tf:"healthy_threshold,omitempty"`

	// The publishing interval in minutes. Valid values: 5 and 60. Default: 60
	Interval *float64 `json:"interval,omitempty" tf:"interval,omitempty"`

	// The target of the check. Valid pattern is "${PROTOCOL}:${PORT}${PATH}", where PROTOCOL
	// values are:
	Target *string `json:"target,omitempty" tf:"target,omitempty"`

	// The length of time before the check times out.
	Timeout *float64 `json:"timeout,omitempty" tf:"timeout,omitempty"`

	// The number of checks before the instance is declared unhealthy.
	UnhealthyThreshold *float64 `json:"unhealthyThreshold,omitempty" tf:"unhealthy_threshold,omitempty"`
}

func (*HealthCheckInitParameters) DeepCopy added in v0.38.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HealthCheckInitParameters.

func (*HealthCheckInitParameters) DeepCopyInto added in v0.38.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type HealthCheckObservation

type HealthCheckObservation struct {

	// The number of checks before the instance is declared healthy.
	HealthyThreshold *float64 `json:"healthyThreshold,omitempty" tf:"healthy_threshold,omitempty"`

	// The publishing interval in minutes. Valid values: 5 and 60. Default: 60
	Interval *float64 `json:"interval,omitempty" tf:"interval,omitempty"`

	// The target of the check. Valid pattern is "${PROTOCOL}:${PORT}${PATH}", where PROTOCOL
	// values are:
	Target *string `json:"target,omitempty" tf:"target,omitempty"`

	// The length of time before the check times out.
	Timeout *float64 `json:"timeout,omitempty" tf:"timeout,omitempty"`

	// The number of checks before the instance is declared unhealthy.
	UnhealthyThreshold *float64 `json:"unhealthyThreshold,omitempty" tf:"unhealthy_threshold,omitempty"`
}

func (*HealthCheckObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HealthCheckObservation.

func (*HealthCheckObservation) DeepCopyInto

func (in *HealthCheckObservation) DeepCopyInto(out *HealthCheckObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type HealthCheckParameters

type HealthCheckParameters struct {

	// The number of checks before the instance is declared healthy.
	// +kubebuilder:validation:Optional
	HealthyThreshold *float64 `json:"healthyThreshold" tf:"healthy_threshold,omitempty"`

	// The publishing interval in minutes. Valid values: 5 and 60. Default: 60
	// +kubebuilder:validation:Optional
	Interval *float64 `json:"interval" tf:"interval,omitempty"`

	// The target of the check. Valid pattern is "${PROTOCOL}:${PORT}${PATH}", where PROTOCOL
	// values are:
	// +kubebuilder:validation:Optional
	Target *string `json:"target" tf:"target,omitempty"`

	// The length of time before the check times out.
	// +kubebuilder:validation:Optional
	Timeout *float64 `json:"timeout" tf:"timeout,omitempty"`

	// The number of checks before the instance is declared unhealthy.
	// +kubebuilder:validation:Optional
	UnhealthyThreshold *float64 `json:"unhealthyThreshold" tf:"unhealthy_threshold,omitempty"`
}

func (*HealthCheckParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HealthCheckParameters.

func (*HealthCheckParameters) DeepCopyInto

func (in *HealthCheckParameters) DeepCopyInto(out *HealthCheckParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type LBCookieStickinessPolicy added in v0.25.0

type LBCookieStickinessPolicy 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.lbPort) || (has(self.initProvider) && has(self.initProvider.lbPort))",message="spec.forProvider.lbPort 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"
	Spec   LBCookieStickinessPolicySpec   `json:"spec"`
	Status LBCookieStickinessPolicyStatus `json:"status,omitempty"`
}

LBCookieStickinessPolicy is the Schema for the LBCookieStickinessPolicys API. Provides a load balancer cookie stickiness policy, which allows an ELB to control the sticky session lifetime of the browser. +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,aws}

func (*LBCookieStickinessPolicy) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LBCookieStickinessPolicy.

func (*LBCookieStickinessPolicy) DeepCopyInto added in v0.25.0

func (in *LBCookieStickinessPolicy) DeepCopyInto(out *LBCookieStickinessPolicy)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*LBCookieStickinessPolicy) DeepCopyObject added in v0.25.0

func (in *LBCookieStickinessPolicy) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*LBCookieStickinessPolicy) GetCondition added in v0.25.0

GetCondition of this LBCookieStickinessPolicy.

func (*LBCookieStickinessPolicy) GetConnectionDetailsMapping added in v0.25.0

func (tr *LBCookieStickinessPolicy) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this LBCookieStickinessPolicy

func (*LBCookieStickinessPolicy) GetDeletionPolicy added in v0.25.0

func (mg *LBCookieStickinessPolicy) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this LBCookieStickinessPolicy.

func (*LBCookieStickinessPolicy) GetID added in v0.25.0

func (tr *LBCookieStickinessPolicy) GetID() string

GetID returns ID of underlying Terraform resource of this LBCookieStickinessPolicy

func (*LBCookieStickinessPolicy) GetInitParameters added in v0.38.0

func (tr *LBCookieStickinessPolicy) GetInitParameters() (map[string]any, error)

GetInitParameters of this LBCookieStickinessPolicy

func (*LBCookieStickinessPolicy) GetManagementPolicies added in v0.38.0

func (mg *LBCookieStickinessPolicy) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this LBCookieStickinessPolicy.

func (*LBCookieStickinessPolicy) GetMergedParameters added in v0.44.0

func (tr *LBCookieStickinessPolicy) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this LBCookieStickinessPolicy

func (*LBCookieStickinessPolicy) GetObservation added in v0.25.0

func (tr *LBCookieStickinessPolicy) GetObservation() (map[string]any, error)

GetObservation of this LBCookieStickinessPolicy

func (*LBCookieStickinessPolicy) GetParameters added in v0.25.0

func (tr *LBCookieStickinessPolicy) GetParameters() (map[string]any, error)

GetParameters of this LBCookieStickinessPolicy

func (*LBCookieStickinessPolicy) GetProviderConfigReference added in v0.25.0

func (mg *LBCookieStickinessPolicy) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this LBCookieStickinessPolicy.

func (*LBCookieStickinessPolicy) GetPublishConnectionDetailsTo added in v0.25.0

func (mg *LBCookieStickinessPolicy) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this LBCookieStickinessPolicy.

func (*LBCookieStickinessPolicy) GetTerraformResourceType added in v0.25.0

func (mg *LBCookieStickinessPolicy) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this LBCookieStickinessPolicy

func (*LBCookieStickinessPolicy) GetTerraformSchemaVersion added in v0.25.0

func (tr *LBCookieStickinessPolicy) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*LBCookieStickinessPolicy) GetWriteConnectionSecretToReference added in v0.25.0

func (mg *LBCookieStickinessPolicy) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this LBCookieStickinessPolicy.

func (*LBCookieStickinessPolicy) Hub added in v0.47.2

func (tr *LBCookieStickinessPolicy) Hub()

Hub marks this type as a conversion hub.

func (*LBCookieStickinessPolicy) LateInitialize added in v0.25.0

func (tr *LBCookieStickinessPolicy) LateInitialize(attrs []byte) (bool, error)

LateInitialize this LBCookieStickinessPolicy using its observed tfState. returns True if there are any spec changes for the resource.

func (*LBCookieStickinessPolicy) ResolveReferences added in v0.25.0

func (mg *LBCookieStickinessPolicy) ResolveReferences(ctx context.Context, c client.Reader) error

ResolveReferences of this LBCookieStickinessPolicy.

func (*LBCookieStickinessPolicy) SetConditions added in v0.25.0

func (mg *LBCookieStickinessPolicy) SetConditions(c ...xpv1.Condition)

SetConditions of this LBCookieStickinessPolicy.

func (*LBCookieStickinessPolicy) SetDeletionPolicy added in v0.25.0

func (mg *LBCookieStickinessPolicy) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this LBCookieStickinessPolicy.

func (*LBCookieStickinessPolicy) SetManagementPolicies added in v0.38.0

func (mg *LBCookieStickinessPolicy) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this LBCookieStickinessPolicy.

func (*LBCookieStickinessPolicy) SetObservation added in v0.25.0

func (tr *LBCookieStickinessPolicy) SetObservation(obs map[string]any) error

SetObservation for this LBCookieStickinessPolicy

func (*LBCookieStickinessPolicy) SetParameters added in v0.25.0

func (tr *LBCookieStickinessPolicy) SetParameters(params map[string]any) error

SetParameters for this LBCookieStickinessPolicy

func (*LBCookieStickinessPolicy) SetProviderConfigReference added in v0.25.0

func (mg *LBCookieStickinessPolicy) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this LBCookieStickinessPolicy.

func (*LBCookieStickinessPolicy) SetPublishConnectionDetailsTo added in v0.25.0

func (mg *LBCookieStickinessPolicy) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this LBCookieStickinessPolicy.

func (*LBCookieStickinessPolicy) SetWriteConnectionSecretToReference added in v0.25.0

func (mg *LBCookieStickinessPolicy) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this LBCookieStickinessPolicy.

type LBCookieStickinessPolicyInitParameters added in v0.38.0

type LBCookieStickinessPolicyInitParameters struct {

	// The time period after which
	// the session cookie should be considered stale, expressed in seconds.
	CookieExpirationPeriod *float64 `json:"cookieExpirationPeriod,omitempty" tf:"cookie_expiration_period,omitempty"`

	// The load balancer port to which the policy
	// should be applied. This must be an active listener on the load
	// balancer.
	LBPort *float64 `json:"lbPort,omitempty" tf:"lb_port,omitempty"`

	// The load balancer to which the policy
	// should be attached.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/elb/v1beta1.ELB
	// +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractResourceID()
	LoadBalancer *string `json:"loadBalancer,omitempty" tf:"load_balancer,omitempty"`

	// Reference to a ELB in elb to populate loadBalancer.
	// +kubebuilder:validation:Optional
	LoadBalancerRef *v1.Reference `json:"loadBalancerRef,omitempty" tf:"-"`

	// Selector for a ELB in elb to populate loadBalancer.
	// +kubebuilder:validation:Optional
	LoadBalancerSelector *v1.Selector `json:"loadBalancerSelector,omitempty" tf:"-"`

	// The name of the stickiness policy.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`
}

func (*LBCookieStickinessPolicyInitParameters) DeepCopy added in v0.38.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LBCookieStickinessPolicyInitParameters.

func (*LBCookieStickinessPolicyInitParameters) DeepCopyInto added in v0.38.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type LBCookieStickinessPolicyList added in v0.25.0

type LBCookieStickinessPolicyList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []LBCookieStickinessPolicy `json:"items"`
}

LBCookieStickinessPolicyList contains a list of LBCookieStickinessPolicys

func (*LBCookieStickinessPolicyList) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LBCookieStickinessPolicyList.

func (*LBCookieStickinessPolicyList) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*LBCookieStickinessPolicyList) DeepCopyObject added in v0.25.0

func (in *LBCookieStickinessPolicyList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*LBCookieStickinessPolicyList) GetItems added in v0.25.0

GetItems of this LBCookieStickinessPolicyList.

type LBCookieStickinessPolicyObservation added in v0.25.0

type LBCookieStickinessPolicyObservation struct {

	// The time period after which
	// the session cookie should be considered stale, expressed in seconds.
	CookieExpirationPeriod *float64 `json:"cookieExpirationPeriod,omitempty" tf:"cookie_expiration_period,omitempty"`

	// The ID of the policy.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The load balancer port to which the policy
	// should be applied. This must be an active listener on the load
	// balancer.
	LBPort *float64 `json:"lbPort,omitempty" tf:"lb_port,omitempty"`

	// The load balancer to which the policy
	// should be attached.
	LoadBalancer *string `json:"loadBalancer,omitempty" tf:"load_balancer,omitempty"`

	// The name of the stickiness policy.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`
}

func (*LBCookieStickinessPolicyObservation) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LBCookieStickinessPolicyObservation.

func (*LBCookieStickinessPolicyObservation) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type LBCookieStickinessPolicyParameters added in v0.25.0

type LBCookieStickinessPolicyParameters struct {

	// The time period after which
	// the session cookie should be considered stale, expressed in seconds.
	// +kubebuilder:validation:Optional
	CookieExpirationPeriod *float64 `json:"cookieExpirationPeriod,omitempty" tf:"cookie_expiration_period,omitempty"`

	// The load balancer port to which the policy
	// should be applied. This must be an active listener on the load
	// balancer.
	// +kubebuilder:validation:Optional
	LBPort *float64 `json:"lbPort,omitempty" tf:"lb_port,omitempty"`

	// The load balancer to which the policy
	// should be attached.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/elb/v1beta1.ELB
	// +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractResourceID()
	// +kubebuilder:validation:Optional
	LoadBalancer *string `json:"loadBalancer,omitempty" tf:"load_balancer,omitempty"`

	// Reference to a ELB in elb to populate loadBalancer.
	// +kubebuilder:validation:Optional
	LoadBalancerRef *v1.Reference `json:"loadBalancerRef,omitempty" tf:"-"`

	// Selector for a ELB in elb to populate loadBalancer.
	// +kubebuilder:validation:Optional
	LoadBalancerSelector *v1.Selector `json:"loadBalancerSelector,omitempty" tf:"-"`

	// The name of the stickiness policy.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// Region is the region you'd like your resource to be created in.
	// +upjet:crd:field:TFTag=-
	// +kubebuilder:validation:Required
	Region *string `json:"region" tf:"-"`
}

func (*LBCookieStickinessPolicyParameters) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LBCookieStickinessPolicyParameters.

func (*LBCookieStickinessPolicyParameters) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type LBCookieStickinessPolicySpec added in v0.25.0

type LBCookieStickinessPolicySpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     LBCookieStickinessPolicyParameters `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 LBCookieStickinessPolicyInitParameters `json:"initProvider,omitempty"`
}

LBCookieStickinessPolicySpec defines the desired state of LBCookieStickinessPolicy

func (*LBCookieStickinessPolicySpec) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LBCookieStickinessPolicySpec.

func (*LBCookieStickinessPolicySpec) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type LBCookieStickinessPolicyStatus added in v0.25.0

type LBCookieStickinessPolicyStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        LBCookieStickinessPolicyObservation `json:"atProvider,omitempty"`
}

LBCookieStickinessPolicyStatus defines the observed state of LBCookieStickinessPolicy.

func (*LBCookieStickinessPolicyStatus) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LBCookieStickinessPolicyStatus.

func (*LBCookieStickinessPolicyStatus) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type LBSSLNegotiationPolicy added in v0.25.0

type LBSSLNegotiationPolicy 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.lbPort) || (has(self.initProvider) && has(self.initProvider.lbPort))",message="spec.forProvider.lbPort 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"
	Spec   LBSSLNegotiationPolicySpec   `json:"spec"`
	Status LBSSLNegotiationPolicyStatus `json:"status,omitempty"`
}

LBSSLNegotiationPolicy is the Schema for the LBSSLNegotiationPolicys API. Provides a load balancer SSL negotiation policy, which allows an ELB to control which ciphers and protocols are supported during SSL negotiations between a client and a load balancer. +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,aws}

func (*LBSSLNegotiationPolicy) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LBSSLNegotiationPolicy.

func (*LBSSLNegotiationPolicy) DeepCopyInto added in v0.25.0

func (in *LBSSLNegotiationPolicy) DeepCopyInto(out *LBSSLNegotiationPolicy)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*LBSSLNegotiationPolicy) DeepCopyObject added in v0.25.0

func (in *LBSSLNegotiationPolicy) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*LBSSLNegotiationPolicy) GetCondition added in v0.25.0

GetCondition of this LBSSLNegotiationPolicy.

func (*LBSSLNegotiationPolicy) GetConnectionDetailsMapping added in v0.25.0

func (tr *LBSSLNegotiationPolicy) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this LBSSLNegotiationPolicy

func (*LBSSLNegotiationPolicy) GetDeletionPolicy added in v0.25.0

func (mg *LBSSLNegotiationPolicy) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this LBSSLNegotiationPolicy.

func (*LBSSLNegotiationPolicy) GetID added in v0.25.0

func (tr *LBSSLNegotiationPolicy) GetID() string

GetID returns ID of underlying Terraform resource of this LBSSLNegotiationPolicy

func (*LBSSLNegotiationPolicy) GetInitParameters added in v0.38.0

func (tr *LBSSLNegotiationPolicy) GetInitParameters() (map[string]any, error)

GetInitParameters of this LBSSLNegotiationPolicy

func (*LBSSLNegotiationPolicy) GetManagementPolicies added in v0.38.0

func (mg *LBSSLNegotiationPolicy) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this LBSSLNegotiationPolicy.

func (*LBSSLNegotiationPolicy) GetMergedParameters added in v0.44.0

func (tr *LBSSLNegotiationPolicy) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this LBSSLNegotiationPolicy

func (*LBSSLNegotiationPolicy) GetObservation added in v0.25.0

func (tr *LBSSLNegotiationPolicy) GetObservation() (map[string]any, error)

GetObservation of this LBSSLNegotiationPolicy

func (*LBSSLNegotiationPolicy) GetParameters added in v0.25.0

func (tr *LBSSLNegotiationPolicy) GetParameters() (map[string]any, error)

GetParameters of this LBSSLNegotiationPolicy

func (*LBSSLNegotiationPolicy) GetProviderConfigReference added in v0.25.0

func (mg *LBSSLNegotiationPolicy) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this LBSSLNegotiationPolicy.

func (*LBSSLNegotiationPolicy) GetPublishConnectionDetailsTo added in v0.25.0

func (mg *LBSSLNegotiationPolicy) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this LBSSLNegotiationPolicy.

func (*LBSSLNegotiationPolicy) GetTerraformResourceType added in v0.25.0

func (mg *LBSSLNegotiationPolicy) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this LBSSLNegotiationPolicy

func (*LBSSLNegotiationPolicy) GetTerraformSchemaVersion added in v0.25.0

func (tr *LBSSLNegotiationPolicy) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*LBSSLNegotiationPolicy) GetWriteConnectionSecretToReference added in v0.25.0

func (mg *LBSSLNegotiationPolicy) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this LBSSLNegotiationPolicy.

func (*LBSSLNegotiationPolicy) Hub added in v0.47.2

func (tr *LBSSLNegotiationPolicy) Hub()

Hub marks this type as a conversion hub.

func (*LBSSLNegotiationPolicy) LateInitialize added in v0.25.0

func (tr *LBSSLNegotiationPolicy) LateInitialize(attrs []byte) (bool, error)

LateInitialize this LBSSLNegotiationPolicy using its observed tfState. returns True if there are any spec changes for the resource.

func (*LBSSLNegotiationPolicy) ResolveReferences added in v0.25.0

func (mg *LBSSLNegotiationPolicy) ResolveReferences(ctx context.Context, c client.Reader) error

ResolveReferences of this LBSSLNegotiationPolicy.

func (*LBSSLNegotiationPolicy) SetConditions added in v0.25.0

func (mg *LBSSLNegotiationPolicy) SetConditions(c ...xpv1.Condition)

SetConditions of this LBSSLNegotiationPolicy.

func (*LBSSLNegotiationPolicy) SetDeletionPolicy added in v0.25.0

func (mg *LBSSLNegotiationPolicy) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this LBSSLNegotiationPolicy.

func (*LBSSLNegotiationPolicy) SetManagementPolicies added in v0.38.0

func (mg *LBSSLNegotiationPolicy) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this LBSSLNegotiationPolicy.

func (*LBSSLNegotiationPolicy) SetObservation added in v0.25.0

func (tr *LBSSLNegotiationPolicy) SetObservation(obs map[string]any) error

SetObservation for this LBSSLNegotiationPolicy

func (*LBSSLNegotiationPolicy) SetParameters added in v0.25.0

func (tr *LBSSLNegotiationPolicy) SetParameters(params map[string]any) error

SetParameters for this LBSSLNegotiationPolicy

func (*LBSSLNegotiationPolicy) SetProviderConfigReference added in v0.25.0

func (mg *LBSSLNegotiationPolicy) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this LBSSLNegotiationPolicy.

func (*LBSSLNegotiationPolicy) SetPublishConnectionDetailsTo added in v0.25.0

func (mg *LBSSLNegotiationPolicy) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this LBSSLNegotiationPolicy.

func (*LBSSLNegotiationPolicy) SetWriteConnectionSecretToReference added in v0.25.0

func (mg *LBSSLNegotiationPolicy) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this LBSSLNegotiationPolicy.

type LBSSLNegotiationPolicyInitParameters added in v0.38.0

type LBSSLNegotiationPolicyInitParameters struct {

	// An SSL Negotiation policy attribute. Each has two properties:
	Attribute []AttributeInitParameters `json:"attribute,omitempty" tf:"attribute,omitempty"`

	// The load balancer port to which the policy
	// should be applied. This must be an active listener on the load
	// balancer.
	LBPort *float64 `json:"lbPort,omitempty" tf:"lb_port,omitempty"`

	// The load balancer to which the policy
	// should be attached.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/elb/v1beta1.ELB
	// +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractResourceID()
	LoadBalancer *string `json:"loadBalancer,omitempty" tf:"load_balancer,omitempty"`

	// Reference to a ELB in elb to populate loadBalancer.
	// +kubebuilder:validation:Optional
	LoadBalancerRef *v1.Reference `json:"loadBalancerRef,omitempty" tf:"-"`

	// Selector for a ELB in elb to populate loadBalancer.
	// +kubebuilder:validation:Optional
	LoadBalancerSelector *v1.Selector `json:"loadBalancerSelector,omitempty" tf:"-"`

	// The name of the SSL negotiation policy.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// Map of arbitrary keys and values that, when changed, will trigger a redeployment.
	// +mapType=granular
	Triggers map[string]*string `json:"triggers,omitempty" tf:"triggers,omitempty"`
}

func (*LBSSLNegotiationPolicyInitParameters) DeepCopy added in v0.38.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LBSSLNegotiationPolicyInitParameters.

func (*LBSSLNegotiationPolicyInitParameters) DeepCopyInto added in v0.38.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type LBSSLNegotiationPolicyList added in v0.25.0

type LBSSLNegotiationPolicyList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []LBSSLNegotiationPolicy `json:"items"`
}

LBSSLNegotiationPolicyList contains a list of LBSSLNegotiationPolicys

func (*LBSSLNegotiationPolicyList) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LBSSLNegotiationPolicyList.

func (*LBSSLNegotiationPolicyList) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*LBSSLNegotiationPolicyList) DeepCopyObject added in v0.25.0

func (in *LBSSLNegotiationPolicyList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*LBSSLNegotiationPolicyList) GetItems added in v0.25.0

GetItems of this LBSSLNegotiationPolicyList.

type LBSSLNegotiationPolicyObservation added in v0.25.0

type LBSSLNegotiationPolicyObservation struct {

	// An SSL Negotiation policy attribute. Each has two properties:
	Attribute []AttributeObservation `json:"attribute,omitempty" tf:"attribute,omitempty"`

	// The ID of the policy.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The load balancer port to which the policy
	// should be applied. This must be an active listener on the load
	// balancer.
	LBPort *float64 `json:"lbPort,omitempty" tf:"lb_port,omitempty"`

	// The load balancer to which the policy
	// should be attached.
	LoadBalancer *string `json:"loadBalancer,omitempty" tf:"load_balancer,omitempty"`

	// The name of the SSL negotiation policy.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// Map of arbitrary keys and values that, when changed, will trigger a redeployment.
	// +mapType=granular
	Triggers map[string]*string `json:"triggers,omitempty" tf:"triggers,omitempty"`
}

func (*LBSSLNegotiationPolicyObservation) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LBSSLNegotiationPolicyObservation.

func (*LBSSLNegotiationPolicyObservation) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type LBSSLNegotiationPolicyParameters added in v0.25.0

type LBSSLNegotiationPolicyParameters struct {

	// An SSL Negotiation policy attribute. Each has two properties:
	// +kubebuilder:validation:Optional
	Attribute []AttributeParameters `json:"attribute,omitempty" tf:"attribute,omitempty"`

	// The load balancer port to which the policy
	// should be applied. This must be an active listener on the load
	// balancer.
	// +kubebuilder:validation:Optional
	LBPort *float64 `json:"lbPort,omitempty" tf:"lb_port,omitempty"`

	// The load balancer to which the policy
	// should be attached.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/elb/v1beta1.ELB
	// +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractResourceID()
	// +kubebuilder:validation:Optional
	LoadBalancer *string `json:"loadBalancer,omitempty" tf:"load_balancer,omitempty"`

	// Reference to a ELB in elb to populate loadBalancer.
	// +kubebuilder:validation:Optional
	LoadBalancerRef *v1.Reference `json:"loadBalancerRef,omitempty" tf:"-"`

	// Selector for a ELB in elb to populate loadBalancer.
	// +kubebuilder:validation:Optional
	LoadBalancerSelector *v1.Selector `json:"loadBalancerSelector,omitempty" tf:"-"`

	// The name of the SSL negotiation policy.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// Region is the region you'd like your resource to be created in.
	// +upjet:crd:field:TFTag=-
	// +kubebuilder:validation:Required
	Region *string `json:"region" tf:"-"`

	// Map of arbitrary keys and values that, when changed, will trigger a redeployment.
	// +kubebuilder:validation:Optional
	// +mapType=granular
	Triggers map[string]*string `json:"triggers,omitempty" tf:"triggers,omitempty"`
}

func (*LBSSLNegotiationPolicyParameters) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LBSSLNegotiationPolicyParameters.

func (*LBSSLNegotiationPolicyParameters) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type LBSSLNegotiationPolicySpec added in v0.25.0

type LBSSLNegotiationPolicySpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     LBSSLNegotiationPolicyParameters `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 LBSSLNegotiationPolicyInitParameters `json:"initProvider,omitempty"`
}

LBSSLNegotiationPolicySpec defines the desired state of LBSSLNegotiationPolicy

func (*LBSSLNegotiationPolicySpec) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LBSSLNegotiationPolicySpec.

func (*LBSSLNegotiationPolicySpec) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type LBSSLNegotiationPolicyStatus added in v0.25.0

type LBSSLNegotiationPolicyStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        LBSSLNegotiationPolicyObservation `json:"atProvider,omitempty"`
}

LBSSLNegotiationPolicyStatus defines the observed state of LBSSLNegotiationPolicy.

func (*LBSSLNegotiationPolicyStatus) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LBSSLNegotiationPolicyStatus.

func (*LBSSLNegotiationPolicyStatus) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ListenerInitParameters added in v0.38.0

type ListenerInitParameters struct {

	// The port on the instance to route to
	InstancePort *float64 `json:"instancePort,omitempty" tf:"instance_port,omitempty"`

	// The protocol to use to the instance. Valid
	// values are HTTP, HTTPS, TCP, or SSL
	InstanceProtocol *string `json:"instanceProtocol,omitempty" tf:"instance_protocol,omitempty"`

	// The port to listen on for the load balancer
	LBPort *float64 `json:"lbPort,omitempty" tf:"lb_port,omitempty"`

	// The protocol to listen on. Valid values are HTTP,
	// HTTPS, TCP, or SSL
	LBProtocol *string `json:"lbProtocol,omitempty" tf:"lb_protocol,omitempty"`

	// The ARN of an SSL certificate you have
	// uploaded to AWS IAM. Note ECDSA-specific restrictions below.  Only valid when
	SSLCertificateID *string `json:"sslCertificateId,omitempty" tf:"ssl_certificate_id,omitempty"`
}

func (*ListenerInitParameters) DeepCopy added in v0.38.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListenerInitParameters.

func (*ListenerInitParameters) DeepCopyInto added in v0.38.0

func (in *ListenerInitParameters) DeepCopyInto(out *ListenerInitParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ListenerObservation

type ListenerObservation struct {

	// The port on the instance to route to
	InstancePort *float64 `json:"instancePort,omitempty" tf:"instance_port,omitempty"`

	// The protocol to use to the instance. Valid
	// values are HTTP, HTTPS, TCP, or SSL
	InstanceProtocol *string `json:"instanceProtocol,omitempty" tf:"instance_protocol,omitempty"`

	// The port to listen on for the load balancer
	LBPort *float64 `json:"lbPort,omitempty" tf:"lb_port,omitempty"`

	// The protocol to listen on. Valid values are HTTP,
	// HTTPS, TCP, or SSL
	LBProtocol *string `json:"lbProtocol,omitempty" tf:"lb_protocol,omitempty"`

	// The ARN of an SSL certificate you have
	// uploaded to AWS IAM. Note ECDSA-specific restrictions below.  Only valid when
	SSLCertificateID *string `json:"sslCertificateId,omitempty" tf:"ssl_certificate_id,omitempty"`
}

func (*ListenerObservation) DeepCopy

func (in *ListenerObservation) DeepCopy() *ListenerObservation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListenerObservation.

func (*ListenerObservation) DeepCopyInto

func (in *ListenerObservation) DeepCopyInto(out *ListenerObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ListenerParameters

type ListenerParameters struct {

	// The port on the instance to route to
	// +kubebuilder:validation:Optional
	InstancePort *float64 `json:"instancePort" tf:"instance_port,omitempty"`

	// The protocol to use to the instance. Valid
	// values are HTTP, HTTPS, TCP, or SSL
	// +kubebuilder:validation:Optional
	InstanceProtocol *string `json:"instanceProtocol" tf:"instance_protocol,omitempty"`

	// The port to listen on for the load balancer
	// +kubebuilder:validation:Optional
	LBPort *float64 `json:"lbPort" tf:"lb_port,omitempty"`

	// The protocol to listen on. Valid values are HTTP,
	// HTTPS, TCP, or SSL
	// +kubebuilder:validation:Optional
	LBProtocol *string `json:"lbProtocol" tf:"lb_protocol,omitempty"`

	// The ARN of an SSL certificate you have
	// uploaded to AWS IAM. Note ECDSA-specific restrictions below.  Only valid when
	// +kubebuilder:validation:Optional
	SSLCertificateID *string `json:"sslCertificateId,omitempty" tf:"ssl_certificate_id,omitempty"`
}

func (*ListenerParameters) DeepCopy

func (in *ListenerParameters) DeepCopy() *ListenerParameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListenerParameters.

func (*ListenerParameters) DeepCopyInto

func (in *ListenerParameters) DeepCopyInto(out *ListenerParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ListenerPolicy added in v0.25.0

type ListenerPolicy 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.loadBalancerPort) || (has(self.initProvider) && has(self.initProvider.loadBalancerPort))",message="spec.forProvider.loadBalancerPort is a required parameter"
	Spec   ListenerPolicySpec   `json:"spec"`
	Status ListenerPolicyStatus `json:"status,omitempty"`
}

ListenerPolicy is the Schema for the ListenerPolicys API. Attaches a load balancer policy to an ELB Listener. +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,aws}

func (*ListenerPolicy) DeepCopy added in v0.25.0

func (in *ListenerPolicy) DeepCopy() *ListenerPolicy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListenerPolicy.

func (*ListenerPolicy) DeepCopyInto added in v0.25.0

func (in *ListenerPolicy) DeepCopyInto(out *ListenerPolicy)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ListenerPolicy) DeepCopyObject added in v0.25.0

func (in *ListenerPolicy) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ListenerPolicy) GetCondition added in v0.25.0

func (mg *ListenerPolicy) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this ListenerPolicy.

func (*ListenerPolicy) GetConnectionDetailsMapping added in v0.25.0

func (tr *ListenerPolicy) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this ListenerPolicy

func (*ListenerPolicy) GetDeletionPolicy added in v0.25.0

func (mg *ListenerPolicy) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this ListenerPolicy.

func (*ListenerPolicy) GetID added in v0.25.0

func (tr *ListenerPolicy) GetID() string

GetID returns ID of underlying Terraform resource of this ListenerPolicy

func (*ListenerPolicy) GetInitParameters added in v0.38.0

func (tr *ListenerPolicy) GetInitParameters() (map[string]any, error)

GetInitParameters of this ListenerPolicy

func (*ListenerPolicy) GetManagementPolicies added in v0.38.0

func (mg *ListenerPolicy) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this ListenerPolicy.

func (*ListenerPolicy) GetMergedParameters added in v0.44.0

func (tr *ListenerPolicy) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this ListenerPolicy

func (*ListenerPolicy) GetObservation added in v0.25.0

func (tr *ListenerPolicy) GetObservation() (map[string]any, error)

GetObservation of this ListenerPolicy

func (*ListenerPolicy) GetParameters added in v0.25.0

func (tr *ListenerPolicy) GetParameters() (map[string]any, error)

GetParameters of this ListenerPolicy

func (*ListenerPolicy) GetProviderConfigReference added in v0.25.0

func (mg *ListenerPolicy) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this ListenerPolicy.

func (*ListenerPolicy) GetPublishConnectionDetailsTo added in v0.25.0

func (mg *ListenerPolicy) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this ListenerPolicy.

func (*ListenerPolicy) GetTerraformResourceType added in v0.25.0

func (mg *ListenerPolicy) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this ListenerPolicy

func (*ListenerPolicy) GetTerraformSchemaVersion added in v0.25.0

func (tr *ListenerPolicy) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*ListenerPolicy) GetWriteConnectionSecretToReference added in v0.25.0

func (mg *ListenerPolicy) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this ListenerPolicy.

func (*ListenerPolicy) Hub added in v0.47.2

func (tr *ListenerPolicy) Hub()

Hub marks this type as a conversion hub.

func (*ListenerPolicy) LateInitialize added in v0.25.0

func (tr *ListenerPolicy) LateInitialize(attrs []byte) (bool, error)

LateInitialize this ListenerPolicy using its observed tfState. returns True if there are any spec changes for the resource.

func (*ListenerPolicy) ResolveReferences added in v0.25.0

func (mg *ListenerPolicy) ResolveReferences(ctx context.Context, c client.Reader) error

ResolveReferences of this ListenerPolicy.

func (*ListenerPolicy) SetConditions added in v0.25.0

func (mg *ListenerPolicy) SetConditions(c ...xpv1.Condition)

SetConditions of this ListenerPolicy.

func (*ListenerPolicy) SetDeletionPolicy added in v0.25.0

func (mg *ListenerPolicy) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this ListenerPolicy.

func (*ListenerPolicy) SetManagementPolicies added in v0.38.0

func (mg *ListenerPolicy) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this ListenerPolicy.

func (*ListenerPolicy) SetObservation added in v0.25.0

func (tr *ListenerPolicy) SetObservation(obs map[string]any) error

SetObservation for this ListenerPolicy

func (*ListenerPolicy) SetParameters added in v0.25.0

func (tr *ListenerPolicy) SetParameters(params map[string]any) error

SetParameters for this ListenerPolicy

func (*ListenerPolicy) SetProviderConfigReference added in v0.25.0

func (mg *ListenerPolicy) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this ListenerPolicy.

func (*ListenerPolicy) SetPublishConnectionDetailsTo added in v0.25.0

func (mg *ListenerPolicy) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this ListenerPolicy.

func (*ListenerPolicy) SetWriteConnectionSecretToReference added in v0.25.0

func (mg *ListenerPolicy) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this ListenerPolicy.

type ListenerPolicyInitParameters added in v0.38.0

type ListenerPolicyInitParameters struct {

	// The load balancer to attach the policy to.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/elb/v1beta1.ELB
	LoadBalancerName *string `json:"loadBalancerName,omitempty" tf:"load_balancer_name,omitempty"`

	// Reference to a ELB in elb to populate loadBalancerName.
	// +kubebuilder:validation:Optional
	LoadBalancerNameRef *v1.Reference `json:"loadBalancerNameRef,omitempty" tf:"-"`

	// Selector for a ELB in elb to populate loadBalancerName.
	// +kubebuilder:validation:Optional
	LoadBalancerNameSelector *v1.Selector `json:"loadBalancerNameSelector,omitempty" tf:"-"`

	// The load balancer listener port to apply the policy to.
	LoadBalancerPort *float64 `json:"loadBalancerPort,omitempty" tf:"load_balancer_port,omitempty"`

	// List of Policy Names to apply to the backend server.
	// +listType=set
	PolicyNames []*string `json:"policyNames,omitempty" tf:"policy_names,omitempty"`

	// Map of arbitrary keys and values that, when changed, will trigger an update.
	// +mapType=granular
	Triggers map[string]*string `json:"triggers,omitempty" tf:"triggers,omitempty"`
}

func (*ListenerPolicyInitParameters) DeepCopy added in v0.38.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListenerPolicyInitParameters.

func (*ListenerPolicyInitParameters) DeepCopyInto added in v0.38.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ListenerPolicyList added in v0.25.0

type ListenerPolicyList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []ListenerPolicy `json:"items"`
}

ListenerPolicyList contains a list of ListenerPolicys

func (*ListenerPolicyList) DeepCopy added in v0.25.0

func (in *ListenerPolicyList) DeepCopy() *ListenerPolicyList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListenerPolicyList.

func (*ListenerPolicyList) DeepCopyInto added in v0.25.0

func (in *ListenerPolicyList) DeepCopyInto(out *ListenerPolicyList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ListenerPolicyList) DeepCopyObject added in v0.25.0

func (in *ListenerPolicyList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ListenerPolicyList) GetItems added in v0.25.0

func (l *ListenerPolicyList) GetItems() []resource.Managed

GetItems of this ListenerPolicyList.

type ListenerPolicyObservation added in v0.25.0

type ListenerPolicyObservation struct {

	// The ID of the policy.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The load balancer to attach the policy to.
	LoadBalancerName *string `json:"loadBalancerName,omitempty" tf:"load_balancer_name,omitempty"`

	// The load balancer listener port to apply the policy to.
	LoadBalancerPort *float64 `json:"loadBalancerPort,omitempty" tf:"load_balancer_port,omitempty"`

	// List of Policy Names to apply to the backend server.
	// +listType=set
	PolicyNames []*string `json:"policyNames,omitempty" tf:"policy_names,omitempty"`

	// Map of arbitrary keys and values that, when changed, will trigger an update.
	// +mapType=granular
	Triggers map[string]*string `json:"triggers,omitempty" tf:"triggers,omitempty"`
}

func (*ListenerPolicyObservation) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListenerPolicyObservation.

func (*ListenerPolicyObservation) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ListenerPolicyParameters added in v0.25.0

type ListenerPolicyParameters struct {

	// The load balancer to attach the policy to.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/elb/v1beta1.ELB
	// +kubebuilder:validation:Optional
	LoadBalancerName *string `json:"loadBalancerName,omitempty" tf:"load_balancer_name,omitempty"`

	// Reference to a ELB in elb to populate loadBalancerName.
	// +kubebuilder:validation:Optional
	LoadBalancerNameRef *v1.Reference `json:"loadBalancerNameRef,omitempty" tf:"-"`

	// Selector for a ELB in elb to populate loadBalancerName.
	// +kubebuilder:validation:Optional
	LoadBalancerNameSelector *v1.Selector `json:"loadBalancerNameSelector,omitempty" tf:"-"`

	// The load balancer listener port to apply the policy to.
	// +kubebuilder:validation:Optional
	LoadBalancerPort *float64 `json:"loadBalancerPort,omitempty" tf:"load_balancer_port,omitempty"`

	// List of Policy Names to apply to the backend server.
	// +kubebuilder:validation:Optional
	// +listType=set
	PolicyNames []*string `json:"policyNames,omitempty" tf:"policy_names,omitempty"`

	// Region is the region you'd like your resource to be created in.
	// +upjet:crd:field:TFTag=-
	// +kubebuilder:validation:Required
	Region *string `json:"region" tf:"-"`

	// Map of arbitrary keys and values that, when changed, will trigger an update.
	// +kubebuilder:validation:Optional
	// +mapType=granular
	Triggers map[string]*string `json:"triggers,omitempty" tf:"triggers,omitempty"`
}

func (*ListenerPolicyParameters) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListenerPolicyParameters.

func (*ListenerPolicyParameters) DeepCopyInto added in v0.25.0

func (in *ListenerPolicyParameters) DeepCopyInto(out *ListenerPolicyParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ListenerPolicySpec added in v0.25.0

type ListenerPolicySpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     ListenerPolicyParameters `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 ListenerPolicyInitParameters `json:"initProvider,omitempty"`
}

ListenerPolicySpec defines the desired state of ListenerPolicy

func (*ListenerPolicySpec) DeepCopy added in v0.25.0

func (in *ListenerPolicySpec) DeepCopy() *ListenerPolicySpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListenerPolicySpec.

func (*ListenerPolicySpec) DeepCopyInto added in v0.25.0

func (in *ListenerPolicySpec) DeepCopyInto(out *ListenerPolicySpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ListenerPolicyStatus added in v0.25.0

type ListenerPolicyStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        ListenerPolicyObservation `json:"atProvider,omitempty"`
}

ListenerPolicyStatus defines the observed state of ListenerPolicy.

func (*ListenerPolicyStatus) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListenerPolicyStatus.

func (*ListenerPolicyStatus) DeepCopyInto added in v0.25.0

func (in *ListenerPolicyStatus) DeepCopyInto(out *ListenerPolicyStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type Policy added in v0.25.0

type Policy 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.policyName) || (has(self.initProvider) && has(self.initProvider.policyName))",message="spec.forProvider.policyName is a required parameter"
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.policyTypeName) || (has(self.initProvider) && has(self.initProvider.policyTypeName))",message="spec.forProvider.policyTypeName is a required parameter"
	Spec   PolicySpec   `json:"spec"`
	Status PolicyStatus `json:"status,omitempty"`
}

Policy is the Schema for the Policys API. Provides a load balancer policy, which can be attached to an ELB listener or backend server. +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,aws}

func (*Policy) DeepCopy added in v0.25.0

func (in *Policy) DeepCopy() *Policy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Policy.

func (*Policy) DeepCopyInto added in v0.25.0

func (in *Policy) DeepCopyInto(out *Policy)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Policy) DeepCopyObject added in v0.25.0

func (in *Policy) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*Policy) GetCondition added in v0.25.0

func (mg *Policy) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this Policy.

func (*Policy) GetConnectionDetailsMapping added in v0.25.0

func (tr *Policy) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this Policy

func (*Policy) GetDeletionPolicy added in v0.25.0

func (mg *Policy) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this Policy.

func (*Policy) GetID added in v0.25.0

func (tr *Policy) GetID() string

GetID returns ID of underlying Terraform resource of this Policy

func (*Policy) GetInitParameters added in v0.38.0

func (tr *Policy) GetInitParameters() (map[string]any, error)

GetInitParameters of this Policy

func (*Policy) GetManagementPolicies added in v0.38.0

func (mg *Policy) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this Policy.

func (*Policy) GetMergedParameters added in v0.44.0

func (tr *Policy) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this Policy

func (*Policy) GetObservation added in v0.25.0

func (tr *Policy) GetObservation() (map[string]any, error)

GetObservation of this Policy

func (*Policy) GetParameters added in v0.25.0

func (tr *Policy) GetParameters() (map[string]any, error)

GetParameters of this Policy

func (*Policy) GetProviderConfigReference added in v0.25.0

func (mg *Policy) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this Policy.

func (*Policy) GetPublishConnectionDetailsTo added in v0.25.0

func (mg *Policy) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this Policy.

func (*Policy) GetTerraformResourceType added in v0.25.0

func (mg *Policy) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Policy

func (*Policy) GetTerraformSchemaVersion added in v0.25.0

func (tr *Policy) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Policy) GetWriteConnectionSecretToReference added in v0.25.0

func (mg *Policy) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this Policy.

func (*Policy) Hub added in v0.47.2

func (tr *Policy) Hub()

Hub marks this type as a conversion hub.

func (*Policy) LateInitialize added in v0.25.0

func (tr *Policy) LateInitialize(attrs []byte) (bool, error)

LateInitialize this Policy using its observed tfState. returns True if there are any spec changes for the resource.

func (*Policy) ResolveReferences added in v0.25.0

func (mg *Policy) ResolveReferences(ctx context.Context, c client.Reader) error

ResolveReferences of this Policy.

func (*Policy) SetConditions added in v0.25.0

func (mg *Policy) SetConditions(c ...xpv1.Condition)

SetConditions of this Policy.

func (*Policy) SetDeletionPolicy added in v0.25.0

func (mg *Policy) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this Policy.

func (*Policy) SetManagementPolicies added in v0.38.0

func (mg *Policy) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this Policy.

func (*Policy) SetObservation added in v0.25.0

func (tr *Policy) SetObservation(obs map[string]any) error

SetObservation for this Policy

func (*Policy) SetParameters added in v0.25.0

func (tr *Policy) SetParameters(params map[string]any) error

SetParameters for this Policy

func (*Policy) SetProviderConfigReference added in v0.25.0

func (mg *Policy) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this Policy.

func (*Policy) SetPublishConnectionDetailsTo added in v0.25.0

func (mg *Policy) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this Policy.

func (*Policy) SetWriteConnectionSecretToReference added in v0.25.0

func (mg *Policy) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this Policy.

type PolicyAttributeInitParameters added in v0.38.0

type PolicyAttributeInitParameters struct {
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/elb/v1beta1.Policy
	// +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractParamPath("policy_name",false)
	Value *string `json:"value,omitempty" tf:"value,omitempty"`

	// Reference to a Policy in elb to populate value.
	// +kubebuilder:validation:Optional
	ValueRef *v1.Reference `json:"valueRef,omitempty" tf:"-"`

	// Selector for a Policy in elb to populate value.
	// +kubebuilder:validation:Optional
	ValueSelector *v1.Selector `json:"valueSelector,omitempty" tf:"-"`
}

func (*PolicyAttributeInitParameters) DeepCopy added in v0.38.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PolicyAttributeInitParameters.

func (*PolicyAttributeInitParameters) DeepCopyInto added in v0.38.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type PolicyAttributeObservation added in v0.25.0

type PolicyAttributeObservation struct {
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	Value *string `json:"value,omitempty" tf:"value,omitempty"`
}

func (*PolicyAttributeObservation) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PolicyAttributeObservation.

func (*PolicyAttributeObservation) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type PolicyAttributeParameters added in v0.25.0

type PolicyAttributeParameters struct {

	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/elb/v1beta1.Policy
	// +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractParamPath("policy_name",false)
	// +kubebuilder:validation:Optional
	Value *string `json:"value,omitempty" tf:"value,omitempty"`

	// Reference to a Policy in elb to populate value.
	// +kubebuilder:validation:Optional
	ValueRef *v1.Reference `json:"valueRef,omitempty" tf:"-"`

	// Selector for a Policy in elb to populate value.
	// +kubebuilder:validation:Optional
	ValueSelector *v1.Selector `json:"valueSelector,omitempty" tf:"-"`
}

func (*PolicyAttributeParameters) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PolicyAttributeParameters.

func (*PolicyAttributeParameters) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type PolicyInitParameters added in v0.38.0

type PolicyInitParameters struct {

	// The load balancer on which the policy is defined.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/elb/v1beta1.ELB
	LoadBalancerName *string `json:"loadBalancerName,omitempty" tf:"load_balancer_name,omitempty"`

	// Reference to a ELB in elb to populate loadBalancerName.
	// +kubebuilder:validation:Optional
	LoadBalancerNameRef *v1.Reference `json:"loadBalancerNameRef,omitempty" tf:"-"`

	// Selector for a ELB in elb to populate loadBalancerName.
	// +kubebuilder:validation:Optional
	LoadBalancerNameSelector *v1.Selector `json:"loadBalancerNameSelector,omitempty" tf:"-"`

	// Policy attribute to apply to the policy.
	PolicyAttribute []PolicyAttributeInitParameters `json:"policyAttribute,omitempty" tf:"policy_attribute,omitempty"`

	// The name of the load balancer policy.
	PolicyName *string `json:"policyName,omitempty" tf:"policy_name,omitempty"`

	// The policy type.
	PolicyTypeName *string `json:"policyTypeName,omitempty" tf:"policy_type_name,omitempty"`
}

func (*PolicyInitParameters) DeepCopy added in v0.38.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PolicyInitParameters.

func (*PolicyInitParameters) DeepCopyInto added in v0.38.0

func (in *PolicyInitParameters) DeepCopyInto(out *PolicyInitParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type PolicyList added in v0.25.0

type PolicyList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []Policy `json:"items"`
}

PolicyList contains a list of Policys

func (*PolicyList) DeepCopy added in v0.25.0

func (in *PolicyList) DeepCopy() *PolicyList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PolicyList.

func (*PolicyList) DeepCopyInto added in v0.25.0

func (in *PolicyList) DeepCopyInto(out *PolicyList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*PolicyList) DeepCopyObject added in v0.25.0

func (in *PolicyList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*PolicyList) GetItems added in v0.25.0

func (l *PolicyList) GetItems() []resource.Managed

GetItems of this PolicyList.

type PolicyObservation added in v0.25.0

type PolicyObservation struct {

	// The ID of the policy.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The load balancer on which the policy is defined.
	LoadBalancerName *string `json:"loadBalancerName,omitempty" tf:"load_balancer_name,omitempty"`

	// Policy attribute to apply to the policy.
	PolicyAttribute []PolicyAttributeObservation `json:"policyAttribute,omitempty" tf:"policy_attribute,omitempty"`

	// The name of the load balancer policy.
	PolicyName *string `json:"policyName,omitempty" tf:"policy_name,omitempty"`

	// The policy type.
	PolicyTypeName *string `json:"policyTypeName,omitempty" tf:"policy_type_name,omitempty"`
}

func (*PolicyObservation) DeepCopy added in v0.25.0

func (in *PolicyObservation) DeepCopy() *PolicyObservation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PolicyObservation.

func (*PolicyObservation) DeepCopyInto added in v0.25.0

func (in *PolicyObservation) DeepCopyInto(out *PolicyObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type PolicyParameters added in v0.25.0

type PolicyParameters struct {

	// The load balancer on which the policy is defined.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/elb/v1beta1.ELB
	// +kubebuilder:validation:Optional
	LoadBalancerName *string `json:"loadBalancerName,omitempty" tf:"load_balancer_name,omitempty"`

	// Reference to a ELB in elb to populate loadBalancerName.
	// +kubebuilder:validation:Optional
	LoadBalancerNameRef *v1.Reference `json:"loadBalancerNameRef,omitempty" tf:"-"`

	// Selector for a ELB in elb to populate loadBalancerName.
	// +kubebuilder:validation:Optional
	LoadBalancerNameSelector *v1.Selector `json:"loadBalancerNameSelector,omitempty" tf:"-"`

	// Policy attribute to apply to the policy.
	// +kubebuilder:validation:Optional
	PolicyAttribute []PolicyAttributeParameters `json:"policyAttribute,omitempty" tf:"policy_attribute,omitempty"`

	// The name of the load balancer policy.
	// +kubebuilder:validation:Optional
	PolicyName *string `json:"policyName,omitempty" tf:"policy_name,omitempty"`

	// The policy type.
	// +kubebuilder:validation:Optional
	PolicyTypeName *string `json:"policyTypeName,omitempty" tf:"policy_type_name,omitempty"`

	// Region is the region you'd like your resource to be created in.
	// +upjet:crd:field:TFTag=-
	// +kubebuilder:validation:Required
	Region *string `json:"region" tf:"-"`
}

func (*PolicyParameters) DeepCopy added in v0.25.0

func (in *PolicyParameters) DeepCopy() *PolicyParameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PolicyParameters.

func (*PolicyParameters) DeepCopyInto added in v0.25.0

func (in *PolicyParameters) DeepCopyInto(out *PolicyParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type PolicySpec added in v0.25.0

type PolicySpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     PolicyParameters `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 PolicyInitParameters `json:"initProvider,omitempty"`
}

PolicySpec defines the desired state of Policy

func (*PolicySpec) DeepCopy added in v0.25.0

func (in *PolicySpec) DeepCopy() *PolicySpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PolicySpec.

func (*PolicySpec) DeepCopyInto added in v0.25.0

func (in *PolicySpec) DeepCopyInto(out *PolicySpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type PolicyStatus added in v0.25.0

type PolicyStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        PolicyObservation `json:"atProvider,omitempty"`
}

PolicyStatus defines the observed state of Policy.

func (*PolicyStatus) DeepCopy added in v0.25.0

func (in *PolicyStatus) DeepCopy() *PolicyStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PolicyStatus.

func (*PolicyStatus) DeepCopyInto added in v0.25.0

func (in *PolicyStatus) DeepCopyInto(out *PolicyStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProxyProtocolPolicy added in v0.25.0

type ProxyProtocolPolicy 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.instancePorts) || (has(self.initProvider) && has(self.initProvider.instancePorts))",message="spec.forProvider.instancePorts is a required parameter"
	Spec   ProxyProtocolPolicySpec   `json:"spec"`
	Status ProxyProtocolPolicyStatus `json:"status,omitempty"`
}

ProxyProtocolPolicy is the Schema for the ProxyProtocolPolicys API. Provides a proxy protocol policy, which allows an ELB to carry a client connection information to a backend. +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,aws}

func (*ProxyProtocolPolicy) DeepCopy added in v0.25.0

func (in *ProxyProtocolPolicy) DeepCopy() *ProxyProtocolPolicy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProxyProtocolPolicy.

func (*ProxyProtocolPolicy) DeepCopyInto added in v0.25.0

func (in *ProxyProtocolPolicy) DeepCopyInto(out *ProxyProtocolPolicy)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ProxyProtocolPolicy) DeepCopyObject added in v0.25.0

func (in *ProxyProtocolPolicy) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ProxyProtocolPolicy) GetCondition added in v0.25.0

func (mg *ProxyProtocolPolicy) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this ProxyProtocolPolicy.

func (*ProxyProtocolPolicy) GetConnectionDetailsMapping added in v0.25.0

func (tr *ProxyProtocolPolicy) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this ProxyProtocolPolicy

func (*ProxyProtocolPolicy) GetDeletionPolicy added in v0.25.0

func (mg *ProxyProtocolPolicy) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this ProxyProtocolPolicy.

func (*ProxyProtocolPolicy) GetID added in v0.25.0

func (tr *ProxyProtocolPolicy) GetID() string

GetID returns ID of underlying Terraform resource of this ProxyProtocolPolicy

func (*ProxyProtocolPolicy) GetInitParameters added in v0.38.0

func (tr *ProxyProtocolPolicy) GetInitParameters() (map[string]any, error)

GetInitParameters of this ProxyProtocolPolicy

func (*ProxyProtocolPolicy) GetManagementPolicies added in v0.38.0

func (mg *ProxyProtocolPolicy) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this ProxyProtocolPolicy.

func (*ProxyProtocolPolicy) GetMergedParameters added in v0.44.0

func (tr *ProxyProtocolPolicy) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this ProxyProtocolPolicy

func (*ProxyProtocolPolicy) GetObservation added in v0.25.0

func (tr *ProxyProtocolPolicy) GetObservation() (map[string]any, error)

GetObservation of this ProxyProtocolPolicy

func (*ProxyProtocolPolicy) GetParameters added in v0.25.0

func (tr *ProxyProtocolPolicy) GetParameters() (map[string]any, error)

GetParameters of this ProxyProtocolPolicy

func (*ProxyProtocolPolicy) GetProviderConfigReference added in v0.25.0

func (mg *ProxyProtocolPolicy) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this ProxyProtocolPolicy.

func (*ProxyProtocolPolicy) GetPublishConnectionDetailsTo added in v0.25.0

func (mg *ProxyProtocolPolicy) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this ProxyProtocolPolicy.

func (*ProxyProtocolPolicy) GetTerraformResourceType added in v0.25.0

func (mg *ProxyProtocolPolicy) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this ProxyProtocolPolicy

func (*ProxyProtocolPolicy) GetTerraformSchemaVersion added in v0.25.0

func (tr *ProxyProtocolPolicy) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*ProxyProtocolPolicy) GetWriteConnectionSecretToReference added in v0.25.0

func (mg *ProxyProtocolPolicy) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this ProxyProtocolPolicy.

func (*ProxyProtocolPolicy) Hub added in v0.47.2

func (tr *ProxyProtocolPolicy) Hub()

Hub marks this type as a conversion hub.

func (*ProxyProtocolPolicy) LateInitialize added in v0.25.0

func (tr *ProxyProtocolPolicy) LateInitialize(attrs []byte) (bool, error)

LateInitialize this ProxyProtocolPolicy using its observed tfState. returns True if there are any spec changes for the resource.

func (*ProxyProtocolPolicy) ResolveReferences added in v0.25.0

func (mg *ProxyProtocolPolicy) ResolveReferences(ctx context.Context, c client.Reader) error

ResolveReferences of this ProxyProtocolPolicy.

func (*ProxyProtocolPolicy) SetConditions added in v0.25.0

func (mg *ProxyProtocolPolicy) SetConditions(c ...xpv1.Condition)

SetConditions of this ProxyProtocolPolicy.

func (*ProxyProtocolPolicy) SetDeletionPolicy added in v0.25.0

func (mg *ProxyProtocolPolicy) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this ProxyProtocolPolicy.

func (*ProxyProtocolPolicy) SetManagementPolicies added in v0.38.0

func (mg *ProxyProtocolPolicy) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this ProxyProtocolPolicy.

func (*ProxyProtocolPolicy) SetObservation added in v0.25.0

func (tr *ProxyProtocolPolicy) SetObservation(obs map[string]any) error

SetObservation for this ProxyProtocolPolicy

func (*ProxyProtocolPolicy) SetParameters added in v0.25.0

func (tr *ProxyProtocolPolicy) SetParameters(params map[string]any) error

SetParameters for this ProxyProtocolPolicy

func (*ProxyProtocolPolicy) SetProviderConfigReference added in v0.25.0

func (mg *ProxyProtocolPolicy) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this ProxyProtocolPolicy.

func (*ProxyProtocolPolicy) SetPublishConnectionDetailsTo added in v0.25.0

func (mg *ProxyProtocolPolicy) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this ProxyProtocolPolicy.

func (*ProxyProtocolPolicy) SetWriteConnectionSecretToReference added in v0.25.0

func (mg *ProxyProtocolPolicy) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this ProxyProtocolPolicy.

type ProxyProtocolPolicyInitParameters added in v0.38.0

type ProxyProtocolPolicyInitParameters struct {

	// List of instance ports to which the policy
	// should be applied. This can be specified if the protocol is SSL or TCP.
	// +listType=set
	InstancePorts []*string `json:"instancePorts,omitempty" tf:"instance_ports,omitempty"`

	// The load balancer to which the policy
	// should be attached.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/elb/v1beta1.ELB
	LoadBalancer *string `json:"loadBalancer,omitempty" tf:"load_balancer,omitempty"`

	// Reference to a ELB in elb to populate loadBalancer.
	// +kubebuilder:validation:Optional
	LoadBalancerRef *v1.Reference `json:"loadBalancerRef,omitempty" tf:"-"`

	// Selector for a ELB in elb to populate loadBalancer.
	// +kubebuilder:validation:Optional
	LoadBalancerSelector *v1.Selector `json:"loadBalancerSelector,omitempty" tf:"-"`
}

func (*ProxyProtocolPolicyInitParameters) DeepCopy added in v0.38.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProxyProtocolPolicyInitParameters.

func (*ProxyProtocolPolicyInitParameters) DeepCopyInto added in v0.38.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProxyProtocolPolicyList added in v0.25.0

type ProxyProtocolPolicyList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []ProxyProtocolPolicy `json:"items"`
}

ProxyProtocolPolicyList contains a list of ProxyProtocolPolicys

func (*ProxyProtocolPolicyList) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProxyProtocolPolicyList.

func (*ProxyProtocolPolicyList) DeepCopyInto added in v0.25.0

func (in *ProxyProtocolPolicyList) DeepCopyInto(out *ProxyProtocolPolicyList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ProxyProtocolPolicyList) DeepCopyObject added in v0.25.0

func (in *ProxyProtocolPolicyList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ProxyProtocolPolicyList) GetItems added in v0.25.0

func (l *ProxyProtocolPolicyList) GetItems() []resource.Managed

GetItems of this ProxyProtocolPolicyList.

type ProxyProtocolPolicyObservation added in v0.25.0

type ProxyProtocolPolicyObservation struct {

	// The ID of the policy.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// List of instance ports to which the policy
	// should be applied. This can be specified if the protocol is SSL or TCP.
	// +listType=set
	InstancePorts []*string `json:"instancePorts,omitempty" tf:"instance_ports,omitempty"`

	// The load balancer to which the policy
	// should be attached.
	LoadBalancer *string `json:"loadBalancer,omitempty" tf:"load_balancer,omitempty"`
}

func (*ProxyProtocolPolicyObservation) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProxyProtocolPolicyObservation.

func (*ProxyProtocolPolicyObservation) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProxyProtocolPolicyParameters added in v0.25.0

type ProxyProtocolPolicyParameters struct {

	// List of instance ports to which the policy
	// should be applied. This can be specified if the protocol is SSL or TCP.
	// +kubebuilder:validation:Optional
	// +listType=set
	InstancePorts []*string `json:"instancePorts,omitempty" tf:"instance_ports,omitempty"`

	// The load balancer to which the policy
	// should be attached.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/elb/v1beta1.ELB
	// +kubebuilder:validation:Optional
	LoadBalancer *string `json:"loadBalancer,omitempty" tf:"load_balancer,omitempty"`

	// Reference to a ELB in elb to populate loadBalancer.
	// +kubebuilder:validation:Optional
	LoadBalancerRef *v1.Reference `json:"loadBalancerRef,omitempty" tf:"-"`

	// Selector for a ELB in elb to populate loadBalancer.
	// +kubebuilder:validation:Optional
	LoadBalancerSelector *v1.Selector `json:"loadBalancerSelector,omitempty" tf:"-"`

	// Region is the region you'd like your resource to be created in.
	// +upjet:crd:field:TFTag=-
	// +kubebuilder:validation:Required
	Region *string `json:"region" tf:"-"`
}

func (*ProxyProtocolPolicyParameters) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProxyProtocolPolicyParameters.

func (*ProxyProtocolPolicyParameters) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProxyProtocolPolicySpec added in v0.25.0

type ProxyProtocolPolicySpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     ProxyProtocolPolicyParameters `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 ProxyProtocolPolicyInitParameters `json:"initProvider,omitempty"`
}

ProxyProtocolPolicySpec defines the desired state of ProxyProtocolPolicy

func (*ProxyProtocolPolicySpec) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProxyProtocolPolicySpec.

func (*ProxyProtocolPolicySpec) DeepCopyInto added in v0.25.0

func (in *ProxyProtocolPolicySpec) DeepCopyInto(out *ProxyProtocolPolicySpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProxyProtocolPolicyStatus added in v0.25.0

type ProxyProtocolPolicyStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        ProxyProtocolPolicyObservation `json:"atProvider,omitempty"`
}

ProxyProtocolPolicyStatus defines the observed state of ProxyProtocolPolicy.

func (*ProxyProtocolPolicyStatus) DeepCopy added in v0.25.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProxyProtocolPolicyStatus.

func (*ProxyProtocolPolicyStatus) DeepCopyInto added in v0.25.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL