mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
383d92e9ab
* pbhcp: add TelemetryState resource * agent/hcp: add GetObservabilitySecrets to client * internal/hcp: add TelemetryState controller logic * hcp/telemetry-state: added config options for hcp sdk and debug key to skip deletion during reconcile * pbhcp: update proto documentation * hcp: address PR feedback, additional validations and code cleanup * internal/hcp: fix type sig change in test * update testdata/v2-resource-dependencies
28 lines
805 B
Go
28 lines
805 B
Go
// Code generated by protoc-gen-deepcopy. DO NOT EDIT.
|
|
package hcpv2
|
|
|
|
import (
|
|
proto "google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
// DeepCopyInto supports using HCPConfig within kubernetes types, where deepcopy-gen is used.
|
|
func (in *HCPConfig) DeepCopyInto(out *HCPConfig) {
|
|
proto.Reset(out)
|
|
proto.Merge(out, proto.Clone(in))
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HCPConfig. Required by controller-gen.
|
|
func (in *HCPConfig) DeepCopy() *HCPConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(HCPConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new HCPConfig. Required by controller-gen.
|
|
func (in *HCPConfig) DeepCopyInterface() interface{} {
|
|
return in.DeepCopy()
|
|
}
|