We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 75afbcb + 10a729f commit bf1ff42Copy full SHA for bf1ff42
exp/ipam/api/v1alpha1/ipaddressclaim_types.go
@@ -55,6 +55,16 @@ type IPAddressClaim struct {
55
Status IPAddressClaimStatus `json:"status,omitempty"`
56
}
57
58
+// GetConditions returns the set of conditions for this object.
59
+func (m *IPAddressClaim) GetConditions() clusterv1.Conditions {
60
+ return m.Status.Conditions
61
+}
62
+
63
+// SetConditions sets the conditions on this object.
64
+func (m *IPAddressClaim) SetConditions(conditions clusterv1.Conditions) {
65
+ m.Status.Conditions = conditions
66
67
68
// +kubebuilder:object:root=true
69
70
// IPAddressClaimList is a list of IPAddressClaims.
0 commit comments