Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=elb.aws.upbound.io +versionName=v1beta1
Index ¶
- Constants
- Variables
- type AccessLogsObservation
- type AccessLogsParameters
- type Attachment
- func (in *Attachment) DeepCopy() *Attachment
- func (in *Attachment) DeepCopyInto(out *Attachment)
- func (in *Attachment) DeepCopyObject() runtime.Object
- func (mg *Attachment) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Attachment) GetConnectionDetailsMapping() map[string]string
- func (mg *Attachment) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Attachment) GetID() string
- func (tr *Attachment) GetObservation() (map[string]any, error)
- func (tr *Attachment) GetParameters() (map[string]any, error)
- func (mg *Attachment) GetProviderConfigReference() *xpv1.Reference
- func (mg *Attachment) GetProviderReference() *xpv1.Reference
- func (mg *Attachment) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Attachment) GetTerraformResourceType() string
- func (tr *Attachment) GetTerraformSchemaVersion() int
- func (mg *Attachment) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Attachment) LateInitialize(attrs []byte) (bool, error)
- func (mg *Attachment) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *Attachment) SetConditions(c ...xpv1.Condition)
- func (mg *Attachment) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *Attachment) SetObservation(obs map[string]any) error
- func (tr *Attachment) SetParameters(params map[string]any) error
- func (mg *Attachment) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Attachment) SetProviderReference(r *xpv1.Reference)
- func (mg *Attachment) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Attachment) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type AttachmentList
- type AttachmentObservation
- type AttachmentParameters
- type AttachmentSpec
- type AttachmentStatus
- type ELB
- func (in *ELB) DeepCopy() *ELB
- func (in *ELB) DeepCopyInto(out *ELB)
- func (in *ELB) DeepCopyObject() runtime.Object
- func (mg *ELB) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *ELB) GetConnectionDetailsMapping() map[string]string
- func (mg *ELB) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *ELB) GetID() string
- func (tr *ELB) GetObservation() (map[string]any, error)
- func (tr *ELB) GetParameters() (map[string]any, error)
- func (mg *ELB) GetProviderConfigReference() *xpv1.Reference
- func (mg *ELB) GetProviderReference() *xpv1.Reference
- func (mg *ELB) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *ELB) GetTerraformResourceType() string
- func (tr *ELB) GetTerraformSchemaVersion() int
- func (mg *ELB) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *ELB) LateInitialize(attrs []byte) (bool, error)
- func (mg *ELB) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *ELB) SetConditions(c ...xpv1.Condition)
- func (mg *ELB) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *ELB) SetObservation(obs map[string]any) error
- func (tr *ELB) SetParameters(params map[string]any) error
- func (mg *ELB) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *ELB) SetProviderReference(r *xpv1.Reference)
- func (mg *ELB) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *ELB) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ELBList
- type ELBObservation
- type ELBParameters
- type ELBSpec
- type ELBStatus
- type HealthCheckObservation
- type HealthCheckParameters
- type ListenerObservation
- type ListenerParameters
Constants ¶
const ( CRDGroup = "elb.aws.upbound.io" CRDVersion = "v1beta1" )
Package type metadata.
Variables ¶
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.
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.
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 )
Functions ¶
This section is empty.
Types ¶
type AccessLogsObservation ¶
type AccessLogsObservation struct { }
func (*AccessLogsObservation) DeepCopy ¶
func (in *AccessLogsObservation) DeepCopy() *AccessLogsObservation
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:Required 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. Default: 60 minutes. // +kubebuilder:validation:Optional Interval *float64 `json:"interval,omitempty" tf:"interval,omitempty"` }
func (*AccessLogsParameters) DeepCopy ¶
func (in *AccessLogsParameters) DeepCopy() *AccessLogsParameters
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 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="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,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) 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) GetProviderReference ¶
func (mg *Attachment) GetProviderReference() *xpv1.Reference
GetProviderReference of this Attachment. Deprecated: Use GetProviderConfigReference.
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) 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 ¶
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) 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) SetProviderReference ¶
func (mg *Attachment) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this Attachment. Deprecated: Use SetProviderConfigReference.
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 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 {
ID *string `json:"id,omitempty" tf:"id,omitempty"`
}
func (*AttachmentObservation) DeepCopy ¶
func (in *AttachmentObservation) DeepCopy() *AttachmentObservation
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 ¶
func (in *AttachmentParameters) DeepCopy() *AttachmentParameters
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"` }
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 ELB ¶
type ELB struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` 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="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,aws}
func (*ELB) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ELB.
func (*ELB) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ELB) DeepCopyObject ¶
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 ¶
GetConnectionDetailsMapping for this ELB
func (*ELB) GetDeletionPolicy ¶
func (mg *ELB) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this ELB.
func (*ELB) GetObservation ¶
GetObservation of this ELB
func (*ELB) GetParameters ¶
GetParameters of this ELB
func (*ELB) GetProviderConfigReference ¶
GetProviderConfigReference of this ELB.
func (*ELB) GetProviderReference ¶
GetProviderReference of this ELB. Deprecated: Use GetProviderConfigReference.
func (*ELB) GetPublishConnectionDetailsTo ¶
func (mg *ELB) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this ELB.
func (*ELB) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this ELB
func (*ELB) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*ELB) GetWriteConnectionSecretToReference ¶
func (mg *ELB) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this ELB.
func (*ELB) LateInitialize ¶
LateInitialize this ELB using its observed tfState. returns True if there are any spec changes for the resource.
func (*ELB) ResolveReferences ¶
ResolveReferences of this ELB.
func (*ELB) SetConditions ¶
SetConditions of this ELB.
func (*ELB) SetDeletionPolicy ¶
func (mg *ELB) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this ELB.
func (*ELB) SetObservation ¶
SetObservation for this ELB
func (*ELB) SetParameters ¶
SetParameters for this ELB
func (*ELB) SetProviderConfigReference ¶
SetProviderConfigReference of this ELB.
func (*ELB) SetProviderReference ¶
SetProviderReference of this ELB. Deprecated: Use SetProviderConfigReference.
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 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 ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ELBList.
func (*ELBList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ELBList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ELBObservation ¶
type ELBObservation struct { // The ARN of the ELB Arn *string `json:"arn,omitempty" tf:"arn,omitempty"` // The DNS name of the ELB DNSName *string `json:"dnsName,omitempty" tf:"dns_name,omitempty"` // The name of the ELB ID *string `json:"id,omitempty" tf:"id,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 map of tags assigned to the resource, including those inherited from the provider default_tags configuration block. 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 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 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:Required Listener []ListenerParameters `json:"listener" 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 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. // +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/ec2/v1beta1.Subnet // +kubebuilder:validation:Optional 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 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"` }
ELBSpec defines the desired state of ELB
func (*ELBSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ELBSpec.
func (*ELBSpec) DeepCopyInto ¶
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 ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ELBStatus.
func (*ELBStatus) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HealthCheckObservation ¶
type HealthCheckObservation struct { }
func (*HealthCheckObservation) DeepCopy ¶
func (in *HealthCheckObservation) DeepCopy() *HealthCheckObservation
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:Required HealthyThreshold *float64 `json:"healthyThreshold" tf:"healthy_threshold,omitempty"` // The publishing interval in minutes. Default: 60 minutes. // +kubebuilder:validation:Required Interval *float64 `json:"interval" tf:"interval,omitempty"` // The target of the check. Valid pattern is "${PROTOCOL}:${PORT}${PATH}", where PROTOCOL // values are: // +kubebuilder:validation:Required Target *string `json:"target" tf:"target,omitempty"` // The length of time before the check times out. // +kubebuilder:validation:Required Timeout *float64 `json:"timeout" tf:"timeout,omitempty"` // The number of checks before the instance is declared unhealthy. // +kubebuilder:validation:Required UnhealthyThreshold *float64 `json:"unhealthyThreshold" tf:"unhealthy_threshold,omitempty"` }
func (*HealthCheckParameters) DeepCopy ¶
func (in *HealthCheckParameters) DeepCopy() *HealthCheckParameters
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 ListenerObservation ¶
type ListenerObservation struct { }
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:Required 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:Required InstanceProtocol *string `json:"instanceProtocol" tf:"instance_protocol,omitempty"` // The port to listen on for the load balancer // +kubebuilder:validation:Required LBPort *float64 `json:"lbPort" tf:"lb_port,omitempty"` // The protocol to listen on. Valid values are HTTP, // HTTPS, TCP, or SSL // +kubebuilder:validation:Required 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.