mirror of
https://github.com/kubernetes/client-go.git
synced 2026-02-21 23:53:16 +00:00
289 lines
16 KiB
Go
289 lines
16 KiB
Go
/*
|
|
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 v1
|
|
|
|
// VolumeApplyConfiguration represents a declarative configuration of the Volume type for use
|
|
// with apply.
|
|
//
|
|
// Volume represents a named volume in a pod that may be accessed by any container in the pod.
|
|
type VolumeApplyConfiguration struct {
|
|
// name of the volume.
|
|
// Must be a DNS_LABEL and unique within the pod.
|
|
// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
|
|
Name *string `json:"name,omitempty"`
|
|
// volumeSource represents the location and type of the mounted volume.
|
|
// If not specified, the Volume is implied to be an EmptyDir.
|
|
// This implied behavior is deprecated and will be removed in a future version.
|
|
VolumeSourceApplyConfiguration `json:",inline"`
|
|
}
|
|
|
|
// VolumeApplyConfiguration constructs a declarative configuration of the Volume type for use with
|
|
// apply.
|
|
func Volume() *VolumeApplyConfiguration {
|
|
return &VolumeApplyConfiguration{}
|
|
}
|
|
|
|
// WithName sets the Name 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 Name field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithName(value string) *VolumeApplyConfiguration {
|
|
b.Name = &value
|
|
return b
|
|
}
|
|
|
|
// WithHostPath sets the HostPath 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 HostPath field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithHostPath(value *HostPathVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.HostPath = value
|
|
return b
|
|
}
|
|
|
|
// WithEmptyDir sets the EmptyDir 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 EmptyDir field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithEmptyDir(value *EmptyDirVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.EmptyDir = value
|
|
return b
|
|
}
|
|
|
|
// WithGCEPersistentDisk sets the GCEPersistentDisk 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 GCEPersistentDisk field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithGCEPersistentDisk(value *GCEPersistentDiskVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.GCEPersistentDisk = value
|
|
return b
|
|
}
|
|
|
|
// WithAWSElasticBlockStore sets the AWSElasticBlockStore 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 AWSElasticBlockStore field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithAWSElasticBlockStore(value *AWSElasticBlockStoreVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.AWSElasticBlockStore = value
|
|
return b
|
|
}
|
|
|
|
// WithGitRepo sets the GitRepo 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 GitRepo field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithGitRepo(value *GitRepoVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.GitRepo = value
|
|
return b
|
|
}
|
|
|
|
// WithSecret sets the Secret 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 Secret field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithSecret(value *SecretVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.Secret = value
|
|
return b
|
|
}
|
|
|
|
// WithNFS sets the NFS 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 NFS field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithNFS(value *NFSVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.NFS = value
|
|
return b
|
|
}
|
|
|
|
// WithISCSI sets the ISCSI 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 ISCSI field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithISCSI(value *ISCSIVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.ISCSI = value
|
|
return b
|
|
}
|
|
|
|
// WithGlusterfs sets the Glusterfs 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 Glusterfs field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithGlusterfs(value *GlusterfsVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.Glusterfs = value
|
|
return b
|
|
}
|
|
|
|
// WithPersistentVolumeClaim sets the PersistentVolumeClaim 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 PersistentVolumeClaim field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithPersistentVolumeClaim(value *PersistentVolumeClaimVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.PersistentVolumeClaim = value
|
|
return b
|
|
}
|
|
|
|
// WithRBD sets the RBD 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 RBD field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithRBD(value *RBDVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.RBD = value
|
|
return b
|
|
}
|
|
|
|
// WithFlexVolume sets the FlexVolume 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 FlexVolume field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithFlexVolume(value *FlexVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.FlexVolume = value
|
|
return b
|
|
}
|
|
|
|
// WithCinder sets the Cinder 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 Cinder field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithCinder(value *CinderVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.Cinder = value
|
|
return b
|
|
}
|
|
|
|
// WithCephFS sets the CephFS 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 CephFS field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithCephFS(value *CephFSVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.CephFS = value
|
|
return b
|
|
}
|
|
|
|
// WithFlocker sets the Flocker 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 Flocker field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithFlocker(value *FlockerVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.Flocker = value
|
|
return b
|
|
}
|
|
|
|
// WithDownwardAPI sets the DownwardAPI 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 DownwardAPI field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithDownwardAPI(value *DownwardAPIVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.DownwardAPI = value
|
|
return b
|
|
}
|
|
|
|
// WithFC sets the FC 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 FC field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithFC(value *FCVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.FC = value
|
|
return b
|
|
}
|
|
|
|
// WithAzureFile sets the AzureFile 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 AzureFile field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithAzureFile(value *AzureFileVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.AzureFile = value
|
|
return b
|
|
}
|
|
|
|
// WithConfigMap sets the ConfigMap 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 ConfigMap field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithConfigMap(value *ConfigMapVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.ConfigMap = value
|
|
return b
|
|
}
|
|
|
|
// WithVsphereVolume sets the VsphereVolume 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 VsphereVolume field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithVsphereVolume(value *VsphereVirtualDiskVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.VsphereVolume = value
|
|
return b
|
|
}
|
|
|
|
// WithQuobyte sets the Quobyte 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 Quobyte field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithQuobyte(value *QuobyteVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.Quobyte = value
|
|
return b
|
|
}
|
|
|
|
// WithAzureDisk sets the AzureDisk 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 AzureDisk field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithAzureDisk(value *AzureDiskVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.AzureDisk = value
|
|
return b
|
|
}
|
|
|
|
// WithPhotonPersistentDisk sets the PhotonPersistentDisk 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 PhotonPersistentDisk field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithPhotonPersistentDisk(value *PhotonPersistentDiskVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.PhotonPersistentDisk = value
|
|
return b
|
|
}
|
|
|
|
// WithProjected sets the Projected 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 Projected field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithProjected(value *ProjectedVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.Projected = value
|
|
return b
|
|
}
|
|
|
|
// WithPortworxVolume sets the PortworxVolume 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 PortworxVolume field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithPortworxVolume(value *PortworxVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.PortworxVolume = value
|
|
return b
|
|
}
|
|
|
|
// WithScaleIO sets the ScaleIO 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 ScaleIO field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithScaleIO(value *ScaleIOVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.ScaleIO = value
|
|
return b
|
|
}
|
|
|
|
// WithStorageOS sets the StorageOS 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 StorageOS field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithStorageOS(value *StorageOSVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.StorageOS = value
|
|
return b
|
|
}
|
|
|
|
// WithCSI sets the CSI 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 CSI field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithCSI(value *CSIVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.CSI = value
|
|
return b
|
|
}
|
|
|
|
// WithEphemeral sets the Ephemeral 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 Ephemeral field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithEphemeral(value *EphemeralVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.Ephemeral = value
|
|
return b
|
|
}
|
|
|
|
// WithImage sets the Image 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 Image field is set to the value of the last call.
|
|
func (b *VolumeApplyConfiguration) WithImage(value *ImageVolumeSourceApplyConfiguration) *VolumeApplyConfiguration {
|
|
b.VolumeSourceApplyConfiguration.Image = value
|
|
return b
|
|
}
|