diff --git a/kong/consumer_group.go b/kong/consumer_group.go index 114f596e..2c7cdb60 100644 --- a/kong/consumer_group.go +++ b/kong/consumer_group.go @@ -42,6 +42,7 @@ type ConsumerGroupPlugin struct { Config Configuration `json:"config,omitempty" yaml:"config,omitempty"` ConsumerGroup *ConsumerGroup `json:"consumer_group,omitempty" yaml:"consumer_group,omitempty"` ConfigSource *string `json:"_config,omitempty" yaml:"_config,omitempty"` + Tags []*string `json:"tags,omitempty" yaml:"tags,omitempty"` } // FriendlyName returns the endpoint key name or ID. diff --git a/kong/zz_generated.deepcopy.go b/kong/zz_generated.deepcopy.go index b8cf3de5..9552d783 100644 --- a/kong/zz_generated.deepcopy.go +++ b/kong/zz_generated.deepcopy.go @@ -589,6 +589,17 @@ func (in *ConsumerGroupPlugin) DeepCopyInto(out *ConsumerGroupPlugin) { *out = new(string) **out = **in } + if in.Tags != nil { + in, out := &in.Tags, &out.Tags + *out = make([]*string, len(*in)) + for i := range *in { + if (*in)[i] != nil { + in, out := &(*in)[i], &(*out)[i] + *out = new(string) + **out = **in + } + } + } return }