|
|
@@ -101,6 +101,28 @@ func (in *AWSProvider) DeepCopyInto(out *AWSProvider) {
|
|
|
*out = make([]string, len(*in))
|
|
|
copy(*out, *in)
|
|
|
}
|
|
|
+ if in.SessionTags != nil {
|
|
|
+ in, out := &in.SessionTags, &out.SessionTags
|
|
|
+ *out = make([]*Tag, len(*in))
|
|
|
+ for i := range *in {
|
|
|
+ if (*in)[i] != nil {
|
|
|
+ in, out := &(*in)[i], &(*out)[i]
|
|
|
+ *out = new(Tag)
|
|
|
+ **out = **in
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if in.TransitiveTagKeys != nil {
|
|
|
+ in, out := &in.TransitiveTagKeys, &out.TransitiveTagKeys
|
|
|
+ *out = make([]*string, len(*in))
|
|
|
+ for i := range *in {
|
|
|
+ if (*in)[i] != nil {
|
|
|
+ in, out := &(*in)[i], &(*out)[i]
|
|
|
+ *out = new(string)
|
|
|
+ **out = **in
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSProvider.
|
|
|
@@ -1923,6 +1945,21 @@ func (in *SourceRef) DeepCopy() *SourceRef {
|
|
|
}
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *Tag) DeepCopyInto(out *Tag) {
|
|
|
+ *out = *in
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Tag.
|
|
|
+func (in *Tag) DeepCopy() *Tag {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(Tag)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
func (in *TemplateFrom) DeepCopyInto(out *TemplateFrom) {
|
|
|
*out = *in
|
|
|
if in.ConfigMap != nil {
|