UNPKG
hcloud-js
Version:
latest (1.4.1)
1.4.1
1.4.0
1.3.1
1.3.0
1.2.0
1.1.1
1.1.0
1.0.0
A Node.js module for the Hetzner Cloud API
github.com/dennisbruner/hcloud-js
dennisbruner/hcloud-js
hcloud-js
/
lib
/
networks
/
subnet.js
11 lines
(9 loc)
•
213 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
class
Subnet
{
constructor
(subnet) {
this
.type = subnet.type
this
.ip_range = subnet.ip_range
this
.network_zone = subnet.network_zone
this
.gateway = subnet.gateway } } module.exports = Subnet