Deprecate and remove `bigtable::*EndpointOption`s
Deprecate these options: https://github.com/googleapis/google-cloud-cpp/blob/7b535eeb2db520e47988a02e6601199268a2fa08/google/cloud/bigtable/options.h#L54-L73
We do not need them. The endpoint should be configured using EndpointOption like all other libraries do.
We will still need to have internal versions of these options. These will be set by ClientOptions and respected by DataClient, AdminClient, InstanceAdminClient to maintain backwards compatibility. They just do not need to be public.
Also, it would be nice to clean up the logic around defaulting. Namely: the logic in bigtable_internal::DefaultOptions() is mostly unnecessary. Aside from the endpoint it sets some fields needed only for the Data API, and does the same work as the generated function to default options for the Admin APIs. The one difference is that the Instance Admin has 2 emulator environment variables. That is annoying, but still there is a simpler way to write the code.