Override apikeys_v2::ApiKeysClient Authentication Defaults

See more code actions.
  [](std::string const& keyfile) {
   
auto is = std::ifstream(keyfile);
    is
.exceptions(std::ios::badbit);  // Minimal error handling in examples
   
auto contents = std::string(std::istreambuf_iterator<char>(is.rdbuf()), {});
   
auto options =
        google
::cloud::Options{}.set<google::cloud::UnifiedCredentialsOption>(
            google
::cloud::MakeServiceAccountCredentials(contents));
   
return google::cloud::apikeys_v2::ApiKeysClient(
        google
::cloud::apikeys_v2::MakeApiKeysConnection(options));
 
}