Skip to content

Commit 79af1e6

Browse files
committed
Fixes Issue #1323 - exists method failing on GTM topology records
Problem: The / and ~ characters are disallowed in sdk URLs Resolution: Overload the exists method for topology by applying: kwargs['transform_name'] = True
1 parent c9cdf90 commit 79af1e6

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

f5/bigip/tm/gtm/topology.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,10 @@ def load(self, **kwargs):
146146

147147
return self._load(**kwargs)
148148

149+
def exists(self, **kwargs):
150+
kwargs['transform_name'] = True
151+
return self._exists(**kwargs)
152+
149153
def refresh(self, **kwargs):
150154
"""Refresh is not supported for Topology
151155

0 commit comments

Comments
 (0)