...

Source file src/github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/apis/bigquery/v1alpha1/zz_generated.deepcopy.go

Documentation: github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/apis/bigquery/v1alpha1

     1  //go:build !ignore_autogenerated
     2  // +build !ignore_autogenerated
     3  
     4  // Copyright 2020 Google LLC
     5  //
     6  // Licensed under the Apache License, Version 2.0 (the "License");
     7  // you may not use this file except in compliance with the License.
     8  // You may obtain a copy of the License at
     9  //
    10  //     http://www.apache.org/licenses/LICENSE-2.0
    11  //
    12  // Unless required by applicable law or agreed to in writing, software
    13  // distributed under the License is distributed on an "AS IS" BASIS,
    14  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    15  // See the License for the specific language governing permissions and
    16  // limitations under the License.
    17  
    18  // *** DISCLAIMER ***
    19  // Config Connector's go-client for CRDs is currently in ALPHA, which means
    20  // that future versions of the go-client may include breaking changes.
    21  // Please try it out and give us feedback!
    22  
    23  // Code generated by main. DO NOT EDIT.
    24  
    25  package v1alpha1
    26  
    27  import (
    28  	k8sv1alpha1 "github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/apis/k8s/v1alpha1"
    29  	runtime "k8s.io/apimachinery/pkg/runtime"
    30  )
    31  
    32  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    33  func (in *BigQueryDatasetAccess) DeepCopyInto(out *BigQueryDatasetAccess) {
    34  	*out = *in
    35  	out.TypeMeta = in.TypeMeta
    36  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    37  	in.Spec.DeepCopyInto(&out.Spec)
    38  	in.Status.DeepCopyInto(&out.Status)
    39  	return
    40  }
    41  
    42  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BigQueryDatasetAccess.
    43  func (in *BigQueryDatasetAccess) DeepCopy() *BigQueryDatasetAccess {
    44  	if in == nil {
    45  		return nil
    46  	}
    47  	out := new(BigQueryDatasetAccess)
    48  	in.DeepCopyInto(out)
    49  	return out
    50  }
    51  
    52  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    53  func (in *BigQueryDatasetAccess) DeepCopyObject() runtime.Object {
    54  	if c := in.DeepCopy(); c != nil {
    55  		return c
    56  	}
    57  	return nil
    58  }
    59  
    60  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    61  func (in *BigQueryDatasetAccessList) DeepCopyInto(out *BigQueryDatasetAccessList) {
    62  	*out = *in
    63  	out.TypeMeta = in.TypeMeta
    64  	in.ListMeta.DeepCopyInto(&out.ListMeta)
    65  	if in.Items != nil {
    66  		in, out := &in.Items, &out.Items
    67  		*out = make([]BigQueryDatasetAccess, len(*in))
    68  		for i := range *in {
    69  			(*in)[i].DeepCopyInto(&(*out)[i])
    70  		}
    71  	}
    72  	return
    73  }
    74  
    75  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BigQueryDatasetAccessList.
    76  func (in *BigQueryDatasetAccessList) DeepCopy() *BigQueryDatasetAccessList {
    77  	if in == nil {
    78  		return nil
    79  	}
    80  	out := new(BigQueryDatasetAccessList)
    81  	in.DeepCopyInto(out)
    82  	return out
    83  }
    84  
    85  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    86  func (in *BigQueryDatasetAccessList) DeepCopyObject() runtime.Object {
    87  	if c := in.DeepCopy(); c != nil {
    88  		return c
    89  	}
    90  	return nil
    91  }
    92  
    93  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    94  func (in *BigQueryDatasetAccessSpec) DeepCopyInto(out *BigQueryDatasetAccessSpec) {
    95  	*out = *in
    96  	if in.Dataset != nil {
    97  		in, out := &in.Dataset, &out.Dataset
    98  		*out = new(DatasetaccessDataset)
    99  		**out = **in
   100  	}
   101  	if in.Domain != nil {
   102  		in, out := &in.Domain, &out.Domain
   103  		*out = new(string)
   104  		**out = **in
   105  	}
   106  	if in.GroupByEmail != nil {
   107  		in, out := &in.GroupByEmail, &out.GroupByEmail
   108  		*out = new(string)
   109  		**out = **in
   110  	}
   111  	if in.IamMember != nil {
   112  		in, out := &in.IamMember, &out.IamMember
   113  		*out = new(string)
   114  		**out = **in
   115  	}
   116  	out.ProjectRef = in.ProjectRef
   117  	if in.ResourceID != nil {
   118  		in, out := &in.ResourceID, &out.ResourceID
   119  		*out = new(string)
   120  		**out = **in
   121  	}
   122  	if in.Role != nil {
   123  		in, out := &in.Role, &out.Role
   124  		*out = new(string)
   125  		**out = **in
   126  	}
   127  	if in.SpecialGroup != nil {
   128  		in, out := &in.SpecialGroup, &out.SpecialGroup
   129  		*out = new(string)
   130  		**out = **in
   131  	}
   132  	if in.UserByEmail != nil {
   133  		in, out := &in.UserByEmail, &out.UserByEmail
   134  		*out = new(string)
   135  		**out = **in
   136  	}
   137  	if in.View != nil {
   138  		in, out := &in.View, &out.View
   139  		*out = new(DatasetaccessView)
   140  		**out = **in
   141  	}
   142  	return
   143  }
   144  
   145  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BigQueryDatasetAccessSpec.
   146  func (in *BigQueryDatasetAccessSpec) DeepCopy() *BigQueryDatasetAccessSpec {
   147  	if in == nil {
   148  		return nil
   149  	}
   150  	out := new(BigQueryDatasetAccessSpec)
   151  	in.DeepCopyInto(out)
   152  	return out
   153  }
   154  
   155  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   156  func (in *BigQueryDatasetAccessStatus) DeepCopyInto(out *BigQueryDatasetAccessStatus) {
   157  	*out = *in
   158  	if in.Conditions != nil {
   159  		in, out := &in.Conditions, &out.Conditions
   160  		*out = make([]k8sv1alpha1.Condition, len(*in))
   161  		copy(*out, *in)
   162  	}
   163  	if in.ApiUpdatedMember != nil {
   164  		in, out := &in.ApiUpdatedMember, &out.ApiUpdatedMember
   165  		*out = new(bool)
   166  		**out = **in
   167  	}
   168  	if in.ObservedGeneration != nil {
   169  		in, out := &in.ObservedGeneration, &out.ObservedGeneration
   170  		*out = new(int)
   171  		**out = **in
   172  	}
   173  	return
   174  }
   175  
   176  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BigQueryDatasetAccessStatus.
   177  func (in *BigQueryDatasetAccessStatus) DeepCopy() *BigQueryDatasetAccessStatus {
   178  	if in == nil {
   179  		return nil
   180  	}
   181  	out := new(BigQueryDatasetAccessStatus)
   182  	in.DeepCopyInto(out)
   183  	return out
   184  }
   185  
   186  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   187  func (in *DatasetaccessDataset) DeepCopyInto(out *DatasetaccessDataset) {
   188  	*out = *in
   189  	return
   190  }
   191  
   192  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatasetaccessDataset.
   193  func (in *DatasetaccessDataset) DeepCopy() *DatasetaccessDataset {
   194  	if in == nil {
   195  		return nil
   196  	}
   197  	out := new(DatasetaccessDataset)
   198  	in.DeepCopyInto(out)
   199  	return out
   200  }
   201  
   202  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   203  func (in *DatasetaccessView) DeepCopyInto(out *DatasetaccessView) {
   204  	*out = *in
   205  	return
   206  }
   207  
   208  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatasetaccessView.
   209  func (in *DatasetaccessView) DeepCopy() *DatasetaccessView {
   210  	if in == nil {
   211  		return nil
   212  	}
   213  	out := new(DatasetaccessView)
   214  	in.DeepCopyInto(out)
   215  	return out
   216  }
   217  

View as plain text