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 v1beta1 20 21 // CustomResourceColumnDefinitionApplyConfiguration represents an declarative configuration of the CustomResourceColumnDefinition type for use 22 // with apply. 23 type CustomResourceColumnDefinitionApplyConfiguration struct { 24 Name *string `json:"name,omitempty"` 25 Type *string `json:"type,omitempty"` 26 Format *string `json:"format,omitempty"` 27 Description *string `json:"description,omitempty"` 28 Priority *int32 `json:"priority,omitempty"` 29 JSONPath *string `json:"JSONPath,omitempty"` 30 } 31 32 // CustomResourceColumnDefinitionApplyConfiguration constructs an declarative configuration of the CustomResourceColumnDefinition type for use with 33 // apply. 34 func CustomResourceColumnDefinition() *CustomResourceColumnDefinitionApplyConfiguration { 35 return &CustomResourceColumnDefinitionApplyConfiguration{} 36 } 37 38 // WithName sets the Name 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 Name field is set to the value of the last call. 41 func (b *CustomResourceColumnDefinitionApplyConfiguration) WithName(value string) *CustomResourceColumnDefinitionApplyConfiguration { 42 b.Name = &value 43 return b 44 } 45 46 // WithType sets the Type field in the declarative configuration to the given value 47 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 48 // If called multiple times, the Type field is set to the value of the last call. 49 func (b *CustomResourceColumnDefinitionApplyConfiguration) WithType(value string) *CustomResourceColumnDefinitionApplyConfiguration { 50 b.Type = &value 51 return b 52 } 53 54 // WithFormat sets the Format field in the declarative configuration to the given value 55 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 56 // If called multiple times, the Format field is set to the value of the last call. 57 func (b *CustomResourceColumnDefinitionApplyConfiguration) WithFormat(value string) *CustomResourceColumnDefinitionApplyConfiguration { 58 b.Format = &value 59 return b 60 } 61 62 // WithDescription sets the Description field in the declarative configuration to the given value 63 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 64 // If called multiple times, the Description field is set to the value of the last call. 65 func (b *CustomResourceColumnDefinitionApplyConfiguration) WithDescription(value string) *CustomResourceColumnDefinitionApplyConfiguration { 66 b.Description = &value 67 return b 68 } 69 70 // WithPriority sets the Priority field in the declarative configuration to the given value 71 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 72 // If called multiple times, the Priority field is set to the value of the last call. 73 func (b *CustomResourceColumnDefinitionApplyConfiguration) WithPriority(value int32) *CustomResourceColumnDefinitionApplyConfiguration { 74 b.Priority = &value 75 return b 76 } 77 78 // WithJSONPath sets the JSONPath field in the declarative configuration to the given value 79 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 80 // If called multiple times, the JSONPath field is set to the value of the last call. 81 func (b *CustomResourceColumnDefinitionApplyConfiguration) WithJSONPath(value string) *CustomResourceColumnDefinitionApplyConfiguration { 82 b.JSONPath = &value 83 return b 84 } 85