AlterConfigsRequest is an alter config request type
| 2 | |
| 3 | // AlterConfigsRequest is an alter config request type |
| 4 | type AlterConfigsRequest struct { |
| 5 | Version int16 |
| 6 | Resources []*AlterConfigsResource |
| 7 | ValidateOnly bool |
| 8 | } |
| 9 | |
| 10 | func (a *AlterConfigsRequest) setVersion(v int16) { |
| 11 | a.Version = v |
nothing calls this directly
no outgoing calls
no test coverage detected