Adding new module azure_rm_publicipaddress_facts (#3463)
* Adding new Azure module. * Updating based on PR comments
This commit is contained in:
parent
ee298f3eff
commit
f98fea488f
1 changed files with 197 additions and 0 deletions
197
cloud/azure/azure_rm_publicipaddress_facts.py
Normal file
197
cloud/azure/azure_rm_publicipaddress_facts.py
Normal file
|
@ -0,0 +1,197 @@
|
|||
#!/usr/bin/python
|
||||
#
|
||||
# Copyright (c) 2016 Matt Davis, <mdavis@ansible.com>
|
||||
# Chris Houseknecht, <house@redhat.com>
|
||||
#
|
||||
# This file is part of Ansible
|
||||
#
|
||||
# Ansible is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Ansible is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
|
||||
DOCUMENTATION = '''
|
||||
---
|
||||
module: azure_rm_publicip_facts
|
||||
|
||||
version_added: "2.1"
|
||||
|
||||
short_description: Get public IP facts.
|
||||
|
||||
description:
|
||||
- Get facts for a specific public IP or all public IPs within a resource group.
|
||||
|
||||
options:
|
||||
name:
|
||||
description:
|
||||
- Only show results for a specific Public IP.
|
||||
required: false
|
||||
default: null
|
||||
resource_group:
|
||||
description:
|
||||
- Limit results by resource group. Required when using name parameter.
|
||||
required: false
|
||||
default: null
|
||||
tags:
|
||||
description:
|
||||
- Limit results by providing a list of tags. Format tags as 'key' or 'key:value'.
|
||||
required: false
|
||||
default: null
|
||||
|
||||
extends_documentation_fragment:
|
||||
- azure
|
||||
|
||||
author:
|
||||
- "Chris Houseknecht (@chouseknecht)"
|
||||
- "Matt Davis (@nitzmahone)"
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
- name: Get facts for one Public IP
|
||||
azure_rm_publicip_facts:
|
||||
resource_group: Testing
|
||||
name: publicip001
|
||||
|
||||
- name: Get facts for all Public IPs within a resource groups
|
||||
azure_rm_publicip_facts:
|
||||
resource_group: Testing
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
changed:
|
||||
description: Whether or not the object was changed.
|
||||
returned: always
|
||||
type: bool
|
||||
sample: False
|
||||
objects:
|
||||
description: List containing a set of facts for each selected object.
|
||||
returned: always
|
||||
type: list
|
||||
sample: [{
|
||||
"etag": "W/\"a31a6d7d-cb18-40a5-b16d-9f4a36c1b18a\"",
|
||||
"id": "/subscriptions/XXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXX/resourceGroups/Testing/providers/Microsoft.Network/publicIPAddresses/pip2001",
|
||||
"location": "eastus2",
|
||||
"name": "pip2001",
|
||||
"properties": {
|
||||
"idleTimeoutInMinutes": 4,
|
||||
"provisioningState": "Succeeded",
|
||||
"publicIPAllocationMethod": "Dynamic",
|
||||
"resourceGuid": "29de82f4-a7da-440e-bd3d-9cabb79af95a"
|
||||
},
|
||||
"type": "Microsoft.Network/publicIPAddresses"
|
||||
}]
|
||||
'''
|
||||
|
||||
|
||||
from ansible.module_utils.basic import *
|
||||
from ansible.module_utils.azure_rm_common import *
|
||||
|
||||
try:
|
||||
from msrestazure.azure_exceptions import CloudError
|
||||
from azure.common import AzureMissingResourceHttpError, AzureHttpError
|
||||
except:
|
||||
# This is handled in azure_rm_common
|
||||
pass
|
||||
|
||||
AZURE_OBJECT_CLASS = 'PublicIp'
|
||||
|
||||
|
||||
class AzureRMPublicIPFacts(AzureRMModuleBase):
|
||||
|
||||
def __init__(self):
|
||||
|
||||
self.module_arg_spec = dict(
|
||||
name=dict(type='str'),
|
||||
resource_group=dict(required=True, type='str'),
|
||||
tags=dict(type='list')
|
||||
)
|
||||
|
||||
self.results = dict(
|
||||
changed=False,
|
||||
objects=[]
|
||||
)
|
||||
|
||||
self.name = None
|
||||
self.resource_group = None
|
||||
self.tags = None
|
||||
|
||||
super(AzureRMPublicIPFacts, self).__init__(self.module_arg_spec,
|
||||
supports_tags=False,
|
||||
facts_module=True)
|
||||
|
||||
def exec_module(self, **kwargs):
|
||||
|
||||
for key in self.module_arg_spec:
|
||||
setattr(self, key, kwargs[key])
|
||||
|
||||
if self.name and not self.resource_group:
|
||||
self.fail("Parameter error: resource group required when filtering by name.")
|
||||
|
||||
if self.name:
|
||||
self.results['objects'] = self.get_item()
|
||||
elif self.resource_group:
|
||||
self.results['objects'] = self.list_resource_group()
|
||||
else:
|
||||
self.results['objects'] = self.list_all()
|
||||
|
||||
return self.results
|
||||
|
||||
def get_item(self):
|
||||
self.log('Get properties for {0}'.format(self.name))
|
||||
item = None
|
||||
result = []
|
||||
|
||||
try:
|
||||
item = self.network_client.public_ip_addresses.get(self.resource_group, self.name)
|
||||
except CloudError:
|
||||
pass
|
||||
|
||||
if item and self.has_tags(item.tags, self.tags):
|
||||
result = [self.serialize_obj(item, AZURE_OBJECT_CLASS)]
|
||||
|
||||
return result
|
||||
|
||||
def list_resource_group(self):
|
||||
self.log('List items in resource groups')
|
||||
try:
|
||||
response = self.network_client.public_ip_addresses.list(self.resource_group)
|
||||
except AzureHttpError as exc:
|
||||
self.fail("Error listing items in resource groups {0} - {1}".format(self.resource_group, str(exc)))
|
||||
|
||||
results = []
|
||||
for item in response:
|
||||
if self.has_tags(item.tags, self.tags):
|
||||
results.append(self.serialize_obj(item, AZURE_OBJECT_CLASS))
|
||||
return results
|
||||
|
||||
def list_all(self):
|
||||
self.log('List all items')
|
||||
try:
|
||||
response = self.network_client.public_ip_addresses.list_all()
|
||||
except AzureHttpError as exc:
|
||||
self.fail("Error listing all items - {0}".format(str(exc)))
|
||||
|
||||
results = []
|
||||
for item in response:
|
||||
if self.has_tags(item.tags, self.tags):
|
||||
results.append(self.serialize_obj(item, AZURE_OBJECT_CLASS))
|
||||
return results
|
||||
|
||||
|
||||
|
||||
def main():
|
||||
AzureRMPublicIPFacts()
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
Loading…
Reference in a new issue