in gamelift-daemon/src/ec2_metadata/ec2_metadata.py [0:0]
def subnet_ipv6_cidr_blocks(self):
resp = self.parent._get_url(
self._url("subnet-ipv6-cidr-blocks"), allow_404=True
)
if resp.status_code == 404:
return []
return resp.text.splitlines()