1/*
2Copyright The Kubernetes Authors.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8    http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17// Code generated by applyconfiguration-gen. DO NOT EDIT.
18
19package v1
20
21import (
22	v1 "k8s.io/api/core/v1"
23	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
24)
25
26// PersistentVolumeClaimConditionApplyConfiguration represents an declarative configuration of the PersistentVolumeClaimCondition type for use
27// with apply.
28type PersistentVolumeClaimConditionApplyConfiguration struct {
29	Type               *v1.PersistentVolumeClaimConditionType `json:"type,omitempty"`
30	Status             *v1.ConditionStatus                    `json:"status,omitempty"`
31	LastProbeTime      *metav1.Time                           `json:"lastProbeTime,omitempty"`
32	LastTransitionTime *metav1.Time                           `json:"lastTransitionTime,omitempty"`
33	Reason             *string                                `json:"reason,omitempty"`
34	Message            *string                                `json:"message,omitempty"`
35}
36
37// PersistentVolumeClaimConditionApplyConfiguration constructs an declarative configuration of the PersistentVolumeClaimCondition type for use with
38// apply.
39func PersistentVolumeClaimCondition() *PersistentVolumeClaimConditionApplyConfiguration {
40	return &PersistentVolumeClaimConditionApplyConfiguration{}
41}
42
43// WithType sets the Type field in the declarative configuration to the given value
44// and returns the receiver, so that objects can be built by chaining "With" function invocations.
45// If called multiple times, the Type field is set to the value of the last call.
46func (b *PersistentVolumeClaimConditionApplyConfiguration) WithType(value v1.PersistentVolumeClaimConditionType) *PersistentVolumeClaimConditionApplyConfiguration {
47	b.Type = &value
48	return b
49}
50
51// WithStatus sets the Status field in the declarative configuration to the given value
52// and returns the receiver, so that objects can be built by chaining "With" function invocations.
53// If called multiple times, the Status field is set to the value of the last call.
54func (b *PersistentVolumeClaimConditionApplyConfiguration) WithStatus(value v1.ConditionStatus) *PersistentVolumeClaimConditionApplyConfiguration {
55	b.Status = &value
56	return b
57}
58
59// WithLastProbeTime sets the LastProbeTime field in the declarative configuration to the given value
60// and returns the receiver, so that objects can be built by chaining "With" function invocations.
61// If called multiple times, the LastProbeTime field is set to the value of the last call.
62func (b *PersistentVolumeClaimConditionApplyConfiguration) WithLastProbeTime(value metav1.Time) *PersistentVolumeClaimConditionApplyConfiguration {
63	b.LastProbeTime = &value
64	return b
65}
66
67// WithLastTransitionTime sets the LastTransitionTime field in the declarative configuration to the given value
68// and returns the receiver, so that objects can be built by chaining "With" function invocations.
69// If called multiple times, the LastTransitionTime field is set to the value of the last call.
70func (b *PersistentVolumeClaimConditionApplyConfiguration) WithLastTransitionTime(value metav1.Time) *PersistentVolumeClaimConditionApplyConfiguration {
71	b.LastTransitionTime = &value
72	return b
73}
74
75// WithReason sets the Reason field in the declarative configuration to the given value
76// and returns the receiver, so that objects can be built by chaining "With" function invocations.
77// If called multiple times, the Reason field is set to the value of the last call.
78func (b *PersistentVolumeClaimConditionApplyConfiguration) WithReason(value string) *PersistentVolumeClaimConditionApplyConfiguration {
79	b.Reason = &value
80	return b
81}
82
83// WithMessage sets the Message field in the declarative configuration to the given value
84// and returns the receiver, so that objects can be built by chaining "With" function invocations.
85// If called multiple times, the Message field is set to the value of the last call.
86func (b *PersistentVolumeClaimConditionApplyConfiguration) WithMessage(value string) *PersistentVolumeClaimConditionApplyConfiguration {
87	b.Message = &value
88	return b
89}
90