-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(iottwinmaker): add workspace, component type, entity, scene, syn…
…cjob
- Loading branch information
1 parent
b830a09
commit 4a2ec59
Showing
6 changed files
with
590 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
package resources | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"strings" | ||
|
||
"github.com/aws/aws-sdk-go/aws" | ||
"github.com/aws/aws-sdk-go/service/iottwinmaker" | ||
|
||
"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 IoTTwinMakerComponentTypeResource = "IoTTwinMakerComponentType" | ||
|
||
func init() { | ||
registry.Register(®istry.Registration{ | ||
Name: IoTTwinMakerComponentTypeResource, | ||
Scope: nuke.Account, | ||
Lister: &IoTTwinMakerComponentTypeLister{}, | ||
}) | ||
} | ||
|
||
type IoTTwinMakerComponentTypeLister struct{} | ||
|
||
func (l *IoTTwinMakerComponentTypeLister) List(_ context.Context, o interface{}) ([]resource.Resource, error) { | ||
opts := o.(*nuke.ListerOpts) | ||
|
||
svc := iottwinmaker.New(opts.Session) | ||
resources := make([]resource.Resource, 0) | ||
|
||
// Require to have workspaces identifiers to query components | ||
workspaceListResponse, err := ListWorkspacesComponentType(svc) | ||
|
||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
for _, workspaceResponse := range workspaceListResponse { | ||
params := &iottwinmaker.ListComponentTypesInput{ | ||
WorkspaceId: workspaceResponse.WorkspaceId, | ||
MaxResults: aws.Int64(25), | ||
} | ||
|
||
for { | ||
resp, err := svc.ListComponentTypes(params) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
for _, item := range resp.ComponentTypeSummaries { | ||
// We must filter out amazon-owned component types when querying tags, | ||
// because their ARN format causes ListTagsForResource to fail with validation error | ||
tags := make(map[string]*string) | ||
if !strings.Contains(*item.Arn, "AmazonOwnedTypesWorkspace") { | ||
tagResp, err := svc.ListTagsForResource( | ||
&iottwinmaker.ListTagsForResourceInput{ | ||
ResourceARN: item.Arn, | ||
}) | ||
if err != nil { | ||
return nil, err | ||
} | ||
tags = tagResp.Tags | ||
} | ||
|
||
resources = append(resources, &IoTTwinMakerComponentType{ | ||
svc: svc, | ||
ID: item.ComponentTypeId, | ||
arn: item.Arn, | ||
Tags: tags, | ||
WorkspaceID: workspaceResponse.WorkspaceId, | ||
}) | ||
} | ||
|
||
if resp.NextToken == nil { | ||
break | ||
} | ||
|
||
params.NextToken = resp.NextToken | ||
} | ||
} | ||
|
||
return resources, nil | ||
} | ||
|
||
// Utility function to list workspaces | ||
func ListWorkspacesComponentType(svc *iottwinmaker.IoTTwinMaker) ([]*iottwinmaker.WorkspaceSummary, error) { | ||
resources := make([]*iottwinmaker.WorkspaceSummary, 0) | ||
params := &iottwinmaker.ListWorkspacesInput{ | ||
MaxResults: aws.Int64(25), | ||
} | ||
for { | ||
resp, err := svc.ListWorkspaces(params) | ||
if err != nil { | ||
return nil, err | ||
} | ||
resources = append(resources, resp.WorkspaceSummaries...) | ||
if resp.NextToken == nil { | ||
break | ||
} | ||
params.NextToken = resp.NextToken | ||
} | ||
return resources, nil | ||
} | ||
|
||
type IoTTwinMakerComponentType struct { | ||
svc *iottwinmaker.IoTTwinMaker | ||
ID *string | ||
Tags map[string]*string | ||
WorkspaceID *string | ||
arn *string | ||
} | ||
|
||
func (r *IoTTwinMakerComponentType) Filter() error { | ||
if strings.Contains(*r.arn, "AmazonOwnedTypesWorkspace") { | ||
return fmt.Errorf("cannot delete pre-defined component type") | ||
} | ||
return nil | ||
} | ||
|
||
func (r *IoTTwinMakerComponentType) Properties() types.Properties { | ||
return types.NewPropertiesFromStruct(r) | ||
} | ||
|
||
func (r *IoTTwinMakerComponentType) Remove(_ context.Context) error { | ||
_, err := r.svc.DeleteComponentType(&iottwinmaker.DeleteComponentTypeInput{ | ||
ComponentTypeId: r.ID, | ||
WorkspaceId: r.WorkspaceID, | ||
}) | ||
|
||
return err | ||
} | ||
|
||
func (r *IoTTwinMakerComponentType) String() string { | ||
return *r.ID | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
package resources | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/aws/aws-sdk-go/aws" | ||
"github.com/aws/aws-sdk-go/service/iottwinmaker" | ||
|
||
"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 IoTTwinMakerEntityResource = "IoTTwinMakerEntity" | ||
|
||
func init() { | ||
registry.Register(®istry.Registration{ | ||
Name: IoTTwinMakerEntityResource, | ||
Scope: nuke.Account, | ||
Lister: &IoTTwinMakerEntityLister{}, | ||
}) | ||
} | ||
|
||
type IoTTwinMakerEntityLister struct{} | ||
|
||
func (l *IoTTwinMakerEntityLister) List(_ context.Context, o interface{}) ([]resource.Resource, error) { | ||
opts := o.(*nuke.ListerOpts) | ||
|
||
svc := iottwinmaker.New(opts.Session) | ||
resources := make([]resource.Resource, 0) | ||
|
||
// Require to have workspaces identifiers to query entities | ||
workspaceListResponse, err := ListWorkspacesEntities(svc) | ||
|
||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
for _, workspaceResponse := range workspaceListResponse { | ||
params := &iottwinmaker.ListEntitiesInput{ | ||
WorkspaceId: workspaceResponse.WorkspaceId, | ||
MaxResults: aws.Int64(25), | ||
} | ||
|
||
for { | ||
resp, err := svc.ListEntities(params) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
for _, item := range resp.EntitySummaries { | ||
// We must filter out amazon-owned component types when querying tags, | ||
// because their ARN format causes ListTagsForResource to vail with validation error | ||
resources = append(resources, &IoTTwinMakerEntity{ | ||
svc: svc, | ||
ID: item.EntityId, | ||
Name: item.EntityName, | ||
Status: item.Status.State, | ||
WorkspaceID: workspaceResponse.WorkspaceId, | ||
}) | ||
} | ||
|
||
if resp.NextToken == nil { | ||
break | ||
} | ||
|
||
params.NextToken = resp.NextToken | ||
} | ||
} | ||
|
||
return resources, nil | ||
} | ||
|
||
// Utility function to list workspaces | ||
func ListWorkspacesEntities(svc *iottwinmaker.IoTTwinMaker) ([]*iottwinmaker.WorkspaceSummary, error) { | ||
resources := make([]*iottwinmaker.WorkspaceSummary, 0) | ||
params := &iottwinmaker.ListWorkspacesInput{ | ||
MaxResults: aws.Int64(25), | ||
} | ||
for { | ||
resp, err := svc.ListWorkspaces(params) | ||
if err != nil { | ||
return nil, err | ||
} | ||
resources = append(resources, resp.WorkspaceSummaries...) | ||
if resp.NextToken == nil { | ||
break | ||
} | ||
params.NextToken = resp.NextToken | ||
} | ||
return resources, nil | ||
} | ||
|
||
type IoTTwinMakerEntity struct { | ||
svc *iottwinmaker.IoTTwinMaker | ||
ID *string | ||
Name *string | ||
Status *string | ||
WorkspaceID *string | ||
} | ||
|
||
func (r *IoTTwinMakerEntity) Properties() types.Properties { | ||
return types.NewPropertiesFromStruct(r) | ||
} | ||
|
||
func (r *IoTTwinMakerEntity) Remove(_ context.Context) error { | ||
_, err := r.svc.DeleteEntity(&iottwinmaker.DeleteEntityInput{ | ||
EntityId: r.ID, | ||
WorkspaceId: r.WorkspaceID, | ||
IsRecursive: aws.Bool(true), | ||
}) | ||
|
||
return err | ||
} | ||
|
||
func (r *IoTTwinMakerEntity) String() string { | ||
return *r.ID | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
package resources | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/aws/aws-sdk-go/aws" | ||
"github.com/aws/aws-sdk-go/service/iottwinmaker" | ||
|
||
"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 IoTTwinMakerSceneResource = "IoTTwinMakerScene" | ||
|
||
func init() { | ||
registry.Register(®istry.Registration{ | ||
Name: IoTTwinMakerSceneResource, | ||
Scope: nuke.Account, | ||
Lister: &IoTTwinMakerSceneLister{}, | ||
}) | ||
} | ||
|
||
type IoTTwinMakerSceneLister struct{} | ||
|
||
func (l *IoTTwinMakerSceneLister) List(_ context.Context, o interface{}) ([]resource.Resource, error) { | ||
opts := o.(*nuke.ListerOpts) | ||
|
||
svc := iottwinmaker.New(opts.Session) | ||
resources := make([]resource.Resource, 0) | ||
|
||
// Require to have workspaces identifiers to query scenes | ||
workspaceListResponse, err := ListWorkspacesScene(svc) | ||
|
||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
for _, workspaceResponse := range workspaceListResponse { | ||
params := &iottwinmaker.ListScenesInput{ | ||
WorkspaceId: workspaceResponse.WorkspaceId, | ||
MaxResults: aws.Int64(25), | ||
} | ||
|
||
for { | ||
resp, err := svc.ListScenes(params) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
for _, item := range resp.SceneSummaries { | ||
resources = append(resources, &IoTTwinMakerScene{ | ||
svc: svc, | ||
ID: item.SceneId, | ||
WorkspaceID: workspaceResponse.WorkspaceId, | ||
}) | ||
} | ||
|
||
if resp.NextToken == nil { | ||
break | ||
} | ||
|
||
params.NextToken = resp.NextToken | ||
} | ||
} | ||
|
||
return resources, nil | ||
} | ||
|
||
// Utility function to list workspaces | ||
func ListWorkspacesScene(svc *iottwinmaker.IoTTwinMaker) ([]*iottwinmaker.WorkspaceSummary, error) { | ||
resources := make([]*iottwinmaker.WorkspaceSummary, 0) | ||
params := &iottwinmaker.ListWorkspacesInput{ | ||
MaxResults: aws.Int64(25), | ||
} | ||
for { | ||
resp, err := svc.ListWorkspaces(params) | ||
if err != nil { | ||
return nil, err | ||
} | ||
resources = append(resources, resp.WorkspaceSummaries...) | ||
if resp.NextToken == nil { | ||
break | ||
} | ||
params.NextToken = resp.NextToken | ||
} | ||
return resources, nil | ||
} | ||
|
||
type IoTTwinMakerScene struct { | ||
svc *iottwinmaker.IoTTwinMaker | ||
ID *string | ||
WorkspaceID *string | ||
} | ||
|
||
func (r *IoTTwinMakerScene) Properties() types.Properties { | ||
return types.NewPropertiesFromStruct(r) | ||
} | ||
|
||
func (r *IoTTwinMakerScene) Remove(_ context.Context) error { | ||
_, err := r.svc.DeleteScene(&iottwinmaker.DeleteSceneInput{ | ||
SceneId: r.ID, | ||
WorkspaceId: r.WorkspaceID, | ||
}) | ||
|
||
return err | ||
} | ||
|
||
func (r *IoTTwinMakerScene) String() string { | ||
return *r.ID | ||
} |
Oops, something went wrong.