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 v1 20 21 // QuobyteVolumeSourceApplyConfiguration represents an declarative configuration of the QuobyteVolumeSource type for use 22 // with apply. 23 type QuobyteVolumeSourceApplyConfiguration struct { 24 Registry *string `json:"registry,omitempty"` 25 Volume *string `json:"volume,omitempty"` 26 ReadOnly *bool `json:"readOnly,omitempty"` 27 User *string `json:"user,omitempty"` 28 Group *string `json:"group,omitempty"` 29 Tenant *string `json:"tenant,omitempty"` 30 } 31 32 // QuobyteVolumeSourceApplyConfiguration constructs an declarative configuration of the QuobyteVolumeSource type for use with 33 // apply. 34 func QuobyteVolumeSource() *QuobyteVolumeSourceApplyConfiguration { 35 return &QuobyteVolumeSourceApplyConfiguration{} 36 } 37 38 // WithRegistry sets the Registry 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 Registry field is set to the value of the last call. 41 func (b *QuobyteVolumeSourceApplyConfiguration) WithRegistry(value string) *QuobyteVolumeSourceApplyConfiguration { 42 b.Registry = &value 43 return b 44 } 45 46 // WithVolume sets the Volume 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 Volume field is set to the value of the last call. 49 func (b *QuobyteVolumeSourceApplyConfiguration) WithVolume(value string) *QuobyteVolumeSourceApplyConfiguration { 50 b.Volume = &value 51 return b 52 } 53 54 // WithReadOnly sets the ReadOnly 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 ReadOnly field is set to the value of the last call. 57 func (b *QuobyteVolumeSourceApplyConfiguration) WithReadOnly(value bool) *QuobyteVolumeSourceApplyConfiguration { 58 b.ReadOnly = &value 59 return b 60 } 61 62 // WithUser sets the User 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 User field is set to the value of the last call. 65 func (b *QuobyteVolumeSourceApplyConfiguration) WithUser(value string) *QuobyteVolumeSourceApplyConfiguration { 66 b.User = &value 67 return b 68 } 69 70 // WithGroup sets the Group 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 Group field is set to the value of the last call. 73 func (b *QuobyteVolumeSourceApplyConfiguration) WithGroup(value string) *QuobyteVolumeSourceApplyConfiguration { 74 b.Group = &value 75 return b 76 } 77 78 // WithTenant sets the Tenant 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 Tenant field is set to the value of the last call. 81 func (b *QuobyteVolumeSourceApplyConfiguration) WithTenant(value string) *QuobyteVolumeSourceApplyConfiguration { 82 b.Tenant = &value 83 return b 84 } 85