mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-09 18:04:02 -07:00
cleaning up class names in azure_rm_mysql* (#53260)
This commit is contained in:
parent
d39f35c1d6
commit
bdfa99af9f
8 changed files with 32 additions and 32 deletions
|
@ -106,7 +106,7 @@ except ImportError:
|
|||
pass
|
||||
|
||||
|
||||
class AzureRMMySQLConfigurationFacts(AzureRMModuleBase):
|
||||
class AzureRMMySqlConfigurationFacts(AzureRMModuleBase):
|
||||
def __init__(self):
|
||||
# define user inputs into argument
|
||||
self.module_arg_spec = dict(
|
||||
|
@ -131,7 +131,7 @@ class AzureRMMySQLConfigurationFacts(AzureRMModuleBase):
|
|||
self.resource_group = None
|
||||
self.server_name = None
|
||||
self.name = None
|
||||
super(AzureRMMySQLConfigurationFacts, self).__init__(self.module_arg_spec, supports_tags=False)
|
||||
super(AzureRMMySqlConfigurationFacts, self).__init__(self.module_arg_spec, supports_tags=False)
|
||||
|
||||
def exec_module(self, **kwargs):
|
||||
for key in self.module_arg_spec:
|
||||
|
@ -202,7 +202,7 @@ class AzureRMMySQLConfigurationFacts(AzureRMModuleBase):
|
|||
|
||||
|
||||
def main():
|
||||
AzureRMMySQLConfigurationFacts()
|
||||
AzureRMMySqlConfigurationFacts()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue