|
@@ -260,6 +260,107 @@ func (in *ConditionalArgs) DeepCopy() *ConditionalArgs {
|
|
|
return out
|
|
return out
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
|
+func (in *ExternalKnowledgeBase) DeepCopyInto(out *ExternalKnowledgeBase) {
|
|
|
|
|
+ *out = *in
|
|
|
|
|
+ out.TypeMeta = in.TypeMeta
|
|
|
|
|
+ in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
|
|
|
+ in.Spec.DeepCopyInto(&out.Spec)
|
|
|
|
|
+ in.Status.DeepCopyInto(&out.Status)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalKnowledgeBase.
|
|
|
|
|
+func (in *ExternalKnowledgeBase) DeepCopy() *ExternalKnowledgeBase {
|
|
|
|
|
+ if in == nil {
|
|
|
|
|
+ return nil
|
|
|
|
|
+ }
|
|
|
|
|
+ out := new(ExternalKnowledgeBase)
|
|
|
|
|
+ in.DeepCopyInto(out)
|
|
|
|
|
+ return out
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
|
|
|
+func (in *ExternalKnowledgeBase) DeepCopyObject() runtime.Object {
|
|
|
|
|
+ if c := in.DeepCopy(); c != nil {
|
|
|
|
|
+ return c
|
|
|
|
|
+ }
|
|
|
|
|
+ return nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
|
+func (in *ExternalKnowledgeBaseList) DeepCopyInto(out *ExternalKnowledgeBaseList) {
|
|
|
|
|
+ *out = *in
|
|
|
|
|
+ out.TypeMeta = in.TypeMeta
|
|
|
|
|
+ in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
|
|
|
+ if in.Items != nil {
|
|
|
|
|
+ in, out := &in.Items, &out.Items
|
|
|
|
|
+ *out = make([]ExternalKnowledgeBase, len(*in))
|
|
|
|
|
+ for i := range *in {
|
|
|
|
|
+ (*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalKnowledgeBaseList.
|
|
|
|
|
+func (in *ExternalKnowledgeBaseList) DeepCopy() *ExternalKnowledgeBaseList {
|
|
|
|
|
+ if in == nil {
|
|
|
|
|
+ return nil
|
|
|
|
|
+ }
|
|
|
|
|
+ out := new(ExternalKnowledgeBaseList)
|
|
|
|
|
+ in.DeepCopyInto(out)
|
|
|
|
|
+ return out
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
|
|
|
+func (in *ExternalKnowledgeBaseList) DeepCopyObject() runtime.Object {
|
|
|
|
|
+ if c := in.DeepCopy(); c != nil {
|
|
|
|
|
+ return c
|
|
|
|
|
+ }
|
|
|
|
|
+ return nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
|
+func (in *ExternalKnowledgeBaseSpec) DeepCopyInto(out *ExternalKnowledgeBaseSpec) {
|
|
|
|
|
+ *out = *in
|
|
|
|
|
+ if in.Foo != nil {
|
|
|
|
|
+ in, out := &in.Foo, &out.Foo
|
|
|
|
|
+ *out = new(string)
|
|
|
|
|
+ **out = **in
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalKnowledgeBaseSpec.
|
|
|
|
|
+func (in *ExternalKnowledgeBaseSpec) DeepCopy() *ExternalKnowledgeBaseSpec {
|
|
|
|
|
+ if in == nil {
|
|
|
|
|
+ return nil
|
|
|
|
|
+ }
|
|
|
|
|
+ out := new(ExternalKnowledgeBaseSpec)
|
|
|
|
|
+ in.DeepCopyInto(out)
|
|
|
|
|
+ return out
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
|
+func (in *ExternalKnowledgeBaseStatus) DeepCopyInto(out *ExternalKnowledgeBaseStatus) {
|
|
|
|
|
+ *out = *in
|
|
|
|
|
+ if in.Conditions != nil {
|
|
|
|
|
+ in, out := &in.Conditions, &out.Conditions
|
|
|
|
|
+ *out = make([]metav1.Condition, len(*in))
|
|
|
|
|
+ for i := range *in {
|
|
|
|
|
+ (*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalKnowledgeBaseStatus.
|
|
|
|
|
+func (in *ExternalKnowledgeBaseStatus) DeepCopy() *ExternalKnowledgeBaseStatus {
|
|
|
|
|
+ if in == nil {
|
|
|
|
|
+ return nil
|
|
|
|
|
+ }
|
|
|
|
|
+ out := new(ExternalKnowledgeBaseStatus)
|
|
|
|
|
+ in.DeepCopyInto(out)
|
|
|
|
|
+ return out
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
func (in *ExternalModel) DeepCopyInto(out *ExternalModel) {
|
|
func (in *ExternalModel) DeepCopyInto(out *ExternalModel) {
|
|
|
*out = *in
|
|
*out = *in
|