Merge pull request #451 from leoplana/master

This commit is contained in:
Alex Stephen 2021-09-14 13:47:13 -04:00 committed by GitHub
commit 65f0a7a141
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions

View file

@ -255,6 +255,12 @@ options:
- Whether the instance should be assigned an IP address or not. - Whether the instance should be assigned an IP address or not.
required: false required: false
type: bool type: bool
private_network:
description:
- The resource link for the VPC network from which the Cloud SQL instance is accessible for private IP
(e.g /projects/myProject/global/networks/default)
required: false
type: str
authorized_networks: authorized_networks:
description: description:
- The list of external networks that are allowed to connect to the instance - The list of external networks that are allowed to connect to the instance
@ -860,6 +866,7 @@ def main():
type='dict', type='dict',
options=dict( options=dict(
ipv4_enabled=dict(type='bool'), ipv4_enabled=dict(type='bool'),
private_network=dict(type='str'),
authorized_networks=dict( authorized_networks=dict(
type='list', elements='dict', options=dict(expiration_time=dict(type='str'), name=dict(type='str'), value=dict(type='str')) type='list', elements='dict', options=dict(expiration_time=dict(type='str'), name=dict(type='str'), value=dict(type='str'))
), ),
@ -1251,6 +1258,7 @@ class InstanceIpconfiguration(object):
return remove_nones_from_dict( return remove_nones_from_dict(
{ {
u'ipv4Enabled': self.request.get('ipv4_enabled'), u'ipv4Enabled': self.request.get('ipv4_enabled'),
u'privateNetwork': self.request.get('private_network'),
u'authorizedNetworks': InstanceAuthorizednetworksArray(self.request.get('authorized_networks', []), self.module).to_request(), u'authorizedNetworks': InstanceAuthorizednetworksArray(self.request.get('authorized_networks', []), self.module).to_request(),
u'requireSsl': self.request.get('require_ssl'), u'requireSsl': self.request.get('require_ssl'),
} }
@ -1260,6 +1268,7 @@ class InstanceIpconfiguration(object):
return remove_nones_from_dict( return remove_nones_from_dict(
{ {
u'ipv4Enabled': self.request.get(u'ipv4Enabled'), u'ipv4Enabled': self.request.get(u'ipv4Enabled'),
u'privateNetwork': self.request.get(u'privateNetwork'),
u'authorizedNetworks': InstanceAuthorizednetworksArray(self.request.get(u'authorizedNetworks', []), self.module).from_response(), u'authorizedNetworks': InstanceAuthorizednetworksArray(self.request.get(u'authorizedNetworks', []), self.module).from_response(),
u'requireSsl': self.request.get(u'requireSsl'), u'requireSsl': self.request.get(u'requireSsl'),
} }

View file

@ -339,6 +339,12 @@ resources:
- Whether the instance should be assigned an IP address or not. - Whether the instance should be assigned an IP address or not.
returned: success returned: success
type: bool type: bool
privateNetwork:
description:
- The resource link for the VPC network from which the Cloud SQL instance is accessible for private IP
(e.g /projects/myProject/global/networks/default)
returned: success
type: str
authorizedNetworks: authorizedNetworks:
description: description:
- The list of external networks that are allowed to connect to the instance - The list of external networks that are allowed to connect to the instance