A representation of a Cloud Location .
A Cloud location is identified by its project_id
and location_id
.
Constructors
Location(Location const &)
Copy and move
Location const &
Location(Location &&)
Copy and move
Location &&
Location(Project, std::string)
Constructs a Location
object identified by the given project
and location_id
.
project
Project
location_id
std::string
Location(std::string, std::string)
Constructs a Location_id object identified by the given IDs.
This is equivalent to first constructing a Project
from the given project_id
and then calling the Location(Project, std::string)
constructor.
project_id
std::string
location_id
std::string
Operators
operator=(Location const &)
Copy and move
Location const &
Location &
operator=(Location &&)
Copy and move
Location &&
Location &
Functions
project() const
Returns the Project
containing this location.
Project const &
project_id() const
std::string const &
location_id() const
Returns the Location ID.
std::string const &
FullName() const
Returns the fully qualified location name as a string of the form: "projects/
std::string

