catalystwan 0.41.2__py3-none-any.whl → 0.41.2.dev0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (504) hide show
  1. catalystwan/__init__.py +3 -2
  2. catalystwan/api/administration.py +13 -2
  3. catalystwan/api/api_container.py +4 -1
  4. catalystwan/api/builders/__init__.py +14 -0
  5. catalystwan/api/builders/feature_profiles/__init__.py +0 -0
  6. catalystwan/api/builders/feature_profiles/application_priority.py +58 -0
  7. catalystwan/api/builders/feature_profiles/builder_factory.py +59 -0
  8. catalystwan/api/builders/feature_profiles/cli.py +76 -0
  9. catalystwan/api/builders/feature_profiles/mixins.py +44 -0
  10. catalystwan/api/builders/feature_profiles/other.py +79 -0
  11. catalystwan/api/builders/feature_profiles/report.py +155 -0
  12. catalystwan/api/builders/feature_profiles/service.py +248 -0
  13. catalystwan/api/builders/feature_profiles/system.py +80 -0
  14. catalystwan/api/builders/feature_profiles/transport.py +256 -0
  15. catalystwan/api/builders/feature_profiles/uc_voice.py +287 -0
  16. catalystwan/api/config_group_api.py +41 -16
  17. catalystwan/api/configuration_groups/parcel.py +100 -30
  18. catalystwan/api/feature_profile_api.py +2021 -242
  19. catalystwan/api/policy_api.py +470 -116
  20. catalystwan/api/template_api.py +113 -44
  21. catalystwan/api/templates/README.md +61 -47
  22. catalystwan/api/templates/cli_template.py +17 -7
  23. catalystwan/api/templates/device_template/device_template.py +127 -32
  24. catalystwan/api/templates/feature_template.py +3 -3
  25. catalystwan/api/templates/models/aaa_model.py +387 -0
  26. catalystwan/api/templates/models/cisco_aaa_model.py +289 -42
  27. catalystwan/api/templates/models/cisco_banner_model.py +11 -2
  28. catalystwan/api/templates/models/cisco_bfd_model.py +31 -36
  29. catalystwan/api/templates/models/cisco_bgp_model.py +382 -131
  30. catalystwan/api/templates/models/cisco_logging_model.py +80 -43
  31. catalystwan/api/templates/models/cisco_ntp_model.py +34 -15
  32. catalystwan/api/templates/models/cisco_omp_model.py +70 -60
  33. catalystwan/api/templates/models/cisco_ospf.py +143 -74
  34. catalystwan/api/templates/models/cisco_ospfv3.py +217 -95
  35. catalystwan/api/templates/models/cisco_secure_internet_gateway.py +304 -142
  36. catalystwan/api/templates/models/cisco_snmp_model.py +66 -52
  37. catalystwan/api/templates/models/cisco_system.py +238 -129
  38. catalystwan/api/templates/models/cisco_vpn_interface_model.py +632 -275
  39. catalystwan/api/templates/models/cisco_vpn_model.py +433 -270
  40. catalystwan/api/templates/models/cli_template.py +3 -2
  41. catalystwan/api/templates/models/omp_vsmart_model.py +46 -10
  42. catalystwan/api/templates/models/security_vsmart_model.py +11 -8
  43. catalystwan/api/templates/models/supported.py +10 -4
  44. catalystwan/api/templates/models/system_vsmart_model.py +164 -27
  45. catalystwan/api/templates/models/vpn_vsmart_interface_model.py +198 -0
  46. catalystwan/api/templates/models/vpn_vsmart_model.py +124 -0
  47. catalystwan/apigw_auth.py +6 -2
  48. catalystwan/dataclasses.py +2 -53
  49. catalystwan/endpoints/__init__.py +41 -41
  50. catalystwan/endpoints/certificate_management_device.py +4 -0
  51. catalystwan/endpoints/cluster_management.py +27 -7
  52. catalystwan/endpoints/configuration/feature_profile/sdwan/application_priority.py +107 -0
  53. catalystwan/endpoints/configuration/feature_profile/sdwan/cli.py +60 -0
  54. catalystwan/endpoints/configuration/feature_profile/sdwan/dns_security.py +83 -0
  55. catalystwan/endpoints/configuration/feature_profile/sdwan/embedded_security.py +88 -0
  56. catalystwan/endpoints/configuration/feature_profile/sdwan/other.py +62 -0
  57. catalystwan/endpoints/configuration/feature_profile/sdwan/policy_object.py +35 -12
  58. catalystwan/endpoints/configuration/feature_profile/sdwan/service.py +154 -0
  59. catalystwan/endpoints/configuration/feature_profile/sdwan/sig_security.py +88 -0
  60. catalystwan/endpoints/configuration/feature_profile/sdwan/system.py +164 -11
  61. catalystwan/endpoints/configuration/feature_profile/sdwan/topology.py +93 -0
  62. catalystwan/endpoints/configuration/feature_profile/sdwan/transport.py +144 -26
  63. catalystwan/endpoints/configuration/feature_profile/sdwan/uc_voice.py +77 -0
  64. catalystwan/endpoints/configuration/network_hierarchy.py +32 -0
  65. catalystwan/endpoints/configuration/policy/abstractions.py +49 -0
  66. catalystwan/endpoints/configuration/policy/definition/access_control_list.py +6 -11
  67. catalystwan/endpoints/configuration/policy/definition/access_control_list_ipv6.py +6 -11
  68. catalystwan/endpoints/configuration/policy/definition/aip.py +52 -0
  69. catalystwan/endpoints/configuration/policy/definition/amp.py +52 -0
  70. catalystwan/endpoints/configuration/policy/definition/app_route.py +50 -0
  71. catalystwan/endpoints/configuration/policy/definition/cflowd.py +46 -0
  72. catalystwan/endpoints/configuration/policy/definition/control.py +6 -11
  73. catalystwan/endpoints/configuration/policy/definition/device_access.py +6 -11
  74. catalystwan/endpoints/configuration/policy/definition/device_access_ipv6.py +6 -11
  75. catalystwan/endpoints/configuration/policy/definition/dial_peer.py +57 -0
  76. catalystwan/endpoints/configuration/policy/definition/dns_security.py +50 -0
  77. catalystwan/endpoints/configuration/policy/definition/fxo_port.py +57 -0
  78. catalystwan/endpoints/configuration/policy/definition/fxs_did_port.py +57 -0
  79. catalystwan/endpoints/configuration/policy/definition/fxs_port.py +57 -0
  80. catalystwan/endpoints/configuration/policy/definition/hub_and_spoke.py +6 -11
  81. catalystwan/endpoints/configuration/policy/definition/intrusion_prevention.py +52 -0
  82. catalystwan/endpoints/configuration/policy/definition/mesh.py +2 -11
  83. catalystwan/endpoints/configuration/policy/definition/pri_isdn_port.py +57 -0
  84. catalystwan/endpoints/configuration/policy/definition/qos_map.py +2 -11
  85. catalystwan/endpoints/configuration/policy/definition/rewrite.py +6 -11
  86. catalystwan/endpoints/configuration/policy/definition/route_policy.py +50 -0
  87. catalystwan/endpoints/configuration/policy/definition/rule_set.py +2 -11
  88. catalystwan/endpoints/configuration/policy/definition/security_group.py +6 -11
  89. catalystwan/endpoints/configuration/policy/definition/srst_phone_profile.py +59 -0
  90. catalystwan/endpoints/configuration/policy/definition/ssl_decryption.py +50 -0
  91. catalystwan/endpoints/configuration/policy/definition/ssl_decryption_utd_profile.py +52 -0
  92. catalystwan/endpoints/configuration/policy/definition/traffic_data.py +6 -11
  93. catalystwan/endpoints/configuration/policy/definition/url_filtering.py +50 -0
  94. catalystwan/endpoints/configuration/policy/definition/vpn_membership.py +6 -11
  95. catalystwan/endpoints/configuration/policy/definition/vpn_qos_map.py +50 -0
  96. catalystwan/endpoints/configuration/policy/definition/zone_based_firewall.py +6 -11
  97. catalystwan/endpoints/configuration/policy/list/app.py +3 -16
  98. catalystwan/endpoints/configuration/policy/list/app_probe.py +6 -15
  99. catalystwan/endpoints/configuration/policy/list/as_path.py +3 -16
  100. catalystwan/endpoints/configuration/policy/list/class_map.py +3 -16
  101. catalystwan/endpoints/configuration/policy/list/color.py +3 -16
  102. catalystwan/endpoints/configuration/policy/list/community.py +3 -16
  103. catalystwan/endpoints/configuration/policy/list/data_ipv6_prefix.py +6 -15
  104. catalystwan/endpoints/configuration/policy/list/data_prefix.py +3 -16
  105. catalystwan/endpoints/configuration/policy/list/expanded_community.py +6 -15
  106. catalystwan/endpoints/configuration/policy/list/extended_community.py +52 -0
  107. catalystwan/endpoints/configuration/policy/list/fax_protocol.py +48 -0
  108. catalystwan/endpoints/configuration/policy/list/fqdn.py +3 -16
  109. catalystwan/endpoints/configuration/policy/list/geo_location.py +3 -16
  110. catalystwan/endpoints/configuration/policy/list/identity.py +48 -0
  111. catalystwan/endpoints/configuration/policy/list/ips_signature.py +6 -15
  112. catalystwan/endpoints/configuration/policy/list/ipv6_prefix.py +3 -16
  113. catalystwan/endpoints/configuration/policy/list/local_app.py +3 -16
  114. catalystwan/endpoints/configuration/policy/list/local_domain.py +3 -16
  115. catalystwan/endpoints/configuration/policy/list/media_profile.py +52 -0
  116. catalystwan/endpoints/configuration/policy/list/mirror.py +3 -16
  117. catalystwan/endpoints/configuration/policy/list/modem_pass_through.py +52 -0
  118. catalystwan/endpoints/configuration/policy/list/policer.py +3 -16
  119. catalystwan/endpoints/configuration/policy/list/port.py +3 -16
  120. catalystwan/endpoints/configuration/policy/list/preferred_color_group.py +6 -15
  121. catalystwan/endpoints/configuration/policy/list/prefix.py +4 -16
  122. catalystwan/endpoints/configuration/policy/list/protocol_name.py +6 -15
  123. catalystwan/endpoints/configuration/policy/list/region.py +2 -10
  124. catalystwan/endpoints/configuration/policy/list/scalable_group_tag.py +52 -0
  125. catalystwan/endpoints/configuration/policy/list/site.py +3 -16
  126. catalystwan/endpoints/configuration/policy/list/sla.py +3 -16
  127. catalystwan/endpoints/configuration/policy/list/supervisory_disconnect.py +52 -0
  128. catalystwan/endpoints/configuration/policy/list/threat_grid_api_key.py +52 -0
  129. catalystwan/endpoints/configuration/policy/list/tloc.py +3 -16
  130. catalystwan/endpoints/configuration/policy/list/translation_profile.py +52 -0
  131. catalystwan/endpoints/configuration/policy/list/translation_rules.py +52 -0
  132. catalystwan/endpoints/configuration/policy/list/trunkgroup.py +48 -0
  133. catalystwan/endpoints/configuration/policy/list/umbrella_data.py +52 -0
  134. catalystwan/endpoints/configuration/policy/list/url_allow_list.py +3 -16
  135. catalystwan/endpoints/configuration/policy/list/url_block_list.py +3 -16
  136. catalystwan/endpoints/configuration/policy/list/vpn.py +3 -16
  137. catalystwan/endpoints/configuration/policy/list/zone.py +3 -16
  138. catalystwan/endpoints/configuration/policy/security_template.py +2 -3
  139. catalystwan/endpoints/configuration/policy/voice_template.py +39 -0
  140. catalystwan/endpoints/configuration/policy_group.py +30 -0
  141. catalystwan/endpoints/configuration/software_actions.py +2 -4
  142. catalystwan/endpoints/configuration/topology_group.py +51 -0
  143. catalystwan/endpoints/configuration_dashboard_status.py +2 -2
  144. catalystwan/endpoints/configuration_device_template.py +15 -1
  145. catalystwan/endpoints/configuration_feature_profile.py +8 -11
  146. catalystwan/endpoints/configuration_general_template.py +31 -0
  147. catalystwan/endpoints/configuration_group.py +28 -5
  148. catalystwan/endpoints/configuration_settings.py +90 -1
  149. catalystwan/endpoints/configuration_template_master.py +48 -0
  150. catalystwan/endpoints/endpoints_container.py +79 -19
  151. catalystwan/endpoints/real_time_monitoring/reboot_history.py +1 -3
  152. catalystwan/endpoints/tenant_migration.py +2 -0
  153. catalystwan/exceptions.py +17 -0
  154. catalystwan/integration_tests/base.py +81 -0
  155. catalystwan/integration_tests/feature_profile/sdwan/__init__.py +0 -0
  156. catalystwan/integration_tests/feature_profile/sdwan/policy/__init__.py +0 -0
  157. catalystwan/integration_tests/feature_profile/sdwan/policy/base.py +33 -0
  158. catalystwan/integration_tests/feature_profile/sdwan/policy/test_extended_community.py +33 -0
  159. catalystwan/integration_tests/feature_profile/sdwan/policy/test_security_app_list.py +32 -0
  160. catalystwan/integration_tests/feature_profile/sdwan/test_application_priority.py +433 -0
  161. catalystwan/integration_tests/feature_profile/sdwan/test_cli.py +54 -0
  162. catalystwan/integration_tests/feature_profile/sdwan/test_dns_security.py +106 -0
  163. catalystwan/integration_tests/feature_profile/sdwan/test_other.py +49 -0
  164. catalystwan/integration_tests/feature_profile/sdwan/test_service.py +1078 -0
  165. catalystwan/integration_tests/feature_profile/sdwan/test_sig_security.py +322 -0
  166. catalystwan/integration_tests/feature_profile/sdwan/test_ssl_decryption.py +85 -0
  167. catalystwan/integration_tests/feature_profile/sdwan/test_system.py +368 -0
  168. catalystwan/integration_tests/feature_profile/sdwan/test_tracker.py +127 -0
  169. catalystwan/integration_tests/feature_profile/sdwan/test_transport.py +1698 -0
  170. catalystwan/integration_tests/feature_profile/sdwan/topology/test_topology.py +93 -0
  171. catalystwan/integration_tests/profile_builder/__init__.py +0 -0
  172. catalystwan/integration_tests/profile_builder/test_pb_service.py +197 -0
  173. catalystwan/integration_tests/profile_builder/test_pb_transport.py +226 -0
  174. catalystwan/integration_tests/profile_builder/test_pb_uc_voice.py +277 -0
  175. catalystwan/integration_tests/test_data/__init__.py +117 -0
  176. catalystwan/integration_tests/test_find_template_values.py +7 -18
  177. catalystwan/integration_tests/test_network_hierarchy.py +82 -0
  178. catalystwan/integration_tests/test_settings.py +30 -0
  179. catalystwan/models/common.py +1898 -2
  180. catalystwan/models/configuration/common.py +1 -0
  181. catalystwan/models/configuration/feature_profile/common.py +634 -149
  182. catalystwan/models/configuration/feature_profile/parcel.py +238 -0
  183. catalystwan/models/configuration/feature_profile/sdwan/acl/__init__.py +13 -0
  184. catalystwan/models/configuration/feature_profile/sdwan/acl/ipv4acl.py +298 -0
  185. catalystwan/models/configuration/feature_profile/sdwan/acl/ipv6acl.py +344 -0
  186. catalystwan/models/configuration/feature_profile/sdwan/application_priority/__init__.py +218 -0
  187. catalystwan/models/configuration/feature_profile/sdwan/application_priority/cloud_probe.py +61 -0
  188. catalystwan/models/configuration/feature_profile/sdwan/application_priority/policy_settings.py +31 -0
  189. catalystwan/models/configuration/feature_profile/sdwan/application_priority/qos_policy.py +102 -0
  190. catalystwan/models/configuration/feature_profile/sdwan/application_priority/traffic_policy.py +1057 -0
  191. catalystwan/models/configuration/feature_profile/sdwan/cli/__init__.py +23 -0
  192. catalystwan/models/configuration/feature_profile/sdwan/cli/config.py +18 -0
  193. catalystwan/models/configuration/feature_profile/sdwan/cli/full_config.py +15 -0
  194. catalystwan/models/configuration/feature_profile/sdwan/dns_security/__init__.py +13 -0
  195. catalystwan/models/configuration/feature_profile/sdwan/dns_security/dns.py +110 -0
  196. catalystwan/models/configuration/feature_profile/sdwan/embedded_security/__init__.py +23 -0
  197. catalystwan/models/configuration/feature_profile/sdwan/embedded_security/ngfirewall.py +493 -0
  198. catalystwan/models/configuration/feature_profile/sdwan/embedded_security/policy.py +171 -0
  199. catalystwan/models/configuration/feature_profile/sdwan/other/__init__.py +25 -0
  200. catalystwan/models/configuration/feature_profile/sdwan/other/cybervision.py +44 -0
  201. catalystwan/models/configuration/feature_profile/sdwan/other/thousandeyes.py +147 -0
  202. catalystwan/models/configuration/feature_profile/sdwan/other/ucse.py +110 -0
  203. catalystwan/models/configuration/feature_profile/sdwan/policy_object/__init__.py +62 -48
  204. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/app_probe.py +34 -20
  205. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/application_list.py +8 -6
  206. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/as_path.py +22 -0
  207. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/color_list.py +7 -5
  208. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/data_prefix.py +13 -4
  209. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/expanded_community_list.py +9 -7
  210. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/extended_community.py +34 -0
  211. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/fowarding_class.py +7 -5
  212. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv4_network_object.py +15 -0
  213. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv4_service_object.py +254 -0
  214. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv6_data_prefix.py +11 -9
  215. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv6_prefix_list.py +25 -10
  216. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/mirror.py +27 -0
  217. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/network_object_group.py +15 -0
  218. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/object_group.py +15 -0
  219. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/{policier.py → policer.py} +12 -10
  220. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/prefered_group_color.py +29 -10
  221. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/prefix_list.py +23 -8
  222. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/service_object_group.py +21 -0
  223. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/sla_class.py +12 -31
  224. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/standard_community.py +16 -10
  225. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/tloc_list.py +8 -7
  226. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/aip.py +64 -0
  227. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/amp.py +79 -0
  228. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/application_list.py +8 -6
  229. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/data_prefix.py +7 -5
  230. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/fqdn.py +7 -5
  231. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/geolocation_list.py +7 -5
  232. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/identity.py +30 -0
  233. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/intrusion_prevention.py +58 -0
  234. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ips_signature.py +7 -5
  235. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/local_domain.py +7 -5
  236. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/object_group.py +72 -0
  237. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/protocol_list.py +7 -5
  238. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/rule_set.py +137 -0
  239. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/scalable_group_tag.py +26 -0
  240. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/security_port.py +21 -11
  241. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ssl_decryption.py +126 -0
  242. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ssl_decryption_profile.py +165 -0
  243. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/url.py +15 -10
  244. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/url_filtering.py +148 -0
  245. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/zone.py +14 -18
  246. catalystwan/models/configuration/feature_profile/sdwan/routing/__init__.py +26 -0
  247. catalystwan/models/configuration/feature_profile/sdwan/routing/bgp.py +609 -0
  248. catalystwan/models/configuration/feature_profile/sdwan/{service → routing}/ospf.py +55 -47
  249. catalystwan/models/configuration/feature_profile/sdwan/{service → routing}/ospfv3.py +74 -72
  250. catalystwan/models/configuration/feature_profile/sdwan/service/__init__.py +91 -0
  251. catalystwan/models/configuration/feature_profile/sdwan/service/appqoe.py +76 -41
  252. catalystwan/models/configuration/feature_profile/sdwan/service/dhcp_server.py +107 -64
  253. catalystwan/models/configuration/feature_profile/sdwan/service/dual_router_ha.py +26 -0
  254. catalystwan/models/configuration/feature_profile/sdwan/service/eigrp.py +39 -42
  255. catalystwan/models/configuration/feature_profile/sdwan/service/lan/common.py +7 -88
  256. catalystwan/models/configuration/feature_profile/sdwan/service/lan/ethernet.py +231 -155
  257. catalystwan/models/configuration/feature_profile/sdwan/service/lan/gre.py +38 -108
  258. catalystwan/models/configuration/feature_profile/sdwan/service/lan/ipsec.py +77 -84
  259. catalystwan/models/configuration/feature_profile/sdwan/service/lan/multilink.py +101 -0
  260. catalystwan/models/configuration/feature_profile/sdwan/service/lan/svi.py +62 -56
  261. catalystwan/models/configuration/feature_profile/sdwan/service/lan/vpn.py +111 -120
  262. catalystwan/models/configuration/feature_profile/sdwan/service/multicast.py +56 -57
  263. catalystwan/models/configuration/feature_profile/sdwan/service/object_tracker.py +15 -21
  264. catalystwan/models/configuration/feature_profile/sdwan/service/route_policy.py +358 -110
  265. catalystwan/models/configuration/feature_profile/sdwan/service/service_chain.py +38 -0
  266. catalystwan/models/configuration/feature_profile/sdwan/service/service_insertion_attachment.py +17 -25
  267. catalystwan/models/configuration/feature_profile/sdwan/service/switchport.py +50 -58
  268. catalystwan/models/configuration/feature_profile/sdwan/service/tracker.py +12 -21
  269. catalystwan/models/configuration/feature_profile/sdwan/service/wireless_lan.py +27 -31
  270. catalystwan/models/configuration/feature_profile/sdwan/sig_security/__init__.py +19 -0
  271. catalystwan/models/configuration/feature_profile/sdwan/sig_security/sig_security.py +379 -0
  272. catalystwan/models/configuration/feature_profile/sdwan/system/__init__.py +59 -0
  273. catalystwan/models/configuration/feature_profile/sdwan/system/aaa.py +58 -10
  274. catalystwan/models/configuration/feature_profile/sdwan/system/banner.py +30 -0
  275. catalystwan/models/configuration/feature_profile/sdwan/system/basic.py +290 -0
  276. catalystwan/models/configuration/feature_profile/sdwan/system/bfd.py +69 -0
  277. catalystwan/models/configuration/feature_profile/sdwan/system/device_access.py +157 -0
  278. catalystwan/models/configuration/feature_profile/sdwan/system/device_access_ipv6.py +157 -0
  279. catalystwan/models/configuration/feature_profile/sdwan/system/global_parcel.py +163 -0
  280. catalystwan/models/configuration/feature_profile/sdwan/system/logging_parcel.py +162 -0
  281. catalystwan/models/configuration/feature_profile/sdwan/system/mrf.py +75 -0
  282. catalystwan/models/configuration/feature_profile/sdwan/system/ntp.py +103 -0
  283. catalystwan/models/configuration/feature_profile/sdwan/system/omp.py +120 -0
  284. catalystwan/models/configuration/feature_profile/sdwan/system/security.py +179 -0
  285. catalystwan/models/configuration/feature_profile/sdwan/system/snmp.py +173 -0
  286. catalystwan/models/configuration/feature_profile/sdwan/topology/__init__.py +29 -0
  287. catalystwan/models/configuration/feature_profile/sdwan/topology/custom_control.py +425 -0
  288. catalystwan/models/configuration/feature_profile/sdwan/topology/hubspoke.py +60 -0
  289. catalystwan/models/configuration/feature_profile/sdwan/topology/mesh.py +23 -0
  290. catalystwan/models/configuration/feature_profile/sdwan/trackers/__init__.py +36 -0
  291. catalystwan/models/configuration/feature_profile/sdwan/trackers/tracker.py +96 -0
  292. catalystwan/models/configuration/feature_profile/sdwan/trackers/tracker_group.py +63 -0
  293. catalystwan/models/configuration/feature_profile/sdwan/transport/__init__.py +93 -0
  294. catalystwan/models/configuration/feature_profile/sdwan/transport/cellular_controller.py +26 -23
  295. catalystwan/models/configuration/feature_profile/sdwan/transport/cellular_profile.py +71 -0
  296. catalystwan/models/configuration/feature_profile/sdwan/transport/gps.py +37 -0
  297. catalystwan/models/configuration/feature_profile/sdwan/transport/management/ethernet.py +121 -0
  298. catalystwan/models/configuration/feature_profile/sdwan/transport/t1e1controller.py +124 -0
  299. catalystwan/models/configuration/feature_profile/sdwan/transport/vpn.py +285 -0
  300. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/cellular.py +173 -0
  301. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/ethernet.py +389 -0
  302. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/gre.py +46 -0
  303. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/ipsec.py +137 -0
  304. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/multilink.py +219 -0
  305. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/protocol_over.py +405 -0
  306. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/t1e1serial.py +195 -0
  307. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/__init__.py +62 -0
  308. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/analog_interface.py +436 -0
  309. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/call_routing.py +179 -0
  310. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/digital_interface.py +380 -0
  311. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/dsp_farm.py +193 -0
  312. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/media_profile.py +17 -0
  313. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/server_group.py +51 -0
  314. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/srst.py +86 -0
  315. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/supervisory_disconnect.py +69 -0
  316. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/translation_profile.py +42 -0
  317. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/translation_rule.py +31 -0
  318. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/trunk_group.py +26 -0
  319. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/voice_global.py +55 -0
  320. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/voice_tenant.py +40 -0
  321. catalystwan/models/configuration/network_hierarchy/__init__.py +22 -0
  322. catalystwan/models/configuration/network_hierarchy/cflowd.py +120 -0
  323. catalystwan/models/configuration/network_hierarchy/node.py +88 -0
  324. catalystwan/models/configuration/policy_group.py +74 -0
  325. catalystwan/models/configuration/profile_type.py +1 -6
  326. catalystwan/models/configuration/topology_group.py +52 -0
  327. catalystwan/models/policy/__init__.py +275 -69
  328. catalystwan/models/policy/centralized.py +26 -29
  329. catalystwan/models/policy/{definitions → definition}/access_control_list.py +47 -17
  330. catalystwan/models/policy/{definitions → definition}/access_control_list_ipv6.py +42 -18
  331. catalystwan/models/policy/definition/aip.py +60 -0
  332. catalystwan/models/policy/definition/amp.py +65 -0
  333. catalystwan/models/policy/definition/app_route.py +246 -0
  334. catalystwan/models/policy/definition/cflowd.py +95 -0
  335. catalystwan/models/policy/{definitions → definition}/control.py +48 -25
  336. catalystwan/models/policy/{definitions → definition}/device_access.py +22 -11
  337. catalystwan/models/policy/{definitions → definition}/device_access_ipv6.py +20 -11
  338. catalystwan/models/policy/definition/dial_peer.py +60 -0
  339. catalystwan/models/policy/definition/dns_security.py +130 -0
  340. catalystwan/models/policy/definition/fxo_port.py +63 -0
  341. catalystwan/models/policy/definition/fxs_did_port.py +58 -0
  342. catalystwan/models/policy/definition/fxs_port.py +56 -0
  343. catalystwan/models/policy/{definitions → definition}/hub_and_spoke.py +18 -4
  344. catalystwan/models/policy/definition/intrusion_prevention.py +55 -0
  345. catalystwan/models/policy/{definitions → definition}/mesh.py +13 -1
  346. catalystwan/models/policy/definition/pri_isdn_port.py +48 -0
  347. catalystwan/models/policy/{definitions → definition}/qos_map.py +39 -32
  348. catalystwan/models/policy/{definitions → definition}/rewrite.py +12 -2
  349. catalystwan/models/policy/definition/route_policy.py +187 -0
  350. catalystwan/models/policy/{definitions → definition}/rule_set.py +66 -48
  351. catalystwan/models/policy/{definitions → definition}/security_group.py +38 -14
  352. catalystwan/models/policy/definition/srst_phone_profile.py +37 -0
  353. catalystwan/models/policy/definition/ssl_decryption.py +209 -0
  354. catalystwan/models/policy/definition/ssl_decryption_utd_profile.py +87 -0
  355. catalystwan/models/policy/{definitions → definition}/traffic_data.py +184 -61
  356. catalystwan/models/policy/definition/url_filtering.py +70 -0
  357. catalystwan/models/policy/{definitions → definition}/vpn_membership.py +13 -1
  358. catalystwan/models/policy/definition/vpn_qos_map.py +46 -0
  359. catalystwan/models/policy/{definitions → definition}/zone_based_firewall.py +93 -32
  360. catalystwan/models/policy/list/app.py +44 -0
  361. catalystwan/models/policy/list/app_probe.py +42 -0
  362. catalystwan/models/policy/list/as_path.py +30 -0
  363. catalystwan/models/policy/list/class_map.py +30 -0
  364. catalystwan/models/policy/list/color.py +28 -0
  365. catalystwan/models/policy/list/communities.py +83 -0
  366. catalystwan/models/policy/list/data_ipv6_prefix.py +30 -0
  367. catalystwan/models/policy/list/data_prefix.py +30 -0
  368. catalystwan/models/policy/list/fax_protocol.py +45 -0
  369. catalystwan/models/policy/list/fqdn.py +24 -0
  370. catalystwan/models/policy/list/geo_location.py +33 -0
  371. catalystwan/models/policy/list/identity.py +29 -0
  372. catalystwan/models/policy/list/ips_signature.py +27 -0
  373. catalystwan/models/policy/list/ipv6_prefix.py +33 -0
  374. catalystwan/models/policy/list/local_app.py +45 -0
  375. catalystwan/models/policy/list/local_domain.py +36 -0
  376. catalystwan/models/policy/list/media_profile.py +44 -0
  377. catalystwan/models/policy/list/mirror.py +27 -0
  378. catalystwan/models/policy/list/modem_pass_through.py +27 -0
  379. catalystwan/models/policy/list/policer.py +39 -0
  380. catalystwan/models/policy/list/port.py +33 -0
  381. catalystwan/models/policy/list/preferred_color_group.py +82 -0
  382. catalystwan/models/policy/list/prefix.py +33 -0
  383. catalystwan/models/policy/list/protocol_name.py +26 -0
  384. catalystwan/models/policy/list/region.py +45 -0
  385. catalystwan/models/policy/list/scalable_group_tag.py +30 -0
  386. catalystwan/models/policy/list/site.py +34 -0
  387. catalystwan/models/policy/list/sla.py +77 -0
  388. catalystwan/models/policy/list/supervisory_disconnect.py +62 -0
  389. catalystwan/models/policy/list/threat_grid_api_key.py +32 -0
  390. catalystwan/models/policy/list/tloc.py +32 -0
  391. catalystwan/models/policy/list/translation_profile.py +32 -0
  392. catalystwan/models/policy/list/translation_rules.py +29 -0
  393. catalystwan/models/policy/list/trunkgroup.py +56 -0
  394. catalystwan/models/policy/list/umbrella_data.py +30 -0
  395. catalystwan/models/policy/list/url.py +39 -0
  396. catalystwan/models/policy/list/vpn.py +40 -0
  397. catalystwan/models/policy/list/zone.py +46 -0
  398. catalystwan/models/policy/localized.py +34 -16
  399. catalystwan/models/policy/policy.py +13 -9
  400. catalystwan/models/policy/policy_definition.py +673 -173
  401. catalystwan/models/policy/policy_list.py +38 -27
  402. catalystwan/models/policy/security.py +145 -46
  403. catalystwan/models/policy/voice.py +77 -0
  404. catalystwan/models/settings.py +41 -0
  405. catalystwan/models/templates.py +79 -0
  406. catalystwan/response.py +6 -2
  407. catalystwan/session.py +1 -1
  408. catalystwan/tests/builders/test_report.py +60 -0
  409. catalystwan/tests/builders/uc_voice.py +85 -0
  410. catalystwan/tests/models/__init__.py +0 -0
  411. catalystwan/tests/models/test_digital_interface.py +56 -0
  412. catalystwan/tests/templates/definitions/aaa_basic.json +96 -0
  413. catalystwan/tests/templates/definitions/aaa_complex.json +464 -0
  414. catalystwan/tests/templates/definitions/{iuo.json → cisco_aaa.json} +44 -15
  415. catalystwan/tests/templates/definitions/cisco_aaa_complex.json +361 -0
  416. catalystwan/tests/templates/definitions/cisco_logging_complex.json +268 -0
  417. catalystwan/tests/templates/definitions/cisco_ntp_complex.json +143 -0
  418. catalystwan/tests/templates/definitions/cisco_omp_complex.json +175 -0
  419. catalystwan/tests/templates/definitions/cisco_ospf_complex.json +302 -0
  420. catalystwan/tests/templates/definitions/cisco_sig.json +405 -0
  421. catalystwan/tests/templates/definitions/cisco_snmp_complex.json +258 -0
  422. catalystwan/tests/templates/definitions/cisco_system_complex.json +502 -0
  423. catalystwan/tests/templates/definitions/{Basic_Cisco_VPN_Model.json → cisco_vpn_basic.json} +2 -2
  424. catalystwan/tests/templates/definitions/{complex_cisco_vpn.json → cisco_vpn_complex.json} +27 -12
  425. catalystwan/tests/templates/definitions/cisco_vpn_interface_complex.json +821 -0
  426. catalystwan/tests/templates/definitions/omp_vsmart_1.json +26 -0
  427. catalystwan/tests/templates/definitions/{omp_2.json → omp_vsmart_2.json} +16 -2
  428. catalystwan/tests/templates/definitions/{omp_3.json → omp_vsmart_3.json} +16 -2
  429. catalystwan/tests/templates/definitions/omp_vsmart_complex.json +73 -0
  430. catalystwan/tests/templates/definitions/security_vsmart_complex.json +24 -0
  431. catalystwan/tests/templates/definitions/system_vsmart_complex.json +193 -0
  432. catalystwan/tests/templates/definitions/vpn_vsmart_basic.json +17 -0
  433. catalystwan/tests/templates/definitions/vpn_vsmart_complex.json +179 -0
  434. catalystwan/tests/templates/definitions/vpn_vsmart_interface_basic.json +42 -0
  435. catalystwan/tests/templates/definitions/vpn_vsmart_interface_complex.json +208 -0
  436. catalystwan/tests/templates/models/__init__.py +46 -13
  437. catalystwan/tests/templates/models/aaa.py +106 -0
  438. catalystwan/tests/templates/models/cisco_aaa.py +81 -48
  439. catalystwan/tests/templates/models/cisco_banner.py +2 -2
  440. catalystwan/tests/templates/models/cisco_bfd.py +4 -6
  441. catalystwan/tests/templates/models/cisco_logging.py +65 -0
  442. catalystwan/tests/templates/models/cisco_ntp.py +17 -0
  443. catalystwan/tests/templates/models/cisco_omp.py +37 -0
  444. catalystwan/tests/templates/models/cisco_ospf.py +60 -0
  445. catalystwan/tests/templates/models/cisco_secure_internet_gateway.py +95 -0
  446. catalystwan/tests/templates/models/cisco_snmp.py +40 -0
  447. catalystwan/tests/templates/models/cisco_system.py +108 -3
  448. catalystwan/tests/templates/models/cisco_vpn.py +42 -72
  449. catalystwan/tests/templates/models/cisco_vpn_interface.py +200 -0
  450. catalystwan/tests/templates/models/omp_vsmart.py +28 -8
  451. catalystwan/tests/templates/models/security_vsmart.py +11 -0
  452. catalystwan/tests/templates/models/system_vsmart.py +37 -0
  453. catalystwan/tests/templates/models/vpn_vsmart.py +32 -0
  454. catalystwan/tests/templates/models/vpn_vsmart_interface.py +54 -0
  455. catalystwan/tests/templates/schemas/aaa.json +1096 -0
  456. catalystwan/tests/templates/schemas/cedge_aaa.json +1 -1
  457. catalystwan/tests/templates/schemas/cisco_logging.json +577 -0
  458. catalystwan/tests/templates/schemas/cisco_ntp.json +265 -0
  459. catalystwan/tests/templates/schemas/cisco_omp.json +479 -0
  460. catalystwan/tests/templates/schemas/cisco_ospf.json +908 -0
  461. catalystwan/tests/templates/schemas/cisco_secure_internet_gateway.json +1520 -0
  462. catalystwan/tests/templates/schemas/cisco_snmp.json +561 -0
  463. catalystwan/tests/templates/schemas/cisco_system.json +242 -0
  464. catalystwan/tests/templates/schemas/cisco_vpn.json +53 -1
  465. catalystwan/tests/templates/schemas/cisco_vpn_interface.json +3348 -0
  466. catalystwan/tests/templates/schemas/omp-vsmart.json +20 -0
  467. catalystwan/tests/templates/schemas/security-vsmart.json +58 -0
  468. catalystwan/tests/templates/schemas/system-vsmart.json +2585 -0
  469. catalystwan/tests/templates/schemas/vpn-vsmart-interface.json +859 -0
  470. catalystwan/tests/templates/schemas/vpn-vsmart.json +445 -0
  471. catalystwan/tests/templates/test_chose_model.py +6 -10
  472. catalystwan/tests/templates/test_deserialize_model.py +4 -4
  473. catalystwan/tests/templates/test_find_template_values.py +229 -0
  474. catalystwan/tests/templates/test_find_template_values_2.py +193 -0
  475. catalystwan/tests/templates/test_serialize_model.py +1 -2
  476. catalystwan/tests/test_cli_template.py +8 -9
  477. catalystwan/tests/test_endpoints.py +42 -11
  478. catalystwan/tests/test_feature_profile_api.py +282 -0
  479. catalystwan/tests/test_models_common.py +53 -0
  480. catalystwan/tests/test_templates.py +16 -19
  481. catalystwan/utils/feature_template/find_template_values.py +17 -4
  482. catalystwan/utils/model.py +45 -0
  483. catalystwan/utils/persona.py +5 -0
  484. catalystwan/utils/type_check.py +22 -0
  485. catalystwan/workflows/backup_restore_device_templates.py +467 -0
  486. catalystwan/workflows/tenant_migration.py +1 -1
  487. {catalystwan-0.41.2.dist-info → catalystwan-0.41.2.dev0.dist-info}/METADATA +20 -1
  488. catalystwan-0.41.2.dev0.dist-info/RECORD +636 -0
  489. catalystwan/ENDPOINTS.md +0 -611
  490. catalystwan/api/configuration_groups/parcels/cellular_controller.py +0 -33
  491. catalystwan/api/templates/device_template/device_template_payload.json.j2 +0 -19
  492. catalystwan/models/configuration/config_migration.py +0 -36
  493. catalystwan/models/configuration/feature_profile/sdwan/management/vpn.py +0 -26
  494. catalystwan/models/configuration/feature_profile/sdwan/service/acl.py +0 -409
  495. catalystwan/models/configuration/feature_profile/sdwan/service/bgp.py +0 -288
  496. catalystwan/models/policy/lists.py +0 -330
  497. catalystwan/models/policy/lists_entries.py +0 -444
  498. catalystwan/tests/templates/definitions/complex_aaa.json +0 -277
  499. catalystwan/tests/templates/definitions/omp_1.json +0 -11
  500. catalystwan/utils/timezone.py +0 -422
  501. catalystwan-0.41.2.dist-info/RECORD +0 -353
  502. /catalystwan/tests/templates/definitions/{banner_1.json → cisco_banner.json} +0 -0
  503. {catalystwan-0.41.2.dist-info → catalystwan-0.41.2.dev0.dist-info}/LICENSE +0 -0
  504. {catalystwan-0.41.2.dist-info → catalystwan-0.41.2.dev0.dist-info}/WHEEL +0 -0
