-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathcache_parameter_group.go
95 lines (86 loc) · 4 KB
/
cache_parameter_group.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"). You may
// not use this file except in compliance with the License. A copy of the
// License is located at
//
// http://aws.amazon.com/apache2.0/
//
// or in the "license" file accompanying this file. This file 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.
// Code generated by ack-generate. DO NOT EDIT.
package v1alpha1
import (
ackv1alpha1 "github.com/aws-controllers-k8s/runtime/apis/core/v1alpha1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
// CacheParameterGroupSpec defines the desired state of CacheParameterGroup.
//
// Represents the output of a CreateCacheParameterGroup operation.
type CacheParameterGroupSpec struct {
// The name of the cache parameter group family that the cache parameter group
// can be used with.
//
// Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 |
// redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x | redis7
// +kubebuilder:validation:Required
CacheParameterGroupFamily *string `json:"cacheParameterGroupFamily"`
// A user-specified name for the cache parameter group.
// +kubebuilder:validation:Required
CacheParameterGroupName *string `json:"cacheParameterGroupName"`
// A user-specified description for the cache parameter group.
// +kubebuilder:validation:Required
Description *string `json:"description"`
// An array of parameter names and values for the parameter update. You must
// supply at least one parameter name and value; subsequent arguments are optional.
// A maximum of 20 parameters may be modified per request.
ParameterNameValues []*ParameterNameValue `json:"parameterNameValues,omitempty"`
// A list of tags to be added to this resource. A tag is a key-value pair. A
// tag key must be accompanied by a tag value, although null is accepted.
Tags []*Tag `json:"tags,omitempty"`
}
// CacheParameterGroupStatus defines the observed state of CacheParameterGroup
type CacheParameterGroupStatus struct {
// All CRs managed by ACK have a common `Status.ACKResourceMetadata` member
// that is used to contain resource sync state, account ownership,
// constructed ARN for the resource
// +kubebuilder:validation:Optional
ACKResourceMetadata *ackv1alpha1.ResourceMetadata `json:"ackResourceMetadata"`
// All CRs managed by ACK have a common `Status.Conditions` member that
// contains a collection of `ackv1alpha1.Condition` objects that describe
// the various terminal states of the CR and its backend AWS service API
// resource
// +kubebuilder:validation:Optional
Conditions []*ackv1alpha1.Condition `json:"conditions"`
// A list of events. Each element in the list contains detailed information
// about one event.
// +kubebuilder:validation:Optional
Events []*Event `json:"events,omitempty"`
// Indicates whether the parameter group is associated with a Global datastore
// +kubebuilder:validation:Optional
IsGlobal *bool `json:"isGlobal,omitempty"`
// A list of Parameter instances.
// +kubebuilder:validation:Optional
Parameters []*Parameter `json:"parameters,omitempty"`
}
// CacheParameterGroup is the Schema for the CacheParameterGroups API
// +kubebuilder:object:root=true
// +kubebuilder:subresource:status
type CacheParameterGroup struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec CacheParameterGroupSpec `json:"spec,omitempty"`
Status CacheParameterGroupStatus `json:"status,omitempty"`
}
// CacheParameterGroupList contains a list of CacheParameterGroup
// +kubebuilder:object:root=true
type CacheParameterGroupList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []CacheParameterGroup `json:"items"`
}
func init() {
SchemeBuilder.Register(&CacheParameterGroup{}, &CacheParameterGroupList{})
}