Skip to content

Commit

Permalink
Merge pull request #284 from MSchouwPablo/pipes
Browse files Browse the repository at this point in the history
feat(resource): adding resource for eventbridge pipes
  • Loading branch information
ekristen authored Sep 11, 2024
2 parents 404f5e1 + 60a2329 commit 0c80c2d
Showing 1 changed file with 76 additions and 0 deletions.
76 changes: 76 additions & 0 deletions resources/pipes-pipe.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
package resources

import (
"context"
"time"

"github.com/aws/aws-sdk-go/service/pipes"

"github.com/ekristen/libnuke/pkg/registry"
"github.com/ekristen/libnuke/pkg/resource"
"github.com/ekristen/libnuke/pkg/types"

"github.com/ekristen/aws-nuke/v3/pkg/nuke"
)

const PipesPipeResource = "PipesPipe"

func init() {
registry.Register(&registry.Registration{
Name: PipesPipeResource,
Scope: nuke.Account,
Lister: &PipesPipeLister{},
})
}

type PipesPipeLister struct{}

func (l *PipesPipeLister) List(_ context.Context, o interface{}) ([]resource.Resource, error) {
opts := o.(*nuke.ListerOpts)
svc := pipes.New(opts.Session)
var resources []resource.Resource

res, err := svc.ListPipes(&pipes.ListPipesInput{})
if err != nil {
return nil, err
}

for _, p := range res.Pipes {
resources = append(resources, &PipesPipes{
svc: svc,
Name: p.Name,
CurrentState: p.CurrentState,
Source: p.Source,
Target: p.Target,
CreationDate: p.CreationTime,
ModifiedDate: p.LastModifiedTime,
})
}

return resources, nil
}

type PipesPipes struct {
svc *pipes.Pipes
Name *string
CurrentState *string
Source *string
Target *string
CreationDate *time.Time
ModifiedDate *time.Time
}

func (r *PipesPipes) Remove(_ context.Context) error {
_, err := r.svc.DeletePipe(&pipes.DeletePipeInput{
Name: r.Name,
})
return err
}

func (r *PipesPipes) Properties() types.Properties {
return types.NewPropertiesFromStruct(r)
}

func (r *PipesPipes) String() string {
return *r.Name
}

0 comments on commit 0c80c2d

Please sign in to comment.