bookmark_borderbookmark
Stay organized with collections
Save and categorize content based on your preferences.
[](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::aiplatform_v1::MetadataServiceClient( google::cloud::aiplatform_v1::MakeMetadataServiceConnection( "us-west1"/* regional service region */, options)); }
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["The webpage provides access to documentation for various versions of the `aiplatform` C++ library, ranging from version 2.12.0 to the latest release candidate 2.37.0-rc."],["Each version listed links to documentation for the `aiplatform_v1_1_1MetadataServiceClient` service account snippet, allowing users to access the reference material they require for specific releases."],["The content demonstrates how to override default authentication for `aiplatform_v1::MetadataServiceClient` using a service account key file."],["The code snippet exemplifies minimal error handling, by setting the exception mask for the input stream to `std::ios::badbit`, when loading the credentials."],["The snippet shows how to create a `MetadataServiceClient` with a regional service endpoint by setting the region to \"us-west1\" when creating the `MakeMetadataServiceConnection`."]]],[]]