Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

elasticache.cacheparametergroup: Add resource #834

Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apis/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ import (
eksmanualv1alpha1 "github.com/crossplane/provider-aws/apis/eks/manualv1alpha1"
eksv1alpha1 "github.com/crossplane/provider-aws/apis/eks/v1alpha1"
eksv1beta1 "github.com/crossplane/provider-aws/apis/eks/v1beta1"
elasticachev1alpha1 "github.com/crossplane/provider-aws/apis/elasticache/v1alpha1"
elasticloadbalancingv1alpha1 "github.com/crossplane/provider-aws/apis/elasticloadbalancing/v1alpha1"
elbv2v1alpha1 "github.com/crossplane/provider-aws/apis/elbv2/v1alpha1"
gluev1alpha1 "github.com/crossplane/provider-aws/apis/glue/v1alpha1"
Expand Down Expand Up @@ -79,6 +80,7 @@ func init() {
docdbv1alpha1.AddToScheme,
elasticloadbalancingv1alpha1.SchemeBuilder.AddToScheme,
iamv1beta1.SchemeBuilder.AddToScheme,
elasticachev1alpha1.SchemeBuilder.AddToScheme,
elbv2v1alpha1.SchemeBuilder.AddToScheme,
route53v1alpha1.SchemeBuilder.AddToScheme,
notificationv1alpha3.SchemeBuilder.AddToScheme,
Expand Down
15 changes: 15 additions & 0 deletions apis/elasticache/generator-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
ignore:
field_paths:
- DescribeCacheParameterGroupsInput.CacheParameterGroupName
- CreateCacheParameterGroupInput.CacheParameterGroupName
- ModifyCacheParameterGroupInput.CacheParameterGroupName
- DeleteCacheParameterGroupInput.CacheParameterGroupName
resource_names:
- CacheCluster
- CacheSecurityGroup
- CacheSubnetGroup
- User
- UserGroup
- ReplicationGroup
- GlobalReplicationGroup
- Snapshot
24 changes: 24 additions & 0 deletions apis/elasticache/v1alpha1/custom_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
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

// CustomCacheParameterGroupParameters includes the custom fields.
type CustomCacheParameterGroupParameters struct {
// A list of parameters to associate with this DB parameter group
// +optional
ParameterNameValues []ParameterNameValue `json:"parameters,omitempty"`
}
102 changes: 102 additions & 0 deletions apis/elasticache/v1alpha1/zz_cache_parameter_group.go

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

24 changes: 24 additions & 0 deletions apis/elasticache/v1alpha1/zz_doc.go

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

160 changes: 160 additions & 0 deletions apis/elasticache/v1alpha1/zz_enums.go

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

Loading