Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PROJECT_REPO := github.com/crossplane/$(PROJECT_NAME)
PLATFORMS ?= linux_amd64 linux_arm64

CODE_GENERATOR_COMMIT ?= cac5654b7bb64c8f754ad9af01799ef70d9541b6
GENERATED_SERVICES="apigatewayv2,cloudfront,dynamodb,efs,kafka,kms,lambda,rds,secretsmanager,servicediscovery,sfn"
GENERATED_SERVICES="apigatewayv2,cloudfront,dynamodb,efs,kafka,kms,lambda,rds,secretsmanager,servicediscovery,ses,sfn"

# -include will silently skip missing files, which allows us
# to load those files with a target in the Makefile. If only
Expand Down
2 changes: 2 additions & 0 deletions apis/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ import (
s3v1beta1 "github.com/crossplane/provider-aws/apis/s3/v1beta1"
secretsmanagerv1alpha1 "github.com/crossplane/provider-aws/apis/secretsmanager/v1alpha1"
servicediscoveryv1alpha1 "github.com/crossplane/provider-aws/apis/servicediscovery/v1alpha1"
sesv1alpha1 "github.com/crossplane/provider-aws/apis/ses/v1alpha1"
sfnv1alpha1 "github.com/crossplane/provider-aws/apis/sfn/v1alpha1"
sqsv1beta1 "github.com/crossplane/provider-aws/apis/sqs/v1beta1"
awsv1alpha3 "github.com/crossplane/provider-aws/apis/v1alpha3"
Expand Down Expand Up @@ -91,6 +92,7 @@ func init() {
cloudfrontv1alpha1.SchemeBuilder.AddToScheme,
route53resolveralpha1.SchemeBuilder.AddToScheme,
kafkav1alpha1.SchemeBuilder.AddToScheme,
sesv1alpha1.AddToScheme,
)
}

Expand Down
17 changes: 17 additions & 0 deletions apis/ses/v1alpha1/custom_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/*
Copyright 2021 The Crossplane Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package v1alpha1

// CustomTemplateParameters contains the additional fields for TemplateParameters.
type CustomTemplateParameters struct{}
15 changes: 15 additions & 0 deletions apis/ses/v1alpha1/generator-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
ignore:
resource_names:
- Configuration
- ConfigurationSet
- ConfigurationSetEventDestination
- CustomVerificationEmailTemplate
- ReceiptFilter
- ReceiptRule
- ReceiptRuleSet
resources:
Template:
exceptions:
errors:
404:
code: TemplateDoesNotExist
24 changes: 24 additions & 0 deletions apis/ses/v1alpha1/zz_doc.go

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

164 changes: 164 additions & 0 deletions apis/ses/v1alpha1/zz_enums.go

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

Loading