apis/speech/v1alpha1/zz_generated.deepcopy.go (1,241 lines of code) (raw):
//go:build !ignore_autogenerated
// Copyright 2020 Google LLC
//
// 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 (
"github.com/GoogleCloudPlatform/k8s-config-connector/apis/refs/v1beta1"
k8sv1alpha1 "github.com/GoogleCloudPlatform/k8s-config-connector/pkg/apis/k8s/v1alpha1"
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 *AutoDetectDecodingConfig) DeepCopyInto(out *AutoDetectDecodingConfig) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AutoDetectDecodingConfig.
func (in *AutoDetectDecodingConfig) DeepCopy() *AutoDetectDecodingConfig {
if in == nil {
return nil
}
out := new(AutoDetectDecodingConfig)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CustomClassIdentity) DeepCopyInto(out *CustomClassIdentity) {
*out = *in
if in.parent != nil {
in, out := &in.parent, &out.parent
*out = new(CustomClassParent)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CustomClassIdentity.
func (in *CustomClassIdentity) DeepCopy() *CustomClassIdentity {
if in == nil {
return nil
}
out := new(CustomClassIdentity)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CustomClassParent) DeepCopyInto(out *CustomClassParent) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CustomClassParent.
func (in *CustomClassParent) DeepCopy() *CustomClassParent {
if in == nil {
return nil
}
out := new(CustomClassParent)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CustomClassRef) DeepCopyInto(out *CustomClassRef) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CustomClassRef.
func (in *CustomClassRef) DeepCopy() *CustomClassRef {
if in == nil {
return nil
}
out := new(CustomClassRef)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CustomClass_ClassItem) DeepCopyInto(out *CustomClass_ClassItem) {
*out = *in
if in.Value != nil {
in, out := &in.Value, &out.Value
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CustomClass_ClassItem.
func (in *CustomClass_ClassItem) DeepCopy() *CustomClass_ClassItem {
if in == nil {
return nil
}
out := new(CustomClass_ClassItem)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ExplicitDecodingConfig) DeepCopyInto(out *ExplicitDecodingConfig) {
*out = *in
if in.Encoding != nil {
in, out := &in.Encoding, &out.Encoding
*out = new(string)
**out = **in
}
if in.SampleRateHertz != nil {
in, out := &in.SampleRateHertz, &out.SampleRateHertz
*out = new(int32)
**out = **in
}
if in.AudioChannelCount != nil {
in, out := &in.AudioChannelCount, &out.AudioChannelCount
*out = new(int32)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExplicitDecodingConfig.
func (in *ExplicitDecodingConfig) DeepCopy() *ExplicitDecodingConfig {
if in == nil {
return nil
}
out := new(ExplicitDecodingConfig)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *InlineCustomClass) DeepCopyInto(out *InlineCustomClass) {
*out = *in
if in.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]CustomClass_ClassItem, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.Annotations != nil {
in, out := &in.Annotations, &out.Annotations
*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 InlineCustomClass.
func (in *InlineCustomClass) DeepCopy() *InlineCustomClass {
if in == nil {
return nil
}
out := new(InlineCustomClass)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *InlineCustomClassObservedState) DeepCopyInto(out *InlineCustomClassObservedState) {
*out = *in
if in.Name != nil {
in, out := &in.Name, &out.Name
*out = new(string)
**out = **in
}
if in.UID != nil {
in, out := &in.UID, &out.UID
*out = new(string)
**out = **in
}
if in.State != nil {
in, out := &in.State, &out.State
*out = new(string)
**out = **in
}
if in.CreateTime != nil {
in, out := &in.CreateTime, &out.CreateTime
*out = new(string)
**out = **in
}
if in.UpdateTime != nil {
in, out := &in.UpdateTime, &out.UpdateTime
*out = new(string)
**out = **in
}
if in.DeleteTime != nil {
in, out := &in.DeleteTime, &out.DeleteTime
*out = new(string)
**out = **in
}
if in.ExpireTime != nil {
in, out := &in.ExpireTime, &out.ExpireTime
*out = new(string)
**out = **in
}
if in.Etag != nil {
in, out := &in.Etag, &out.Etag
*out = new(string)
**out = **in
}
if in.Reconciling != nil {
in, out := &in.Reconciling, &out.Reconciling
*out = new(bool)
**out = **in
}
if in.KMSKeyName != nil {
in, out := &in.KMSKeyName, &out.KMSKeyName
*out = new(string)
**out = **in
}
if in.KMSKeyVersionName != nil {
in, out := &in.KMSKeyVersionName, &out.KMSKeyVersionName
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InlineCustomClassObservedState.
func (in *InlineCustomClassObservedState) DeepCopy() *InlineCustomClassObservedState {
if in == nil {
return nil
}
out := new(InlineCustomClassObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *InlinePhraseSet) DeepCopyInto(out *InlinePhraseSet) {
*out = *in
if in.Phrases != nil {
in, out := &in.Phrases, &out.Phrases
*out = make([]PhraseSet_Phrase, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.Boost != nil {
in, out := &in.Boost, &out.Boost
*out = new(string)
**out = **in
}
if in.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
if in.Annotations != nil {
in, out := &in.Annotations, &out.Annotations
*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 InlinePhraseSet.
func (in *InlinePhraseSet) DeepCopy() *InlinePhraseSet {
if in == nil {
return nil
}
out := new(InlinePhraseSet)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *InlinePhraseSetObservedState) DeepCopyInto(out *InlinePhraseSetObservedState) {
*out = *in
if in.Name != nil {
in, out := &in.Name, &out.Name
*out = new(string)
**out = **in
}
if in.UID != nil {
in, out := &in.UID, &out.UID
*out = new(string)
**out = **in
}
if in.State != nil {
in, out := &in.State, &out.State
*out = new(string)
**out = **in
}
if in.CreateTime != nil {
in, out := &in.CreateTime, &out.CreateTime
*out = new(string)
**out = **in
}
if in.UpdateTime != nil {
in, out := &in.UpdateTime, &out.UpdateTime
*out = new(string)
**out = **in
}
if in.DeleteTime != nil {
in, out := &in.DeleteTime, &out.DeleteTime
*out = new(string)
**out = **in
}
if in.ExpireTime != nil {
in, out := &in.ExpireTime, &out.ExpireTime
*out = new(string)
**out = **in
}
if in.Etag != nil {
in, out := &in.Etag, &out.Etag
*out = new(string)
**out = **in
}
if in.Reconciling != nil {
in, out := &in.Reconciling, &out.Reconciling
*out = new(bool)
**out = **in
}
if in.KMSKeyName != nil {
in, out := &in.KMSKeyName, &out.KMSKeyName
*out = new(string)
**out = **in
}
if in.KMSKeyVersionName != nil {
in, out := &in.KMSKeyVersionName, &out.KMSKeyVersionName
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InlinePhraseSetObservedState.
func (in *InlinePhraseSetObservedState) DeepCopy() *InlinePhraseSetObservedState {
if in == nil {
return nil
}
out := new(InlinePhraseSetObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Parent) DeepCopyInto(out *Parent) {
*out = *in
if in.ProjectRef != nil {
in, out := &in.ProjectRef, &out.ProjectRef
*out = new(v1beta1.ProjectRef)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Parent.
func (in *Parent) DeepCopy() *Parent {
if in == nil {
return nil
}
out := new(Parent)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PhraseSetIdentity) DeepCopyInto(out *PhraseSetIdentity) {
*out = *in
if in.parent != nil {
in, out := &in.parent, &out.parent
*out = new(PhraseSetParent)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PhraseSetIdentity.
func (in *PhraseSetIdentity) DeepCopy() *PhraseSetIdentity {
if in == nil {
return nil
}
out := new(PhraseSetIdentity)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PhraseSetParent) DeepCopyInto(out *PhraseSetParent) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PhraseSetParent.
func (in *PhraseSetParent) DeepCopy() *PhraseSetParent {
if in == nil {
return nil
}
out := new(PhraseSetParent)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PhraseSetRef) DeepCopyInto(out *PhraseSetRef) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PhraseSetRef.
func (in *PhraseSetRef) DeepCopy() *PhraseSetRef {
if in == nil {
return nil
}
out := new(PhraseSetRef)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PhraseSet_Phrase) DeepCopyInto(out *PhraseSet_Phrase) {
*out = *in
if in.Value != nil {
in, out := &in.Value, &out.Value
*out = new(string)
**out = **in
}
if in.Boost != nil {
in, out := &in.Boost, &out.Boost
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PhraseSet_Phrase.
func (in *PhraseSet_Phrase) DeepCopy() *PhraseSet_Phrase {
if in == nil {
return nil
}
out := new(PhraseSet_Phrase)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RecognitionConfig) DeepCopyInto(out *RecognitionConfig) {
*out = *in
if in.AutoDecodingConfig != nil {
in, out := &in.AutoDecodingConfig, &out.AutoDecodingConfig
*out = new(AutoDetectDecodingConfig)
**out = **in
}
if in.ExplicitDecodingConfig != nil {
in, out := &in.ExplicitDecodingConfig, &out.ExplicitDecodingConfig
*out = new(ExplicitDecodingConfig)
(*in).DeepCopyInto(*out)
}
if in.Model != nil {
in, out := &in.Model, &out.Model
*out = new(string)
**out = **in
}
if in.LanguageCodes != nil {
in, out := &in.LanguageCodes, &out.LanguageCodes
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.Features != nil {
in, out := &in.Features, &out.Features
*out = new(RecognitionFeatures)
(*in).DeepCopyInto(*out)
}
if in.Adaptation != nil {
in, out := &in.Adaptation, &out.Adaptation
*out = new(SpeechAdaptation)
(*in).DeepCopyInto(*out)
}
if in.TranscriptNormalization != nil {
in, out := &in.TranscriptNormalization, &out.TranscriptNormalization
*out = new(TranscriptNormalization)
(*in).DeepCopyInto(*out)
}
if in.TranslationConfig != nil {
in, out := &in.TranslationConfig, &out.TranslationConfig
*out = new(TranslationConfig)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RecognitionConfig.
func (in *RecognitionConfig) DeepCopy() *RecognitionConfig {
if in == nil {
return nil
}
out := new(RecognitionConfig)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RecognitionConfigObservedState) DeepCopyInto(out *RecognitionConfigObservedState) {
*out = *in
if in.Adaptation != nil {
in, out := &in.Adaptation, &out.Adaptation
*out = new(SpeechAdaptationObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RecognitionConfigObservedState.
func (in *RecognitionConfigObservedState) DeepCopy() *RecognitionConfigObservedState {
if in == nil {
return nil
}
out := new(RecognitionConfigObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RecognitionFeatures) DeepCopyInto(out *RecognitionFeatures) {
*out = *in
if in.ProfanityFilter != nil {
in, out := &in.ProfanityFilter, &out.ProfanityFilter
*out = new(bool)
**out = **in
}
if in.EnableWordTimeOffsets != nil {
in, out := &in.EnableWordTimeOffsets, &out.EnableWordTimeOffsets
*out = new(bool)
**out = **in
}
if in.EnableWordConfidence != nil {
in, out := &in.EnableWordConfidence, &out.EnableWordConfidence
*out = new(bool)
**out = **in
}
if in.EnableAutomaticPunctuation != nil {
in, out := &in.EnableAutomaticPunctuation, &out.EnableAutomaticPunctuation
*out = new(bool)
**out = **in
}
if in.EnableSpokenPunctuation != nil {
in, out := &in.EnableSpokenPunctuation, &out.EnableSpokenPunctuation
*out = new(bool)
**out = **in
}
if in.EnableSpokenEmojis != nil {
in, out := &in.EnableSpokenEmojis, &out.EnableSpokenEmojis
*out = new(bool)
**out = **in
}
if in.MultiChannelMode != nil {
in, out := &in.MultiChannelMode, &out.MultiChannelMode
*out = new(string)
**out = **in
}
if in.DiarizationConfig != nil {
in, out := &in.DiarizationConfig, &out.DiarizationConfig
*out = new(SpeakerDiarizationConfig)
(*in).DeepCopyInto(*out)
}
if in.MaxAlternatives != nil {
in, out := &in.MaxAlternatives, &out.MaxAlternatives
*out = new(int32)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RecognitionFeatures.
func (in *RecognitionFeatures) DeepCopy() *RecognitionFeatures {
if in == nil {
return nil
}
out := new(RecognitionFeatures)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RecognizerIdentity) DeepCopyInto(out *RecognizerIdentity) {
*out = *in
if in.parent != nil {
in, out := &in.parent, &out.parent
*out = new(RecognizerParent)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RecognizerIdentity.
func (in *RecognizerIdentity) DeepCopy() *RecognizerIdentity {
if in == nil {
return nil
}
out := new(RecognizerIdentity)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RecognizerParent) DeepCopyInto(out *RecognizerParent) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RecognizerParent.
func (in *RecognizerParent) DeepCopy() *RecognizerParent {
if in == nil {
return nil
}
out := new(RecognizerParent)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RecognizerRef) DeepCopyInto(out *RecognizerRef) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RecognizerRef.
func (in *RecognizerRef) DeepCopy() *RecognizerRef {
if in == nil {
return nil
}
out := new(RecognizerRef)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SpeakerDiarizationConfig) DeepCopyInto(out *SpeakerDiarizationConfig) {
*out = *in
if in.MinSpeakerCount != nil {
in, out := &in.MinSpeakerCount, &out.MinSpeakerCount
*out = new(int32)
**out = **in
}
if in.MaxSpeakerCount != nil {
in, out := &in.MaxSpeakerCount, &out.MaxSpeakerCount
*out = new(int32)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpeakerDiarizationConfig.
func (in *SpeakerDiarizationConfig) DeepCopy() *SpeakerDiarizationConfig {
if in == nil {
return nil
}
out := new(SpeakerDiarizationConfig)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SpeechAdaptation) DeepCopyInto(out *SpeechAdaptation) {
*out = *in
if in.PhraseSets != nil {
in, out := &in.PhraseSets, &out.PhraseSets
*out = make([]SpeechAdaptation_AdaptationPhraseSet, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.CustomClasses != nil {
in, out := &in.CustomClasses, &out.CustomClasses
*out = make([]InlineCustomClass, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpeechAdaptation.
func (in *SpeechAdaptation) DeepCopy() *SpeechAdaptation {
if in == nil {
return nil
}
out := new(SpeechAdaptation)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SpeechAdaptationObservedState) DeepCopyInto(out *SpeechAdaptationObservedState) {
*out = *in
if in.PhraseSets != nil {
in, out := &in.PhraseSets, &out.PhraseSets
*out = make([]SpeechAdaptation_AdaptationPhraseSetObservedState, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.CustomClasses != nil {
in, out := &in.CustomClasses, &out.CustomClasses
*out = make([]InlineCustomClassObservedState, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpeechAdaptationObservedState.
func (in *SpeechAdaptationObservedState) DeepCopy() *SpeechAdaptationObservedState {
if in == nil {
return nil
}
out := new(SpeechAdaptationObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SpeechAdaptation_AdaptationPhraseSet) DeepCopyInto(out *SpeechAdaptation_AdaptationPhraseSet) {
*out = *in
if in.PhraseSetRef != nil {
in, out := &in.PhraseSetRef, &out.PhraseSetRef
*out = new(PhraseSetRef)
**out = **in
}
if in.InlinePhraseSet != nil {
in, out := &in.InlinePhraseSet, &out.InlinePhraseSet
*out = new(InlinePhraseSet)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpeechAdaptation_AdaptationPhraseSet.
func (in *SpeechAdaptation_AdaptationPhraseSet) DeepCopy() *SpeechAdaptation_AdaptationPhraseSet {
if in == nil {
return nil
}
out := new(SpeechAdaptation_AdaptationPhraseSet)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SpeechAdaptation_AdaptationPhraseSetObservedState) DeepCopyInto(out *SpeechAdaptation_AdaptationPhraseSetObservedState) {
*out = *in
if in.InlinePhraseSet != nil {
in, out := &in.InlinePhraseSet, &out.InlinePhraseSet
*out = new(InlinePhraseSetObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpeechAdaptation_AdaptationPhraseSetObservedState.
func (in *SpeechAdaptation_AdaptationPhraseSetObservedState) DeepCopy() *SpeechAdaptation_AdaptationPhraseSetObservedState {
if in == nil {
return nil
}
out := new(SpeechAdaptation_AdaptationPhraseSetObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SpeechCustomClass) DeepCopyInto(out *SpeechCustomClass) {
*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 SpeechCustomClass.
func (in *SpeechCustomClass) DeepCopy() *SpeechCustomClass {
if in == nil {
return nil
}
out := new(SpeechCustomClass)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *SpeechCustomClass) 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 *SpeechCustomClassList) DeepCopyInto(out *SpeechCustomClassList) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]SpeechCustomClass, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpeechCustomClassList.
func (in *SpeechCustomClassList) DeepCopy() *SpeechCustomClassList {
if in == nil {
return nil
}
out := new(SpeechCustomClassList)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *SpeechCustomClassList) 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 *SpeechCustomClassObservedState) DeepCopyInto(out *SpeechCustomClassObservedState) {
*out = *in
if in.UID != nil {
in, out := &in.UID, &out.UID
*out = new(string)
**out = **in
}
if in.State != nil {
in, out := &in.State, &out.State
*out = new(string)
**out = **in
}
if in.CreateTime != nil {
in, out := &in.CreateTime, &out.CreateTime
*out = new(string)
**out = **in
}
if in.UpdateTime != nil {
in, out := &in.UpdateTime, &out.UpdateTime
*out = new(string)
**out = **in
}
if in.DeleteTime != nil {
in, out := &in.DeleteTime, &out.DeleteTime
*out = new(string)
**out = **in
}
if in.ExpireTime != nil {
in, out := &in.ExpireTime, &out.ExpireTime
*out = new(string)
**out = **in
}
if in.Etag != nil {
in, out := &in.Etag, &out.Etag
*out = new(string)
**out = **in
}
if in.Reconciling != nil {
in, out := &in.Reconciling, &out.Reconciling
*out = new(bool)
**out = **in
}
if in.KMSKeyName != nil {
in, out := &in.KMSKeyName, &out.KMSKeyName
*out = new(string)
**out = **in
}
if in.KMSKeyVersionName != nil {
in, out := &in.KMSKeyVersionName, &out.KMSKeyVersionName
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpeechCustomClassObservedState.
func (in *SpeechCustomClassObservedState) DeepCopy() *SpeechCustomClassObservedState {
if in == nil {
return nil
}
out := new(SpeechCustomClassObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SpeechCustomClassSpec) DeepCopyInto(out *SpeechCustomClassSpec) {
*out = *in
if in.ResourceID != nil {
in, out := &in.ResourceID, &out.ResourceID
*out = new(string)
**out = **in
}
in.Parent.DeepCopyInto(&out.Parent)
if in.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]CustomClass_ClassItem, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.Annotations != nil {
in, out := &in.Annotations, &out.Annotations
*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 SpeechCustomClassSpec.
func (in *SpeechCustomClassSpec) DeepCopy() *SpeechCustomClassSpec {
if in == nil {
return nil
}
out := new(SpeechCustomClassSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SpeechCustomClassStatus) DeepCopyInto(out *SpeechCustomClassStatus) {
*out = *in
if in.Conditions != nil {
in, out := &in.Conditions, &out.Conditions
*out = make([]k8sv1alpha1.Condition, len(*in))
copy(*out, *in)
}
if in.ObservedGeneration != nil {
in, out := &in.ObservedGeneration, &out.ObservedGeneration
*out = new(int64)
**out = **in
}
if in.ExternalRef != nil {
in, out := &in.ExternalRef, &out.ExternalRef
*out = new(string)
**out = **in
}
if in.ObservedState != nil {
in, out := &in.ObservedState, &out.ObservedState
*out = new(SpeechCustomClassObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpeechCustomClassStatus.
func (in *SpeechCustomClassStatus) DeepCopy() *SpeechCustomClassStatus {
if in == nil {
return nil
}
out := new(SpeechCustomClassStatus)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SpeechPhraseSet) DeepCopyInto(out *SpeechPhraseSet) {
*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 SpeechPhraseSet.
func (in *SpeechPhraseSet) DeepCopy() *SpeechPhraseSet {
if in == nil {
return nil
}
out := new(SpeechPhraseSet)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *SpeechPhraseSet) 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 *SpeechPhraseSetList) DeepCopyInto(out *SpeechPhraseSetList) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]SpeechPhraseSet, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpeechPhraseSetList.
func (in *SpeechPhraseSetList) DeepCopy() *SpeechPhraseSetList {
if in == nil {
return nil
}
out := new(SpeechPhraseSetList)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *SpeechPhraseSetList) 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 *SpeechPhraseSetObservedState) DeepCopyInto(out *SpeechPhraseSetObservedState) {
*out = *in
if in.UID != nil {
in, out := &in.UID, &out.UID
*out = new(string)
**out = **in
}
if in.State != nil {
in, out := &in.State, &out.State
*out = new(string)
**out = **in
}
if in.CreateTime != nil {
in, out := &in.CreateTime, &out.CreateTime
*out = new(string)
**out = **in
}
if in.UpdateTime != nil {
in, out := &in.UpdateTime, &out.UpdateTime
*out = new(string)
**out = **in
}
if in.DeleteTime != nil {
in, out := &in.DeleteTime, &out.DeleteTime
*out = new(string)
**out = **in
}
if in.ExpireTime != nil {
in, out := &in.ExpireTime, &out.ExpireTime
*out = new(string)
**out = **in
}
if in.Etag != nil {
in, out := &in.Etag, &out.Etag
*out = new(string)
**out = **in
}
if in.Reconciling != nil {
in, out := &in.Reconciling, &out.Reconciling
*out = new(bool)
**out = **in
}
if in.KMSKeyName != nil {
in, out := &in.KMSKeyName, &out.KMSKeyName
*out = new(string)
**out = **in
}
if in.KMSKeyVersionName != nil {
in, out := &in.KMSKeyVersionName, &out.KMSKeyVersionName
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpeechPhraseSetObservedState.
func (in *SpeechPhraseSetObservedState) DeepCopy() *SpeechPhraseSetObservedState {
if in == nil {
return nil
}
out := new(SpeechPhraseSetObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SpeechPhraseSetSpec) DeepCopyInto(out *SpeechPhraseSetSpec) {
*out = *in
if in.ResourceID != nil {
in, out := &in.ResourceID, &out.ResourceID
*out = new(string)
**out = **in
}
in.Parent.DeepCopyInto(&out.Parent)
if in.Phrases != nil {
in, out := &in.Phrases, &out.Phrases
*out = make([]PhraseSet_Phrase, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.Boost != nil {
in, out := &in.Boost, &out.Boost
*out = new(string)
**out = **in
}
if in.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
if in.Annotations != nil {
in, out := &in.Annotations, &out.Annotations
*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 SpeechPhraseSetSpec.
func (in *SpeechPhraseSetSpec) DeepCopy() *SpeechPhraseSetSpec {
if in == nil {
return nil
}
out := new(SpeechPhraseSetSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SpeechPhraseSetStatus) DeepCopyInto(out *SpeechPhraseSetStatus) {
*out = *in
if in.Conditions != nil {
in, out := &in.Conditions, &out.Conditions
*out = make([]k8sv1alpha1.Condition, len(*in))
copy(*out, *in)
}
if in.ObservedGeneration != nil {
in, out := &in.ObservedGeneration, &out.ObservedGeneration
*out = new(int64)
**out = **in
}
if in.ExternalRef != nil {
in, out := &in.ExternalRef, &out.ExternalRef
*out = new(string)
**out = **in
}
if in.ObservedState != nil {
in, out := &in.ObservedState, &out.ObservedState
*out = new(SpeechPhraseSetObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpeechPhraseSetStatus.
func (in *SpeechPhraseSetStatus) DeepCopy() *SpeechPhraseSetStatus {
if in == nil {
return nil
}
out := new(SpeechPhraseSetStatus)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SpeechRecognizer) DeepCopyInto(out *SpeechRecognizer) {
*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 SpeechRecognizer.
func (in *SpeechRecognizer) DeepCopy() *SpeechRecognizer {
if in == nil {
return nil
}
out := new(SpeechRecognizer)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *SpeechRecognizer) 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 *SpeechRecognizerList) DeepCopyInto(out *SpeechRecognizerList) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]SpeechRecognizer, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpeechRecognizerList.
func (in *SpeechRecognizerList) DeepCopy() *SpeechRecognizerList {
if in == nil {
return nil
}
out := new(SpeechRecognizerList)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *SpeechRecognizerList) 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 *SpeechRecognizerObservedState) DeepCopyInto(out *SpeechRecognizerObservedState) {
*out = *in
if in.UID != nil {
in, out := &in.UID, &out.UID
*out = new(string)
**out = **in
}
if in.DefaultRecognitionConfig != nil {
in, out := &in.DefaultRecognitionConfig, &out.DefaultRecognitionConfig
*out = new(RecognitionConfigObservedState)
(*in).DeepCopyInto(*out)
}
if in.State != nil {
in, out := &in.State, &out.State
*out = new(string)
**out = **in
}
if in.CreateTime != nil {
in, out := &in.CreateTime, &out.CreateTime
*out = new(string)
**out = **in
}
if in.UpdateTime != nil {
in, out := &in.UpdateTime, &out.UpdateTime
*out = new(string)
**out = **in
}
if in.DeleteTime != nil {
in, out := &in.DeleteTime, &out.DeleteTime
*out = new(string)
**out = **in
}
if in.ExpireTime != nil {
in, out := &in.ExpireTime, &out.ExpireTime
*out = new(string)
**out = **in
}
if in.Etag != nil {
in, out := &in.Etag, &out.Etag
*out = new(string)
**out = **in
}
if in.Reconciling != nil {
in, out := &in.Reconciling, &out.Reconciling
*out = new(bool)
**out = **in
}
if in.KMSKeyName != nil {
in, out := &in.KMSKeyName, &out.KMSKeyName
*out = new(string)
**out = **in
}
if in.KMSKeyVersionName != nil {
in, out := &in.KMSKeyVersionName, &out.KMSKeyVersionName
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpeechRecognizerObservedState.
func (in *SpeechRecognizerObservedState) DeepCopy() *SpeechRecognizerObservedState {
if in == nil {
return nil
}
out := new(SpeechRecognizerObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SpeechRecognizerSpec) DeepCopyInto(out *SpeechRecognizerSpec) {
*out = *in
if in.ResourceID != nil {
in, out := &in.ResourceID, &out.ResourceID
*out = new(string)
**out = **in
}
in.Parent.DeepCopyInto(&out.Parent)
if in.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
if in.Model != nil {
in, out := &in.Model, &out.Model
*out = new(string)
**out = **in
}
if in.LanguageCodes != nil {
in, out := &in.LanguageCodes, &out.LanguageCodes
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.DefaultRecognitionConfig != nil {
in, out := &in.DefaultRecognitionConfig, &out.DefaultRecognitionConfig
*out = new(RecognitionConfig)
(*in).DeepCopyInto(*out)
}
if in.Annotations != nil {
in, out := &in.Annotations, &out.Annotations
*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 SpeechRecognizerSpec.
func (in *SpeechRecognizerSpec) DeepCopy() *SpeechRecognizerSpec {
if in == nil {
return nil
}
out := new(SpeechRecognizerSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SpeechRecognizerStatus) DeepCopyInto(out *SpeechRecognizerStatus) {
*out = *in
if in.Conditions != nil {
in, out := &in.Conditions, &out.Conditions
*out = make([]k8sv1alpha1.Condition, len(*in))
copy(*out, *in)
}
if in.ObservedGeneration != nil {
in, out := &in.ObservedGeneration, &out.ObservedGeneration
*out = new(int64)
**out = **in
}
if in.ExternalRef != nil {
in, out := &in.ExternalRef, &out.ExternalRef
*out = new(string)
**out = **in
}
if in.ObservedState != nil {
in, out := &in.ObservedState, &out.ObservedState
*out = new(SpeechRecognizerObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SpeechRecognizerStatus.
func (in *SpeechRecognizerStatus) DeepCopy() *SpeechRecognizerStatus {
if in == nil {
return nil
}
out := new(SpeechRecognizerStatus)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TranscriptNormalization) DeepCopyInto(out *TranscriptNormalization) {
*out = *in
if in.Entries != nil {
in, out := &in.Entries, &out.Entries
*out = make([]TranscriptNormalization_Entry, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TranscriptNormalization.
func (in *TranscriptNormalization) DeepCopy() *TranscriptNormalization {
if in == nil {
return nil
}
out := new(TranscriptNormalization)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TranscriptNormalization_Entry) DeepCopyInto(out *TranscriptNormalization_Entry) {
*out = *in
if in.Search != nil {
in, out := &in.Search, &out.Search
*out = new(string)
**out = **in
}
if in.Replace != nil {
in, out := &in.Replace, &out.Replace
*out = new(string)
**out = **in
}
if in.CaseSensitive != nil {
in, out := &in.CaseSensitive, &out.CaseSensitive
*out = new(bool)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TranscriptNormalization_Entry.
func (in *TranscriptNormalization_Entry) DeepCopy() *TranscriptNormalization_Entry {
if in == nil {
return nil
}
out := new(TranscriptNormalization_Entry)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TranslationConfig) DeepCopyInto(out *TranslationConfig) {
*out = *in
if in.TargetLanguage != nil {
in, out := &in.TargetLanguage, &out.TargetLanguage
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TranslationConfig.
func (in *TranslationConfig) DeepCopy() *TranslationConfig {
if in == nil {
return nil
}
out := new(TranslationConfig)
in.DeepCopyInto(out)
return out
}