mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-22 22:11:44 -07:00
Adds various fixes for f5 modules (#40208)
* Adds stty expansion for cli commands * minor fixes * Make bigiq rest client work correctly
This commit is contained in:
parent
548282139f
commit
5e7878a6a1
5 changed files with 13 additions and 7 deletions
|
@ -62,7 +62,9 @@ class F5Client(F5BaseClient):
|
|||
|
||||
class F5RestClient(F5BaseClient):
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(F5RestClient, self).__init__(*args, **kwargs)
|
||||
params = kwargs.get('module').params
|
||||
module = kwargs.pop('module')
|
||||
super(F5RestClient, self).__init__(module=module, **params)
|
||||
self.provider = self.merge_provider_params()
|
||||
|
||||
@property
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue