v1beta2

package
v1.8.0 Latest Latest
Warning

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

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

Documentation

Overview

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

Index

Constants

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

Package type metadata.

Variables

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
)

Functions

This section is empty.

Types

type AccessLogsInitParameters

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

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

func (*AccessLogsInitParameters) DeepCopyInto

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 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

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

GetInitParameters of this ELB

func (*ELB) GetManagementPolicies

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

GetManagementPolicies of this ELB.

func (*ELB) GetMergedParameters

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

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

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

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

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/v1beta2.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

func (in *ELBInitParameters) DeepCopy() *ELBInitParameters

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

func (*ELBInitParameters) DeepCopyInto

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/v1beta2.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

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

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

func (*HealthCheckInitParameters) DeepCopyInto

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 ListenerInitParameters

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

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

func (*ListenerInitParameters) DeepCopyInto

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.

Jump to

Keyboard shortcuts

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