1 /* 2 Copyright The Kubernetes Authors. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 // Code generated by applyconfiguration-gen. DO NOT EDIT. 18 19 package v2beta1 20 21 import ( 22 resource "k8s.io/apimachinery/pkg/api/resource" 23 v1 "k8s.io/client-go/applyconfigurations/meta/v1" 24 ) 25 26 // ObjectMetricStatusApplyConfiguration represents an declarative configuration of the ObjectMetricStatus type for use 27 // with apply. 28 type ObjectMetricStatusApplyConfiguration struct { 29 Target *CrossVersionObjectReferenceApplyConfiguration `json:"target,omitempty"` 30 MetricName *string `json:"metricName,omitempty"` 31 CurrentValue *resource.Quantity `json:"currentValue,omitempty"` 32 Selector *v1.LabelSelectorApplyConfiguration `json:"selector,omitempty"` 33 AverageValue *resource.Quantity `json:"averageValue,omitempty"` 34 } 35 36 // ObjectMetricStatusApplyConfiguration constructs an declarative configuration of the ObjectMetricStatus type for use with 37 // apply. 38 func ObjectMetricStatus() *ObjectMetricStatusApplyConfiguration { 39 return &ObjectMetricStatusApplyConfiguration{} 40 } 41 42 // WithTarget sets the Target field in the declarative configuration to the given value 43 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 44 // If called multiple times, the Target field is set to the value of the last call. 45 func (b *ObjectMetricStatusApplyConfiguration) WithTarget(value *CrossVersionObjectReferenceApplyConfiguration) *ObjectMetricStatusApplyConfiguration { 46 b.Target = value 47 return b 48 } 49 50 // WithMetricName sets the MetricName field in the declarative configuration to the given value 51 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 52 // If called multiple times, the MetricName field is set to the value of the last call. 53 func (b *ObjectMetricStatusApplyConfiguration) WithMetricName(value string) *ObjectMetricStatusApplyConfiguration { 54 b.MetricName = &value 55 return b 56 } 57 58 // WithCurrentValue sets the CurrentValue field in the declarative configuration to the given value 59 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 60 // If called multiple times, the CurrentValue field is set to the value of the last call. 61 func (b *ObjectMetricStatusApplyConfiguration) WithCurrentValue(value resource.Quantity) *ObjectMetricStatusApplyConfiguration { 62 b.CurrentValue = &value 63 return b 64 } 65 66 // WithSelector sets the Selector field in the declarative configuration to the given value 67 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 68 // If called multiple times, the Selector field is set to the value of the last call. 69 func (b *ObjectMetricStatusApplyConfiguration) WithSelector(value *v1.LabelSelectorApplyConfiguration) *ObjectMetricStatusApplyConfiguration { 70 b.Selector = value 71 return b 72 } 73 74 // WithAverageValue sets the AverageValue field in the declarative configuration to the given value 75 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 76 // If called multiple times, the AverageValue field is set to the value of the last call. 77 func (b *ObjectMetricStatusApplyConfiguration) WithAverageValue(value resource.Quantity) *ObjectMetricStatusApplyConfiguration { 78 b.AverageValue = &value 79 return b 80 } 81