Skip to content

Commit 3d54d93

Browse files
authored
Adds iRulesLX (ilx) provisioning resources (#1320)
Issues: Fixes #1319 Problem: This API did not exist and prevented iRulesLX from being provisioned or deprovisioned Analysis: This patch adds the resource Tests:
1 parent b2f5e1b commit 3d54d93

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

f5/bigip/tm/sys/provision.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ def __init__(self, sys):
4343
Fps,
4444
Gtm,
4545
Ili,
46+
Ilx,
4647
Lc,
4748
Ltm,
4849
Pem,
@@ -214,6 +215,21 @@ def __init__(self, provision):
214215
'tm:sys:provision:provisionstate'
215216

216217

218+
class Ilx(UnnamedResource):
219+
"""BIG-IP® system provision ilx resource
220+
221+
.. note::
222+
223+
This is an unnamed resource so it has not ~Partition~Name pattern
224+
at the end of its URI.
225+
"""
226+
def __init__(self, provision):
227+
super(Ilx, self).__init__(provision)
228+
self._meta_data['required_load_parameters'] = set()
229+
self._meta_data['required_json_kind'] =\
230+
'tm:sys:provision:provisionstate'
231+
232+
217233
class Lc(UnnamedResource):
218234
"""BIG-IP® system provision lc resource
219235

0 commit comments

Comments
 (0)