mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 11:51:26 -07:00
updates to azure_rm_sqlfirewallrule
updates to azure_rm_sqlfirewallrule small fixes move sql client to common adding state fixed sample fixed sanity fixed aliases removed unnecessary object removed unused resource_group changed group to less crowdy tags no tags on firewall rule
This commit is contained in:
parent
b7d614df78
commit
7d81de2516
5 changed files with 380 additions and 0 deletions
|
@ -1101,6 +1101,14 @@ class AzureRMModuleBase(object):
|
|||
base_url=self._cloud_environment.endpoints.resource_manager)
|
||||
return self._mysql_client
|
||||
|
||||
@property
|
||||
def sql_client(self):
|
||||
self.log('Getting SQL client')
|
||||
if not self._sql_client:
|
||||
self._sql_client = self.get_mgmt_svc_client(SqlManagementClient,
|
||||
base_url=self._cloud_environment.endpoints.resource_manager)
|
||||
return self._sql_client
|
||||
|
||||
@property
|
||||
def containerregistry_client(self):
|
||||
self.log('Getting container registry mgmt client')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue