Skip to content

Latest commit

History

History
60 lines (45 loc) · 2.01 KB

File metadata and controls

60 lines (45 loc) · 2.01 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!=3) {
std::cerr <<"Usage:"<< argv[0] <<"project-id location-id\n";
return1;
}

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

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

for(autor: client.ListZones(location.FullName())) {
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