mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 12:21:26 -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
|
@ -108,7 +108,7 @@ class Actions:
|
|||
NoAction, Create, Update, Delete = range(4)
|
||||
|
||||
|
||||
class AzureRMDatabases(AzureRMModuleBase):
|
||||
class AzureRMMySqlDatabase(AzureRMModuleBase):
|
||||
"""Configuration class for an Azure RM MySQL Database resource"""
|
||||
|
||||
def __init__(self):
|
||||
|
@ -153,9 +153,9 @@ class AzureRMDatabases(AzureRMModuleBase):
|
|||
self.state = None
|
||||
self.to_do = Actions.NoAction
|
||||
|
||||
super(AzureRMDatabases, self).__init__(derived_arg_spec=self.module_arg_spec,
|
||||
supports_check_mode=True,
|
||||
supports_tags=False)
|
||||
super(AzureRMMySqlDatabase, self).__init__(derived_arg_spec=self.module_arg_spec,
|
||||
supports_check_mode=True,
|
||||
supports_tags=False)
|
||||
|
||||
def exec_module(self, **kwargs):
|
||||
"""Main module execution method"""
|
||||
|
@ -299,7 +299,7 @@ class AzureRMDatabases(AzureRMModuleBase):
|
|||
|
||||
def main():
|
||||
"""Main execution"""
|
||||
AzureRMDatabases()
|
||||
AzureRMMySqlDatabase()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue