Skip to content

Commit

Permalink
elasticache.cacheparametergroup: Add resource
Browse files Browse the repository at this point in the history
Signed-off-by: Carl Henrik Lunde <chlunde@ifi.uio.no>
  • Loading branch information
chlunde committed Feb 7, 2022
1 parent cb08893 commit 8d62069
Show file tree
Hide file tree
Showing 17 changed files with 3,876 additions and 0 deletions.
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

0 comments on commit 8d62069

Please sign in to comment.