Documentation ¶
Index ¶
- Constants
- func IsInvalidConfig(err error) bool
- func IsNotFound(err error) bool
- func IsTooManyResults(err error) bool
- func IsWrongTypeError(err error) bool
- type Clients
- type Config
- type EC2Client
- type EC2ClientMock
- 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{}) (*controller.Patch, error)
- func (r *Resource) NewUpdatePatch(ctx context.Context, obj, currentState, desiredState interface{}) (*controller.Patch, error)
Constants ¶
View Source
const (
// Name is the identifier of the resource.
Name = "endpoints"
)
Variables ¶
This section is empty.
Functions ¶
func IsInvalidConfig ¶
IsInvalidConfig asserts invalidConfigError.
func IsTooManyResults ¶
IsTooManyResults asserts tooManyResultsError.
func IsWrongTypeError ¶
IsWrongTypeError asserts wrongTypeError.
Types ¶
type Config ¶
type Config struct { // Dependencies. K8sClient kubernetes.Interface Logger micrologger.Logger }
Config represents the configuration used to create a new endpoints resource.
type EC2Client ¶
type EC2Client interface {
DescribeInstances(*ec2.DescribeInstancesInput) (*ec2.DescribeInstancesOutput, error)
}
EC2Client describes the methods required to be implemented by a EC2 AWS client.
type EC2ClientMock ¶
func (EC2ClientMock) DescribeInstances ¶
func (e EC2ClientMock) DescribeInstances(*ec2.DescribeInstancesInput) (*ec2.DescribeInstancesOutput, error)
type Resource ¶
type Resource struct {
// contains filtered or unexported fields
}
Resource implements the endpoints resource.
func (*Resource) ApplyCreateChange ¶
func (*Resource) ApplyDeleteChange ¶
func (*Resource) ApplyUpdateChange ¶
func (*Resource) GetCurrentState ¶
func (*Resource) GetDesiredState ¶
func (*Resource) NewDeletePatch ¶
func (*Resource) NewUpdatePatch ¶
Click to show internal directories.
Click to hide internal directories.