|
|
@@ -266,6 +266,96 @@ func (in *AzureACRWorkloadIdentityAuth) DeepCopy() *AzureACRWorkloadIdentityAuth
|
|
|
}
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *ClusterGenerator) DeepCopyInto(out *ClusterGenerator) {
|
|
|
+ *out = *in
|
|
|
+ out.TypeMeta = in.TypeMeta
|
|
|
+ in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
|
+ in.Spec.DeepCopyInto(&out.Spec)
|
|
|
+ out.Status = in.Status
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterGenerator.
|
|
|
+func (in *ClusterGenerator) DeepCopy() *ClusterGenerator {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(ClusterGenerator)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
|
+func (in *ClusterGenerator) 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 *ClusterGeneratorList) DeepCopyInto(out *ClusterGeneratorList) {
|
|
|
+ *out = *in
|
|
|
+ out.TypeMeta = in.TypeMeta
|
|
|
+ in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
|
+ if in.Items != nil {
|
|
|
+ in, out := &in.Items, &out.Items
|
|
|
+ *out = make([]ClusterGenerator, len(*in))
|
|
|
+ for i := range *in {
|
|
|
+ (*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterGeneratorList.
|
|
|
+func (in *ClusterGeneratorList) DeepCopy() *ClusterGeneratorList {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(ClusterGeneratorList)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
|
+func (in *ClusterGeneratorList) 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 *ClusterGeneratorSpec) DeepCopyInto(out *ClusterGeneratorSpec) {
|
|
|
+ *out = *in
|
|
|
+ in.Generator.DeepCopyInto(&out.Generator)
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterGeneratorSpec.
|
|
|
+func (in *ClusterGeneratorSpec) DeepCopy() *ClusterGeneratorSpec {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(ClusterGeneratorSpec)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *ClusterGeneratorStatus) DeepCopyInto(out *ClusterGeneratorStatus) {
|
|
|
+ *out = *in
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterGeneratorStatus.
|
|
|
+func (in *ClusterGeneratorStatus) DeepCopy() *ClusterGeneratorStatus {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(ClusterGeneratorStatus)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
func (in *ControllerClassResource) DeepCopyInto(out *ControllerClassResource) {
|
|
|
*out = *in
|
|
|
out.Spec = in.Spec
|
|
|
@@ -567,6 +657,71 @@ func (in *GCRAccessTokenSpec) DeepCopy() *GCRAccessTokenSpec {
|
|
|
}
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *GeneratorSpec) DeepCopyInto(out *GeneratorSpec) {
|
|
|
+ *out = *in
|
|
|
+ if in.ACRAccessTokenSpec != nil {
|
|
|
+ in, out := &in.ACRAccessTokenSpec, &out.ACRAccessTokenSpec
|
|
|
+ *out = new(ACRAccessTokenSpec)
|
|
|
+ (*in).DeepCopyInto(*out)
|
|
|
+ }
|
|
|
+ if in.ECRAuthorizationTokenSpec != nil {
|
|
|
+ in, out := &in.ECRAuthorizationTokenSpec, &out.ECRAuthorizationTokenSpec
|
|
|
+ *out = new(ECRAuthorizationTokenSpec)
|
|
|
+ (*in).DeepCopyInto(*out)
|
|
|
+ }
|
|
|
+ if in.FakeSpec != nil {
|
|
|
+ in, out := &in.FakeSpec, &out.FakeSpec
|
|
|
+ *out = new(FakeSpec)
|
|
|
+ (*in).DeepCopyInto(*out)
|
|
|
+ }
|
|
|
+ if in.GCRAccessTokenSpec != nil {
|
|
|
+ in, out := &in.GCRAccessTokenSpec, &out.GCRAccessTokenSpec
|
|
|
+ *out = new(GCRAccessTokenSpec)
|
|
|
+ (*in).DeepCopyInto(*out)
|
|
|
+ }
|
|
|
+ if in.GithubAccessTokenSpec != nil {
|
|
|
+ in, out := &in.GithubAccessTokenSpec, &out.GithubAccessTokenSpec
|
|
|
+ *out = new(GithubAccessTokenSpec)
|
|
|
+ (*in).DeepCopyInto(*out)
|
|
|
+ }
|
|
|
+ if in.PasswordSpec != nil {
|
|
|
+ in, out := &in.PasswordSpec, &out.PasswordSpec
|
|
|
+ *out = new(PasswordSpec)
|
|
|
+ (*in).DeepCopyInto(*out)
|
|
|
+ }
|
|
|
+ if in.STSSessionTokenSpec != nil {
|
|
|
+ in, out := &in.STSSessionTokenSpec, &out.STSSessionTokenSpec
|
|
|
+ *out = new(STSSessionTokenSpec)
|
|
|
+ (*in).DeepCopyInto(*out)
|
|
|
+ }
|
|
|
+ if in.UUIDSpec != nil {
|
|
|
+ in, out := &in.UUIDSpec, &out.UUIDSpec
|
|
|
+ *out = new(UUIDSpec)
|
|
|
+ **out = **in
|
|
|
+ }
|
|
|
+ if in.VaultDynamicSecretSpec != nil {
|
|
|
+ in, out := &in.VaultDynamicSecretSpec, &out.VaultDynamicSecretSpec
|
|
|
+ *out = new(VaultDynamicSecretSpec)
|
|
|
+ (*in).DeepCopyInto(*out)
|
|
|
+ }
|
|
|
+ if in.WebhookSpec != nil {
|
|
|
+ in, out := &in.WebhookSpec, &out.WebhookSpec
|
|
|
+ *out = new(WebhookSpec)
|
|
|
+ (*in).DeepCopyInto(*out)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorSpec.
|
|
|
+func (in *GeneratorSpec) DeepCopy() *GeneratorSpec {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(GeneratorSpec)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
func (in *GithubAccessToken) DeepCopyInto(out *GithubAccessToken) {
|
|
|
*out = *in
|
|
|
out.TypeMeta = in.TypeMeta
|