mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 19:12:12 +08:00

Co-authored-by: Mariell Hoversholm <mariell.hoversholm@grafana.com> Co-authored-by: Roberto Jimenez Sanchez <roberto.jimenez@grafana.com>
46 lines
1.9 KiB
Go
46 lines
1.9 KiB
Go
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
// Code generated by applyconfiguration-gen. DO NOT EDIT.
|
|
|
|
package v0alpha1
|
|
|
|
// HealthStatusApplyConfiguration represents a declarative configuration of the HealthStatus type for use
|
|
// with apply.
|
|
type HealthStatusApplyConfiguration struct {
|
|
Healthy *bool `json:"healthy,omitempty"`
|
|
Checked *int64 `json:"checked,omitempty"`
|
|
Message []string `json:"message,omitempty"`
|
|
}
|
|
|
|
// HealthStatusApplyConfiguration constructs a declarative configuration of the HealthStatus type for use with
|
|
// apply.
|
|
func HealthStatus() *HealthStatusApplyConfiguration {
|
|
return &HealthStatusApplyConfiguration{}
|
|
}
|
|
|
|
// WithHealthy sets the Healthy field in the declarative configuration to the given value
|
|
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
|
// If called multiple times, the Healthy field is set to the value of the last call.
|
|
func (b *HealthStatusApplyConfiguration) WithHealthy(value bool) *HealthStatusApplyConfiguration {
|
|
b.Healthy = &value
|
|
return b
|
|
}
|
|
|
|
// WithChecked sets the Checked field in the declarative configuration to the given value
|
|
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
|
// If called multiple times, the Checked field is set to the value of the last call.
|
|
func (b *HealthStatusApplyConfiguration) WithChecked(value int64) *HealthStatusApplyConfiguration {
|
|
b.Checked = &value
|
|
return b
|
|
}
|
|
|
|
// WithMessage adds the given value to the Message 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 Message field.
|
|
func (b *HealthStatusApplyConfiguration) WithMessage(values ...string) *HealthStatusApplyConfiguration {
|
|
for i := range values {
|
|
b.Message = append(b.Message, values[i])
|
|
}
|
|
return b
|
|
}
|