947
947
.
948
948
returned: success
949
949
type: dict
950
+ stack_type:
951
+ description:
952
+ - The IP stack type of the network, possible values: (IPV4_IPV6, IPV4_ONLY)
953
+ returned: success
954
+ type: str
950
955
networkIP:
951
956
description:
952
957
- An IPv4 internal network address to assign to the instance for this network
@@ -1164,6 +1169,7 @@ def main():
1164
1169
network = dict (type = 'dict' ),
1165
1170
network_ip = dict (type = 'str' ),
1166
1171
subnetwork = dict (type = 'dict' ),
1172
+ stack_type = dict (type = 'str' ),
1167
1173
),
1168
1174
),
1169
1175
scheduling = dict (
@@ -1702,6 +1708,7 @@ def _request_for_item(self, item):
1702
1708
u'aliasIpRanges' : InstanceAliasiprangesArray (item .get ('alias_ip_ranges' , []), self .module ).to_request (),
1703
1709
u'network' : replace_resource_dict (item .get (u'network' , {}), 'selfLink' ),
1704
1710
u'networkIP' : item .get ('network_ip' ),
1711
+ u'stackType' : item .get ('stack_type' ),
1705
1712
u'subnetwork' : replace_resource_dict (item .get (u'subnetwork' , {}), 'selfLink' ),
1706
1713
}
1707
1714
)
@@ -1713,6 +1720,7 @@ def _response_from_item(self, item):
1713
1720
u'aliasIpRanges' : InstanceAliasiprangesArray (item .get (u'aliasIpRanges' , []), self .module ).from_response (),
1714
1721
u'network' : item .get (u'network' ),
1715
1722
u'networkIP' : item .get (u'networkIP' ),
1723
+ u'stackType' : item .get ('stackType' ),
1716
1724
u'subnetwork' : item .get (u'subnetwork' ),
1717
1725
}
1718
1726
)
0 commit comments