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::ModelServiceClient( google::cloud::aiplatform_v1::MakeModelServiceConnection( "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."],[[["This webpage provides documentation and code examples for different versions of the `aiplatform` C++ library, focusing on the `ModelServiceClient`."],["The content lists available versions of the library, ranging from the latest release candidate, 2.37.0-rc, down to version 2.12.0, each linking to specific documentation."],["An example code snippet is provided to demonstrate how to override the default authentication for `aiplatform_v1::ModelServiceClient` using a service account keyfile."],["The code example sets a minimal error handling in the example, and demonstrates regional service region use, in the context of \"us-west1\"."]]],[]]