54 lines
1.5 KiB
Go
54 lines
1.5 KiB
Go
package aws
|
|
|
|
import (
|
|
"github.com/cloudskiff/driftctl/pkg/remote/aws/repository"
|
|
remoteerror "github.com/cloudskiff/driftctl/pkg/remote/error"
|
|
"github.com/cloudskiff/driftctl/pkg/resource"
|
|
"github.com/cloudskiff/driftctl/pkg/resource/aws"
|
|
)
|
|
|
|
type AppAutoscalingPolicyEnumerator struct {
|
|
repository repository.AppAutoScalingRepository
|
|
factory resource.ResourceFactory
|
|
}
|
|
|
|
func NewAppAutoscalingPolicyEnumerator(repository repository.AppAutoScalingRepository, factory resource.ResourceFactory) *AppAutoscalingPolicyEnumerator {
|
|
return &AppAutoscalingPolicyEnumerator{
|
|
repository,
|
|
factory,
|
|
}
|
|
}
|
|
|
|
func (e *AppAutoscalingPolicyEnumerator) SupportedType() resource.ResourceType {
|
|
return aws.AwsAppAutoscalingPolicyResourceType
|
|
}
|
|
|
|
func (e *AppAutoscalingPolicyEnumerator) Enumerate() ([]*resource.Resource, error) {
|
|
results := make([]*resource.Resource, 0)
|
|
|
|
for _, ns := range e.repository.ServiceNamespaceValues() {
|
|
policies, err := e.repository.DescribeScalingPolicies(ns)
|
|
if err != nil {
|
|
return nil, remoteerror.NewResourceListingError(err, string(e.SupportedType()))
|
|
}
|
|
|
|
for _, policy := range policies {
|
|
results = append(
|
|
results,
|
|
e.factory.CreateAbstractResource(
|
|
string(e.SupportedType()),
|
|
*policy.PolicyName,
|
|
map[string]interface{}{
|
|
"name": *policy.PolicyName,
|
|
"resource_id": *policy.ResourceId,
|
|
"scalable_dimension": *policy.ScalableDimension,
|
|
"service_namespace": *policy.ServiceNamespace,
|
|
},
|
|
),
|
|
)
|
|
}
|
|
}
|
|
|
|
return results, nil
|
|
}
|