🌎 Datacenter

Each Datacenter represents a virtual Datacenter which is made up of possible many physical Datacenters where Servers are hosted.

Get all Datacenters

Returns all Datacenter objects.

HetznerCloudClient hetznerCloudClient = new HetznerCloudClient("apiKey");

// Get All
List<Datacenter> listDatacenters = await hetznerCloudClient.Datacenter.Get();

Get a Datacenter

Returns a specific Datacenter object.

HetznerCloudClient hetznerCloudClient = new HetznerCloudClient("apiKey");

// Set ID
long DatacenterId = 3;

// Get
Datacenter datacenter = await hetznerCloudClient.Datacenter.Get(DatacenterId);

eDataCenter

The eDataCenter enum has also been created for the purpose of standardizing resource creation

Datacenter ID
Location ID
Name
Ciudad
Network Zone

4

1

fsn1

Falkenstein

eu-central

2

2

nbg1

Nuremberg

eu-central

3

3

hel1

Helsinki

eu-central

5

4

ash

Ashburn, VA

us-east

6

5

hil

Hillsboro, OR

us-west

JSON

Last updated

Was this helpful?