Currently all ServiceClient methods erroneously add the Nova microversion header: https://github.com/gophercloud/gophercloud/blob/master/service_client.go#L52
Currently, I don't think there's a good way to know what type of ServiceClient the user has. One option would be to add a Type field to ServiceClient and switch on it in the (not yet existing) ServiceClient Request method.
Currently all
ServiceClientmethods erroneously add the Nova microversion header: https://github.com/gophercloud/gophercloud/blob/master/service_client.go#L52Currently, I don't think there's a good way to know what type of
ServiceClientthe user has. One option would be to add aTypefield toServiceClientand switch on it in the (not yet existing)ServiceClientRequestmethod.