All checks were successful
Build and Publish / build-release (push) Successful in 1m29s
1295 lines
36 KiB
Go
1295 lines
36 KiB
Go
//go:build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright 2024.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
// Code generated by controller-gen. DO NOT EDIT.
|
|
|
|
package v1alpha1
|
|
|
|
import (
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *APIApp) DeepCopyInto(out *APIApp) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
out.Spec = in.Spec
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new APIApp.
|
|
func (in *APIApp) DeepCopy() *APIApp {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(APIApp)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *APIApp) 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 *APIAppList) DeepCopyInto(out *APIAppList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]APIApp, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new APIAppList.
|
|
func (in *APIAppList) DeepCopy() *APIAppList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(APIAppList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *APIAppList) 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 *APIAppSpec) DeepCopyInto(out *APIAppSpec) {
|
|
*out = *in
|
|
out.ProjectRef = in.ProjectRef
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new APIAppSpec.
|
|
func (in *APIAppSpec) DeepCopy() *APIAppSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(APIAppSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *APIAppStatus) DeepCopyInto(out *APIAppStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]v1.Condition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.AppId != nil {
|
|
in, out := &in.AppId, &out.AppId
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
if in.ClientId != nil {
|
|
in, out := &in.ClientId, &out.ClientId
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
if in.KeyId != nil {
|
|
in, out := &in.KeyId, &out.KeyId
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new APIAppStatus.
|
|
func (in *APIAppStatus) DeepCopy() *APIAppStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(APIAppStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Action) DeepCopyInto(out *Action) {
|
|
*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 Action.
|
|
func (in *Action) DeepCopy() *Action {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Action)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *Action) 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 *ActionList) DeepCopyInto(out *ActionList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]Action, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActionList.
|
|
func (in *ActionList) DeepCopy() *ActionList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ActionList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *ActionList) 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 *ActionRef) DeepCopyInto(out *ActionRef) {
|
|
*out = *in
|
|
out.ObjectReference = in.ObjectReference
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActionRef.
|
|
func (in *ActionRef) DeepCopy() *ActionRef {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ActionRef)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ActionSpec) DeepCopyInto(out *ActionSpec) {
|
|
*out = *in
|
|
out.OrganizationRef = in.OrganizationRef
|
|
if in.Timeout != nil {
|
|
in, out := &in.Timeout, &out.Timeout
|
|
*out = new(v1.Duration)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActionSpec.
|
|
func (in *ActionSpec) DeepCopy() *ActionSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ActionSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ActionStatus) DeepCopyInto(out *ActionStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]v1.Condition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActionStatus.
|
|
func (in *ActionStatus) DeepCopy() *ActionStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ActionStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Authentication) DeepCopyInto(out *Authentication) {
|
|
*out = *in
|
|
if in.PAT != nil {
|
|
in, out := &in.PAT, &out.PAT
|
|
*out = new(PAT)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Password != nil {
|
|
in, out := &in.Password, &out.Password
|
|
*out = new(UserPassword)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.JWT != nil {
|
|
in, out := &in.JWT, &out.JWT
|
|
*out = new(JWT)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Authentication.
|
|
func (in *Authentication) DeepCopy() *Authentication {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Authentication)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Authorization) DeepCopyInto(out *Authorization) {
|
|
*out = *in
|
|
out.ProjectRef = in.ProjectRef
|
|
if in.RoleKeys != nil {
|
|
in, out := &in.RoleKeys, &out.RoleKeys
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Authorization.
|
|
func (in *Authorization) DeepCopy() *Authorization {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Authorization)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Connection) DeepCopyInto(out *Connection) {
|
|
*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 Connection.
|
|
func (in *Connection) DeepCopy() *Connection {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Connection)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *Connection) 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 *ConnectionList) DeepCopyInto(out *ConnectionList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]Connection, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConnectionList.
|
|
func (in *ConnectionList) DeepCopy() *ConnectionList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ConnectionList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *ConnectionList) 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 *ConnectionRef) DeepCopyInto(out *ConnectionRef) {
|
|
*out = *in
|
|
out.ObjectReference = in.ObjectReference
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConnectionRef.
|
|
func (in *ConnectionRef) DeepCopy() *ConnectionRef {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ConnectionRef)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ConnectionSpec) DeepCopyInto(out *ConnectionSpec) {
|
|
*out = *in
|
|
if in.Port != nil {
|
|
in, out := &in.Port, &out.Port
|
|
*out = new(uint16)
|
|
**out = **in
|
|
}
|
|
in.Authentication.DeepCopyInto(&out.Authentication)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConnectionSpec.
|
|
func (in *ConnectionSpec) DeepCopy() *ConnectionSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ConnectionSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ConnectionStatus) DeepCopyInto(out *ConnectionStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]v1.Condition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConnectionStatus.
|
|
func (in *ConnectionStatus) DeepCopy() *ConnectionStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ConnectionStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Flow) DeepCopyInto(out *Flow) {
|
|
*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 Flow.
|
|
func (in *Flow) DeepCopy() *Flow {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Flow)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *Flow) 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 *FlowList) DeepCopyInto(out *FlowList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]Flow, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlowList.
|
|
func (in *FlowList) DeepCopy() *FlowList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FlowList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *FlowList) 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 *FlowSpec) DeepCopyInto(out *FlowSpec) {
|
|
*out = *in
|
|
out.OrganizationRef = in.OrganizationRef
|
|
if in.ActionRefs != nil {
|
|
in, out := &in.ActionRefs, &out.ActionRefs
|
|
*out = make([]ActionRef, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlowSpec.
|
|
func (in *FlowSpec) DeepCopy() *FlowSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FlowSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FlowStatus) DeepCopyInto(out *FlowStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]v1.Condition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlowStatus.
|
|
func (in *FlowStatus) DeepCopy() *FlowStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FlowStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Grant) DeepCopyInto(out *Grant) {
|
|
*out = *in
|
|
out.OrganizationRef = in.OrganizationRef
|
|
if in.RoleKeys != nil {
|
|
in, out := &in.RoleKeys, &out.RoleKeys
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Grant.
|
|
func (in *Grant) DeepCopy() *Grant {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Grant)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InstanceResource) DeepCopyInto(out *InstanceResource) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InstanceResource.
|
|
func (in *InstanceResource) DeepCopy() *InstanceResource {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InstanceResource)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InternalPermissions) DeepCopyInto(out *InternalPermissions) {
|
|
*out = *in
|
|
in.Resource.DeepCopyInto(&out.Resource)
|
|
if in.Roles != nil {
|
|
in, out := &in.Roles, &out.Roles
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InternalPermissions.
|
|
func (in *InternalPermissions) DeepCopy() *InternalPermissions {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InternalPermissions)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *JWT) DeepCopyInto(out *JWT) {
|
|
*out = *in
|
|
in.JWTSecretKey.DeepCopyInto(&out.JWTSecretKey)
|
|
if in.Scopes != nil {
|
|
in, out := &in.Scopes, &out.Scopes
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JWT.
|
|
func (in *JWT) DeepCopy() *JWT {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(JWT)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *MachineUser) DeepCopyInto(out *MachineUser) {
|
|
*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 MachineUser.
|
|
func (in *MachineUser) DeepCopy() *MachineUser {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(MachineUser)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *MachineUser) 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 *MachineUserList) DeepCopyInto(out *MachineUserList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]MachineUser, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MachineUserList.
|
|
func (in *MachineUserList) DeepCopy() *MachineUserList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(MachineUserList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *MachineUserList) 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 *MachineUserSpec) DeepCopyInto(out *MachineUserSpec) {
|
|
*out = *in
|
|
out.OrganizationRef = in.OrganizationRef
|
|
if in.Authorizations != nil {
|
|
in, out := &in.Authorizations, &out.Authorizations
|
|
*out = make([]Authorization, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.InternalPermissions != nil {
|
|
in, out := &in.InternalPermissions, &out.InternalPermissions
|
|
*out = make([]InternalPermissions, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.Metadata != nil {
|
|
in, out := &in.Metadata, &out.Metadata
|
|
*out = make([]map[string]string, len(*in))
|
|
for i := range *in {
|
|
if (*in)[i] != nil {
|
|
in, out := &(*in)[i], &(*out)[i]
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MachineUserSpec.
|
|
func (in *MachineUserSpec) DeepCopy() *MachineUserSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(MachineUserSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *MachineUserStatus) DeepCopyInto(out *MachineUserStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]v1.Condition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.UserId != nil {
|
|
in, out := &in.UserId, &out.UserId
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
if in.KeyId != nil {
|
|
in, out := &in.KeyId, &out.KeyId
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
if in.PATId != nil {
|
|
in, out := &in.PATId, &out.PATId
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MachineUserStatus.
|
|
func (in *MachineUserStatus) DeepCopy() *MachineUserStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(MachineUserStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *OIDCApp) DeepCopyInto(out *OIDCApp) {
|
|
*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 OIDCApp.
|
|
func (in *OIDCApp) DeepCopy() *OIDCApp {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OIDCApp)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *OIDCApp) 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 *OIDCAppList) DeepCopyInto(out *OIDCAppList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]OIDCApp, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OIDCAppList.
|
|
func (in *OIDCAppList) DeepCopy() *OIDCAppList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OIDCAppList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *OIDCAppList) 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 *OIDCAppRef) DeepCopyInto(out *OIDCAppRef) {
|
|
*out = *in
|
|
out.ObjectReference = in.ObjectReference
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OIDCAppRef.
|
|
func (in *OIDCAppRef) DeepCopy() *OIDCAppRef {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OIDCAppRef)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *OIDCAppSpec) DeepCopyInto(out *OIDCAppSpec) {
|
|
*out = *in
|
|
out.ProjectRef = in.ProjectRef
|
|
if in.RedirectUris != nil {
|
|
in, out := &in.RedirectUris, &out.RedirectUris
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.ResponseTypes != nil {
|
|
in, out := &in.ResponseTypes, &out.ResponseTypes
|
|
*out = make([]ResponseType, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.GrantTypes != nil {
|
|
in, out := &in.GrantTypes, &out.GrantTypes
|
|
*out = make([]GrantType, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.PostLogoutRedirectUris != nil {
|
|
in, out := &in.PostLogoutRedirectUris, &out.PostLogoutRedirectUris
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.ClockSkew != nil {
|
|
in, out := &in.ClockSkew, &out.ClockSkew
|
|
*out = new(v1.Duration)
|
|
**out = **in
|
|
}
|
|
if in.AdditionalOrigins != nil {
|
|
in, out := &in.AdditionalOrigins, &out.AdditionalOrigins
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OIDCAppSpec.
|
|
func (in *OIDCAppSpec) DeepCopy() *OIDCAppSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OIDCAppSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *OIDCAppStatus) DeepCopyInto(out *OIDCAppStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]v1.Condition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.AppId != nil {
|
|
in, out := &in.AppId, &out.AppId
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
if in.ClientId != nil {
|
|
in, out := &in.ClientId, &out.ClientId
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OIDCAppStatus.
|
|
func (in *OIDCAppStatus) DeepCopy() *OIDCAppStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OIDCAppStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Organization) DeepCopyInto(out *Organization) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
out.Spec = in.Spec
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Organization.
|
|
func (in *Organization) DeepCopy() *Organization {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Organization)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *Organization) 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 *OrganizationList) DeepCopyInto(out *OrganizationList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]Organization, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OrganizationList.
|
|
func (in *OrganizationList) DeepCopy() *OrganizationList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OrganizationList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *OrganizationList) 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 *OrganizationRef) DeepCopyInto(out *OrganizationRef) {
|
|
*out = *in
|
|
out.ObjectReference = in.ObjectReference
|
|
out.ConnectionRef = in.ConnectionRef
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OrganizationRef.
|
|
func (in *OrganizationRef) DeepCopy() *OrganizationRef {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OrganizationRef)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *OrganizationResource) DeepCopyInto(out *OrganizationResource) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OrganizationResource.
|
|
func (in *OrganizationResource) DeepCopy() *OrganizationResource {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OrganizationResource)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *OrganizationSpec) DeepCopyInto(out *OrganizationSpec) {
|
|
*out = *in
|
|
out.ConnectionRef = in.ConnectionRef
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OrganizationSpec.
|
|
func (in *OrganizationSpec) DeepCopy() *OrganizationSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OrganizationSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *OrganizationStatus) DeepCopyInto(out *OrganizationStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]v1.Condition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.OrganizationId != nil {
|
|
in, out := &in.OrganizationId, &out.OrganizationId
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OrganizationStatus.
|
|
func (in *OrganizationStatus) DeepCopy() *OrganizationStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OrganizationStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PAT) DeepCopyInto(out *PAT) {
|
|
*out = *in
|
|
in.TokenSecretKey.DeepCopyInto(&out.TokenSecretKey)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PAT.
|
|
func (in *PAT) DeepCopy() *PAT {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PAT)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Project) DeepCopyInto(out *Project) {
|
|
*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 Project.
|
|
func (in *Project) DeepCopy() *Project {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Project)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *Project) 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 *ProjectGrantResource) DeepCopyInto(out *ProjectGrantResource) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectGrantResource.
|
|
func (in *ProjectGrantResource) DeepCopy() *ProjectGrantResource {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ProjectGrantResource)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ProjectList) DeepCopyInto(out *ProjectList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]Project, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectList.
|
|
func (in *ProjectList) DeepCopy() *ProjectList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ProjectList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *ProjectList) 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 *ProjectRef) DeepCopyInto(out *ProjectRef) {
|
|
*out = *in
|
|
out.ObjectReference = in.ObjectReference
|
|
out.ConnectionRef = in.ConnectionRef
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectRef.
|
|
func (in *ProjectRef) DeepCopy() *ProjectRef {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ProjectRef)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ProjectResource) DeepCopyInto(out *ProjectResource) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectResource.
|
|
func (in *ProjectResource) DeepCopy() *ProjectResource {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ProjectResource)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ProjectSpec) DeepCopyInto(out *ProjectSpec) {
|
|
*out = *in
|
|
out.OrganizationRef = in.OrganizationRef
|
|
if in.Roles != nil {
|
|
in, out := &in.Roles, &out.Roles
|
|
*out = make([]Role, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Grants != nil {
|
|
in, out := &in.Grants, &out.Grants
|
|
*out = make([]Grant, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectSpec.
|
|
func (in *ProjectSpec) DeepCopy() *ProjectSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ProjectSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ProjectStatus) DeepCopyInto(out *ProjectStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]v1.Condition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.ProjectId != nil {
|
|
in, out := &in.ProjectId, &out.ProjectId
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectStatus.
|
|
func (in *ProjectStatus) DeepCopy() *ProjectStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ProjectStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ResolvedReference) DeepCopyInto(out *ResolvedReference) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResolvedReference.
|
|
func (in *ResolvedReference) DeepCopy() *ResolvedReference {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ResolvedReference)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Resource) DeepCopyInto(out *Resource) {
|
|
*out = *in
|
|
if in.Organization != nil {
|
|
in, out := &in.Organization, &out.Organization
|
|
*out = new(OrganizationResource)
|
|
**out = **in
|
|
}
|
|
if in.Instance != nil {
|
|
in, out := &in.Instance, &out.Instance
|
|
*out = new(InstanceResource)
|
|
**out = **in
|
|
}
|
|
if in.Project != nil {
|
|
in, out := &in.Project, &out.Project
|
|
*out = new(ProjectResource)
|
|
**out = **in
|
|
}
|
|
if in.ProjectGrant != nil {
|
|
in, out := &in.ProjectGrant, &out.ProjectGrant
|
|
*out = new(ProjectGrantResource)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Resource.
|
|
func (in *Resource) DeepCopy() *Resource {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Resource)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Role) DeepCopyInto(out *Role) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Role.
|
|
func (in *Role) DeepCopy() *Role {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Role)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *UserPassword) DeepCopyInto(out *UserPassword) {
|
|
*out = *in
|
|
in.PasswordSecretKey.DeepCopyInto(&out.PasswordSecretKey)
|
|
if in.Scopes != nil {
|
|
in, out := &in.Scopes, &out.Scopes
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserPassword.
|
|
func (in *UserPassword) DeepCopy() *UserPassword {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(UserPassword)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|