mirror of
https://github.com/prometheus-operator/prometheus-operator.git
synced 2025-04-16 09:16:38 +00:00
--------- Signed-off-by: dongjiang1989 <dongjiang1989@126.com> Co-authored-by: Simon Pasquier <spasquie@redhat.com>
39 lines
1.7 KiB
Go
39 lines
1.7 KiB
Go
// Copyright The prometheus-operator Authors
|
|
//
|
|
// 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 applyconfiguration-gen. DO NOT EDIT.
|
|
|
|
package v1
|
|
|
|
// OTLPConfigApplyConfiguration represents an declarative configuration of the OTLPConfig type for use
|
|
// with apply.
|
|
type OTLPConfigApplyConfiguration struct {
|
|
PromoteResourceAttributes []string `json:"promoteResourceAttributes,omitempty"`
|
|
}
|
|
|
|
// OTLPConfigApplyConfiguration constructs an declarative configuration of the OTLPConfig type for use with
|
|
// apply.
|
|
func OTLPConfig() *OTLPConfigApplyConfiguration {
|
|
return &OTLPConfigApplyConfiguration{}
|
|
}
|
|
|
|
// WithPromoteResourceAttributes adds the given value to the PromoteResourceAttributes field in the declarative configuration
|
|
// and returns the receiver, so that objects can be build by chaining "With" function invocations.
|
|
// If called multiple times, values provided by each call will be appended to the PromoteResourceAttributes field.
|
|
func (b *OTLPConfigApplyConfiguration) WithPromoteResourceAttributes(values ...string) *OTLPConfigApplyConfiguration {
|
|
for i := range values {
|
|
b.PromoteResourceAttributes = append(b.PromoteResourceAttributes, values[i])
|
|
}
|
|
return b
|
|
}
|