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