Documentation ¶
Index ¶
- Constants
- func IsInvalidConfig(err error) bool
- func IsWrongType(err error) bool
- type Clients
- type Config
- type EBSVolumeState
- type EC2Client
- 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 = "ebsvolumev8"
)
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 ebsvolume resource.
type EBSVolumeState ¶
type EBSVolumeState struct {
VolumeIDs []string
}
type EC2Client ¶
type EC2Client interface { DeleteVolume(*ec2.DeleteVolumeInput) (*ec2.DeleteVolumeOutput, error) DescribeVolumes(*ec2.DescribeVolumesInput) (*ec2.DescribeVolumesOutput, error) }
EC2Client describes the methods required to be implemented by an EC2 AWS client.
type Resource ¶
type Resource struct {
// contains filtered or unexported fields
}
Resource implements the ebsvolume 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.