ingressbackend.go 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. Copyright The Kubernetes Authors.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. // Code generated by applyconfiguration-gen. DO NOT EDIT.
  14. package v1beta1
  15. import (
  16. intstr "k8s.io/apimachinery/pkg/util/intstr"
  17. v1 "k8s.io/client-go/applyconfigurations/core/v1"
  18. )
  19. // IngressBackendApplyConfiguration represents an declarative configuration of the IngressBackend type for use
  20. // with apply.
  21. type IngressBackendApplyConfiguration struct {
  22. ServiceName *string `json:"serviceName,omitempty"`
  23. ServicePort *intstr.IntOrString `json:"servicePort,omitempty"`
  24. Resource *v1.TypedLocalObjectReferenceApplyConfiguration `json:"resource,omitempty"`
  25. }
  26. // IngressBackendApplyConfiguration constructs an declarative configuration of the IngressBackend type for use with
  27. // apply.
  28. func IngressBackend() *IngressBackendApplyConfiguration {
  29. return &IngressBackendApplyConfiguration{}
  30. }
  31. // WithServiceName sets the ServiceName field in the declarative configuration to the given value
  32. // and returns the receiver, so that objects can be built by chaining "With" function invocations.
  33. // If called multiple times, the ServiceName field is set to the value of the last call.
  34. func (b *IngressBackendApplyConfiguration) WithServiceName(value string) *IngressBackendApplyConfiguration {
  35. b.ServiceName = &value
  36. return b
  37. }
  38. // WithServicePort sets the ServicePort field in the declarative configuration to the given value
  39. // and returns the receiver, so that objects can be built by chaining "With" function invocations.
  40. // If called multiple times, the ServicePort field is set to the value of the last call.
  41. func (b *IngressBackendApplyConfiguration) WithServicePort(value intstr.IntOrString) *IngressBackendApplyConfiguration {
  42. b.ServicePort = &value
  43. return b
  44. }
  45. // WithResource sets the Resource field in the declarative configuration to the given value
  46. // and returns the receiver, so that objects can be built by chaining "With" function invocations.
  47. // If called multiple times, the Resource field is set to the value of the last call.
  48. func (b *IngressBackendApplyConfiguration) WithResource(value *v1.TypedLocalObjectReferenceApplyConfiguration) *IngressBackendApplyConfiguration {
  49. b.Resource = value
  50. return b
  51. }