Skip to content

Commit 18f3fe4

Browse files
committed
Fixes #621
Problem: GTM Pools endpoint was missing from the SDK. This is the last of a series of PRs meant to introduce the GTM pools to the SDK Analysis: GTM pools were added with tests Tests: Flake8 Functional Tests Unit Tests Files Added/Changed: f5-common-python/f5/bigip/tm/gtm/init.py f5-common-python/f5/bigip/tm/gtm/pool.py f5-common-python/f5/bigip/tm/gtm/test/test_pool.py f5-common-python/test/functional/tm/gtm/test_pool.py
1 parent 332b743 commit 18f3fe4

4 files changed

Lines changed: 1440 additions & 0 deletions

File tree

f5/bigip/tm/gtm/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
from f5.bigip.resource import OrganizingCollection
3232
from f5.bigip.tm.gtm.datacenter import Datacenters
33+
from f5.bigip.tm.gtm.pool import Pools
3334
from f5.bigip.tm.gtm.rule import Rules
3435
from f5.bigip.tm.gtm.server import Servers
3536
from f5.bigip.tm.gtm.wideip import Wideips
@@ -41,6 +42,7 @@ def __init__(self, tm):
4142
super(Gtm, self).__init__(tm)
4243
self._meta_data['allowed_lazy_attributes'] = [
4344
Datacenters,
45+
Pools,
4446
Rules,
4547
Servers,
4648
Wideips,

0 commit comments

Comments
 (0)