Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
18 changes: 9 additions & 9 deletions cmd/claws/imports_custom.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions custom/accessanalyzer/analyzers/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/accessanalyzer/analyzers/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type AnalyzerDAO struct {
func NewAnalyzerDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new accessanalyzer/analyzers dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &AnalyzerDAO{
BaseDAO: dao.NewBaseDAO("accessanalyzer", "analyzers"),
Expand Down
7 changes: 7 additions & 0 deletions custom/accessanalyzer/findings/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/accessanalyzer/findings/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type FindingDAO struct {
func NewFindingDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new accessanalyzer/findings dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &FindingDAO{
BaseDAO: dao.NewBaseDAO("accessanalyzer", "findings"),
Expand Down
7 changes: 7 additions & 0 deletions custom/acm/certificates/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/acm/certificates/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type CertificateDAO struct {
func NewCertificateDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new acm/certificates dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &CertificateDAO{
BaseDAO: dao.NewBaseDAO("acm", "certificates"),
Expand Down
7 changes: 7 additions & 0 deletions custom/apigateway/http-apis/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/apigateway/http-apis/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type HttpAPIDAO struct {
func NewHttpAPIDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new apigateway/http-apis dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &HttpAPIDAO{
BaseDAO: dao.NewBaseDAO("apigateway", "http-apis"),
Expand Down
7 changes: 7 additions & 0 deletions custom/apigateway/rest-apis/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/apigateway/rest-apis/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type RestAPIDAO struct {
func NewRestAPIDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new apigateway/rest-apis dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &RestAPIDAO{
BaseDAO: dao.NewBaseDAO("apigateway", "rest-apis"),
Expand Down
7 changes: 7 additions & 0 deletions custom/apigateway/stages-v2/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/apigateway/stages-v2/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type StageV2DAO struct {
func NewStageV2DAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new apigateway/stages-v2 dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &StageV2DAO{
BaseDAO: dao.NewBaseDAO("apigateway", "stages-v2"),
Expand Down
7 changes: 7 additions & 0 deletions custom/apigateway/stages/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/apigateway/stages/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type StageDAO struct {
func NewStageDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new apigateway/stages dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &StageDAO{
BaseDAO: dao.NewBaseDAO("apigateway", "stages"),
Expand Down
7 changes: 7 additions & 0 deletions custom/apprunner/operations/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/apprunner/operations/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type OperationDAO struct {
func NewOperationDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new apprunner/operations dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &OperationDAO{
BaseDAO: dao.NewBaseDAO("apprunner", "operations"),
Expand Down
7 changes: 7 additions & 0 deletions custom/apprunner/services/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/apprunner/services/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type ServiceDAO struct {
func NewServiceDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new apprunner/services dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &ServiceDAO{
BaseDAO: dao.NewBaseDAO("apprunner", "services"),
Expand Down
7 changes: 7 additions & 0 deletions custom/appsync/data-sources/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/appsync/data-sources/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type DataSourceDAO struct {
func NewDataSourceDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new appsync/data-sources dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &DataSourceDAO{
BaseDAO: dao.NewBaseDAO("appsync", "data-sources"),
Expand Down
7 changes: 7 additions & 0 deletions custom/appsync/graphql-apis/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/appsync/graphql-apis/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type GraphQLApiDAO struct {
func NewGraphQLApiDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new appsync/graphql-apis dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &GraphQLApiDAO{
BaseDAO: dao.NewBaseDAO("appsync", "graphql-apis"),
Expand Down
7 changes: 7 additions & 0 deletions custom/athena/query-executions/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/athena/query-executions/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type QueryExecutionDAO struct {
func NewQueryExecutionDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new athena/query-executions dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &QueryExecutionDAO{
BaseDAO: dao.NewBaseDAO("athena", "query-executions"),
Expand Down
7 changes: 7 additions & 0 deletions custom/athena/workgroups/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/athena/workgroups/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type WorkgroupDAO struct {
func NewWorkgroupDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new athena/workgroups dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &WorkgroupDAO{
BaseDAO: dao.NewBaseDAO("athena", "workgroups"),
Expand Down
7 changes: 7 additions & 0 deletions custom/autoscaling/activities/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/autoscaling/activities/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type ActivityDAO struct {
func NewActivityDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new autoscaling/activities dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &ActivityDAO{
BaseDAO: dao.NewBaseDAO("autoscaling", "activities"),
Expand Down
7 changes: 7 additions & 0 deletions custom/autoscaling/groups/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/autoscaling/groups/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type AutoScalingGroupDAO struct {
func NewAutoScalingGroupDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new autoscaling/groups dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &AutoScalingGroupDAO{
BaseDAO: dao.NewBaseDAO("autoscaling", "groups"),
Expand Down
7 changes: 7 additions & 0 deletions custom/backup/backup-jobs/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/backup/backup-jobs/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type BackupJobDAO struct {
func NewBackupJobDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new backup/backup-jobs dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &BackupJobDAO{
BaseDAO: dao.NewBaseDAO("backup", "backup-jobs"),
Expand Down
7 changes: 7 additions & 0 deletions custom/backup/copy-jobs/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/backup/copy-jobs/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type CopyJobDAO struct {
func NewCopyJobDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new backup/copy-jobs dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &CopyJobDAO{
BaseDAO: dao.NewBaseDAO("backup", "copy-jobs"),
Expand Down
7 changes: 7 additions & 0 deletions custom/backup/plans/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/backup/plans/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type BackupPlanDAO struct {
func NewBackupPlanDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new backup/plans dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &BackupPlanDAO{
BaseDAO: dao.NewBaseDAO("backup", "plans"),
Expand Down
7 changes: 7 additions & 0 deletions custom/backup/protected-resources/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/backup/protected-resources/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type ProtectedResourceDAO struct {
func NewProtectedResourceDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new backup/protected-resources dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &ProtectedResourceDAO{
BaseDAO: dao.NewBaseDAO("backup", "protected-resources"),
Expand Down
7 changes: 7 additions & 0 deletions custom/backup/recovery-points/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom/backup/recovery-points/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type RecoveryPointDAO struct {
func NewRecoveryPointDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new backup/recovery-points dao")
return nil, apperrors.Wrap(err, "new "+ServiceResourcePath+" dao")
}
return &RecoveryPointDAO{
BaseDAO: dao.NewBaseDAO("backup", "recovery-points"),
Expand Down
Loading
Loading