🌎 Regions

Lists the Regions available for Linode services. Not all services are guaranteed to be available in all Regions.

Get all Regions

Returns all Regions objects.

LinodeClient linodeClient = new LinodeClient("apikey");

// Get All
List<Region> list = await linodeClient.Region.Get();

Get a Region

Returns a specific Region object.

LinodeClient linodeClient = new LinodeClient("apikey");

// Set ID
string regionId = "ap-south";

// Get
Region region = await linodeClient.Region.Get(regionId);

JSON

Last updated

Was this helpful?