Skip to content

Latest commit

History

History
61 lines (46 loc) · 2.05 KB

File metadata and controls

61 lines (46 loc) · 2.05 KB

Distributed Cloud Edge Network API C++ Client Library

This directory contains an idiomatic C++ client library for the Distributed Cloud Edge Network API,a service to Network management API for Distributed Cloud Edge.

While this library isGA,please note that the Google Cloud C++ client libraries donotfollowSemantic Versioning.

Quickstart

Thequickstart/directory contains a minimal environment to get started using this client library in a larger project. The following "Hello World" program is used in this quickstart, and should give you a taste of this library.

#include"google/cloud/edgenetwork/v1/edge_network_client.h"
#include"google/cloud/location.h"
#include<iostream>

intmain(intargc,char* argv[]) try {
if(argc!=4) {
std::cerr <<"Usage:"<< argv[0] <<"project-id location-id zone-id\n";
return1;
}

autoconstlocation =google::cloud::Location(argv[1], argv[2]);

namespaceedgenetwork=::google::cloud::edgenetwork_v1;
autoclient =
edgenetwork::EdgeNetworkClient(edgenetwork::MakeEdgeNetworkConnection());

for(autor:
client.ListNetworks(location.FullName() +"/zones/"+ argv[3])) {
if(!r)throwstd::move(r).status();
std::cout << r->DebugString() <<"\n";
}

return0;
}catch(google::cloud::Statusconst& status) {
std::cerr <<"google::cloud::Status thrown:"<< status <<"\n";
return1;
}

More Information