mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 13:55:55 +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
70 lines
2.2 KiB
Go
70 lines
2.2 KiB
Go
// Code generated by protoc-gen-deepcopy. DO NOT EDIT.
|
|
package hcpv2
|
|
|
|
import (
|
|
proto "google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
// DeepCopyInto supports using TelemetryState within kubernetes types, where deepcopy-gen is used.
|
|
func (in *TelemetryState) DeepCopyInto(out *TelemetryState) {
|
|
proto.Reset(out)
|
|
proto.Merge(out, proto.Clone(in))
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TelemetryState. Required by controller-gen.
|
|
func (in *TelemetryState) DeepCopy() *TelemetryState {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(TelemetryState)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new TelemetryState. Required by controller-gen.
|
|
func (in *TelemetryState) DeepCopyInterface() interface{} {
|
|
return in.DeepCopy()
|
|
}
|
|
|
|
// DeepCopyInto supports using MetricsConfig within kubernetes types, where deepcopy-gen is used.
|
|
func (in *MetricsConfig) DeepCopyInto(out *MetricsConfig) {
|
|
proto.Reset(out)
|
|
proto.Merge(out, proto.Clone(in))
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MetricsConfig. Required by controller-gen.
|
|
func (in *MetricsConfig) DeepCopy() *MetricsConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(MetricsConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new MetricsConfig. Required by controller-gen.
|
|
func (in *MetricsConfig) DeepCopyInterface() interface{} {
|
|
return in.DeepCopy()
|
|
}
|
|
|
|
// DeepCopyInto supports using ProxyConfig within kubernetes types, where deepcopy-gen is used.
|
|
func (in *ProxyConfig) DeepCopyInto(out *ProxyConfig) {
|
|
proto.Reset(out)
|
|
proto.Merge(out, proto.Clone(in))
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProxyConfig. Required by controller-gen.
|
|
func (in *ProxyConfig) DeepCopy() *ProxyConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ProxyConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new ProxyConfig. Required by controller-gen.
|
|
func (in *ProxyConfig) DeepCopyInterface() interface{} {
|
|
return in.DeepCopy()
|
|
}
|