zones element

Type: zones
Namespace: (default namespace)

Example XML

<?xml version="1.0" encoding="UTF-8"?> <zones> <zone> <name>...</name> <description>...</description> <publicURLPrefix>...</publicURLPrefix> <ssoSpEntityId>...</ssoSpEntityId> <isDnsResolutionEnabled>...</isDnsResolutionEnabled> <isDefault>...</isDefault> <edges> <edge> <title>...</title> <notes>...</notes> <deploymentSite>...</deploymentSite> <enabledProxy>...</enabledProxy> <protocols> <protocol> <streaming_protocol>...</streaming_protocol> <port>...</port> <isProxy>...</isProxy> <isEnabled>...</isEnabled> <ssl_alias>...</ssl_alias> <metadata> <links /> </metadata> </protocol> <protocol> <!--...--> </protocol> <!--...more "protocol" elements...--> </protocols> <proxies> <proxy> <proxy_protocol>...</proxy_protocol> <port>...</port> <isEnabled>...</isEnabled> <username>...</username> <password>...</password> <isUsePassword>...</isUsePassword> <metadata> <links /> </metadata> </proxy> <proxy> <!--...--> </proxy> <!--...more "proxy" elements...--> </proxies> <ip_address> <ipAddress>...</ipAddress> </ip_address> <ip_address> <!--...--> </ip_address> <!--...more "ip_address" elements...--> <configurationId>...</configurationId> <descriptor>...</descriptor> <metadata> <links /> </metadata> </edge> <edge> <!--...--> </edge> <!--...more "edge" elements...--> </edges> <metadata> <links /> </metadata> </zone> <zone> <!--...--> </zone> <!--...more "zone" elements...--> </zones>

Example JSON

{ "zone" : [ { "name" : "...", "description" : "...", "publicURLPrefix" : "...", "ssoSpEntityId" : "...", "isDnsResolutionEnabled" : false, "isDefault" : false, "edges" : { "edge" : [ { "title" : "...", "notes" : "...", "deploymentSite" : "...", "enabledProxy" : false, "protocols" : { "protocol" : [ { "streaming_protocol" : "HTTP", "port" : ..., "isProxy" : false, "isEnabled" : false, "ssl_alias" : "...", "metadata" : { "links" : { } } }, ... ] }, "proxies" : { "proxy" : [ { "proxy_protocol" : "...", "port" : ..., "isEnabled" : false, "username" : "...", "password" : "...", "isUsePassword" : false, "metadata" : { "links" : { } } }, ... ] }, "ip_address" : [ { "ipAddress" : "..." }, ... ], "configurationId" : "...", "descriptor" : "...", "metadata" : { "links" : { } } }, ... ] }, "metadata" : { "links" : { } } }, ... ] }