// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1alpha1 // RetentionNumberConfigApplyConfiguration represents an declarative configuration of the RetentionNumberConfig type for use // with apply. type RetentionNumberConfigApplyConfiguration struct { MaxNumberOfBackups *int `json:"maxNumberOfBackups,omitempty"` } // RetentionNumberConfigApplyConfiguration constructs an declarative configuration of the RetentionNumberConfig type for use with // apply. func RetentionNumberConfig() *RetentionNumberConfigApplyConfiguration { return &RetentionNumberConfigApplyConfiguration{} } // WithMaxNumberOfBackups sets the MaxNumberOfBackups 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 MaxNumberOfBackups field is set to the value of the last call. func (b *RetentionNumberConfigApplyConfiguration) WithMaxNumberOfBackups(value int) *RetentionNumberConfigApplyConfiguration { b.MaxNumberOfBackups = &value return b }