@@ -0,0 +1,2585 @@
1
+ {
2
+ "name": "System",
3
+ "xmlPath": [],
4
+ "xmlRootTag": "system",
5
+ "nameSpace": "http://viptela.com/system",
6
+ "fields": [
7
+ {
8
+ "key": "timezone",
9
+ "description": "Timezone",
10
+ "details": "Set the timezone",
11
+ "optionType": [
12
+ "constant",
13
+ "variable",
14
+ "ignore"
15
+ ],
16
+ "defaultOption": "ignore",
17
+ "dataType": {
18
+ "type": "enum",
19
+ "values": [
20
+ {
21
+ "key": "Europe/Andorra",
22
+ "value": "Europe/Andorra"
23
+ },
24
+ {
25
+ "key": "Asia/Dubai",
26
+ "value": "Asia/Dubai"
27
+ },
28
+ {
29
+ "key": "Asia/Kabul",
30
+ "value": "Asia/Kabul"
31
+ },
32
+ {
33
+ "key": "America/Antigua",
34
+ "value": "America/Antigua"
35
+ },
36
+ {
37
+ "key": "America/Anguilla",
38
+ "value": "America/Anguilla"
39
+ },
40
+ {
41
+ "key": "Europe/Tirane",
42
+ "value": "Europe/Tirane"
43
+ },
44
+ {
45
+ "key": "Asia/Yerevan",
46
+ "value": "Asia/Yerevan"
47
+ },
48
+ {
49
+ "key": "Africa/Luanda",
50
+ "value": "Africa/Luanda"
51
+ },
52
+ {
53
+ "key": "Antarctica/McMurdo",
54
+ "value": "Antarctica/McMurdo"
55
+ },
56
+ {
57
+ "key": "Antarctica/Rothera",
58
+ "value": "Antarctica/Rothera"
59
+ },
60
+ {
61
+ "key": "Antarctica/Palmer",
62
+ "value": "Antarctica/Palmer"
63
+ },
64
+ {
65
+ "key": "Antarctica/Mawson",
66
+ "value": "Antarctica/Mawson"
67
+ },
68
+ {
69
+ "key": "Antarctica/Davis",
70
+ "value": "Antarctica/Davis"
71
+ },
72
+ {
73
+ "key": "Antarctica/Casey",
74
+ "value": "Antarctica/Casey"
75
+ },
76
+ {
77
+ "key": "Antarctica/Vostok",
78
+ "value": "Antarctica/Vostok"
79
+ },
80
+ {
81
+ "key": "Antarctica/DumontDUrville",
82
+ "value": "Antarctica/DumontDUrville"
83
+ },
84
+ {
85
+ "key": "Antarctica/Syowa",
86
+ "value": "Antarctica/Syowa"
87
+ },
88
+ {
89
+ "key": "America/Argentina/Buenos_Aires",
90
+ "value": "America/Argentina/Buenos_Aires"
91
+ },
92
+ {
93
+ "key": "America/Argentina/Cordoba",
94
+ "value": "America/Argentina/Cordoba"
95
+ },
96
+ {
97
+ "key": "America/Argentina/Salta",
98
+ "value": "America/Argentina/Salta"
99
+ },
100
+ {
101
+ "key": "America/Argentina/Jujuy",
102
+ "value": "America/Argentina/Jujuy"
103
+ },
104
+ {
105
+ "key": "America/Argentina/Tucuman",
106
+ "value": "America/Argentina/Tucuman"
107
+ },
108
+ {
109
+ "key": "America/Argentina/Catamarca",
110
+ "value": "America/Argentina/Catamarca"
111
+ },
112
+ {
113
+ "key": "America/Argentina/La_Rioja",
114
+ "value": "America/Argentina/La_Rioja"
115
+ },
116
+ {
117
+ "key": "America/Argentina/San_Juan",
118
+ "value": "America/Argentina/San_Juan"
119
+ },
120
+ {
121
+ "key": "America/Argentina/Mendoza",
122
+ "value": "America/Argentina/Mendoza"
123
+ },
124
+ {
125
+ "key": "America/Argentina/San_Luis",
126
+ "value": "America/Argentina/San_Luis"
127
+ },
128
+ {
129
+ "key": "America/Argentina/Rio_Gallegos",
130
+ "value": "America/Argentina/Rio_Gallegos"
131
+ },
132
+ {
133
+ "key": "America/Argentina/Ushuaia",
134
+ "value": "America/Argentina/Ushuaia"
135
+ },
136
+ {
137
+ "key": "Pacific/Pago_Pago",
138
+ "value": "Pacific/Pago_Pago"
139
+ },
140
+ {
141
+ "key": "Europe/Vienna",
142
+ "value": "Europe/Vienna"
143
+ },
144
+ {
145
+ "key": "Australia/Lord_Howe",
146
+ "value": "Australia/Lord_Howe"
147
+ },
148
+ {
149
+ "key": "Antarctica/Macquarie",
150
+ "value": "Antarctica/Macquarie"
151
+ },
152
+ {
153
+ "key": "Australia/Hobart",
154
+ "value": "Australia/Hobart"
155
+ },
156
+ {
157
+ "key": "Australia/Currie",
158
+ "value": "Australia/Currie"
159
+ },
160
+ {
161
+ "key": "Australia/Melbourne",
162
+ "value": "Australia/Melbourne"
163
+ },
164
+ {
165
+ "key": "Australia/Sydney",
166
+ "value": "Australia/Sydney"
167
+ },
168
+ {
169
+ "key": "Australia/Broken_Hill",
170
+ "value": "Australia/Broken_Hill"
171
+ },
172
+ {
173
+ "key": "Australia/Brisbane",
174
+ "value": "Australia/Brisbane"
175
+ },
176
+ {
177
+ "key": "Australia/Lindeman",
178
+ "value": "Australia/Lindeman"
179
+ },
180
+ {
181
+ "key": "Australia/Adelaide",
182
+ "value": "Australia/Adelaide"
183
+ },
184
+ {
185
+ "key": "Australia/Darwin",
186
+ "value": "Australia/Darwin"
187
+ },
188
+ {
189
+ "key": "Australia/Perth",
190
+ "value": "Australia/Perth"
191
+ },
192
+ {
193
+ "key": "Australia/Eucla",
194
+ "value": "Australia/Eucla"
195
+ },
196
+ {
197
+ "key": "America/Aruba",
198
+ "value": "America/Aruba"
199
+ },
200
+ {
201
+ "key": "Europe/Mariehamn",
202
+ "value": "Europe/Mariehamn"
203
+ },
204
+ {
205
+ "key": "Asia/Baku",
206
+ "value": "Asia/Baku"
207
+ },
208
+ {
209
+ "key": "Europe/Sarajevo",
210
+ "value": "Europe/Sarajevo"
211
+ },
212
+ {
213
+ "key": "America/Barbados",
214
+ "value": "America/Barbados"
215
+ },
216
+ {
217
+ "key": "Asia/Dhaka",
218
+ "value": "Asia/Dhaka"
219
+ },
220
+ {
221
+ "key": "Europe/Brussels",
222
+ "value": "Europe/Brussels"
223
+ },
224
+ {
225
+ "key": "Africa/Ouagadougou",
226
+ "value": "Africa/Ouagadougou"
227
+ },
228
+ {
229
+ "key": "Europe/Sofia",
230
+ "value": "Europe/Sofia"
231
+ },
232
+ {
233
+ "key": "Asia/Bahrain",
234
+ "value": "Asia/Bahrain"
235
+ },
236
+ {
237
+ "key": "Africa/Bujumbura",
238
+ "value": "Africa/Bujumbura"
239
+ },
240
+ {
241
+ "key": "Africa/Porto-Novo",
242
+ "value": "Africa/Porto-Novo"
243
+ },
244
+ {
245
+ "key": "America/St_Barthelemy",
246
+ "value": "America/St_Barthelemy"
247
+ },
248
+ {
249
+ "key": "Atlantic/Bermuda",
250
+ "value": "Atlantic/Bermuda"
251
+ },
252
+ {
253
+ "key": "Asia/Brunei",
254
+ "value": "Asia/Brunei"
255
+ },
256
+ {
257
+ "key": "America/La_Paz",
258
+ "value": "America/La_Paz"
259
+ },
260
+ {
261
+ "key": "America/Kralendijk",
262
+ "value": "America/Kralendijk"
263
+ },
264
+ {
265
+ "key": "America/Noronha",
266
+ "value": "America/Noronha"
267
+ },
268
+ {
269
+ "key": "America/Belem",
270
+ "value": "America/Belem"
271
+ },
272
+ {
273
+ "key": "America/Fortaleza",
274
+ "value": "America/Fortaleza"
275
+ },
276
+ {
277
+ "key": "America/Recife",
278
+ "value": "America/Recife"
279
+ },
280
+ {
281
+ "key": "America/Araguaina",
282
+ "value": "America/Araguaina"
283
+ },
284
+ {
285
+ "key": "America/Maceio",
286
+ "value": "America/Maceio"
287
+ },
288
+ {
289
+ "key": "America/Bahia",
290
+ "value": "America/Bahia"
291
+ },
292
+ {
293
+ "key": "America/Sao_Paulo",
294
+ "value": "America/Sao_Paulo"
295
+ },
296
+ {
297
+ "key": "America/Campo_Grande",
298
+ "value": "America/Campo_Grande"
299
+ },
300
+ {
301
+ "key": "America/Cuiaba",
302
+ "value": "America/Cuiaba"
303
+ },
304
+ {
305
+ "key": "America/Santarem",
306
+ "value": "America/Santarem"
307
+ },
308
+ {
309
+ "key": "America/Porto_Velho",
310
+ "value": "America/Porto_Velho"
311
+ },
312
+ {
313
+ "key": "America/Boa_Vista",
314
+ "value": "America/Boa_Vista"
315
+ },
316
+ {
317
+ "key": "America/Manaus",
318
+ "value": "America/Manaus"
319
+ },
320
+ {
321
+ "key": "America/Eirunepe",
322
+ "value": "America/Eirunepe"
323
+ },
324
+ {
325
+ "key": "America/Rio_Branco",
326
+ "value": "America/Rio_Branco"
327
+ },
328
+ {
329
+ "key": "America/Nassau",
330
+ "value": "America/Nassau"
331
+ },
332
+ {
333
+ "key": "Asia/Thimphu",
334
+ "value": "Asia/Thimphu"
335
+ },
336
+ {
337
+ "key": "Africa/Gaborone",
338
+ "value": "Africa/Gaborone"
339
+ },
340
+ {
341
+ "key": "Europe/Minsk",
342
+ "value": "Europe/Minsk"
343
+ },
344
+ {
345
+ "key": "America/Belize",
346
+ "value": "America/Belize"
347
+ },
348
+ {
349
+ "key": "America/St_Johns",
350
+ "value": "America/St_Johns"
351
+ },
352
+ {
353
+ "key": "America/Halifax",
354
+ "value": "America/Halifax"
355
+ },
356
+ {
357
+ "key": "America/Glace_Bay",
358
+ "value": "America/Glace_Bay"
359
+ },
360
+ {
361
+ "key": "America/Moncton",
362
+ "value": "America/Moncton"
363
+ },
364
+ {
365
+ "key": "America/Goose_Bay",
366
+ "value": "America/Goose_Bay"
367
+ },
368
+ {
369
+ "key": "America/Blanc-Sablon",
370
+ "value": "America/Blanc-Sablon"
371
+ },
372
+ {
373
+ "key": "America/Toronto",
374
+ "value": "America/Toronto"
375
+ },
376
+ {
377
+ "key": "America/Nipigon",
378
+ "value": "America/Nipigon"
379
+ },
380
+ {
381
+ "key": "America/Thunder_Bay",
382
+ "value": "America/Thunder_Bay"
383
+ },
384
+ {
385
+ "key": "America/Iqaluit",
386
+ "value": "America/Iqaluit"
387
+ },
388
+ {
389
+ "key": "America/Pangnirtung",
390
+ "value": "America/Pangnirtung"
391
+ },
392
+ {
393
+ "key": "America/Resolute",
394
+ "value": "America/Resolute"
395
+ },
396
+ {
397
+ "key": "America/Atikokan",
398
+ "value": "America/Atikokan"
399
+ },
400
+ {
401
+ "key": "America/Rankin_Inlet",
402
+ "value": "America/Rankin_Inlet"
403
+ },
404
+ {
405
+ "key": "America/Winnipeg",
406
+ "value": "America/Winnipeg"
407
+ },
408
+ {
409
+ "key": "America/Rainy_River",
410
+ "value": "America/Rainy_River"
411
+ },
412
+ {
413
+ "key": "America/Regina",
414
+ "value": "America/Regina"
415
+ },
416
+ {
417
+ "key": "America/Swift_Current",
418
+ "value": "America/Swift_Current"
419
+ },
420
+ {
421
+ "key": "America/Edmonton",
422
+ "value": "America/Edmonton"
423
+ },
424
+ {
425
+ "key": "America/Cambridge_Bay",
426
+ "value": "America/Cambridge_Bay"
427
+ },
428
+ {
429
+ "key": "America/Yellowknife",
430
+ "value": "America/Yellowknife"
431
+ },
432
+ {
433
+ "key": "America/Inuvik",
434
+ "value": "America/Inuvik"
435
+ },
436
+ {
437
+ "key": "America/Creston",
438
+ "value": "America/Creston"
439
+ },
440
+ {
441
+ "key": "America/Dawson_Creek",
442
+ "value": "America/Dawson_Creek"
443
+ },
444
+ {
445
+ "key": "America/Vancouver",
446
+ "value": "America/Vancouver"
447
+ },
448
+ {
449
+ "key": "America/Whitehorse",
450
+ "value": "America/Whitehorse"
451
+ },
452
+ {
453
+ "key": "America/Dawson",
454
+ "value": "America/Dawson"
455
+ },
456
+ {
457
+ "key": "Indian/Cocos",
458
+ "value": "Indian/Cocos"
459
+ },
460
+ {
461
+ "key": "Africa/Kinshasa",
462
+ "value": "Africa/Kinshasa"
463
+ },
464
+ {
465
+ "key": "Africa/Lubumbashi",
466
+ "value": "Africa/Lubumbashi"
467
+ },
468
+ {
469
+ "key": "Africa/Bangui",
470
+ "value": "Africa/Bangui"
471
+ },
472
+ {
473
+ "key": "Africa/Brazzaville",
474
+ "value": "Africa/Brazzaville"
475
+ },
476
+ {
477
+ "key": "Europe/Zurich",
478
+ "value": "Europe/Zurich"
479
+ },
480
+ {
481
+ "key": "Africa/Abidjan",
482
+ "value": "Africa/Abidjan"
483
+ },
484
+ {
485
+ "key": "Pacific/Rarotonga",
486
+ "value": "Pacific/Rarotonga"
487
+ },
488
+ {
489
+ "key": "America/Santiago",
490
+ "value": "America/Santiago"
491
+ },
492
+ {
493
+ "key": "Pacific/Easter",
494
+ "value": "Pacific/Easter"
495
+ },
496
+ {
497
+ "key": "Africa/Douala",
498
+ "value": "Africa/Douala"
499
+ },
500
+ {
501
+ "key": "Asia/Shanghai",
502
+ "value": "Asia/Shanghai"
503
+ },
504
+ {
505
+ "key": "Asia/Harbin",
506
+ "value": "Asia/Harbin"
507
+ },
508
+ {
509
+ "key": "Asia/Chongqing",
510
+ "value": "Asia/Chongqing"
511
+ },
512
+ {
513
+ "key": "Asia/Urumqi",
514
+ "value": "Asia/Urumqi"
515
+ },
516
+ {
517
+ "key": "Asia/Kashgar",
518
+ "value": "Asia/Kashgar"
519
+ },
520
+ {
521
+ "key": "America/Bogota",
522
+ "value": "America/Bogota"
523
+ },
524
+ {
525
+ "key": "America/Costa_Rica",
526
+ "value": "America/Costa_Rica"
527
+ },
528
+ {
529
+ "key": "America/Havana",
530
+ "value": "America/Havana"
531
+ },
532
+ {
533
+ "key": "Atlantic/Cape_Verde",
534
+ "value": "Atlantic/Cape_Verde"
535
+ },
536
+ {
537
+ "key": "America/Curacao",
538
+ "value": "America/Curacao"
539
+ },
540
+ {
541
+ "key": "Indian/Christmas",
542
+ "value": "Indian/Christmas"
543
+ },
544
+ {
545
+ "key": "Asia/Nicosia",
546
+ "value": "Asia/Nicosia"
547
+ },
548
+ {
549
+ "key": "Europe/Prague",
550
+ "value": "Europe/Prague"
551
+ },
552
+ {
553
+ "key": "Europe/Berlin",
554
+ "value": "Europe/Berlin"
555
+ },
556
+ {
557
+ "key": "Europe/Busingen",
558
+ "value": "Europe/Busingen"
559
+ },
560
+ {
561
+ "key": "Africa/Djibouti",
562
+ "value": "Africa/Djibouti"
563
+ },
564
+ {
565
+ "key": "Europe/Copenhagen",
566
+ "value": "Europe/Copenhagen"
567
+ },
568
+ {
569
+ "key": "America/Dominica",
570
+ "value": "America/Dominica"
571
+ },
572
+ {
573
+ "key": "America/Santo_Domingo",
574
+ "value": "America/Santo_Domingo"
575
+ },
576
+ {
577
+ "key": "Africa/Algiers",
578
+ "value": "Africa/Algiers"
579
+ },
580
+ {
581
+ "key": "America/Guayaquil",
582
+ "value": "America/Guayaquil"
583
+ },
584
+ {
585
+ "key": "Pacific/Galapagos",
586
+ "value": "Pacific/Galapagos"
587
+ },
588
+ {
589
+ "key": "Europe/Tallinn",
590
+ "value": "Europe/Tallinn"
591
+ },
592
+ {
593
+ "key": "Africa/Cairo",
594
+ "value": "Africa/Cairo"
595
+ },
596
+ {
597
+ "key": "Africa/El_Aaiun",
598
+ "value": "Africa/El_Aaiun"
599
+ },
600
+ {
601
+ "key": "Africa/Asmara",
602
+ "value": "Africa/Asmara"
603
+ },
604
+ {
605
+ "key": "Europe/Madrid",
606
+ "value": "Europe/Madrid"
607
+ },
608
+ {
609
+ "key": "Africa/Ceuta",
610
+ "value": "Africa/Ceuta"
611
+ },
612
+ {
613
+ "key": "Atlantic/Canary",
614
+ "value": "Atlantic/Canary"
615
+ },
616
+ {
617
+ "key": "Africa/Addis_Ababa",
618
+ "value": "Africa/Addis_Ababa"
619
+ },
620
+ {
621
+ "key": "Europe/Helsinki",
622
+ "value": "Europe/Helsinki"
623
+ },
624
+ {
625
+ "key": "Pacific/Fiji",
626
+ "value": "Pacific/Fiji"
627
+ },
628
+ {
629
+ "key": "Atlantic/Stanley",
630
+ "value": "Atlantic/Stanley"
631
+ },
632
+ {
633
+ "key": "Pacific/Chuuk",
634
+ "value": "Pacific/Chuuk"
635
+ },
636
+ {
637
+ "key": "Pacific/Pohnpei",
638
+ "value": "Pacific/Pohnpei"
639
+ },
640
+ {
641
+ "key": "Pacific/Kosrae",
642
+ "value": "Pacific/Kosrae"
643
+ },
644
+ {
645
+ "key": "Atlantic/Faroe",
646
+ "value": "Atlantic/Faroe"
647
+ },
648
+ {
649
+ "key": "Europe/Paris",
650
+ "value": "Europe/Paris"
651
+ },
652
+ {
653
+ "key": "Africa/Libreville",
654
+ "value": "Africa/Libreville"
655
+ },
656
+ {
657
+ "key": "Europe/London",
658
+ "value": "Europe/London"
659
+ },
660
+ {
661
+ "key": "America/Grenada",
662
+ "value": "America/Grenada"
663
+ },
664
+ {
665
+ "key": "Asia/Tbilisi",
666
+ "value": "Asia/Tbilisi"
667
+ },
668
+ {
669
+ "key": "America/Cayenne",
670
+ "value": "America/Cayenne"
671
+ },
672
+ {
673
+ "key": "Europe/Guernsey",
674
+ "value": "Europe/Guernsey"
675
+ },
676
+ {
677
+ "key": "Africa/Accra",
678
+ "value": "Africa/Accra"
679
+ },
680
+ {
681
+ "key": "Europe/Gibraltar",
682
+ "value": "Europe/Gibraltar"
683
+ },
684
+ {
685
+ "key": "America/Godthab",
686
+ "value": "America/Godthab"
687
+ },
688
+ {
689
+ "key": "America/Danmarkshavn",
690
+ "value": "America/Danmarkshavn"
691
+ },
692
+ {
693
+ "key": "America/Scoresbysund",
694
+ "value": "America/Scoresbysund"
695
+ },
696
+ {
697
+ "key": "America/Thule",
698
+ "value": "America/Thule"
699
+ },
700
+ {
701
+ "key": "Africa/Banjul",
702
+ "value": "Africa/Banjul"
703
+ },
704
+ {
705
+ "key": "Africa/Conakry",
706
+ "value": "Africa/Conakry"
707
+ },
708
+ {
709
+ "key": "America/Guadeloupe",
710
+ "value": "America/Guadeloupe"
711
+ },
712
+ {
713
+ "key": "Africa/Malabo",
714
+ "value": "Africa/Malabo"
715
+ },
716
+ {
717
+ "key": "Europe/Athens",
718
+ "value": "Europe/Athens"
719
+ },
720
+ {
721
+ "key": "Atlantic/South_Georgia",
722
+ "value": "Atlantic/South_Georgia"
723
+ },
724
+ {
725
+ "key": "America/Guatemala",
726
+ "value": "America/Guatemala"
727
+ },
728
+ {
729
+ "key": "Pacific/Guam",
730
+ "value": "Pacific/Guam"
731
+ },
732
+ {
733
+ "key": "Africa/Bissau",
734
+ "value": "Africa/Bissau"
735
+ },
736
+ {
737
+ "key": "America/Guyana",
738
+ "value": "America/Guyana"
739
+ },
740
+ {
741
+ "key": "Asia/Hong_Kong",
742
+ "value": "Asia/Hong_Kong"
743
+ },
744
+ {
745
+ "key": "America/Tegucigalpa",
746
+ "value": "America/Tegucigalpa"
747
+ },
748
+ {
749
+ "key": "Europe/Zagreb",
750
+ "value": "Europe/Zagreb"
751
+ },
752
+ {
753
+ "key": "America/Port-au-Prince",
754
+ "value": "America/Port-au-Prince"
755
+ },
756
+ {
757
+ "key": "Europe/Budapest",
758
+ "value": "Europe/Budapest"
759
+ },
760
+ {
761
+ "key": "Asia/Jakarta",
762
+ "value": "Asia/Jakarta"
763
+ },
764
+ {
765
+ "key": "Asia/Pontianak",
766
+ "value": "Asia/Pontianak"
767
+ },
768
+ {
769
+ "key": "Asia/Makassar",
770
+ "value": "Asia/Makassar"
771
+ },
772
+ {
773
+ "key": "Asia/Jayapura",
774
+ "value": "Asia/Jayapura"
775
+ },
776
+ {
777
+ "key": "Europe/Dublin",
778
+ "value": "Europe/Dublin"
779
+ },
780
+ {
781
+ "key": "Asia/Jerusalem",
782
+ "value": "Asia/Jerusalem"
783
+ },
784
+ {
785
+ "key": "Europe/Isle_of_Man",
786
+ "value": "Europe/Isle_of_Man"
787
+ },
788
+ {
789
+ "key": "Asia/Kolkata",
790
+ "value": "Asia/Kolkata"
791
+ },
792
+ {
793
+ "key": "Indian/Chagos",
794
+ "value": "Indian/Chagos"
795
+ },
796
+ {
797
+ "key": "Asia/Baghdad",
798
+ "value": "Asia/Baghdad"
799
+ },
800
+ {
801
+ "key": "Asia/Tehran",
802
+ "value": "Asia/Tehran"
803
+ },
804
+ {
805
+ "key": "Atlantic/Reykjavik",
806
+ "value": "Atlantic/Reykjavik"
807
+ },
808
+ {
809
+ "key": "Europe/Rome",
810
+ "value": "Europe/Rome"
811
+ },
812
+ {
813
+ "key": "Europe/Jersey",
814
+ "value": "Europe/Jersey"
815
+ },
816
+ {
817
+ "key": "America/Jamaica",
818
+ "value": "America/Jamaica"
819
+ },
820
+ {
821
+ "key": "Asia/Amman",
822
+ "value": "Asia/Amman"
823
+ },
824
+ {
825
+ "key": "Asia/Tokyo",
826
+ "value": "Asia/Tokyo"
827
+ },
828
+ {
829
+ "key": "Africa/Nairobi",
830
+ "value": "Africa/Nairobi"
831
+ },
832
+ {
833
+ "key": "Asia/Bishkek",
834
+ "value": "Asia/Bishkek"
835
+ },
836
+ {
837
+ "key": "Asia/Phnom_Penh",
838
+ "value": "Asia/Phnom_Penh"
839
+ },
840
+ {
841
+ "key": "Pacific/Tarawa",
842
+ "value": "Pacific/Tarawa"
843
+ },
844
+ {
845
+ "key": "Pacific/Enderbury",
846
+ "value": "Pacific/Enderbury"
847
+ },
848
+ {
849
+ "key": "Pacific/Kiritimati",
850
+ "value": "Pacific/Kiritimati"
851
+ },
852
+ {
853
+ "key": "Indian/Comoro",
854
+ "value": "Indian/Comoro"
855
+ },
856
+ {
857
+ "key": "America/St_Kitts",
858
+ "value": "America/St_Kitts"
859
+ },
860
+ {
861
+ "key": "Asia/Pyongyang",
862
+ "value": "Asia/Pyongyang"
863
+ },
864
+ {
865
+ "key": "Asia/Seoul",
866
+ "value": "Asia/Seoul"
867
+ },
868
+ {
869
+ "key": "Asia/Kuwait",
870
+ "value": "Asia/Kuwait"
871
+ },
872
+ {
873
+ "key": "America/Cayman",
874
+ "value": "America/Cayman"
875
+ },
876
+ {
877
+ "key": "Asia/Almaty",
878
+ "value": "Asia/Almaty"
879
+ },
880
+ {
881
+ "key": "Asia/Qyzylorda",
882
+ "value": "Asia/Qyzylorda"
883
+ },
884
+ {
885
+ "key": "Asia/Aqtobe",
886
+ "value": "Asia/Aqtobe"
887
+ },
888
+ {
889
+ "key": "Asia/Aqtau",
890
+ "value": "Asia/Aqtau"
891
+ },
892
+ {
893
+ "key": "Asia/Oral",
894
+ "value": "Asia/Oral"
895
+ },
896
+ {
897
+ "key": "Asia/Vientiane",
898
+ "value": "Asia/Vientiane"
899
+ },
900
+ {
901
+ "key": "Asia/Beirut",
902
+ "value": "Asia/Beirut"
903
+ },
904
+ {
905
+ "key": "America/St_Lucia",
906
+ "value": "America/St_Lucia"
907
+ },
908
+ {
909
+ "key": "Europe/Vaduz",
910
+ "value": "Europe/Vaduz"
911
+ },
912
+ {
913
+ "key": "Asia/Colombo",
914
+ "value": "Asia/Colombo"
915
+ },
916
+ {
917
+ "key": "Africa/Monrovia",
918
+ "value": "Africa/Monrovia"
919
+ },
920
+ {
921
+ "key": "Africa/Maseru",
922
+ "value": "Africa/Maseru"
923
+ },
924
+ {
925
+ "key": "Europe/Vilnius",
926
+ "value": "Europe/Vilnius"
927
+ },
928
+ {
929
+ "key": "Europe/Luxembourg",
930
+ "value": "Europe/Luxembourg"
931
+ },
932
+ {
933
+ "key": "Europe/Riga",
934
+ "value": "Europe/Riga"
935
+ },
936
+ {
937
+ "key": "Africa/Tripoli",
938
+ "value": "Africa/Tripoli"
939
+ },
940
+ {
941
+ "key": "Africa/Casablanca",
942
+ "value": "Africa/Casablanca"
943
+ },
944
+ {
945
+ "key": "Europe/Monaco",
946
+ "value": "Europe/Monaco"
947
+ },
948
+ {
949
+ "key": "Europe/Chisinau",
950
+ "value": "Europe/Chisinau"
951
+ },
952
+ {
953
+ "key": "Europe/Podgorica",
954
+ "value": "Europe/Podgorica"
955
+ },
956
+ {
957
+ "key": "America/Marigot",
958
+ "value": "America/Marigot"
959
+ },
960
+ {
961
+ "key": "Indian/Antananarivo",
962
+ "value": "Indian/Antananarivo"
963
+ },
964
+ {
965
+ "key": "Pacific/Majuro",
966
+ "value": "Pacific/Majuro"
967
+ },
968
+ {
969
+ "key": "Pacific/Kwajalein",
970
+ "value": "Pacific/Kwajalein"
971
+ },
972
+ {
973
+ "key": "Europe/Skopje",
974
+ "value": "Europe/Skopje"
975
+ },
976
+ {
977
+ "key": "Africa/Bamako",
978
+ "value": "Africa/Bamako"
979
+ },
980
+ {
981
+ "key": "Asia/Rangoon",
982
+ "value": "Asia/Rangoon"
983
+ },
984
+ {
985
+ "key": "Asia/Ulaanbaatar",
986
+ "value": "Asia/Ulaanbaatar"
987
+ },
988
+ {
989
+ "key": "Asia/Hovd",
990
+ "value": "Asia/Hovd"
991
+ },
992
+ {
993
+ "key": "Asia/Choibalsan",
994
+ "value": "Asia/Choibalsan"
995
+ },
996
+ {
997
+ "key": "Asia/Macau",
998
+ "value": "Asia/Macau"
999
+ },
1000
+ {
1001
+ "key": "Pacific/Saipan",
1002
+ "value": "Pacific/Saipan"
1003
+ },
1004
+ {
1005
+ "key": "America/Martinique",
1006
+ "value": "America/Martinique"
1007
+ },
1008
+ {
1009
+ "key": "Africa/Nouakchott",
1010
+ "value": "Africa/Nouakchott"
1011
+ },
1012
+ {
1013
+ "key": "America/Montserrat",
1014
+ "value": "America/Montserrat"
1015
+ },
1016
+ {
1017
+ "key": "Europe/Malta",
1018
+ "value": "Europe/Malta"
1019
+ },
1020
+ {
1021
+ "key": "Indian/Mauritius",
1022
+ "value": "Indian/Mauritius"
1023
+ },
1024
+ {
1025
+ "key": "Indian/Maldives",
1026
+ "value": "Indian/Maldives"
1027
+ },
1028
+ {
1029
+ "key": "Africa/Blantyre",
1030
+ "value": "Africa/Blantyre"
1031
+ },
1032
+ {
1033
+ "key": "America/Mexico_City",
1034
+ "value": "America/Mexico_City"
1035
+ },
1036
+ {
1037
+ "key": "America/Cancun",
1038
+ "value": "America/Cancun"
1039
+ },
1040
+ {
1041
+ "key": "America/Merida",
1042
+ "value": "America/Merida"
1043
+ },
1044
+ {
1045
+ "key": "America/Monterrey",
1046
+ "value": "America/Monterrey"
1047
+ },
1048
+ {
1049
+ "key": "America/Matamoros",
1050
+ "value": "America/Matamoros"
1051
+ },
1052
+ {
1053
+ "key": "America/Mazatlan",
1054
+ "value": "America/Mazatlan"
1055
+ },
1056
+ {
1057
+ "key": "America/Chihuahua",
1058
+ "value": "America/Chihuahua"
1059
+ },
1060
+ {
1061
+ "key": "America/Ojinaga",
1062
+ "value": "America/Ojinaga"
1063
+ },
1064
+ {
1065
+ "key": "America/Hermosillo",
1066
+ "value": "America/Hermosillo"
1067
+ },
1068
+ {
1069
+ "key": "America/Tijuana",
1070
+ "value": "America/Tijuana"
1071
+ },
1072
+ {
1073
+ "key": "America/Santa_Isabel",
1074
+ "value": "America/Santa_Isabel"
1075
+ },
1076
+ {
1077
+ "key": "America/Bahia_Banderas",
1078
+ "value": "America/Bahia_Banderas"
1079
+ },
1080
+ {
1081
+ "key": "Asia/Kuala_Lumpur",
1082
+ "value": "Asia/Kuala_Lumpur"
1083
+ },
1084
+ {
1085
+ "key": "Asia/Kuching",
1086
+ "value": "Asia/Kuching"
1087
+ },
1088
+ {
1089
+ "key": "Africa/Maputo",
1090
+ "value": "Africa/Maputo"
1091
+ },
1092
+ {
1093
+ "key": "Africa/Windhoek",
1094
+ "value": "Africa/Windhoek"
1095
+ },
1096
+ {
1097
+ "key": "Pacific/Noumea",
1098
+ "value": "Pacific/Noumea"
1099
+ },
1100
+ {
1101
+ "key": "Africa/Niamey",
1102
+ "value": "Africa/Niamey"
1103
+ },
1104
+ {
1105
+ "key": "Pacific/Norfolk",
1106
+ "value": "Pacific/Norfolk"
1107
+ },
1108
+ {
1109
+ "key": "Africa/Lagos",
1110
+ "value": "Africa/Lagos"
1111
+ },
1112
+ {
1113
+ "key": "America/Managua",
1114
+ "value": "America/Managua"
1115
+ },
1116
+ {
1117
+ "key": "Europe/Amsterdam",
1118
+ "value": "Europe/Amsterdam"
1119
+ },
1120
+ {
1121
+ "key": "Europe/Oslo",
1122
+ "value": "Europe/Oslo"
1123
+ },
1124
+ {
1125
+ "key": "Asia/Kathmandu",
1126
+ "value": "Asia/Kathmandu"
1127
+ },
1128
+ {
1129
+ "key": "Pacific/Nauru",
1130
+ "value": "Pacific/Nauru"
1131
+ },
1132
+ {
1133
+ "key": "Pacific/Niue",
1134
+ "value": "Pacific/Niue"
1135
+ },
1136
+ {
1137
+ "key": "Pacific/Auckland",
1138
+ "value": "Pacific/Auckland"
1139
+ },
1140
+ {
1141
+ "key": "Pacific/Chatham",
1142
+ "value": "Pacific/Chatham"
1143
+ },
1144
+ {
1145
+ "key": "Asia/Muscat",
1146
+ "value": "Asia/Muscat"
1147
+ },
1148
+ {
1149
+ "key": "America/Panama",
1150
+ "value": "America/Panama"
1151
+ },
1152
+ {
1153
+ "key": "America/Lima",
1154
+ "value": "America/Lima"
1155
+ },
1156
+ {
1157
+ "key": "Pacific/Tahiti",
1158
+ "value": "Pacific/Tahiti"
1159
+ },
1160
+ {
1161
+ "key": "Pacific/Marquesas",
1162
+ "value": "Pacific/Marquesas"
1163
+ },
1164
+ {
1165
+ "key": "Pacific/Gambier",
1166
+ "value": "Pacific/Gambier"
1167
+ },
1168
+ {
1169
+ "key": "Pacific/Port_Moresby",
1170
+ "value": "Pacific/Port_Moresby"
1171
+ },
1172
+ {
1173
+ "key": "Asia/Manila",
1174
+ "value": "Asia/Manila"
1175
+ },
1176
+ {
1177
+ "key": "Asia/Karachi",
1178
+ "value": "Asia/Karachi"
1179
+ },
1180
+ {
1181
+ "key": "Europe/Warsaw",
1182
+ "value": "Europe/Warsaw"
1183
+ },
1184
+ {
1185
+ "key": "America/Miquelon",
1186
+ "value": "America/Miquelon"
1187
+ },
1188
+ {
1189
+ "key": "Pacific/Pitcairn",
1190
+ "value": "Pacific/Pitcairn"
1191
+ },
1192
+ {
1193
+ "key": "America/Puerto_Rico",
1194
+ "value": "America/Puerto_Rico"
1195
+ },
1196
+ {
1197
+ "key": "Asia/Gaza",
1198
+ "value": "Asia/Gaza"
1199
+ },
1200
+ {
1201
+ "key": "Asia/Hebron",
1202
+ "value": "Asia/Hebron"
1203
+ },
1204
+ {
1205
+ "key": "Europe/Lisbon",
1206
+ "value": "Europe/Lisbon"
1207
+ },
1208
+ {
1209
+ "key": "Atlantic/Madeira",
1210
+ "value": "Atlantic/Madeira"
1211
+ },
1212
+ {
1213
+ "key": "Atlantic/Azores",
1214
+ "value": "Atlantic/Azores"
1215
+ },
1216
+ {
1217
+ "key": "Pacific/Palau",
1218
+ "value": "Pacific/Palau"
1219
+ },
1220
+ {
1221
+ "key": "America/Asuncion",
1222
+ "value": "America/Asuncion"
1223
+ },
1224
+ {
1225
+ "key": "Asia/Qatar",
1226
+ "value": "Asia/Qatar"
1227
+ },
1228
+ {
1229
+ "key": "Indian/Reunion",
1230
+ "value": "Indian/Reunion"
1231
+ },
1232
+ {
1233
+ "key": "Europe/Bucharest",
1234
+ "value": "Europe/Bucharest"
1235
+ },
1236
+ {
1237
+ "key": "Europe/Belgrade",
1238
+ "value": "Europe/Belgrade"
1239
+ },
1240
+ {
1241
+ "key": "Europe/Kaliningrad",
1242
+ "value": "Europe/Kaliningrad"
1243
+ },
1244
+ {
1245
+ "key": "Europe/Moscow",
1246
+ "value": "Europe/Moscow"
1247
+ },
1248
+ {
1249
+ "key": "Europe/Volgograd",
1250
+ "value": "Europe/Volgograd"
1251
+ },
1252
+ {
1253
+ "key": "Europe/Samara",
1254
+ "value": "Europe/Samara"
1255
+ },
1256
+ {
1257
+ "key": "Asia/Yekaterinburg",
1258
+ "value": "Asia/Yekaterinburg"
1259
+ },
1260
+ {
1261
+ "key": "Asia/Omsk",
1262
+ "value": "Asia/Omsk"
1263
+ },
1264
+ {
1265
+ "key": "Asia/Novosibirsk",
1266
+ "value": "Asia/Novosibirsk"
1267
+ },
1268
+ {
1269
+ "key": "Asia/Novokuznetsk",
1270
+ "value": "Asia/Novokuznetsk"
1271
+ },
1272
+ {
1273
+ "key": "Asia/Krasnoyarsk",
1274
+ "value": "Asia/Krasnoyarsk"
1275
+ },
1276
+ {
1277
+ "key": "Asia/Irkutsk",
1278
+ "value": "Asia/Irkutsk"
1279
+ },
1280
+ {
1281
+ "key": "Asia/Yakutsk",
1282
+ "value": "Asia/Yakutsk"
1283
+ },
1284
+ {
1285
+ "key": "Asia/Khandyga",
1286
+ "value": "Asia/Khandyga"
1287
+ },
1288
+ {
1289
+ "key": "Asia/Vladivostok",
1290
+ "value": "Asia/Vladivostok"
1291
+ },
1292
+ {
1293
+ "key": "Asia/Sakhalin",
1294
+ "value": "Asia/Sakhalin"
1295
+ },
1296
+ {
1297
+ "key": "Asia/Ust-Nera",
1298
+ "value": "Asia/Ust-Nera"
1299
+ },
1300
+ {
1301
+ "key": "Asia/Magadan",
1302
+ "value": "Asia/Magadan"
1303
+ },
1304
+ {
1305
+ "key": "Asia/Kamchatka",
1306
+ "value": "Asia/Kamchatka"
1307
+ },
1308
+ {
1309
+ "key": "Asia/Anadyr",
1310
+ "value": "Asia/Anadyr"
1311
+ },
1312
+ {
1313
+ "key": "Africa/Kigali",
1314
+ "value": "Africa/Kigali"
1315
+ },
1316
+ {
1317
+ "key": "Asia/Riyadh",
1318
+ "value": "Asia/Riyadh"
1319
+ },
1320
+ {
1321
+ "key": "Pacific/Guadalcanal",
1322
+ "value": "Pacific/Guadalcanal"
1323
+ },
1324
+ {
1325
+ "key": "Indian/Mahe",
1326
+ "value": "Indian/Mahe"
1327
+ },
1328
+ {
1329
+ "key": "Africa/Khartoum",
1330
+ "value": "Africa/Khartoum"
1331
+ },
1332
+ {
1333
+ "key": "Europe/Stockholm",
1334
+ "value": "Europe/Stockholm"
1335
+ },
1336
+ {
1337
+ "key": "Asia/Singapore",
1338
+ "value": "Asia/Singapore"
1339
+ },
1340
+ {
1341
+ "key": "Atlantic/St_Helena",
1342
+ "value": "Atlantic/St_Helena"
1343
+ },
1344
+ {
1345
+ "key": "Europe/Ljubljana",
1346
+ "value": "Europe/Ljubljana"
1347
+ },
1348
+ {
1349
+ "key": "Arctic/Longyearbyen",
1350
+ "value": "Arctic/Longyearbyen"
1351
+ },
1352
+ {
1353
+ "key": "Europe/Bratislava",
1354
+ "value": "Europe/Bratislava"
1355
+ },
1356
+ {
1357
+ "key": "Africa/Freetown",
1358
+ "value": "Africa/Freetown"
1359
+ },
1360
+ {
1361
+ "key": "Europe/San_Marino",
1362
+ "value": "Europe/San_Marino"
1363
+ },
1364
+ {
1365
+ "key": "Africa/Dakar",
1366
+ "value": "Africa/Dakar"
1367
+ },
1368
+ {
1369
+ "key": "Africa/Mogadishu",
1370
+ "value": "Africa/Mogadishu"
1371
+ },
1372
+ {
1373
+ "key": "America/Paramaribo",
1374
+ "value": "America/Paramaribo"
1375
+ },
1376
+ {
1377
+ "key": "Africa/Juba",
1378
+ "value": "Africa/Juba"
1379
+ },
1380
+ {
1381
+ "key": "Africa/Sao_Tome",
1382
+ "value": "Africa/Sao_Tome"
1383
+ },
1384
+ {
1385
+ "key": "America/El_Salvador",
1386
+ "value": "America/El_Salvador"
1387
+ },
1388
+ {
1389
+ "key": "America/Lower_Princes",
1390
+ "value": "America/Lower_Princes"
1391
+ },
1392
+ {
1393
+ "key": "Asia/Damascus",
1394
+ "value": "Asia/Damascus"
1395
+ },
1396
+ {
1397
+ "key": "Africa/Mbabane",
1398
+ "value": "Africa/Mbabane"
1399
+ },
1400
+ {
1401
+ "key": "America/Grand_Turk",
1402
+ "value": "America/Grand_Turk"
1403
+ },
1404
+ {
1405
+ "key": "Africa/Ndjamena",
1406
+ "value": "Africa/Ndjamena"
1407
+ },
1408
+ {
1409
+ "key": "Indian/Kerguelen",
1410
+ "value": "Indian/Kerguelen"
1411
+ },
1412
+ {
1413
+ "key": "Africa/Lome",
1414
+ "value": "Africa/Lome"
1415
+ },
1416
+ {
1417
+ "key": "Asia/Bangkok",
1418
+ "value": "Asia/Bangkok"
1419
+ },
1420
+ {
1421
+ "key": "Asia/Dushanbe",
1422
+ "value": "Asia/Dushanbe"
1423
+ },
1424
+ {
1425
+ "key": "Pacific/Fakaofo",
1426
+ "value": "Pacific/Fakaofo"
1427
+ },
1428
+ {
1429
+ "key": "Asia/Dili",
1430
+ "value": "Asia/Dili"
1431
+ },
1432
+ {
1433
+ "key": "Asia/Ashgabat",
1434
+ "value": "Asia/Ashgabat"
1435
+ },
1436
+ {
1437
+ "key": "Africa/Tunis",
1438
+ "value": "Africa/Tunis"
1439
+ },
1440
+ {
1441
+ "key": "Pacific/Tongatapu",
1442
+ "value": "Pacific/Tongatapu"
1443
+ },
1444
+ {
1445
+ "key": "Europe/Istanbul",
1446
+ "value": "Europe/Istanbul"
1447
+ },
1448
+ {
1449
+ "key": "America/Port_of_Spain",
1450
+ "value": "America/Port_of_Spain"
1451
+ },
1452
+ {
1453
+ "key": "Pacific/Funafuti",
1454
+ "value": "Pacific/Funafuti"
1455
+ },
1456
+ {
1457
+ "key": "Asia/Taipei",
1458
+ "value": "Asia/Taipei"
1459
+ },
1460
+ {
1461
+ "key": "Africa/Dar_es_Salaam",
1462
+ "value": "Africa/Dar_es_Salaam"
1463
+ },
1464
+ {
1465
+ "key": "Europe/Kiev",
1466
+ "value": "Europe/Kiev"
1467
+ },
1468
+ {
1469
+ "key": "Europe/Uzhgorod",
1470
+ "value": "Europe/Uzhgorod"
1471
+ },
1472
+ {
1473
+ "key": "Europe/Zaporozhye",
1474
+ "value": "Europe/Zaporozhye"
1475
+ },
1476
+ {
1477
+ "key": "Europe/Simferopol",
1478
+ "value": "Europe/Simferopol"
1479
+ },
1480
+ {
1481
+ "key": "Africa/Kampala",
1482
+ "value": "Africa/Kampala"
1483
+ },
1484
+ {
1485
+ "key": "Pacific/Johnston",
1486
+ "value": "Pacific/Johnston"
1487
+ },
1488
+ {
1489
+ "key": "Pacific/Midway",
1490
+ "value": "Pacific/Midway"
1491
+ },
1492
+ {
1493
+ "key": "Pacific/Wake",
1494
+ "value": "Pacific/Wake"
1495
+ },
1496
+ {
1497
+ "key": "America/New_York",
1498
+ "value": "America/New_York"
1499
+ },
1500
+ {
1501
+ "key": "America/Detroit",
1502
+ "value": "America/Detroit"
1503
+ },
1504
+ {
1505
+ "key": "America/Kentucky/Louisville",
1506
+ "value": "America/Kentucky/Louisville"
1507
+ },
1508
+ {
1509
+ "key": "America/Kentucky/Monticello",
1510
+ "value": "America/Kentucky/Monticello"
1511
+ },
1512
+ {
1513
+ "key": "America/Indiana/Indianapolis",
1514
+ "value": "America/Indiana/Indianapolis"
1515
+ },
1516
+ {
1517
+ "key": "America/Indiana/Vincennes",
1518
+ "value": "America/Indiana/Vincennes"
1519
+ },
1520
+ {
1521
+ "key": "America/Indiana/Winamac",
1522
+ "value": "America/Indiana/Winamac"
1523
+ },
1524
+ {
1525
+ "key": "America/Indiana/Marengo",
1526
+ "value": "America/Indiana/Marengo"
1527
+ },
1528
+ {
1529
+ "key": "America/Indiana/Petersburg",
1530
+ "value": "America/Indiana/Petersburg"
1531
+ },
1532
+ {
1533
+ "key": "America/Indiana/Vevay",
1534
+ "value": "America/Indiana/Vevay"
1535
+ },
1536
+ {
1537
+ "key": "America/Chicago",
1538
+ "value": "America/Chicago"
1539
+ },
1540
+ {
1541
+ "key": "America/Indiana/Tell_City",
1542
+ "value": "America/Indiana/Tell_City"
1543
+ },
1544
+ {
1545
+ "key": "America/Indiana/Knox",
1546
+ "value": "America/Indiana/Knox"
1547
+ },
1548
+ {
1549
+ "key": "America/Menominee",
1550
+ "value": "America/Menominee"
1551
+ },
1552
+ {
1553
+ "key": "America/North_Dakota/Center",
1554
+ "value": "America/North_Dakota/Center"
1555
+ },
1556
+ {
1557
+ "key": "America/North_Dakota/New_Salem",
1558
+ "value": "America/North_Dakota/New_Salem"
1559
+ },
1560
+ {
1561
+ "key": "America/North_Dakota/Beulah",
1562
+ "value": "America/North_Dakota/Beulah"
1563
+ },
1564
+ {
1565
+ "key": "America/Denver",
1566
+ "value": "America/Denver"
1567
+ },
1568
+ {
1569
+ "key": "America/Boise",
1570
+ "value": "America/Boise"
1571
+ },
1572
+ {
1573
+ "key": "America/Phoenix",
1574
+ "value": "America/Phoenix"
1575
+ },
1576
+ {
1577
+ "key": "America/Los_Angeles",
1578
+ "value": "America/Los_Angeles"
1579
+ },
1580
+ {
1581
+ "key": "America/Anchorage",
1582
+ "value": "America/Anchorage"
1583
+ },
1584
+ {
1585
+ "key": "America/Juneau",
1586
+ "value": "America/Juneau"
1587
+ },
1588
+ {
1589
+ "key": "America/Sitka",
1590
+ "value": "America/Sitka"
1591
+ },
1592
+ {
1593
+ "key": "America/Yakutat",
1594
+ "value": "America/Yakutat"
1595
+ },
1596
+ {
1597
+ "key": "America/Nome",
1598
+ "value": "America/Nome"
1599
+ },
1600
+ {
1601
+ "key": "America/Adak",
1602
+ "value": "America/Adak"
1603
+ },
1604
+ {
1605
+ "key": "America/Metlakatla",
1606
+ "value": "America/Metlakatla"
1607
+ },
1608
+ {
1609
+ "key": "Pacific/Honolulu",
1610
+ "value": "Pacific/Honolulu"
1611
+ },
1612
+ {
1613
+ "key": "America/Montevideo",
1614
+ "value": "America/Montevideo"
1615
+ },
1616
+ {
1617
+ "key": "Asia/Samarkand",
1618
+ "value": "Asia/Samarkand"
1619
+ },
1620
+ {
1621
+ "key": "Asia/Tashkent",
1622
+ "value": "Asia/Tashkent"
1623
+ },
1624
+ {
1625
+ "key": "Europe/Vatican",
1626
+ "value": "Europe/Vatican"
1627
+ },
1628
+ {
1629
+ "key": "America/St_Vincent",
1630
+ "value": "America/St_Vincent"
1631
+ },
1632
+ {
1633
+ "key": "America/Caracas",
1634
+ "value": "America/Caracas"
1635
+ },
1636
+ {
1637
+ "key": "America/Tortola",
1638
+ "value": "America/Tortola"
1639
+ },
1640
+ {
1641
+ "key": "America/St_Thomas",
1642
+ "value": "America/St_Thomas"
1643
+ },
1644
+ {
1645
+ "key": "Asia/Ho_Chi_Minh",
1646
+ "value": "Asia/Ho_Chi_Minh"
1647
+ },
1648
+ {
1649
+ "key": "Pacific/Efate",
1650
+ "value": "Pacific/Efate"
1651
+ },
1652
+ {
1653
+ "key": "Pacific/Wallis",
1654
+ "value": "Pacific/Wallis"
1655
+ },
1656
+ {
1657
+ "key": "Pacific/Apia",
1658
+ "value": "Pacific/Apia"
1659
+ },
1660
+ {
1661
+ "key": "Asia/Aden",
1662
+ "value": "Asia/Aden"
1663
+ },
1664
+ {
1665
+ "key": "Indian/Mayotte",
1666
+ "value": "Indian/Mayotte"
1667
+ },
1668
+ {
1669
+ "key": "Africa/Johannesburg",
1670
+ "value": "Africa/Johannesburg"
1671
+ },
1672
+ {
1673
+ "key": "Africa/Lusaka",
1674
+ "value": "Africa/Lusaka"
1675
+ },
1676
+ {
1677
+ "key": "Africa/Harare",
1678
+ "value": "Africa/Harare"
1679
+ },
1680
+ {
1681
+ "key": "UTC",
1682
+ "value": "UTC"
1683
+ }
1684
+ ],
1685
+ "default": "UTC"
1686
+ },
1687
+ "dataPath": [
1688
+ "clock"
1689
+ ],
1690
+ "objectType": "object"
1691
+ },
1692
+ {
1693
+ "key": "host-name",
1694
+ "description": "Hostname",
1695
+ "details": "Set the hostname",
1696
+ "optionType": [
1697
+ "variable"
1698
+ ],
1699
+ "defaultOption": "variable",
1700
+ "dataType": {
1701
+ "type": "string",
1702
+ "minLength": 1,
1703
+ "maxLength": 32
1704
+ },
1705
+ "dataPath": [],
1706
+ "objectType": "object"
1707
+ },
1708
+ {
1709
+ "key": "ipv6-strict-control",
1710
+ "description": "Dual Stack IPv6 Default",
1711
+ "details": "Enable Dual Stack IPv6 Default",
1712
+ "optionType": [
1713
+ "constant",
1714
+ "variable"
1715
+ ],
1716
+ "defaultOption": "variable",
1717
+ "dataType": {
1718
+ "type": "boolean",
1719
+ "default": "false"
1720
+ },
1721
+ "dataPath": [],
1722
+ "objectType": "object"
1723
+ },
1724
+ {
1725
+ "key": "description",
1726
+ "description": "Description",
1727
+ "details": "Set a text description of the device",
1728
+ "optionType": [
1729
+ "constant",
1730
+ "variable",
1731
+ "ignore"
1732
+ ],
1733
+ "defaultOption": "ignore",
1734
+ "dataType": {
1735
+ "type": "string",
1736
+ "minLength": 1,
1737
+ "maxLength": 32
1738
+ },
1739
+ "dataPath": [],
1740
+ "objectType": "object"
1741
+ },
1742
+ {
1743
+ "key": "location",
1744
+ "description": "Location",
1745
+ "details": "Set the location of the device",
1746
+ "optionType": [
1747
+ "constant",
1748
+ "variable",
1749
+ "ignore"
1750
+ ],
1751
+ "defaultOption": "ignore",
1752
+ "dataType": {
1753
+ "type": "string",
1754
+ "minLength": 1,
1755
+ "maxLength": 128
1756
+ },
1757
+ "dataPath": [],
1758
+ "objectType": "object"
1759
+ },
1760
+ {
1761
+ "key": "system-tunnel-mtu",
1762
+ "description": "MTU Of DTLS Tunnel",
1763
+ "details": "Set MTU of system\u2019s internal DTLS tunnel",
1764
+ "optionType": [
1765
+ "constant",
1766
+ "variable",
1767
+ "ignore"
1768
+ ],
1769
+ "defaultOption": "ignore",
1770
+ "dataType": {
1771
+ "type": "number",
1772
+ "min": 500,
1773
+ "max": 2000,
1774
+ "default": 1024
1775
+ },
1776
+ "dataPath": [],
1777
+ "objectType": "object"
1778
+ },
1779
+ {
1780
+ "key": "latitude",
1781
+ "description": "Latitude",
1782
+ "details": "Set the device\u2019s physical latitude",
1783
+ "optionType": [
1784
+ "constant",
1785
+ "variable",
1786
+ "ignore"
1787
+ ],
1788
+ "defaultOption": "ignore",
1789
+ "dataType": {
1790
+ "type": "float",
1791
+ "min": -90,
1792
+ "max": 90
1793
+ },
1794
+ "dataPath": [
1795
+ "gps-location"
1796
+ ],
1797
+ "objectType": "object"
1798
+ },
1799
+ {
1800
+ "key": "longitude",
1801
+ "description": "Longitude",
1802
+ "details": "Set the device\u2019s physical longitude",
1803
+ "optionType": [
1804
+ "constant",
1805
+ "variable",
1806
+ "ignore"
1807
+ ],
1808
+ "defaultOption": "ignore",
1809
+ "dataType": {
1810
+ "type": "float",
1811
+ "min": -180,
1812
+ "max": 180
1813
+ },
1814
+ "dataPath": [
1815
+ "gps-location"
1816
+ ],
1817
+ "objectType": "object"
1818
+ },
1819
+ {
1820
+ "key": "device-groups",
1821
+ "description": "Device Groups",
1822
+ "details": "Configure a list of comma-separated device groups",
1823
+ "optionType": [
1824
+ "constant",
1825
+ "variable",
1826
+ "ignore"
1827
+ ],
1828
+ "defaultOption": "ignore",
1829
+ "dataType": {
1830
+ "type": "string"
1831
+ },
1832
+ "dataPath": [],
1833
+ "objectType": "list"
1834
+ },
1835
+ {
1836
+ "key": "system-ip",
1837
+ "description": "System IP",
1838
+ "details": "Set the system IP address",
1839
+ "optionType": [
1840
+ "variable"
1841
+ ],
1842
+ "defaultOption": "variable",
1843
+ "dataType": {
1844
+ "type": "string"
1845
+ },
1846
+ "dataPath": [],
1847
+ "objectType": "object"
1848
+ },
1849
+ {
1850
+ "key": "site-id",
1851
+ "description": "Site ID",
1852
+ "details": "Set the site ID",
1853
+ "optionType": [
1854
+ "variable"
1855
+ ],
1856
+ "defaultOption": "variable",
1857
+ "dataType": {
1858
+ "type": "number",
1859
+ "min": 1,
1860
+ "max": 4294967295
1861
+ },
1862
+ "dataPath": [],
1863
+ "objectType": "object"
1864
+ },
1865
+ {
1866
+ "key": "overlay-id",
1867
+ "description": "Overlay ID",
1868
+ "details": "Set the Overlay ID",
1869
+ "optionType": [
1870
+ "constant",
1871
+ "variable",
1872
+ "ignore"
1873
+ ],
1874
+ "defaultOption": "ignore",
1875
+ "dataType": {
1876
+ "type": "number",
1877
+ "min": 1,
1878
+ "max": 4294967295,
1879
+ "default": 1
1880
+ },
1881
+ "dataPath": [],
1882
+ "objectType": "object"
1883
+ },
1884
+ {
1885
+ "key": "topology",
1886
+ "description": "Topology",
1887
+ "details": "Set the topology",
1888
+ "optionType": [
1889
+ "constant",
1890
+ "variable",
1891
+ "ignore"
1892
+ ],
1893
+ "defaultOption": "ignore",
1894
+ "dataType": {
1895
+ "type": "enum",
1896
+ "values": [
1897
+ {
1898
+ "key": "hub-and-spoke",
1899
+ "value": "Hub and Spoke"
1900
+ }
1901
+ ]
1902
+ },
1903
+ "dataPath": [],
1904
+ "objectType": "list"
1905
+ },
1906
+ {
1907
+ "key": "port-offset",
1908
+ "description": "Port Offset",
1909
+ "details": "Set the TLOC port offset when multiple devices are behind a NAT",
1910
+ "optionType": [
1911
+ "constant",
1912
+ "variable",
1913
+ "ignore"
1914
+ ],
1915
+ "defaultOption": "ignore",
1916
+ "dataType": {
1917
+ "type": "number",
1918
+ "min": 0,
1919
+ "max": 20,
1920
+ "default": 0
1921
+ },
1922
+ "dataPath": [],
1923
+ "objectType": "object"
1924
+ },
1925
+ {
1926
+ "key": "port-hop",
1927
+ "description": "Port Hopping",
1928
+ "details": "Enable port hopping",
1929
+ "optionType": [
1930
+ "constant",
1931
+ "variable",
1932
+ "ignore"
1933
+ ],
1934
+ "defaultOption": "ignore",
1935
+ "dataType": {
1936
+ "type": "boolean",
1937
+ "default": "true"
1938
+ },
1939
+ "dataPath": [],
1940
+ "objectType": "object"
1941
+ },
1942
+ {
1943
+ "key": "control-session-pps",
1944
+ "description": "Control Session Policer Rate (pps)",
1945
+ "details": "Set the policer rate for control sessions",
1946
+ "optionType": [
1947
+ "constant",
1948
+ "variable",
1949
+ "ignore"
1950
+ ],
1951
+ "defaultOption": "ignore",
1952
+ "dataType": {
1953
+ "type": "number",
1954
+ "min": 1,
1955
+ "max": 65535,
1956
+ "default": 300
1957
+ },
1958
+ "dataPath": [],
1959
+ "objectType": "object"
1960
+ },
1961
+ {
1962
+ "key": "controller-group-id",
1963
+ "description": "Controller Group ID",
1964
+ "details": "Controller group id",
1965
+ "optionType": [
1966
+ "constant",
1967
+ "variable",
1968
+ "ignore"
1969
+ ],
1970
+ "defaultOption": "ignore",
1971
+ "dataType": {
1972
+ "type": "number",
1973
+ "min": 0,
1974
+ "max": 100,
1975
+ "default": 0
1976
+ },
1977
+ "dataPath": [],
1978
+ "objectType": "object"
1979
+ },
1980
+ {
1981
+ "key": "track-transport",
1982
+ "description": "Track Transport",
1983
+ "details": "Configure tracking of transport",
1984
+ "optionType": [
1985
+ "constant",
1986
+ "variable",
1987
+ "ignore"
1988
+ ],
1989
+ "defaultOption": "ignore",
1990
+ "dataType": {
1991
+ "type": "boolean",
1992
+ "default": "true"
1993
+ },
1994
+ "dataPath": [],
1995
+ "objectType": "object"
1996
+ },
1997
+ {
1998
+ "key": "dns-cache-timeout",
1999
+ "description": "DNS Cache Timeout (minutes)",
2000
+ "details": "Set when to time out vBond addresses cached by device",
2001
+ "optionType": [
2002
+ "constant",
2003
+ "variable",
2004
+ "ignore"
2005
+ ],
2006
+ "defaultOption": "ignore",
2007
+ "dataType": {
2008
+ "type": "number",
2009
+ "min": 1,
2010
+ "max": 30,
2011
+ "default": 2
2012
+ },
2013
+ "dataPath": [
2014
+ "timer"
2015
+ ],
2016
+ "objectType": "object"
2017
+ },
2018
+ {
2019
+ "key": "track-default-gateway",
2020
+ "description": "Gateway Tracking",
2021
+ "details": "Enable or disable default gateway tracking",
2022
+ "optionType": [
2023
+ "constant",
2024
+ "variable",
2025
+ "ignore"
2026
+ ],
2027
+ "defaultOption": "ignore",
2028
+ "dataType": {
2029
+ "type": "boolean",
2030
+ "default": "true"
2031
+ },
2032
+ "dataPath": [],
2033
+ "objectType": "object"
2034
+ },
2035
+ {
2036
+ "key": "iptables-enable",
2037
+ "description": "IP Tables",
2038
+ "details": "Enable IP tables for all WAN interfaces",
2039
+ "optionType": [
2040
+ "constant",
2041
+ "variable",
2042
+ "ignore"
2043
+ ],
2044
+ "defaultOption": "ignore",
2045
+ "dataType": {
2046
+ "type": "boolean",
2047
+ "default": "true"
2048
+ },
2049
+ "dataPath": [],
2050
+ "objectType": "object"
2051
+ },
2052
+ {
2053
+ "key": "admin-tech-on-failure",
2054
+ "description": "Collect Admin Tech on Reboot",
2055
+ "details": "Collect admin-tech before reboot due to daemon failure",
2056
+ "optionType": [
2057
+ "constant",
2058
+ "variable",
2059
+ "ignore"
2060
+ ],
2061
+ "defaultOption": "ignore",
2062
+ "dataType": {
2063
+ "type": "boolean",
2064
+ "default": "true"
2065
+ },
2066
+ "dataPath": [],
2067
+ "objectType": "object"
2068
+ },
2069
+ {
2070
+ "key": "idle-timeout",
2071
+ "description": "Idle Timeout",
2072
+ "details": "Idle CLI timeout in minutes",
2073
+ "optionType": [
2074
+ "constant",
2075
+ "variable",
2076
+ "ignore"
2077
+ ],
2078
+ "defaultOption": "ignore",
2079
+ "dataType": {
2080
+ "type": "number",
2081
+ "min": 0,
2082
+ "max": 300
2083
+ },
2084
+ "dataPath": [],
2085
+ "objectType": "object"
2086
+ },
2087
+ {
2088
+ "key": "region-id-list",
2089
+ "description": "Region ID List",
2090
+ "details": "Configure a list of region ID",
2091
+ "optionType": [
2092
+ "constant",
2093
+ "ignore",
2094
+ "variable"
2095
+ ],
2096
+ "defaultOption": "ignore",
2097
+ "dataType": {
2098
+ "type": "number",
2099
+ "min": 0,
2100
+ "max": 63
2101
+ },
2102
+ "dataPath": [
2103
+ "region"
2104
+ ],
2105
+ "objectType": "list"
2106
+ },
2107
+ {
2108
+ "key": "management-region",
2109
+ "description": "Management Region",
2110
+ "details": "Management region",
2111
+ "optionType": [
2112
+ "constant",
2113
+ "variable",
2114
+ "ignore"
2115
+ ],
2116
+ "defaultOption": "ignore",
2117
+ "dataType": {
2118
+ "type": "boolean",
2119
+ "default": "false"
2120
+ },
2121
+ "dataPath": [],
2122
+ "objectType": "object"
2123
+ },
2124
+ {
2125
+ "key": "compatible",
2126
+ "description": "Compatible TLOC Color",
2127
+ "details": "Configure compatible TLOC color",
2128
+ "optionType": [
2129
+ "constant",
2130
+ "ignore"
2131
+ ],
2132
+ "defaultOption": "ignore",
2133
+ "dataPath": [
2134
+ "tloc-color-compatibility"
2135
+ ],
2136
+ "objectType": "tree",
2137
+ "primaryKeys": [
2138
+ "color-1",
2139
+ "color-2"
2140
+ ],
2141
+ "children": [
2142
+ {
2143
+ "key": "color-1",
2144
+ "description": "First TLOC color in comparsion",
2145
+ "details": "First TLOC color in comparsion",
2146
+ "optionType": [
2147
+ "constant",
2148
+ "ignore"
2149
+ ],
2150
+ "defaultOption": "ignore",
2151
+ "dataType": {
2152
+ "type": "enum",
2153
+ "values": [
2154
+ {
2155
+ "key": "default",
2156
+ "value": "default"
2157
+ },
2158
+ {
2159
+ "key": "mpls",
2160
+ "value": "mpls"
2161
+ },
2162
+ {
2163
+ "key": "metro-ethernet",
2164
+ "value": "metro-ethernet"
2165
+ },
2166
+ {
2167
+ "key": "biz-internet",
2168
+ "value": "biz-internet"
2169
+ },
2170
+ {
2171
+ "key": "public-internet",
2172
+ "value": "public-internet"
2173
+ },
2174
+ {
2175
+ "key": "lte",
2176
+ "value": "lte"
2177
+ },
2178
+ {
2179
+ "key": "3g",
2180
+ "value": "3g"
2181
+ },
2182
+ {
2183
+ "key": "red",
2184
+ "value": "red"
2185
+ },
2186
+ {
2187
+ "key": "green",
2188
+ "value": "green"
2189
+ },
2190
+ {
2191
+ "key": "blue",
2192
+ "value": "blue"
2193
+ },
2194
+ {
2195
+ "key": "gold",
2196
+ "value": "gold"
2197
+ },
2198
+ {
2199
+ "key": "silver",
2200
+ "value": "silver"
2201
+ },
2202
+ {
2203
+ "key": "bronze",
2204
+ "value": "bronze"
2205
+ },
2206
+ {
2207
+ "key": "custom1",
2208
+ "value": "custom1"
2209
+ },
2210
+ {
2211
+ "key": "custom2",
2212
+ "value": "custom2"
2213
+ },
2214
+ {
2215
+ "key": "custom3",
2216
+ "value": "custom3"
2217
+ },
2218
+ {
2219
+ "key": "private1",
2220
+ "value": "private1"
2221
+ },
2222
+ {
2223
+ "key": "private2",
2224
+ "value": "private2"
2225
+ },
2226
+ {
2227
+ "key": "private3",
2228
+ "value": "private3"
2229
+ },
2230
+ {
2231
+ "key": "private4",
2232
+ "value": "private4"
2233
+ },
2234
+ {
2235
+ "key": "private5",
2236
+ "value": "private5"
2237
+ },
2238
+ {
2239
+ "key": "private6",
2240
+ "value": "private6"
2241
+ }
2242
+ ]
2243
+ },
2244
+ "dataPath": [],
2245
+ "objectType": "object"
2246
+ },
2247
+ {
2248
+ "key": "color-2",
2249
+ "description": "Second TLOC color in comparsion",
2250
+ "details": "Second TLOC color in comparsion",
2251
+ "optionType": [
2252
+ "constant",
2253
+ "ignore"
2254
+ ],
2255
+ "defaultOption": "ignore",
2256
+ "dataType": {
2257
+ "type": "enum",
2258
+ "values": [
2259
+ {
2260
+ "key": "default",
2261
+ "value": "default"
2262
+ },
2263
+ {
2264
+ "key": "mpls",
2265
+ "value": "mpls"
2266
+ },
2267
+ {
2268
+ "key": "metro-ethernet",
2269
+ "value": "metro-ethernet"
2270
+ },
2271
+ {
2272
+ "key": "biz-internet",
2273
+ "value": "biz-internet"
2274
+ },
2275
+ {
2276
+ "key": "public-internet",
2277
+ "value": "public-internet"
2278
+ },
2279
+ {
2280
+ "key": "lte",
2281
+ "value": "lte"
2282
+ },
2283
+ {
2284
+ "key": "3g",
2285
+ "value": "3g"
2286
+ },
2287
+ {
2288
+ "key": "red",
2289
+ "value": "red"
2290
+ },
2291
+ {
2292
+ "key": "green",
2293
+ "value": "green"
2294
+ },
2295
+ {
2296
+ "key": "blue",
2297
+ "value": "blue"
2298
+ },
2299
+ {
2300
+ "key": "gold",
2301
+ "value": "gold"
2302
+ },
2303
+ {
2304
+ "key": "silver",
2305
+ "value": "silver"
2306
+ },
2307
+ {
2308
+ "key": "bronze",
2309
+ "value": "bronze"
2310
+ },
2311
+ {
2312
+ "key": "custom1",
2313
+ "value": "custom1"
2314
+ },
2315
+ {
2316
+ "key": "custom2",
2317
+ "value": "custom2"
2318
+ },
2319
+ {
2320
+ "key": "custom3",
2321
+ "value": "custom3"
2322
+ },
2323
+ {
2324
+ "key": "private1",
2325
+ "value": "private1"
2326
+ },
2327
+ {
2328
+ "key": "private2",
2329
+ "value": "private2"
2330
+ },
2331
+ {
2332
+ "key": "private3",
2333
+ "value": "private3"
2334
+ },
2335
+ {
2336
+ "key": "private4",
2337
+ "value": "private4"
2338
+ },
2339
+ {
2340
+ "key": "private5",
2341
+ "value": "private5"
2342
+ },
2343
+ {
2344
+ "key": "private6",
2345
+ "value": "private6"
2346
+ }
2347
+ ]
2348
+ },
2349
+ "dataPath": [],
2350
+ "objectType": "object"
2351
+ }
2352
+ ]
2353
+ },
2354
+ {
2355
+ "key": "incompatible",
2356
+ "description": "Incompatible TLOC Color",
2357
+ "details": "Configure incompatible TLOC color",
2358
+ "optionType": [
2359
+ "constant",
2360
+ "ignore"
2361
+ ],
2362
+ "defaultOption": "ignore",
2363
+ "dataPath": [
2364
+ "tloc-color-compatibility"
2365
+ ],
2366
+ "objectType": "tree",
2367
+ "primaryKeys": [
2368
+ "color-1",
2369
+ "color-2"
2370
+ ],
2371
+ "children": [
2372
+ {
2373
+ "key": "color-1",
2374
+ "description": "First TLOC color in comparsion",
2375
+ "details": "First TLOC color in comparsion",
2376
+ "optionType": [
2377
+ "constant",
2378
+ "ignore"
2379
+ ],
2380
+ "defaultOption": "ignore",
2381
+ "dataType": {
2382
+ "type": "enum",
2383
+ "values": [
2384
+ {
2385
+ "key": "default",
2386
+ "value": "default"
2387
+ },
2388
+ {
2389
+ "key": "mpls",
2390
+ "value": "mpls"
2391
+ },
2392
+ {
2393
+ "key": "metro-ethernet",
2394
+ "value": "metro-ethernet"
2395
+ },
2396
+ {
2397
+ "key": "biz-internet",
2398
+ "value": "biz-internet"
2399
+ },
2400
+ {
2401
+ "key": "public-internet",
2402
+ "value": "public-internet"
2403
+ },
2404
+ {
2405
+ "key": "lte",
2406
+ "value": "lte"
2407
+ },
2408
+ {
2409
+ "key": "3g",
2410
+ "value": "3g"
2411
+ },
2412
+ {
2413
+ "key": "red",
2414
+ "value": "red"
2415
+ },
2416
+ {
2417
+ "key": "green",
2418
+ "value": "green"
2419
+ },
2420
+ {
2421
+ "key": "blue",
2422
+ "value": "blue"
2423
+ },
2424
+ {
2425
+ "key": "gold",
2426
+ "value": "gold"
2427
+ },
2428
+ {
2429
+ "key": "silver",
2430
+ "value": "silver"
2431
+ },
2432
+ {
2433
+ "key": "bronze",
2434
+ "value": "bronze"
2435
+ },
2436
+ {
2437
+ "key": "custom1",
2438
+ "value": "custom1"
2439
+ },
2440
+ {
2441
+ "key": "custom2",
2442
+ "value": "custom2"
2443
+ },
2444
+ {
2445
+ "key": "custom3",
2446
+ "value": "custom3"
2447
+ },
2448
+ {
2449
+ "key": "private1",
2450
+ "value": "private1"
2451
+ },
2452
+ {
2453
+ "key": "private2",
2454
+ "value": "private2"
2455
+ },
2456
+ {
2457
+ "key": "private3",
2458
+ "value": "private3"
2459
+ },
2460
+ {
2461
+ "key": "private4",
2462
+ "value": "private4"
2463
+ },
2464
+ {
2465
+ "key": "private5",
2466
+ "value": "private5"
2467
+ },
2468
+ {
2469
+ "key": "private6",
2470
+ "value": "private6"
2471
+ }
2472
+ ]
2473
+ },
2474
+ "dataPath": [],
2475
+ "objectType": "object"
2476
+ },
2477
+ {
2478
+ "key": "color-2",
2479
+ "description": "Second TLOC color in comparsion",
2480
+ "details": "Second TLOC color in comparsion",
2481
+ "optionType": [
2482
+ "constant",
2483
+ "ignore"
2484
+ ],
2485
+ "defaultOption": "ignore",
2486
+ "dataType": {
2487
+ "type": "enum",
2488
+ "values": [
2489
+ {
2490
+ "key": "default",
2491
+ "value": "default"
2492
+ },
2493
+ {
2494
+ "key": "mpls",
2495
+ "value": "mpls"
2496
+ },
2497
+ {
2498
+ "key": "metro-ethernet",
2499
+ "value": "metro-ethernet"
2500
+ },
2501
+ {
2502
+ "key": "biz-internet",
2503
+ "value": "biz-internet"
2504
+ },
2505
+ {
2506
+ "key": "public-internet",
2507
+ "value": "public-internet"
2508
+ },
2509
+ {
2510
+ "key": "lte",
2511
+ "value": "lte"
2512
+ },
2513
+ {
2514
+ "key": "3g",
2515
+ "value": "3g"
2516
+ },
2517
+ {
2518
+ "key": "red",
2519
+ "value": "red"
2520
+ },
2521
+ {
2522
+ "key": "green",
2523
+ "value": "green"
2524
+ },
2525
+ {
2526
+ "key": "blue",
2527
+ "value": "blue"
2528
+ },
2529
+ {
2530
+ "key": "gold",
2531
+ "value": "gold"
2532
+ },
2533
+ {
2534
+ "key": "silver",
2535
+ "value": "silver"
2536
+ },
2537
+ {
2538
+ "key": "bronze",
2539
+ "value": "bronze"
2540
+ },
2541
+ {
2542
+ "key": "custom1",
2543
+ "value": "custom1"
2544
+ },
2545
+ {
2546
+ "key": "custom2",
2547
+ "value": "custom2"
2548
+ },
2549
+ {
2550
+ "key": "custom3",
2551
+ "value": "custom3"
2552
+ },
2553
+ {
2554
+ "key": "private1",
2555
+ "value": "private1"
2556
+ },
2557
+ {
2558
+ "key": "private2",
2559
+ "value": "private2"
2560
+ },
2561
+ {
2562
+ "key": "private3",
2563
+ "value": "private3"
2564
+ },
2565
+ {
2566
+ "key": "private4",
2567
+ "value": "private4"
2568
+ },
2569
+ {
2570
+ "key": "private5",
2571
+ "value": "private5"
2572
+ },
2573
+ {
2574
+ "key": "private6",
2575
+ "value": "private6"
2576
+ }
2577
+ ]
2578
+ },
2579
+ "dataPath": [],
2580
+ "objectType": "object"
2581
+ }
2582
+ ]
2583
+ }
2584
+ ]
2585
+ }