123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /*
- Copyright The Kubernetes Authors.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- // Code generated by applyconfiguration-gen. DO NOT EDIT.
- package v1beta1
- import (
- v1beta1 "k8s.io/api/storage/v1beta1"
- )
- // CSIDriverSpecApplyConfiguration represents an declarative configuration of the CSIDriverSpec type for use
- // with apply.
- type CSIDriverSpecApplyConfiguration struct {
- AttachRequired *bool `json:"attachRequired,omitempty"`
- PodInfoOnMount *bool `json:"podInfoOnMount,omitempty"`
- VolumeLifecycleModes []v1beta1.VolumeLifecycleMode `json:"volumeLifecycleModes,omitempty"`
- StorageCapacity *bool `json:"storageCapacity,omitempty"`
- FSGroupPolicy *v1beta1.FSGroupPolicy `json:"fsGroupPolicy,omitempty"`
- TokenRequests []TokenRequestApplyConfiguration `json:"tokenRequests,omitempty"`
- RequiresRepublish *bool `json:"requiresRepublish,omitempty"`
- SELinuxMount *bool `json:"seLinuxMount,omitempty"`
- }
- // CSIDriverSpecApplyConfiguration constructs an declarative configuration of the CSIDriverSpec type for use with
- // apply.
- func CSIDriverSpec() *CSIDriverSpecApplyConfiguration {
- return &CSIDriverSpecApplyConfiguration{}
- }
- // WithAttachRequired sets the AttachRequired 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 AttachRequired field is set to the value of the last call.
- func (b *CSIDriverSpecApplyConfiguration) WithAttachRequired(value bool) *CSIDriverSpecApplyConfiguration {
- b.AttachRequired = &value
- return b
- }
- // WithPodInfoOnMount sets the PodInfoOnMount 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 PodInfoOnMount field is set to the value of the last call.
- func (b *CSIDriverSpecApplyConfiguration) WithPodInfoOnMount(value bool) *CSIDriverSpecApplyConfiguration {
- b.PodInfoOnMount = &value
- return b
- }
- // WithVolumeLifecycleModes adds the given value to the VolumeLifecycleModes 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 VolumeLifecycleModes field.
- func (b *CSIDriverSpecApplyConfiguration) WithVolumeLifecycleModes(values ...v1beta1.VolumeLifecycleMode) *CSIDriverSpecApplyConfiguration {
- for i := range values {
- b.VolumeLifecycleModes = append(b.VolumeLifecycleModes, values[i])
- }
- return b
- }
- // WithStorageCapacity sets the StorageCapacity 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 StorageCapacity field is set to the value of the last call.
- func (b *CSIDriverSpecApplyConfiguration) WithStorageCapacity(value bool) *CSIDriverSpecApplyConfiguration {
- b.StorageCapacity = &value
- return b
- }
- // WithFSGroupPolicy sets the FSGroupPolicy 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 FSGroupPolicy field is set to the value of the last call.
- func (b *CSIDriverSpecApplyConfiguration) WithFSGroupPolicy(value v1beta1.FSGroupPolicy) *CSIDriverSpecApplyConfiguration {
- b.FSGroupPolicy = &value
- return b
- }
- // WithTokenRequests adds the given value to the TokenRequests 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 TokenRequests field.
- func (b *CSIDriverSpecApplyConfiguration) WithTokenRequests(values ...*TokenRequestApplyConfiguration) *CSIDriverSpecApplyConfiguration {
- for i := range values {
- if values[i] == nil {
- panic("nil value passed to WithTokenRequests")
- }
- b.TokenRequests = append(b.TokenRequests, *values[i])
- }
- return b
- }
- // WithRequiresRepublish sets the RequiresRepublish 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 RequiresRepublish field is set to the value of the last call.
- func (b *CSIDriverSpecApplyConfiguration) WithRequiresRepublish(value bool) *CSIDriverSpecApplyConfiguration {
- b.RequiresRepublish = &value
- return b
- }
- // WithSELinuxMount sets the SELinuxMount 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 SELinuxMount field is set to the value of the last call.
- func (b *CSIDriverSpecApplyConfiguration) WithSELinuxMount(value bool) *CSIDriverSpecApplyConfiguration {
- b.SELinuxMount = &value
- return b
- }
|