Skip to content
This repository has been archived by the owner on Nov 7, 2019. It is now read-only.

Commit

Permalink
Merge pull request #158 from christopherhein/chore/ec-keys
Browse files Browse the repository at this point in the history
updated offical codegen
  • Loading branch information
Christopher Hein authored Jan 22, 2019
2 parents 06a62dd + af70fdf commit a3c48eb
Show file tree
Hide file tree
Showing 5 changed files with 149 additions and 149 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ test:
.PHONY: tag
tag:
git tag -a ${VERSION} -s
git push origin --tags
git push awslabs --tags

.PHONY: install-aws-codegen
install-aws-codegen:
Expand Down
14 changes: 7 additions & 7 deletions code-generation/pkg/codegen/templates.go

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

38 changes: 19 additions & 19 deletions pkg/apis/service-operator.aws/v1alpha1/elasticache.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,29 +24,29 @@ type ElastiCacheSpec struct {
CloudFormationTemplateName string `json:"cloudFormationTemplateName"`
CloudFormationTemplateNamespace string `json:"cloudFormationTemplateNamespace"`
RollbackCount int `json:"rollbackCount"`
AutoMinorVersionUpgrade bool `json:"AutoMinorVersionUpgrade"`
AZMode string `json:"AZMode"`
CacheNodeType string `json:"CacheNodeType"`
CacheParameterGroupName string `json:"CacheParameterGroupName"`
CacheSubnetGroupName string `json:"CacheSubnetGroupName"`
Engine string `json:"Engine"`
EngineVersion string `json:"EngineVersion"`
NotificationTopicArn string `json:"NotificationTopicArn"`
NumCacheNodes int `json:"NumCacheNodes"`
Port int `json:"Port"`
PreferredMaintenanceWindow string `json:"PreferredMaintenanceWindow"`
PreferredAvailabilityZone string `json:"PreferredAvailabilityZone"`
PreferredAvailabilityZones string `json:"PreferredAvailabilityZones"`
SnapshotWindow string `json:"SnapshotWindow"`
VpcSecurityGroupIds string `json:"VpcSecurityGroupIds"`
AutoMinorVersionUpgrade bool `json:"autoMinorVersionUpgrade"`
AZMode string `json:"azMode"`
CacheNodeType string `json:"cacheNodeType"`
CacheParameterGroupName string `json:"cacheParameterGroupName"`
CacheSubnetGroupName string `json:"cacheSubnetGroupName"`
Engine string `json:"engine"`
EngineVersion string `json:"engineVersion"`
NotificationTopicArn string `json:"notificationTopicArn"`
NumCacheNodes int `json:"numCacheNodes"`
Port int `json:"port"`
PreferredMaintenanceWindow string `json:"preferredMaintenanceWindow"`
PreferredAvailabilityZone string `json:"preferredAvailabilityZone"`
PreferredAvailabilityZones string `json:"preferredAvailabilityZones"`
SnapshotWindow string `json:"snapshotWindow"`
VpcSecurityGroupIds string `json:"vpcSecurityGroupIds"`
}

// ElastiCacheOutput defines the output resource for ElastiCache
type ElastiCacheOutput struct {
RedisEndpointAddress string `json:"RedisEndpointAddress"`
RedisEndpointPort string `json:"RedisEndpointPort"`
ConfigurationEndpointAddress string `json:"ConfigurationEndpoint"`
ConfigurationEndpointPort string `json:"ConfigurationEndpointPort"`
RedisEndpointAddress string `json:"redisEndpointAddress"`
RedisEndpointPort string `json:"redisEndpointPort"`
ConfigurationEndpointAddress string `json:"configurationEndpoint"`
ConfigurationEndpointPort string `json:"configurationEndpointPort"`
}

// ElastiCacheStatus holds the status of the Cloudformation template
Expand Down
Loading

0 comments on commit a3c48eb

Please sign in to comment.