├── .gitignore ├── LICENSE ├── README.rst ├── dist ├── nsxramlclient-1.0.1.tar.gz ├── nsxramlclient-1.0.3.tar.gz ├── nsxramlclient-1.0.4.tar.gz ├── nsxramlclient-2.0.0.tar.gz ├── nsxramlclient-2.0.1.tar.gz ├── nsxramlclient-2.0.2.tar.gz ├── nsxramlclient-2.0.3.tar.gz ├── nsxramlclient-2.0.4.tar.gz ├── nsxramlclient-2.0.5.tar.gz ├── nsxramlclient-2.0.6.tar.gz └── nsxramlclient-2.0.7.tar.gz ├── nsxramlclient.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── requires.txt └── top_level.txt ├── nsxramlclient ├── __init__.py ├── client.py ├── exceptions.py ├── http_session.py └── xmloperations.py ├── readme.md ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── appliance_manager.py ├── application_profiles.py ├── application_rule.py ├── backend_pool.py ├── bgp.py ├── clusterprep.py ├── config.py ├── controllers.py ├── dfw.py ├── dns.py ├── edge_deploy.py ├── edge_syslog.py ├── ippools.py ├── ipsets.py ├── logicalswitch.py ├── logicalswitch_read.py ├── macsets.py ├── manager_logs.py ├── monitor.py ├── nat.py ├── network_scope.py ├── nwfabric.py ├── ospf.py ├── query_notification.py ├── scopes.py ├── security_policy.py ├── security_tag.py ├── securitygroups.py ├── segment_id.py ├── system_locale.py ├── time_settings.py ├── usermgmt.py ├── vcregistration.py ├── vdnConfig.py ├── vdnUDPconfig.py ├── vds.py ├── virtualservers.py └── vxlanprep.py /.gitignore: -------------------------------------------------------------------------------- 1 | /.DS_Store/ 2 | /.idea/ 3 | *.pyc 4 | secret.yml 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/README.rst -------------------------------------------------------------------------------- /dist/nsxramlclient-1.0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/dist/nsxramlclient-1.0.1.tar.gz -------------------------------------------------------------------------------- /dist/nsxramlclient-1.0.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/dist/nsxramlclient-1.0.3.tar.gz -------------------------------------------------------------------------------- /dist/nsxramlclient-1.0.4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/dist/nsxramlclient-1.0.4.tar.gz -------------------------------------------------------------------------------- /dist/nsxramlclient-2.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/dist/nsxramlclient-2.0.0.tar.gz -------------------------------------------------------------------------------- /dist/nsxramlclient-2.0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/dist/nsxramlclient-2.0.1.tar.gz -------------------------------------------------------------------------------- /dist/nsxramlclient-2.0.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/dist/nsxramlclient-2.0.2.tar.gz -------------------------------------------------------------------------------- /dist/nsxramlclient-2.0.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/dist/nsxramlclient-2.0.3.tar.gz -------------------------------------------------------------------------------- /dist/nsxramlclient-2.0.4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/dist/nsxramlclient-2.0.4.tar.gz -------------------------------------------------------------------------------- /dist/nsxramlclient-2.0.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/dist/nsxramlclient-2.0.5.tar.gz -------------------------------------------------------------------------------- /dist/nsxramlclient-2.0.6.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/dist/nsxramlclient-2.0.6.tar.gz -------------------------------------------------------------------------------- /dist/nsxramlclient-2.0.7.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/dist/nsxramlclient-2.0.7.tar.gz -------------------------------------------------------------------------------- /nsxramlclient.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/nsxramlclient.egg-info/PKG-INFO -------------------------------------------------------------------------------- /nsxramlclient.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/nsxramlclient.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /nsxramlclient.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nsxramlclient.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | pyopenssl 2 | pyraml-parser>=0.1.3 3 | lxml<=3.6.0 4 | requests>=2.7.0 5 | -------------------------------------------------------------------------------- /nsxramlclient.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | nsxramlclient 2 | -------------------------------------------------------------------------------- /nsxramlclient/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'yfauser' 2 | -------------------------------------------------------------------------------- /nsxramlclient/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/nsxramlclient/client.py -------------------------------------------------------------------------------- /nsxramlclient/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/nsxramlclient/exceptions.py -------------------------------------------------------------------------------- /nsxramlclient/http_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/nsxramlclient/http_session.py -------------------------------------------------------------------------------- /nsxramlclient/xmloperations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/nsxramlclient/xmloperations.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.7.0 2 | lxml 3 | pyraml-parser>=0.1.3 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'yfauser' 2 | -------------------------------------------------------------------------------- /tests/appliance_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/appliance_manager.py -------------------------------------------------------------------------------- /tests/application_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/application_profiles.py -------------------------------------------------------------------------------- /tests/application_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/application_rule.py -------------------------------------------------------------------------------- /tests/backend_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/backend_pool.py -------------------------------------------------------------------------------- /tests/bgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/bgp.py -------------------------------------------------------------------------------- /tests/clusterprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/clusterprep.py -------------------------------------------------------------------------------- /tests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/config.py -------------------------------------------------------------------------------- /tests/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/controllers.py -------------------------------------------------------------------------------- /tests/dfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/dfw.py -------------------------------------------------------------------------------- /tests/dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/dns.py -------------------------------------------------------------------------------- /tests/edge_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/edge_deploy.py -------------------------------------------------------------------------------- /tests/edge_syslog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/edge_syslog.py -------------------------------------------------------------------------------- /tests/ippools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/ippools.py -------------------------------------------------------------------------------- /tests/ipsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/ipsets.py -------------------------------------------------------------------------------- /tests/logicalswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/logicalswitch.py -------------------------------------------------------------------------------- /tests/logicalswitch_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/logicalswitch_read.py -------------------------------------------------------------------------------- /tests/macsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/macsets.py -------------------------------------------------------------------------------- /tests/manager_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/manager_logs.py -------------------------------------------------------------------------------- /tests/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/monitor.py -------------------------------------------------------------------------------- /tests/nat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/nat.py -------------------------------------------------------------------------------- /tests/network_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/network_scope.py -------------------------------------------------------------------------------- /tests/nwfabric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/nwfabric.py -------------------------------------------------------------------------------- /tests/ospf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/ospf.py -------------------------------------------------------------------------------- /tests/query_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/query_notification.py -------------------------------------------------------------------------------- /tests/scopes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/scopes.py -------------------------------------------------------------------------------- /tests/security_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/security_policy.py -------------------------------------------------------------------------------- /tests/security_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/security_tag.py -------------------------------------------------------------------------------- /tests/securitygroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/securitygroups.py -------------------------------------------------------------------------------- /tests/segment_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/segment_id.py -------------------------------------------------------------------------------- /tests/system_locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/system_locale.py -------------------------------------------------------------------------------- /tests/time_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/time_settings.py -------------------------------------------------------------------------------- /tests/usermgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/usermgmt.py -------------------------------------------------------------------------------- /tests/vcregistration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/vcregistration.py -------------------------------------------------------------------------------- /tests/vdnConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/vdnConfig.py -------------------------------------------------------------------------------- /tests/vdnUDPconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/vdnUDPconfig.py -------------------------------------------------------------------------------- /tests/vds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/vds.py -------------------------------------------------------------------------------- /tests/virtualservers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/virtualservers.py -------------------------------------------------------------------------------- /tests/vxlanprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/nsxramlclient/HEAD/tests/vxlanprep.py --------------------------------------------------------------------------------