We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Instance.ips
1 parent af3c727 commit dc592c7Copy full SHA for dc592c7
linode_api4/objects/linode.py
@@ -465,7 +465,7 @@ def ips(self):
465
result["ipv6"]["link_local"],
466
)
467
468
- pools = [
+ ranges = [
469
IPv6Range(self._client, r["range"])
470
for r in result["ipv6"]["global"]
471
]
@@ -481,7 +481,7 @@ def ips(self):
481
"ipv6": {
482
"slaac": slaac,
483
"link_local": link_local,
484
- "pools": pools,
+ "ranges": ranges,
485
},
486
}
487
test/objects/linode_test.py
@@ -340,7 +340,7 @@ def test_ips(self):
340
self.assertIsNotNone(ips.ipv4.reserved)
341
self.assertIsNotNone(ips.ipv6.slaac)
342
self.assertIsNotNone(ips.ipv6.link_local)
343
- self.assertIsNotNone(ips.ipv6.pools)
+ self.assertIsNotNone(ips.ipv6.ranges)
344
345
def test_initiate_migration(self):
346
"""
0 commit comments