Documentation ¶
Index ¶
- Constants
- func IsInvalidConfig(err error) bool
- func IsWrongType(err error) bool
- type Clients
- type Config
- type ELBClient
- type LoadBalancerState
- type Resource
- func (r *Resource) ApplyCreateChange(ctx context.Context, obj, createChange interface{}) error
- func (r *Resource) ApplyDeleteChange(ctx context.Context, obj, deleteChange interface{}) error
- func (r *Resource) ApplyUpdateChange(ctx context.Context, obj, updateChange interface{}) error
- func (r *Resource) GetCurrentState(ctx context.Context, obj interface{}) (interface{}, error)
- func (r *Resource) GetDesiredState(ctx context.Context, obj interface{}) (interface{}, error)
- func (r *Resource) Name() string
- func (r *Resource) NewDeletePatch(ctx context.Context, obj, currentState, desiredState interface{}) (*framework.Patch, error)
- func (r *Resource) NewUpdatePatch(ctx context.Context, obj, currentState, desiredState interface{}) (*framework.Patch, error)
Constants ¶
View Source
const (
// Name is the identifier of the resource.
Name = "loadbalancerv7"
)
Variables ¶
This section is empty.
Functions ¶
func IsInvalidConfig ¶
IsInvalidConfig asserts invalidConfigError.
Types ¶
type Config ¶
type Config struct { // Dependencies. Clients Clients Logger micrologger.Logger }
Config represents the configuration used to create a new loadbalancer resource.
type ELBClient ¶
type ELBClient interface { DeleteLoadBalancer(*elb.DeleteLoadBalancerInput) (*elb.DeleteLoadBalancerOutput, error) DescribeLoadBalancers(*elb.DescribeLoadBalancersInput) (*elb.DescribeLoadBalancersOutput, error) DescribeTags(*elb.DescribeTagsInput) (*elb.DescribeTagsOutput, error) }
ELBClient describes the methods required to be implemented by an ELB AWS client. The ELB API provides support for classic ELBs.
type LoadBalancerState ¶
type LoadBalancerState struct {
LoadBalancerNames []string
}
type Resource ¶
type Resource struct {
// contains filtered or unexported fields
}
Resource implements the loadbalancer resource.
func (*Resource) ApplyCreateChange ¶
func (*Resource) ApplyDeleteChange ¶
func (*Resource) ApplyUpdateChange ¶
func (*Resource) GetCurrentState ¶
func (*Resource) GetDesiredState ¶
GetDesiredState returns nil as this resource only implements deletion.
func (*Resource) NewDeletePatch ¶
Click to show internal directories.
Click to hide internal directories.