catalystwan 0.41.2.dev9__py3-none-any.whl → 0.41.3__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 (509) hide show
  1. catalystwan/ENDPOINTS.md +611 -0
  2. catalystwan/__init__.py +2 -3
  3. catalystwan/api/administration.py +2 -13
  4. catalystwan/api/api_container.py +1 -4
  5. catalystwan/api/config_group_api.py +16 -41
  6. catalystwan/api/configuration_groups/parcel.py +30 -100
  7. catalystwan/api/configuration_groups/parcels/cellular_controller.py +33 -0
  8. catalystwan/api/feature_profile_api.py +237 -2016
  9. catalystwan/api/policy_api.py +116 -470
  10. catalystwan/api/template_api.py +44 -113
  11. catalystwan/api/templates/README.md +47 -61
  12. catalystwan/api/templates/cli_template.py +7 -17
  13. catalystwan/api/templates/device_template/device_template.py +32 -127
  14. catalystwan/api/templates/device_template/device_template_payload.json.j2 +19 -0
  15. catalystwan/api/templates/feature_template.py +3 -3
  16. catalystwan/api/templates/models/cisco_aaa_model.py +42 -289
  17. catalystwan/api/templates/models/cisco_banner_model.py +2 -11
  18. catalystwan/api/templates/models/cisco_bfd_model.py +36 -31
  19. catalystwan/api/templates/models/cisco_bgp_model.py +131 -382
  20. catalystwan/api/templates/models/cisco_logging_model.py +43 -80
  21. catalystwan/api/templates/models/cisco_ntp_model.py +15 -34
  22. catalystwan/api/templates/models/cisco_omp_model.py +60 -70
  23. catalystwan/api/templates/models/cisco_ospf.py +74 -143
  24. catalystwan/api/templates/models/cisco_ospfv3.py +95 -217
  25. catalystwan/api/templates/models/cisco_secure_internet_gateway.py +142 -304
  26. catalystwan/api/templates/models/cisco_snmp_model.py +52 -66
  27. catalystwan/api/templates/models/cisco_system.py +129 -238
  28. catalystwan/api/templates/models/cisco_vpn_interface_model.py +275 -632
  29. catalystwan/api/templates/models/cisco_vpn_model.py +270 -433
  30. catalystwan/api/templates/models/cli_template.py +2 -3
  31. catalystwan/api/templates/models/omp_vsmart_model.py +10 -46
  32. catalystwan/api/templates/models/security_vsmart_model.py +8 -11
  33. catalystwan/api/templates/models/supported.py +4 -10
  34. catalystwan/api/templates/models/system_vsmart_model.py +27 -164
  35. catalystwan/apigw_auth.py +2 -6
  36. catalystwan/dataclasses.py +53 -2
  37. catalystwan/endpoints/__init__.py +41 -41
  38. catalystwan/endpoints/certificate_management_device.py +0 -4
  39. catalystwan/endpoints/cluster_management.py +9 -30
  40. catalystwan/endpoints/configuration/feature_profile/sdwan/policy_object.py +12 -35
  41. catalystwan/endpoints/configuration/feature_profile/sdwan/system.py +11 -164
  42. catalystwan/endpoints/configuration/feature_profile/sdwan/transport.py +26 -144
  43. catalystwan/endpoints/configuration/policy/definition/access_control_list.py +11 -6
  44. catalystwan/endpoints/configuration/policy/definition/access_control_list_ipv6.py +11 -6
  45. catalystwan/endpoints/configuration/policy/definition/control.py +11 -6
  46. catalystwan/endpoints/configuration/policy/definition/device_access.py +11 -6
  47. catalystwan/endpoints/configuration/policy/definition/device_access_ipv6.py +11 -6
  48. catalystwan/endpoints/configuration/policy/definition/hub_and_spoke.py +11 -6
  49. catalystwan/endpoints/configuration/policy/definition/mesh.py +11 -2
  50. catalystwan/endpoints/configuration/policy/definition/qos_map.py +11 -2
  51. catalystwan/endpoints/configuration/policy/definition/rewrite.py +11 -6
  52. catalystwan/endpoints/configuration/policy/definition/rule_set.py +11 -2
  53. catalystwan/endpoints/configuration/policy/definition/security_group.py +11 -6
  54. catalystwan/endpoints/configuration/policy/definition/traffic_data.py +11 -6
  55. catalystwan/endpoints/configuration/policy/definition/vpn_membership.py +11 -6
  56. catalystwan/endpoints/configuration/policy/definition/zone_based_firewall.py +11 -6
  57. catalystwan/endpoints/configuration/policy/list/app.py +16 -3
  58. catalystwan/endpoints/configuration/policy/list/app_probe.py +15 -6
  59. catalystwan/endpoints/configuration/policy/list/as_path.py +16 -3
  60. catalystwan/endpoints/configuration/policy/list/class_map.py +16 -3
  61. catalystwan/endpoints/configuration/policy/list/color.py +16 -3
  62. catalystwan/endpoints/configuration/policy/list/community.py +16 -3
  63. catalystwan/endpoints/configuration/policy/list/data_ipv6_prefix.py +15 -6
  64. catalystwan/endpoints/configuration/policy/list/data_prefix.py +16 -3
  65. catalystwan/endpoints/configuration/policy/list/expanded_community.py +15 -6
  66. catalystwan/endpoints/configuration/policy/list/fqdn.py +16 -3
  67. catalystwan/endpoints/configuration/policy/list/geo_location.py +16 -3
  68. catalystwan/endpoints/configuration/policy/list/ips_signature.py +15 -6
  69. catalystwan/endpoints/configuration/policy/list/ipv6_prefix.py +16 -3
  70. catalystwan/endpoints/configuration/policy/list/local_app.py +16 -3
  71. catalystwan/endpoints/configuration/policy/list/local_domain.py +16 -3
  72. catalystwan/endpoints/configuration/policy/list/mirror.py +16 -3
  73. catalystwan/endpoints/configuration/policy/list/policer.py +16 -3
  74. catalystwan/endpoints/configuration/policy/list/port.py +16 -3
  75. catalystwan/endpoints/configuration/policy/list/preferred_color_group.py +15 -6
  76. catalystwan/endpoints/configuration/policy/list/prefix.py +16 -4
  77. catalystwan/endpoints/configuration/policy/list/protocol_name.py +15 -6
  78. catalystwan/endpoints/configuration/policy/list/region.py +10 -2
  79. catalystwan/endpoints/configuration/policy/list/site.py +16 -3
  80. catalystwan/endpoints/configuration/policy/list/sla.py +16 -3
  81. catalystwan/endpoints/configuration/policy/list/tloc.py +16 -3
  82. catalystwan/endpoints/configuration/policy/list/url_allow_list.py +16 -3
  83. catalystwan/endpoints/configuration/policy/list/url_block_list.py +16 -3
  84. catalystwan/endpoints/configuration/policy/list/vpn.py +16 -3
  85. catalystwan/endpoints/configuration/policy/list/zone.py +16 -3
  86. catalystwan/endpoints/configuration/policy/security_template.py +3 -2
  87. catalystwan/endpoints/configuration/software_actions.py +4 -2
  88. catalystwan/endpoints/configuration_dashboard_status.py +2 -2
  89. catalystwan/endpoints/configuration_device_template.py +1 -15
  90. catalystwan/endpoints/configuration_feature_profile.py +11 -8
  91. catalystwan/endpoints/configuration_group.py +5 -28
  92. catalystwan/endpoints/configuration_settings.py +1 -90
  93. catalystwan/endpoints/endpoints_container.py +18 -82
  94. catalystwan/endpoints/real_time_monitoring/reboot_history.py +3 -1
  95. catalystwan/endpoints/tenant_migration.py +0 -2
  96. catalystwan/exceptions.py +0 -24
  97. catalystwan/integration_tests/test_find_template_values.py +18 -7
  98. catalystwan/models/common.py +2 -1898
  99. catalystwan/models/configuration/common.py +0 -1
  100. catalystwan/models/configuration/config_migration.py +36 -0
  101. catalystwan/models/configuration/feature_profile/common.py +149 -634
  102. catalystwan/models/configuration/feature_profile/sdwan/management/vpn.py +26 -0
  103. catalystwan/models/configuration/feature_profile/sdwan/policy_object/__init__.py +60 -69
  104. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/app_probe.py +20 -34
  105. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/application_list.py +6 -8
  106. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/color_list.py +5 -7
  107. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/data_prefix.py +4 -13
  108. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/expanded_community_list.py +7 -9
  109. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/fowarding_class.py +5 -7
  110. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv6_data_prefix.py +9 -11
  111. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv6_prefix_list.py +10 -25
  112. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/{policer.py → policier.py} +10 -12
  113. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/prefered_group_color.py +10 -29
  114. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/prefix_list.py +8 -23
  115. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/sla_class.py +31 -12
  116. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/standard_community.py +10 -16
  117. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/tloc_list.py +7 -8
  118. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/application_list.py +6 -8
  119. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/data_prefix.py +5 -7
  120. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/fqdn.py +5 -7
  121. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/geolocation_list.py +5 -7
  122. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ips_signature.py +5 -7
  123. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/local_domain.py +5 -7
  124. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/protocol_list.py +5 -7
  125. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/security_port.py +11 -21
  126. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/url.py +15 -36
  127. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/zone.py +18 -14
  128. catalystwan/models/configuration/feature_profile/sdwan/service/acl.py +409 -0
  129. catalystwan/models/configuration/feature_profile/sdwan/service/appqoe.py +42 -77
  130. catalystwan/models/configuration/feature_profile/sdwan/service/bgp.py +288 -0
  131. catalystwan/models/configuration/feature_profile/sdwan/service/dhcp_server.py +64 -107
  132. catalystwan/models/configuration/feature_profile/sdwan/service/eigrp.py +42 -39
  133. catalystwan/models/configuration/feature_profile/sdwan/service/lan/common.py +88 -7
  134. catalystwan/models/configuration/feature_profile/sdwan/service/lan/ethernet.py +156 -232
  135. catalystwan/models/configuration/feature_profile/sdwan/service/lan/gre.py +108 -38
  136. catalystwan/models/configuration/feature_profile/sdwan/service/lan/ipsec.py +84 -77
  137. catalystwan/models/configuration/feature_profile/sdwan/service/lan/svi.py +56 -62
  138. catalystwan/models/configuration/feature_profile/sdwan/service/lan/vpn.py +121 -112
  139. catalystwan/models/configuration/feature_profile/sdwan/service/multicast.py +57 -56
  140. catalystwan/models/configuration/feature_profile/sdwan/service/object_tracker.py +21 -15
  141. catalystwan/models/configuration/feature_profile/sdwan/{routing → service}/ospf.py +47 -55
  142. catalystwan/models/configuration/feature_profile/sdwan/{routing → service}/ospfv3.py +72 -74
  143. catalystwan/models/configuration/feature_profile/sdwan/service/route_policy.py +110 -358
  144. catalystwan/models/configuration/feature_profile/sdwan/service/service_insertion_attachment.py +25 -17
  145. catalystwan/models/configuration/feature_profile/sdwan/service/switchport.py +58 -50
  146. catalystwan/models/configuration/feature_profile/sdwan/service/tracker.py +21 -12
  147. catalystwan/models/configuration/feature_profile/sdwan/service/wireless_lan.py +31 -27
  148. catalystwan/models/configuration/feature_profile/sdwan/system/aaa.py +10 -58
  149. catalystwan/models/configuration/feature_profile/sdwan/transport/cellular_controller.py +23 -26
  150. catalystwan/models/configuration/profile_type.py +6 -1
  151. catalystwan/models/policy/__init__.py +69 -282
  152. catalystwan/models/policy/centralized.py +29 -26
  153. catalystwan/models/policy/{definition → definitions}/access_control_list.py +17 -47
  154. catalystwan/models/policy/{definition → definitions}/access_control_list_ipv6.py +18 -42
  155. catalystwan/models/policy/{definition → definitions}/control.py +25 -48
  156. catalystwan/models/policy/{definition → definitions}/device_access.py +11 -22
  157. catalystwan/models/policy/{definition → definitions}/device_access_ipv6.py +11 -20
  158. catalystwan/models/policy/{definition → definitions}/hub_and_spoke.py +4 -18
  159. catalystwan/models/policy/{definition → definitions}/mesh.py +1 -13
  160. catalystwan/models/policy/{definition → definitions}/qos_map.py +32 -39
  161. catalystwan/models/policy/{definition → definitions}/rewrite.py +2 -12
  162. catalystwan/models/policy/{definition → definitions}/rule_set.py +48 -66
  163. catalystwan/models/policy/{definition → definitions}/security_group.py +14 -38
  164. catalystwan/models/policy/{definition → definitions}/traffic_data.py +61 -184
  165. catalystwan/models/policy/{definition → definitions}/vpn_membership.py +1 -13
  166. catalystwan/models/policy/{definition → definitions}/zone_based_firewall.py +32 -93
  167. catalystwan/models/policy/lists.py +330 -0
  168. catalystwan/models/policy/lists_entries.py +444 -0
  169. catalystwan/models/policy/localized.py +16 -34
  170. catalystwan/models/policy/policy.py +10 -14
  171. catalystwan/models/policy/policy_definition.py +173 -673
  172. catalystwan/models/policy/policy_list.py +27 -38
  173. catalystwan/models/policy/security.py +46 -145
  174. catalystwan/response.py +2 -6
  175. catalystwan/session.py +1 -1
  176. catalystwan/tests/templates/definitions/{cisco_vpn_basic.json → Basic_Cisco_VPN_Model.json} +2 -2
  177. catalystwan/tests/templates/definitions/complex_aaa.json +277 -0
  178. catalystwan/tests/templates/definitions/{cisco_vpn_complex.json → complex_cisco_vpn.json} +12 -27
  179. catalystwan/tests/templates/definitions/{cisco_aaa.json → iuo.json} +15 -44
  180. catalystwan/tests/templates/definitions/omp_1.json +11 -0
  181. catalystwan/tests/templates/definitions/{omp_vsmart_2.json → omp_2.json} +2 -16
  182. catalystwan/tests/templates/definitions/{omp_vsmart_3.json → omp_3.json} +2 -16
  183. catalystwan/tests/templates/models/__init__.py +13 -46
  184. catalystwan/tests/templates/models/cisco_aaa.py +48 -81
  185. catalystwan/tests/templates/models/cisco_banner.py +2 -2
  186. catalystwan/tests/templates/models/cisco_bfd.py +6 -4
  187. catalystwan/tests/templates/models/cisco_system.py +3 -108
  188. catalystwan/tests/templates/models/cisco_vpn.py +72 -42
  189. catalystwan/tests/templates/models/omp_vsmart.py +8 -28
  190. catalystwan/tests/templates/schemas/cedge_aaa.json +1 -1
  191. catalystwan/tests/templates/schemas/cisco_system.json +0 -242
  192. catalystwan/tests/templates/schemas/cisco_vpn.json +1 -53
  193. catalystwan/tests/templates/schemas/omp-vsmart.json +0 -20
  194. catalystwan/tests/templates/test_chose_model.py +10 -6
  195. catalystwan/tests/templates/test_deserialize_model.py +4 -4
  196. catalystwan/tests/templates/test_find_template_values.py +0 -229
  197. catalystwan/tests/templates/test_serialize_model.py +2 -1
  198. catalystwan/tests/test_cli_template.py +9 -8
  199. catalystwan/tests/test_endpoints.py +11 -42
  200. catalystwan/tests/test_templates.py +19 -16
  201. catalystwan/utils/feature_template/find_template_values.py +9 -22
  202. catalystwan/utils/timezone.py +422 -0
  203. catalystwan/workflows/tenant_migration.py +1 -1
  204. {catalystwan-0.41.2.dev9.dist-info → catalystwan-0.41.3.dist-info}/METADATA +1 -20
  205. catalystwan-0.41.3.dist-info/RECORD +353 -0
  206. catalystwan/api/builders/__init__.py +0 -14
  207. catalystwan/api/builders/feature_profiles/__init__.py +0 -0
  208. catalystwan/api/builders/feature_profiles/application_priority.py +0 -58
  209. catalystwan/api/builders/feature_profiles/builder_factory.py +0 -59
  210. catalystwan/api/builders/feature_profiles/cli.py +0 -76
  211. catalystwan/api/builders/feature_profiles/mixins.py +0 -44
  212. catalystwan/api/builders/feature_profiles/other.py +0 -79
  213. catalystwan/api/builders/feature_profiles/report.py +0 -155
  214. catalystwan/api/builders/feature_profiles/service.py +0 -248
  215. catalystwan/api/builders/feature_profiles/system.py +0 -80
  216. catalystwan/api/builders/feature_profiles/transport.py +0 -256
  217. catalystwan/api/builders/feature_profiles/uc_voice.py +0 -287
  218. catalystwan/api/templates/models/aaa_model.py +0 -387
  219. catalystwan/api/templates/models/vpn_vsmart_interface_model.py +0 -198
  220. catalystwan/api/templates/models/vpn_vsmart_model.py +0 -124
  221. catalystwan/endpoints/configuration/feature_profile/sdwan/application_priority.py +0 -107
  222. catalystwan/endpoints/configuration/feature_profile/sdwan/cli.py +0 -60
  223. catalystwan/endpoints/configuration/feature_profile/sdwan/dns_security.py +0 -83
  224. catalystwan/endpoints/configuration/feature_profile/sdwan/embedded_security.py +0 -88
  225. catalystwan/endpoints/configuration/feature_profile/sdwan/other.py +0 -62
  226. catalystwan/endpoints/configuration/feature_profile/sdwan/service.py +0 -154
  227. catalystwan/endpoints/configuration/feature_profile/sdwan/sig_security.py +0 -88
  228. catalystwan/endpoints/configuration/feature_profile/sdwan/topology.py +0 -93
  229. catalystwan/endpoints/configuration/feature_profile/sdwan/uc_voice.py +0 -77
  230. catalystwan/endpoints/configuration/network_hierarchy.py +0 -47
  231. catalystwan/endpoints/configuration/packages.py +0 -36
  232. catalystwan/endpoints/configuration/policy/abstractions.py +0 -49
  233. catalystwan/endpoints/configuration/policy/definition/aip.py +0 -52
  234. catalystwan/endpoints/configuration/policy/definition/amp.py +0 -52
  235. catalystwan/endpoints/configuration/policy/definition/app_route.py +0 -50
  236. catalystwan/endpoints/configuration/policy/definition/cflowd.py +0 -46
  237. catalystwan/endpoints/configuration/policy/definition/dial_peer.py +0 -57
  238. catalystwan/endpoints/configuration/policy/definition/dns_security.py +0 -50
  239. catalystwan/endpoints/configuration/policy/definition/fxo_port.py +0 -57
  240. catalystwan/endpoints/configuration/policy/definition/fxs_did_port.py +0 -57
  241. catalystwan/endpoints/configuration/policy/definition/fxs_port.py +0 -57
  242. catalystwan/endpoints/configuration/policy/definition/intrusion_prevention.py +0 -52
  243. catalystwan/endpoints/configuration/policy/definition/pri_isdn_port.py +0 -57
  244. catalystwan/endpoints/configuration/policy/definition/route_policy.py +0 -50
  245. catalystwan/endpoints/configuration/policy/definition/srst_phone_profile.py +0 -59
  246. catalystwan/endpoints/configuration/policy/definition/ssl_decryption.py +0 -50
  247. catalystwan/endpoints/configuration/policy/definition/ssl_decryption_utd_profile.py +0 -52
  248. catalystwan/endpoints/configuration/policy/definition/url_filtering.py +0 -50
  249. catalystwan/endpoints/configuration/policy/definition/vpn_qos_map.py +0 -50
  250. catalystwan/endpoints/configuration/policy/list/extended_community.py +0 -52
  251. catalystwan/endpoints/configuration/policy/list/fax_protocol.py +0 -48
  252. catalystwan/endpoints/configuration/policy/list/identity.py +0 -48
  253. catalystwan/endpoints/configuration/policy/list/media_profile.py +0 -52
  254. catalystwan/endpoints/configuration/policy/list/modem_pass_through.py +0 -52
  255. catalystwan/endpoints/configuration/policy/list/scalable_group_tag.py +0 -52
  256. catalystwan/endpoints/configuration/policy/list/supervisory_disconnect.py +0 -52
  257. catalystwan/endpoints/configuration/policy/list/threat_grid_api_key.py +0 -52
  258. catalystwan/endpoints/configuration/policy/list/translation_profile.py +0 -52
  259. catalystwan/endpoints/configuration/policy/list/translation_rules.py +0 -52
  260. catalystwan/endpoints/configuration/policy/list/trunkgroup.py +0 -48
  261. catalystwan/endpoints/configuration/policy/list/umbrella_data.py +0 -52
  262. catalystwan/endpoints/configuration/policy/voice_template.py +0 -39
  263. catalystwan/endpoints/configuration/policy_group.py +0 -30
  264. catalystwan/endpoints/configuration/topology_group.py +0 -51
  265. catalystwan/endpoints/configuration_general_template.py +0 -31
  266. catalystwan/endpoints/configuration_template_master.py +0 -48
  267. catalystwan/integration_tests/base.py +0 -81
  268. catalystwan/integration_tests/feature_profile/sdwan/__init__.py +0 -0
  269. catalystwan/integration_tests/feature_profile/sdwan/policy/__init__.py +0 -0
  270. catalystwan/integration_tests/feature_profile/sdwan/policy/base.py +0 -33
  271. catalystwan/integration_tests/feature_profile/sdwan/policy/test_extended_community.py +0 -33
  272. catalystwan/integration_tests/feature_profile/sdwan/policy/test_security_app_list.py +0 -32
  273. catalystwan/integration_tests/feature_profile/sdwan/test_application_priority.py +0 -433
  274. catalystwan/integration_tests/feature_profile/sdwan/test_cli.py +0 -54
  275. catalystwan/integration_tests/feature_profile/sdwan/test_dns_security.py +0 -106
  276. catalystwan/integration_tests/feature_profile/sdwan/test_other.py +0 -49
  277. catalystwan/integration_tests/feature_profile/sdwan/test_service.py +0 -1078
  278. catalystwan/integration_tests/feature_profile/sdwan/test_sig_security.py +0 -322
  279. catalystwan/integration_tests/feature_profile/sdwan/test_ssl_decryption.py +0 -85
  280. catalystwan/integration_tests/feature_profile/sdwan/test_system.py +0 -368
  281. catalystwan/integration_tests/feature_profile/sdwan/test_tracker.py +0 -127
  282. catalystwan/integration_tests/feature_profile/sdwan/test_transport.py +0 -1698
  283. catalystwan/integration_tests/feature_profile/sdwan/topology/test_topology.py +0 -93
  284. catalystwan/integration_tests/feature_profile/test_parcel.py +0 -54
  285. catalystwan/integration_tests/profile_builder/__init__.py +0 -0
  286. catalystwan/integration_tests/profile_builder/test_pb_service.py +0 -197
  287. catalystwan/integration_tests/profile_builder/test_pb_transport.py +0 -226
  288. catalystwan/integration_tests/profile_builder/test_pb_uc_voice.py +0 -277
  289. catalystwan/integration_tests/test_data/__init__.py +0 -117
  290. catalystwan/integration_tests/test_network_hierarchy.py +0 -82
  291. catalystwan/integration_tests/test_settings.py +0 -30
  292. catalystwan/models/configuration/feature_profile/parcel.py +0 -245
  293. catalystwan/models/configuration/feature_profile/sdwan/acl/__init__.py +0 -13
  294. catalystwan/models/configuration/feature_profile/sdwan/acl/ipv4acl.py +0 -298
  295. catalystwan/models/configuration/feature_profile/sdwan/acl/ipv6acl.py +0 -344
  296. catalystwan/models/configuration/feature_profile/sdwan/application_priority/__init__.py +0 -218
  297. catalystwan/models/configuration/feature_profile/sdwan/application_priority/cloud_probe.py +0 -61
  298. catalystwan/models/configuration/feature_profile/sdwan/application_priority/policy_settings.py +0 -31
  299. catalystwan/models/configuration/feature_profile/sdwan/application_priority/qos_policy.py +0 -102
  300. catalystwan/models/configuration/feature_profile/sdwan/application_priority/traffic_policy.py +0 -1057
  301. catalystwan/models/configuration/feature_profile/sdwan/cli/__init__.py +0 -23
  302. catalystwan/models/configuration/feature_profile/sdwan/cli/config.py +0 -18
  303. catalystwan/models/configuration/feature_profile/sdwan/cli/full_config.py +0 -15
  304. catalystwan/models/configuration/feature_profile/sdwan/dns_security/__init__.py +0 -13
  305. catalystwan/models/configuration/feature_profile/sdwan/dns_security/dns.py +0 -110
  306. catalystwan/models/configuration/feature_profile/sdwan/embedded_security/__init__.py +0 -23
  307. catalystwan/models/configuration/feature_profile/sdwan/embedded_security/ngfirewall.py +0 -493
  308. catalystwan/models/configuration/feature_profile/sdwan/embedded_security/policy.py +0 -171
  309. catalystwan/models/configuration/feature_profile/sdwan/other/__init__.py +0 -25
  310. catalystwan/models/configuration/feature_profile/sdwan/other/cybervision.py +0 -44
  311. catalystwan/models/configuration/feature_profile/sdwan/other/thousandeyes.py +0 -147
  312. catalystwan/models/configuration/feature_profile/sdwan/other/ucse.py +0 -110
  313. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/as_path.py +0 -22
  314. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/extended_community.py +0 -34
  315. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv4_network_object.py +0 -15
  316. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv4_service_object.py +0 -254
  317. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/mirror.py +0 -27
  318. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/network_object_group.py +0 -15
  319. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/object_group.py +0 -15
  320. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/service_object_group.py +0 -21
  321. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/aip.py +0 -64
  322. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/amp.py +0 -79
  323. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/identity.py +0 -30
  324. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/intrusion_prevention.py +0 -58
  325. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/object_group.py +0 -72
  326. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/rule_set.py +0 -137
  327. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/scalable_group_tag.py +0 -26
  328. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ssl_decryption.py +0 -126
  329. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ssl_decryption_profile.py +0 -165
  330. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/url_filtering.py +0 -148
  331. catalystwan/models/configuration/feature_profile/sdwan/routing/__init__.py +0 -26
  332. catalystwan/models/configuration/feature_profile/sdwan/routing/bgp.py +0 -609
  333. catalystwan/models/configuration/feature_profile/sdwan/service/__init__.py +0 -91
  334. catalystwan/models/configuration/feature_profile/sdwan/service/dual_router_ha.py +0 -26
  335. catalystwan/models/configuration/feature_profile/sdwan/service/lan/multilink.py +0 -101
  336. catalystwan/models/configuration/feature_profile/sdwan/service/service_chain.py +0 -38
  337. catalystwan/models/configuration/feature_profile/sdwan/sig_security/__init__.py +0 -19
  338. catalystwan/models/configuration/feature_profile/sdwan/sig_security/sig_security.py +0 -379
  339. catalystwan/models/configuration/feature_profile/sdwan/system/__init__.py +0 -59
  340. catalystwan/models/configuration/feature_profile/sdwan/system/banner.py +0 -30
  341. catalystwan/models/configuration/feature_profile/sdwan/system/basic.py +0 -290
  342. catalystwan/models/configuration/feature_profile/sdwan/system/bfd.py +0 -69
  343. catalystwan/models/configuration/feature_profile/sdwan/system/device_access.py +0 -157
  344. catalystwan/models/configuration/feature_profile/sdwan/system/device_access_ipv6.py +0 -157
  345. catalystwan/models/configuration/feature_profile/sdwan/system/global_parcel.py +0 -163
  346. catalystwan/models/configuration/feature_profile/sdwan/system/logging_parcel.py +0 -162
  347. catalystwan/models/configuration/feature_profile/sdwan/system/mrf.py +0 -75
  348. catalystwan/models/configuration/feature_profile/sdwan/system/ntp.py +0 -103
  349. catalystwan/models/configuration/feature_profile/sdwan/system/omp.py +0 -120
  350. catalystwan/models/configuration/feature_profile/sdwan/system/security.py +0 -179
  351. catalystwan/models/configuration/feature_profile/sdwan/system/snmp.py +0 -173
  352. catalystwan/models/configuration/feature_profile/sdwan/topology/__init__.py +0 -29
  353. catalystwan/models/configuration/feature_profile/sdwan/topology/custom_control.py +0 -425
  354. catalystwan/models/configuration/feature_profile/sdwan/topology/hubspoke.py +0 -60
  355. catalystwan/models/configuration/feature_profile/sdwan/topology/mesh.py +0 -23
  356. catalystwan/models/configuration/feature_profile/sdwan/trackers/__init__.py +0 -36
  357. catalystwan/models/configuration/feature_profile/sdwan/trackers/tracker.py +0 -96
  358. catalystwan/models/configuration/feature_profile/sdwan/trackers/tracker_group.py +0 -63
  359. catalystwan/models/configuration/feature_profile/sdwan/transport/__init__.py +0 -93
  360. catalystwan/models/configuration/feature_profile/sdwan/transport/cellular_profile.py +0 -71
  361. catalystwan/models/configuration/feature_profile/sdwan/transport/gps.py +0 -37
  362. catalystwan/models/configuration/feature_profile/sdwan/transport/management/ethernet.py +0 -121
  363. catalystwan/models/configuration/feature_profile/sdwan/transport/t1e1controller.py +0 -124
  364. catalystwan/models/configuration/feature_profile/sdwan/transport/vpn.py +0 -285
  365. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/cellular.py +0 -173
  366. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/ethernet.py +0 -389
  367. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/gre.py +0 -46
  368. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/ipsec.py +0 -137
  369. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/multilink.py +0 -219
  370. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/protocol_over.py +0 -405
  371. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/t1e1serial.py +0 -195
  372. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/__init__.py +0 -62
  373. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/analog_interface.py +0 -436
  374. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/call_routing.py +0 -179
  375. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/digital_interface.py +0 -380
  376. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/dsp_farm.py +0 -193
  377. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/media_profile.py +0 -17
  378. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/server_group.py +0 -51
  379. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/srst.py +0 -86
  380. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/supervisory_disconnect.py +0 -69
  381. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/translation_profile.py +0 -42
  382. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/translation_rule.py +0 -31
  383. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/trunk_group.py +0 -26
  384. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/voice_global.py +0 -57
  385. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/voice_tenant.py +0 -40
  386. catalystwan/models/configuration/network_hierarchy/__init__.py +0 -24
  387. catalystwan/models/configuration/network_hierarchy/cflowd.py +0 -128
  388. catalystwan/models/configuration/network_hierarchy/node.py +0 -88
  389. catalystwan/models/configuration/network_hierarchy/security_logging.py +0 -91
  390. catalystwan/models/configuration/packages.py +0 -57
  391. catalystwan/models/configuration/policy_group.py +0 -74
  392. catalystwan/models/configuration/topology_group.py +0 -52
  393. catalystwan/models/policy/definition/aip.py +0 -60
  394. catalystwan/models/policy/definition/amp.py +0 -65
  395. catalystwan/models/policy/definition/app_route.py +0 -246
  396. catalystwan/models/policy/definition/cflowd.py +0 -95
  397. catalystwan/models/policy/definition/dial_peer.py +0 -60
  398. catalystwan/models/policy/definition/dns_security.py +0 -130
  399. catalystwan/models/policy/definition/fxo_port.py +0 -63
  400. catalystwan/models/policy/definition/fxs_did_port.py +0 -58
  401. catalystwan/models/policy/definition/fxs_port.py +0 -56
  402. catalystwan/models/policy/definition/intrusion_prevention.py +0 -55
  403. catalystwan/models/policy/definition/pri_isdn_port.py +0 -48
  404. catalystwan/models/policy/definition/route_policy.py +0 -187
  405. catalystwan/models/policy/definition/srst_phone_profile.py +0 -37
  406. catalystwan/models/policy/definition/ssl_decryption.py +0 -209
  407. catalystwan/models/policy/definition/ssl_decryption_utd_profile.py +0 -88
  408. catalystwan/models/policy/definition/url_filtering.py +0 -70
  409. catalystwan/models/policy/definition/vpn_qos_map.py +0 -46
  410. catalystwan/models/policy/list/app.py +0 -44
  411. catalystwan/models/policy/list/app_probe.py +0 -42
  412. catalystwan/models/policy/list/as_path.py +0 -30
  413. catalystwan/models/policy/list/class_map.py +0 -30
  414. catalystwan/models/policy/list/color.py +0 -28
  415. catalystwan/models/policy/list/communities.py +0 -83
  416. catalystwan/models/policy/list/data_ipv6_prefix.py +0 -30
  417. catalystwan/models/policy/list/data_prefix.py +0 -30
  418. catalystwan/models/policy/list/fax_protocol.py +0 -45
  419. catalystwan/models/policy/list/fqdn.py +0 -24
  420. catalystwan/models/policy/list/geo_location.py +0 -33
  421. catalystwan/models/policy/list/identity.py +0 -29
  422. catalystwan/models/policy/list/ips_signature.py +0 -27
  423. catalystwan/models/policy/list/ipv6_prefix.py +0 -33
  424. catalystwan/models/policy/list/local_app.py +0 -45
  425. catalystwan/models/policy/list/local_domain.py +0 -36
  426. catalystwan/models/policy/list/media_profile.py +0 -44
  427. catalystwan/models/policy/list/mirror.py +0 -27
  428. catalystwan/models/policy/list/modem_pass_through.py +0 -27
  429. catalystwan/models/policy/list/policer.py +0 -39
  430. catalystwan/models/policy/list/port.py +0 -33
  431. catalystwan/models/policy/list/preferred_color_group.py +0 -82
  432. catalystwan/models/policy/list/prefix.py +0 -33
  433. catalystwan/models/policy/list/protocol_name.py +0 -26
  434. catalystwan/models/policy/list/region.py +0 -45
  435. catalystwan/models/policy/list/scalable_group_tag.py +0 -30
  436. catalystwan/models/policy/list/site.py +0 -34
  437. catalystwan/models/policy/list/sla.py +0 -77
  438. catalystwan/models/policy/list/supervisory_disconnect.py +0 -62
  439. catalystwan/models/policy/list/threat_grid_api_key.py +0 -32
  440. catalystwan/models/policy/list/tloc.py +0 -32
  441. catalystwan/models/policy/list/translation_profile.py +0 -32
  442. catalystwan/models/policy/list/translation_rules.py +0 -29
  443. catalystwan/models/policy/list/trunkgroup.py +0 -56
  444. catalystwan/models/policy/list/umbrella_data.py +0 -30
  445. catalystwan/models/policy/list/url.py +0 -39
  446. catalystwan/models/policy/list/vpn.py +0 -40
  447. catalystwan/models/policy/list/zone.py +0 -46
  448. catalystwan/models/policy/voice.py +0 -77
  449. catalystwan/models/settings.py +0 -41
  450. catalystwan/models/templates.py +0 -79
  451. catalystwan/tests/builders/test_report.py +0 -60
  452. catalystwan/tests/builders/uc_voice.py +0 -85
  453. catalystwan/tests/models/__init__.py +0 -0
  454. catalystwan/tests/models/configuration/feature_profile/sdwan/policy_object/security/test_url.py +0 -73
  455. catalystwan/tests/models/test_digital_interface.py +0 -56
  456. catalystwan/tests/templates/definitions/aaa_basic.json +0 -96
  457. catalystwan/tests/templates/definitions/aaa_complex.json +0 -464
  458. catalystwan/tests/templates/definitions/cisco_aaa_complex.json +0 -361
  459. catalystwan/tests/templates/definitions/cisco_logging_complex.json +0 -268
  460. catalystwan/tests/templates/definitions/cisco_ntp_complex.json +0 -143
  461. catalystwan/tests/templates/definitions/cisco_omp_complex.json +0 -175
  462. catalystwan/tests/templates/definitions/cisco_ospf_complex.json +0 -302
  463. catalystwan/tests/templates/definitions/cisco_sig.json +0 -405
  464. catalystwan/tests/templates/definitions/cisco_snmp_complex.json +0 -258
  465. catalystwan/tests/templates/definitions/cisco_system_complex.json +0 -502
  466. catalystwan/tests/templates/definitions/cisco_vpn_interface_complex.json +0 -821
  467. catalystwan/tests/templates/definitions/omp_vsmart_1.json +0 -26
  468. catalystwan/tests/templates/definitions/omp_vsmart_complex.json +0 -73
  469. catalystwan/tests/templates/definitions/security_vsmart_complex.json +0 -24
  470. catalystwan/tests/templates/definitions/system_vsmart_complex.json +0 -193
  471. catalystwan/tests/templates/definitions/vpn_vsmart_basic.json +0 -17
  472. catalystwan/tests/templates/definitions/vpn_vsmart_complex.json +0 -179
  473. catalystwan/tests/templates/definitions/vpn_vsmart_interface_basic.json +0 -42
  474. catalystwan/tests/templates/definitions/vpn_vsmart_interface_complex.json +0 -208
  475. catalystwan/tests/templates/models/aaa.py +0 -106
  476. catalystwan/tests/templates/models/cisco_logging.py +0 -65
  477. catalystwan/tests/templates/models/cisco_ntp.py +0 -17
  478. catalystwan/tests/templates/models/cisco_omp.py +0 -37
  479. catalystwan/tests/templates/models/cisco_ospf.py +0 -60
  480. catalystwan/tests/templates/models/cisco_secure_internet_gateway.py +0 -95
  481. catalystwan/tests/templates/models/cisco_snmp.py +0 -40
  482. catalystwan/tests/templates/models/cisco_vpn_interface.py +0 -200
  483. catalystwan/tests/templates/models/security_vsmart.py +0 -11
  484. catalystwan/tests/templates/models/system_vsmart.py +0 -37
  485. catalystwan/tests/templates/models/vpn_vsmart.py +0 -32
  486. catalystwan/tests/templates/models/vpn_vsmart_interface.py +0 -54
  487. catalystwan/tests/templates/schemas/aaa.json +0 -1096
  488. catalystwan/tests/templates/schemas/cisco_logging.json +0 -577
  489. catalystwan/tests/templates/schemas/cisco_ntp.json +0 -265
  490. catalystwan/tests/templates/schemas/cisco_omp.json +0 -479
  491. catalystwan/tests/templates/schemas/cisco_ospf.json +0 -908
  492. catalystwan/tests/templates/schemas/cisco_secure_internet_gateway.json +0 -1520
  493. catalystwan/tests/templates/schemas/cisco_snmp.json +0 -561
  494. catalystwan/tests/templates/schemas/cisco_vpn_interface.json +0 -3348
  495. catalystwan/tests/templates/schemas/security-vsmart.json +0 -58
  496. catalystwan/tests/templates/schemas/system-vsmart.json +0 -2585
  497. catalystwan/tests/templates/schemas/vpn-vsmart-interface.json +0 -859
  498. catalystwan/tests/templates/schemas/vpn-vsmart.json +0 -445
  499. catalystwan/tests/templates/test_find_template_values_2.py +0 -193
  500. catalystwan/tests/test_feature_profile_api.py +0 -282
  501. catalystwan/tests/test_models_common.py +0 -53
  502. catalystwan/utils/model.py +0 -48
  503. catalystwan/utils/persona.py +0 -5
  504. catalystwan/utils/type_check.py +0 -22
  505. catalystwan/workflows/backup_restore_device_templates.py +0 -467
  506. catalystwan-0.41.2.dev9.dist-info/RECORD +0 -641
  507. /catalystwan/tests/templates/definitions/{cisco_banner.json → banner_1.json} +0 -0
  508. {catalystwan-0.41.2.dev9.dist-info → catalystwan-0.41.3.dist-info}/LICENSE +0 -0
  509. {catalystwan-0.41.2.dev9.dist-info → catalystwan-0.41.3.dist-info}/WHEEL +0 -0
@@ -1,1520 +0,0 @@
1
- {
2
- "name": "cisco_secure_internet_gateway",
3
- "xmlPath": [
4
- "vpn"
5
- ],
6
- "xmlRootTag": "vpn-instance",
7
- "uniqueKey": "vpn-id",
8
- "nameSpace": "http://viptela.com/vpn",
9
- "fields": [
10
- {
11
- "key": "vpn-id",
12
- "description": "VPN",
13
- "details": "List of VPN instances",
14
- "optionType": [
15
- "constant"
16
- ],
17
- "defaultOption": "constant",
18
- "dataType": {
19
- "type": "number",
20
- "min": 0,
21
- "max": 65527,
22
- "default": 0
23
- },
24
- "dataPath": [],
25
- "objectType": "object"
26
- },
27
- {
28
- "key": "childOrgId",
29
- "description": "Child Organization Id",
30
- "details": "Child Organization Id",
31
- "optionType": [
32
- "ignore",
33
- "constant",
34
- "variable"
35
- ],
36
- "defaultOption": "ignore",
37
- "dataType": {
38
- "type": "string",
39
- "default": ""
40
- },
41
- "dataPath": [],
42
- "objectType": "object"
43
- },
44
- {
45
- "key": "interface",
46
- "description": "IPSec Interface",
47
- "details": "Interface name: IPsec when present",
48
- "optionType": [
49
- "constant",
50
- "variable"
51
- ],
52
- "defaultOption": "constant",
53
- "dataPath": [],
54
- "objectType": "tree",
55
- "minElements": 1,
56
- "maxElements": 4,
57
- "primaryKeys": [
58
- "if-name"
59
- ],
60
- "children": [
61
- {
62
- "key": "if-name",
63
- "description": "Interface Name (1..255)",
64
- "details": "Interface name: IPsec when present",
65
- "optionType": [
66
- "constant"
67
- ],
68
- "defaultOption": "constant",
69
- "dataType": {
70
- "type": "string",
71
- "minLength": 4,
72
- "maxLength": 8,
73
- "min": 1,
74
- "max": 255
75
- },
76
- "dataPath": [],
77
- "objectType": "object"
78
- },
79
- {
80
- "key": "auto",
81
- "description": "Auto Tunnel Mode",
82
- "details": "Auto Tunnel Mode",
83
- "optionType": [
84
- "constant"
85
- ],
86
- "defaultOption": "constant",
87
- "dataType": {
88
- "type": "boolean",
89
- "default": "false"
90
- },
91
- "dataPath": [],
92
- "objectType": "object"
93
- },
94
- {
95
- "key": "shutdown",
96
- "description": "Shutdown",
97
- "details": "Administrative state",
98
- "optionType": [
99
- "constant",
100
- "notIgnore"
101
- ],
102
- "defaultOption": "notIgnore",
103
- "dataType": {
104
- "type": "boolean",
105
- "default": "false",
106
- "label": {
107
- "on": "Yes",
108
- "off": "No"
109
- }
110
- },
111
- "dataPath": [],
112
- "objectType": "object"
113
- },
114
- {
115
- "key": "description",
116
- "description": "Description",
117
- "details": "Interface description",
118
- "optionType": [
119
- "constant",
120
- "variable",
121
- "ignore"
122
- ],
123
- "defaultOption": "ignore",
124
- "dataType": {
125
- "type": "string",
126
- "minLength": 1,
127
- "maxLength": 128
128
- },
129
- "dataPath": [],
130
- "objectType": "object"
131
- },
132
- {
133
- "key": "unnumbered",
134
- "description": "Unnumbered Interface",
135
- "details": "Unnumbered interface",
136
- "optionType": [
137
- "constant"
138
- ],
139
- "defaultOption": "constant",
140
- "dataType": {
141
- "type": "boolean",
142
- "default": "true"
143
- },
144
- "dataPath": [
145
- "ip"
146
- ],
147
- "objectType": "node-only"
148
- },
149
- {
150
- "key": "address",
151
- "description": "IPv4 address",
152
- "details": "Assign IPv4 address",
153
- "optionType": [
154
- "constant",
155
- "variable",
156
- "ignore"
157
- ],
158
- "defaultOption": "ignore",
159
- "dataType": {
160
- "type": "ipv4-prefix"
161
- },
162
- "dataPath": [
163
- "ip"
164
- ],
165
- "objectType": "object"
166
- },
167
- {
168
- "key": "tunnel-source",
169
- "description": "Tunnel Source IP Address",
170
- "details": "Tunnel source IP Address",
171
- "optionType": [
172
- "constant",
173
- "variable"
174
- ],
175
- "defaultOption": "constant",
176
- "dataType": {
177
- "type": "ipv4"
178
- },
179
- "dataPath": [],
180
- "objectType": "object"
181
- },
182
- {
183
- "key": "tunnel-source-interface",
184
- "description": "Tunnel Source Interface",
185
- "details": "<1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid",
186
- "optionType": [
187
- "constant",
188
- "variable"
189
- ],
190
- "defaultOption": "constant",
191
- "dataType": {
192
- "type": "string",
193
- "minLength": 1,
194
- "maxLength": 32
195
- },
196
- "dataPath": [],
197
- "objectType": "object"
198
- },
199
- {
200
- "key": "tunnel-route-via",
201
- "description": "Tunnel Route-via Interface",
202
- "details": "<1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid",
203
- "optionType": [
204
- "constant",
205
- "variable"
206
- ],
207
- "defaultOption": "constant",
208
- "dataType": {
209
- "type": "string",
210
- "minLength": 1,
211
- "maxLength": 32
212
- },
213
- "dataPath": [],
214
- "objectType": "object"
215
- },
216
- {
217
- "key": "tunnel-destination",
218
- "description": "Tunnel Destination IP Address/FQDN(Ipsec)",
219
- "details": "Tunnel destination IP address",
220
- "optionType": [
221
- "constant",
222
- "variable"
223
- ],
224
- "defaultOption": "constant",
225
- "dataType": {
226
- "type": "string"
227
- },
228
- "default": "dynamic",
229
- "dataPath": [],
230
- "objectType": "object"
231
- },
232
- {
233
- "key": "application",
234
- "description": "Application",
235
- "details": "Enable Application Tunnel Type",
236
- "optionType": [
237
- "constant"
238
- ],
239
- "defaultOption": "constant",
240
- "dataType": {
241
- "type": "enum",
242
- "values": [
243
- {
244
- "key": "sig",
245
- "value": "Secure Internet Gateway"
246
- }
247
- ],
248
- "default": "sig"
249
- },
250
- "dataPath": [],
251
- "objectType": "object"
252
- },
253
- {
254
- "key": "application",
255
- "description": "Application",
256
- "details": "Enable Application Tunnel Type",
257
- "optionType": [
258
- "constant"
259
- ],
260
- "defaultOption": "constant",
261
- "dataType": {
262
- "type": "enum",
263
- "values": [
264
- {
265
- "key": "sig",
266
- "value": "Secure Internet Gateway"
267
- }
268
- ],
269
- "default": "sig"
270
- },
271
- "dataPath": [],
272
- "objectType": "object"
273
- },
274
- {
275
- "key": "tunnel-set",
276
- "description": "SIG Provider",
277
- "details": "SIG Tunnel Provider",
278
- "optionType": [
279
- "constant"
280
- ],
281
- "defaultOption": "constant",
282
- "dataType": {
283
- "type": "enum",
284
- "values": [
285
- {
286
- "key": "secure-internet-gateway-umbrella",
287
- "value": "Umbrella"
288
- },
289
- {
290
- "key": "secure-internet-gateway-zscaler",
291
- "value": "Zscaler"
292
- },
293
- {
294
- "key": "secure-internet-gateway-other",
295
- "value": "Generic"
296
- }
297
- ],
298
- "default": "secure-internet-gateway-umbrella"
299
- },
300
- "dataPath": [],
301
- "objectType": "object"
302
- },
303
- {
304
- "key": "tunnel-dc-preference",
305
- "description": "Data-Center",
306
- "details": "SIG Tunnel Data Center",
307
- "optionType": [
308
- "constant"
309
- ],
310
- "defaultOption": "constant",
311
- "dataType": {
312
- "type": "enum",
313
- "values": [
314
- {
315
- "key": "primary-dc",
316
- "value": "Primary"
317
- },
318
- {
319
- "key": "secondary-dc",
320
- "value": "Secondary"
321
- }
322
- ],
323
- "default": "primary-dc"
324
- },
325
- "dataPath": [],
326
- "objectType": "object"
327
- },
328
- {
329
- "key": "tcp-mss-adjust",
330
- "description": "TCP MSS",
331
- "details": "TCP MSS on SYN packets, in bytes",
332
- "optionType": [
333
- "constant",
334
- "variable",
335
- "ignore"
336
- ],
337
- "defaultOption": "ignore",
338
- "dataType": {
339
- "type": "number",
340
- "min": 500,
341
- "max": 1460
342
- },
343
- "dataPath": [],
344
- "objectType": "object"
345
- },
346
- {
347
- "key": "mtu",
348
- "description": "IP MTU",
349
- "details": "Interface MTU <576..2000>, in bytes",
350
- "optionType": [
351
- "constant",
352
- "variable",
353
- "notIgnore"
354
- ],
355
- "defaultOption": "notIgnore",
356
- "dataType": {
357
- "type": "number",
358
- "min": 576,
359
- "max": 2000,
360
- "default": 1400
361
- },
362
- "dataPath": [],
363
- "objectType": "object"
364
- },
365
- {
366
- "key": "dpd-interval",
367
- "description": "DPD Interval",
368
- "details": "IKE keepalive interval (seconds)",
369
- "optionType": [
370
- "constant",
371
- "variable",
372
- "ignore"
373
- ],
374
- "defaultOption": "ignore",
375
- "dataType": {
376
- "type": "number",
377
- "min": 0,
378
- "max": 65535,
379
- "default": 10
380
- },
381
- "dataPath": [
382
- "dead-peer-detection"
383
- ],
384
- "objectType": "object"
385
- },
386
- {
387
- "key": "dpd-retries",
388
- "description": "DPD Retries",
389
- "details": "IKE keepalive retries",
390
- "optionType": [
391
- "constant",
392
- "variable",
393
- "ignore"
394
- ],
395
- "defaultOption": "ignore",
396
- "dataType": {
397
- "type": "number",
398
- "min": 0,
399
- "max": 255,
400
- "default": 3
401
- },
402
- "dataPath": [
403
- "dead-peer-detection"
404
- ],
405
- "objectType": "object"
406
- },
407
- {
408
- "key": "ike-version",
409
- "description": "IKE Version",
410
- "details": "IKE Version <1..2>",
411
- "optionType": [
412
- "constant",
413
- "variable",
414
- "ignore"
415
- ],
416
- "defaultOption": "constant",
417
- "dataType": {
418
- "type": "number",
419
- "min": 1,
420
- "max": 2,
421
- "default": 2
422
- },
423
- "dataPath": [
424
- "ike"
425
- ],
426
- "objectType": "object"
427
- },
428
- {
429
- "key": "pre-shared-secret",
430
- "description": "Preshared Key",
431
- "details": "Use preshared key to authenticate IKE peer",
432
- "optionType": [
433
- "constant",
434
- "variable",
435
- "ignore"
436
- ],
437
- "defaultOption": "ignore",
438
- "dataType": {
439
- "type": "restrictedPassphrase",
440
- "minLength": 1,
441
- "maxLength": 127
442
- },
443
- "dataPath": [
444
- "ike",
445
- "authentication-type",
446
- "pre-shared-key"
447
- ],
448
- "objectType": "object"
449
- },
450
- {
451
- "key": "ike-rekey-interval",
452
- "description": "IKE Rekey Interval (seconds)",
453
- "details": "IKE rekey interval <300..1209600> seconds",
454
- "optionType": [
455
- "constant",
456
- "variable",
457
- "ignore"
458
- ],
459
- "defaultOption": "ignore",
460
- "dataType": {
461
- "type": "number",
462
- "min": 300,
463
- "max": 1209600,
464
- "default": 14400
465
- },
466
- "dataPath": [
467
- "ike"
468
- ],
469
- "objectType": "object"
470
- },
471
- {
472
- "key": "ike-ciphersuite",
473
- "description": "IKE Cipher Suite",
474
- "details": "IKE identity the IKE preshared secret belongs to",
475
- "optionType": [
476
- "constant",
477
- "variable",
478
- "ignore"
479
- ],
480
- "defaultOption": "ignore",
481
- "dataType": {
482
- "type": "enum",
483
- "values": [
484
- {
485
- "key": "aes256-cbc-sha1",
486
- "value": "AES 256 CBC SHA1"
487
- },
488
- {
489
- "key": "aes256-cbc-sha2",
490
- "value": "AES 256 CBC SHA2"
491
- },
492
- {
493
- "key": "aes128-cbc-sha1",
494
- "value": "AES 128 CBC SHA1"
495
- },
496
- {
497
- "key": "aes128-cbc-sha2",
498
- "value": "AES 128 CBC SHA2"
499
- }
500
- ],
501
- "default": "aes256-cbc-sha1"
502
- },
503
- "dataPath": [
504
- "ike"
505
- ],
506
- "objectType": "object"
507
- },
508
- {
509
- "key": "ike-group",
510
- "description": "IKE Diffie-Hellman Group",
511
- "details": "IKE Diffie Hellman Groups",
512
- "optionType": [
513
- "constant",
514
- "variable",
515
- "notIgnore"
516
- ],
517
- "defaultOption": "notIgnore",
518
- "dataType": {
519
- "type": "enum",
520
- "values": [
521
- {
522
- "key": "2",
523
- "value": "2 1024-bit modulus"
524
- },
525
- {
526
- "key": "5",
527
- "value": "5 1536-bit modulus"
528
- },
529
- {
530
- "key": "14",
531
- "value": "14 2048-bit modulus"
532
- },
533
- {
534
- "key": "15",
535
- "value": "15 3072-bit modulus"
536
- },
537
- {
538
- "key": "16",
539
- "value": "16 4096-bit modulus"
540
- },
541
- {
542
- "key": "19",
543
- "value": "19 256-bit random ECP"
544
- },
545
- {
546
- "key": "20",
547
- "value": "20 384-bit random ECP"
548
- },
549
- {
550
- "key": "21",
551
- "value": "21 521-bit random ECP"
552
- }
553
- ],
554
- "default": "14"
555
- },
556
- "dataPath": [
557
- "ike"
558
- ],
559
- "objectType": "object"
560
- },
561
- {
562
- "key": "pre-shared-key-dynamic",
563
- "description": "Preshared Key",
564
- "details": "Use preshared key to authenticate IKE peer",
565
- "optionType": [
566
- "constant"
567
- ],
568
- "defaultOption": "constant",
569
- "dataType": {
570
- "type": "boolean",
571
- "default": "true"
572
- },
573
- "dataPath": [
574
- "ike",
575
- "authentication-type"
576
- ],
577
- "objectType": "node-only"
578
- },
579
- {
580
- "key": "ike-local-id",
581
- "description": "IKE ID for local End point",
582
- "details": "IKE ID for the local endpoint. Input IPv4 address, domain name, or email address",
583
- "optionType": [
584
- "constant",
585
- "variable",
586
- "ignore"
587
- ],
588
- "defaultOption": "ignore",
589
- "dataType": {
590
- "type": "ike",
591
- "minLength": 1,
592
- "maxLength": 63
593
- },
594
- "dataPath": [
595
- "ike",
596
- "authentication-type",
597
- "pre-shared-key"
598
- ],
599
- "objectType": "object"
600
- },
601
- {
602
- "key": "ike-remote-id",
603
- "description": "IKE ID for Remote End point",
604
- "details": "IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address",
605
- "optionType": [
606
- "constant",
607
- "variable",
608
- "ignore"
609
- ],
610
- "defaultOption": "ignore",
611
- "dataType": {
612
- "type": "ike",
613
- "minLength": 1,
614
- "maxLength": 63
615
- },
616
- "dataPath": [
617
- "ike",
618
- "authentication-type",
619
- "pre-shared-key"
620
- ],
621
- "objectType": "object"
622
- },
623
- {
624
- "key": "ipsec-rekey-interval",
625
- "description": "IPsec Rekey Interval (seconds)",
626
- "details": "IPsec rekey interval <300..1209600> seconds",
627
- "optionType": [
628
- "constant",
629
- "variable",
630
- "ignore"
631
- ],
632
- "defaultOption": "ignore",
633
- "dataType": {
634
- "type": "number",
635
- "min": 300,
636
- "max": 1209600,
637
- "default": 3600
638
- },
639
- "dataPath": [
640
- "ipsec"
641
- ],
642
- "objectType": "object"
643
- },
644
- {
645
- "key": "ipsec-replay-window",
646
- "description": "IPsec Replay Window",
647
- "details": "Replay window size 32..8192 (must be a power of 2)",
648
- "optionType": [
649
- "constant",
650
- "variable",
651
- "ignore"
652
- ],
653
- "defaultOption": "ignore",
654
- "dataType": {
655
- "type": "number",
656
- "min": 64,
657
- "max": 4096,
658
- "default": 512
659
- },
660
- "dataPath": [
661
- "ipsec"
662
- ],
663
- "objectType": "object"
664
- },
665
- {
666
- "key": "ipsec-ciphersuite",
667
- "description": "IPsec Cipher Suite",
668
- "details": "IPsec(ESP) encryption and integrity protocol",
669
- "optionType": [
670
- "constant",
671
- "variable",
672
- "notIgnore"
673
- ],
674
- "defaultOption": "notIgnore",
675
- "dataType": {
676
- "type": "enum",
677
- "values": [
678
- {
679
- "key": "aes256-cbc-sha1",
680
- "value": "AES 256 CBC SHA1"
681
- },
682
- {
683
- "key": "aes256-cbc-sha384",
684
- "value": "AES 256 CBC SHA 384"
685
- },
686
- {
687
- "key": "aes256-cbc-sha256",
688
- "value": "AES 256 CBC SHA 256"
689
- },
690
- {
691
- "key": "aes256-cbc-sha512",
692
- "value": "AES 256 CBC SHA 512"
693
- },
694
- {
695
- "key": "aes256-gcm",
696
- "value": "AES 256 GCM"
697
- },
698
- {
699
- "key": "null-sha1",
700
- "value": "Null SHA1"
701
- },
702
- {
703
- "key": "null-sha384",
704
- "value": "Nul SHA 384"
705
- },
706
- {
707
- "key": "null-sha256",
708
- "value": "Nul SHA 256"
709
- },
710
- {
711
- "key": "null-sha512",
712
- "value": "Nul SHA 512"
713
- }
714
- ],
715
- "default": "aes256-gcm"
716
- },
717
- "dataPath": [
718
- "ipsec"
719
- ],
720
- "objectType": "object"
721
- },
722
- {
723
- "key": "perfect-forward-secrecy",
724
- "description": "Perfect Forward Secrecy",
725
- "details": "IPsec perfect forward secrecy settings",
726
- "optionType": [
727
- "constant",
728
- "variable",
729
- "notIgnore"
730
- ],
731
- "defaultOption": "notIgnore",
732
- "dataType": {
733
- "type": "enum",
734
- "values": [
735
- {
736
- "key": "group-2",
737
- "value": "Group-2 1024-bit modulus"
738
- },
739
- {
740
- "key": "group-5",
741
- "value": "Group-5 1536-bit modulus"
742
- },
743
- {
744
- "key": "group-14",
745
- "value": "Group-14 2048-bit modulus"
746
- },
747
- {
748
- "key": "group-15",
749
- "value": "Group-15 3072-bit modulus"
750
- },
751
- {
752
- "key": "group-16",
753
- "value": "Group-16 4096-bit modulus"
754
- },
755
- {
756
- "key": "group-19",
757
- "value": "Group-19 256-bit random ECP"
758
- },
759
- {
760
- "key": "group-20",
761
- "value": "Group-20 384-bit random ECP"
762
- },
763
- {
764
- "key": "group-21",
765
- "value": "Group-21 521-bit random ECP"
766
- },
767
- {
768
- "key": "none",
769
- "value": "None"
770
- }
771
- ],
772
- "default": "none"
773
- },
774
- "dataPath": [
775
- "ipsec"
776
- ],
777
- "objectType": "object"
778
- },
779
- {
780
- "key": "tracker",
781
- "description": "Tracker",
782
- "details": "Enable tracker for this interface",
783
- "optionType": [
784
- "constant",
785
- "ignore"
786
- ],
787
- "defaultOption": "ignore",
788
- "dataType": {
789
- "type": "enum",
790
- "values": [
791
- {
792
- "key": "",
793
- "value": ""
794
- }
795
- ]
796
- },
797
- "dataPath": [],
798
- "objectType": "object"
799
- },
800
- {
801
- "key": "track-enable",
802
- "description": "Track this interface for SIG",
803
- "details": "Enable/disable SIG tracking",
804
- "optionType": [
805
- "constant",
806
- "ignore"
807
- ],
808
- "defaultOption": "ignore",
809
- "dataType": {
810
- "type": "boolean",
811
- "default": "true"
812
- },
813
- "dataPath": [],
814
- "objectType": "object"
815
- },
816
- {
817
- "key": "tunnel-public-ip",
818
- "description": "Source Public IP",
819
- "details": "Public IP required to setup GRE tunnel to Zscaler",
820
- "optionType": [
821
- "constant",
822
- "variable",
823
- "ignore"
824
- ],
825
- "defaultOption": "ignore",
826
- "dataType": {
827
- "type": "ipv4",
828
- "default": "Auto"
829
- },
830
- "dataPath": [],
831
- "objectType": "object"
832
- }
833
- ]
834
- },
835
- {
836
- "key": "service",
837
- "description": "Service",
838
- "details": "Configure services",
839
- "optionType": [
840
- "constant"
841
- ],
842
- "defaultOption": "constant",
843
- "dataPath": [],
844
- "objectType": "tree",
845
- "primaryKeys": [
846
- "svc-type"
847
- ],
848
- "children": [
849
- {
850
- "key": "svc-type",
851
- "description": "Service Type",
852
- "details": "Service Type",
853
- "optionType": [
854
- "constant"
855
- ],
856
- "defaultOption": "constant",
857
- "dataType": {
858
- "type": "enum",
859
- "values": [
860
- {
861
- "key": "sig",
862
- "value": "SIG"
863
- }
864
- ],
865
- "default": "sig"
866
- },
867
- "dataPath": [],
868
- "objectType": "object"
869
- },
870
- {
871
- "key": "interface-pair",
872
- "description": "Interface Pair",
873
- "details": "Interface Pair for active and backup",
874
- "optionType": [
875
- "constant"
876
- ],
877
- "defaultOption": "constant",
878
- "dataPath": [
879
- "ha-pairs"
880
- ],
881
- "objectType": "tree",
882
- "minElements": 1,
883
- "maxElements": 4,
884
- "primaryKeys": [
885
- "active-interface",
886
- "backup-interface"
887
- ],
888
- "children": [
889
- {
890
- "key": "active-interface",
891
- "description": "Active Tunnel Interface",
892
- "details": "Active Tunnel Interface for SIG",
893
- "optionType": [
894
- "constant"
895
- ],
896
- "defaultOption": "constant",
897
- "dataType": {
898
- "type": "enum",
899
- "values": [
900
- {
901
- "key": "",
902
- "value": ""
903
- }
904
- ]
905
- },
906
- "dataPath": [],
907
- "objectType": "object"
908
- },
909
- {
910
- "key": "active-interface-weight",
911
- "description": "Weight",
912
- "details": "Active Tunnel Interface Weight",
913
- "optionType": [
914
- "constant"
915
- ],
916
- "defaultOption": "constant",
917
- "dataType": {
918
- "type": "number",
919
- "min": 1,
920
- "max": 255,
921
- "default": 1
922
- },
923
- "dataPath": [],
924
- "objectType": "object"
925
- },
926
- {
927
- "key": "backup-interface",
928
- "description": "Backup Tunnel Interface",
929
- "details": "Backup Tunnel Interface for SIG",
930
- "optionType": [
931
- "constant"
932
- ],
933
- "defaultOption": "constant",
934
- "dataType": {
935
- "type": "enum",
936
- "values": [
937
- {
938
- "key": "",
939
- "value": ""
940
- }
941
- ]
942
- },
943
- "dataPath": [],
944
- "objectType": "object"
945
- },
946
- {
947
- "key": "backup-interface-weight",
948
- "description": "Weight",
949
- "details": "Backup Tunnel Interface Weight",
950
- "optionType": [
951
- "constant"
952
- ],
953
- "defaultOption": "constant",
954
- "dataType": {
955
- "type": "number",
956
- "min": 1,
957
- "max": 255,
958
- "default": 1
959
- },
960
- "dataPath": [],
961
- "objectType": "object"
962
- }
963
- ]
964
- },
965
- {
966
- "key": "auth-required",
967
- "description": "Authentication Required",
968
- "details": "Enforce Authentication",
969
- "optionType": [
970
- "constant",
971
- "ignore"
972
- ],
973
- "defaultOption": "ignore",
974
- "dataPath": [
975
- "zscaler-location-settings"
976
- ],
977
- "dataType": {
978
- "type": "boolean",
979
- "default": "false"
980
- },
981
- "objectType": "object"
982
- },
983
- {
984
- "key": "xff-forward-enabled",
985
- "description": "XFF Forwarding",
986
- "details": "XFF forwarding enabled",
987
- "optionType": [
988
- "constant",
989
- "ignore"
990
- ],
991
- "defaultOption": "ignore",
992
- "dataPath": [
993
- "zscaler-location-settings"
994
- ],
995
- "dataType": {
996
- "type": "boolean",
997
- "default": "false"
998
- },
999
- "objectType": "object"
1000
- },
1001
- {
1002
- "key": "ofw-enabled",
1003
- "description": "Enable Firewall",
1004
- "details": "Firewall enabled",
1005
- "optionType": [
1006
- "constant",
1007
- "ignore"
1008
- ],
1009
- "defaultOption": "ignore",
1010
- "dataPath": [
1011
- "zscaler-location-settings"
1012
- ],
1013
- "dataType": {
1014
- "type": "boolean",
1015
- "default": "false"
1016
- },
1017
- "objectType": "object"
1018
- },
1019
- {
1020
- "key": "ips-control",
1021
- "description": "Enable IPS Control",
1022
- "details": "Enable IPS Control",
1023
- "optionType": [
1024
- "constant",
1025
- "ignore"
1026
- ],
1027
- "defaultOption": "ignore",
1028
- "dataPath": [
1029
- "zscaler-location-settings"
1030
- ],
1031
- "dataType": {
1032
- "type": "boolean",
1033
- "default": "false"
1034
- },
1035
- "objectType": "object"
1036
- },
1037
- {
1038
- "key": "caution-enabled",
1039
- "description": "Enable Caution",
1040
- "details": "Enable Caution",
1041
- "optionType": [
1042
- "constant",
1043
- "ignore"
1044
- ],
1045
- "defaultOption": "ignore",
1046
- "dataPath": [
1047
- "zscaler-location-settings"
1048
- ],
1049
- "dataType": {
1050
- "type": "boolean",
1051
- "default": "false"
1052
- },
1053
- "objectType": "object"
1054
- },
1055
- {
1056
- "key": "primary-data-center",
1057
- "description": "Primary Data-Center",
1058
- "details": "Custom Primary Datacenter",
1059
- "optionType": [
1060
- "constant",
1061
- "ignore",
1062
- "variable"
1063
- ],
1064
- "defaultOption": "ignore",
1065
- "dataType": {
1066
- "type": "string",
1067
- "default": "Auto"
1068
- },
1069
- "dataPath": [
1070
- "zscaler-location-settings",
1071
- "datacenters"
1072
- ],
1073
- "objectType": "object"
1074
- },
1075
- {
1076
- "key": "secondary-data-center",
1077
- "description": "Secondary Data-Center",
1078
- "details": "Custom Secondary Datacenter",
1079
- "optionType": [
1080
- "constant",
1081
- "ignore",
1082
- "variable"
1083
- ],
1084
- "defaultOption": "ignore",
1085
- "dataType": {
1086
- "type": "string",
1087
- "default": "Auto"
1088
- },
1089
- "dataPath": [
1090
- "zscaler-location-settings",
1091
- "datacenters"
1092
- ],
1093
- "objectType": "object"
1094
- },
1095
- {
1096
- "key": "ip",
1097
- "description": "Enable Surrogate IP",
1098
- "details": "Enable Surrogate IP",
1099
- "optionType": [
1100
- "constant",
1101
- "ignore"
1102
- ],
1103
- "defaultOption": "ignore",
1104
- "dataType": {
1105
- "type": "boolean",
1106
- "default": "false"
1107
- },
1108
- "dataPath": [
1109
- "zscaler-location-settings",
1110
- "surrogate"
1111
- ],
1112
- "objectType": "object"
1113
- },
1114
- {
1115
- "key": "idle-time",
1116
- "description": "Idle Time to Disassociation",
1117
- "details": "Idle time to disassociation",
1118
- "optionType": [
1119
- "constant",
1120
- "ignore"
1121
- ],
1122
- "defaultOption": "ignore",
1123
- "dataType": {
1124
- "type": "number",
1125
- "min": 0,
1126
- "max:": 4294967296,
1127
- "default": 0
1128
- },
1129
- "dataPath": [
1130
- "zscaler-location-settings",
1131
- "surrogate"
1132
- ],
1133
- "objectType": "object"
1134
- },
1135
- {
1136
- "key": "display-time-unit",
1137
- "description": "Display Time Unit",
1138
- "details": "Display time unit",
1139
- "optionType": [
1140
- "constant",
1141
- "ignore"
1142
- ],
1143
- "defaultOption": "ignore",
1144
- "dataType": {
1145
- "type": "enum",
1146
- "values": [
1147
- {
1148
- "key": "MINUTE",
1149
- "value": "MINUTE"
1150
- },
1151
- {
1152
- "key": "HOUR",
1153
- "value": "HOUR"
1154
- },
1155
- {
1156
- "key": "DAY",
1157
- "value": "DAY"
1158
- }
1159
- ],
1160
- "default": "MINUTE"
1161
- },
1162
- "dataPath": [
1163
- "zscaler-location-settings",
1164
- "surrogate"
1165
- ],
1166
- "objectType": "object"
1167
- },
1168
- {
1169
- "key": "ip-enforced-for-known-browsers",
1170
- "description": "Enforce Surrogate IP for known browsers",
1171
- "details": "Enforce Surrogate IP for known browsers",
1172
- "optionType": [
1173
- "constant",
1174
- "ignore"
1175
- ],
1176
- "defaultOption": "ignore",
1177
- "dataType": {
1178
- "type": "boolean",
1179
- "default": "false"
1180
- },
1181
- "dataPath": [
1182
- "zscaler-location-settings",
1183
- "surrogate"
1184
- ],
1185
- "objectType": "object"
1186
- },
1187
- {
1188
- "key": "refresh-time",
1189
- "description": "Refresh Time",
1190
- "details": "Refresh time for re-validation of surrogacy in minutes",
1191
- "optionType": [
1192
- "constant",
1193
- "ignore"
1194
- ],
1195
- "defaultOption": "ignore",
1196
- "dataType": {
1197
- "type": "number",
1198
- "min": 0,
1199
- "max:": 4294967296,
1200
- "default": 0
1201
- },
1202
- "dataPath": [
1203
- "zscaler-location-settings",
1204
- "surrogate"
1205
- ],
1206
- "objectType": "object"
1207
- },
1208
- {
1209
- "key": "refresh-time-unit",
1210
- "description": "Refresh Time Unit",
1211
- "details": "Refresh Time unit",
1212
- "optionType": [
1213
- "constant",
1214
- "ignore"
1215
- ],
1216
- "defaultOption": "ignore",
1217
- "dataType": {
1218
- "type": "enum",
1219
- "values": [
1220
- {
1221
- "key": "MINUTE",
1222
- "value": "MINUTE"
1223
- },
1224
- {
1225
- "key": "HOUR",
1226
- "value": "HOUR"
1227
- },
1228
- {
1229
- "key": "DAY",
1230
- "value": "DAY"
1231
- }
1232
- ],
1233
- "default": "MINUTE"
1234
- },
1235
- "dataPath": [
1236
- "zscaler-location-settings",
1237
- "surrogate"
1238
- ],
1239
- "objectType": "object"
1240
- },
1241
- {
1242
- "key": "enabled",
1243
- "description": "Enable AUP",
1244
- "details": "Enable Acceptable User Policy",
1245
- "optionType": [
1246
- "constant",
1247
- "ignore"
1248
- ],
1249
- "defaultOption": "ignore",
1250
- "dataType": {
1251
- "type": "boolean",
1252
- "default": "false"
1253
- },
1254
- "dataPath": [
1255
- "zscaler-location-settings",
1256
- "aup"
1257
- ],
1258
- "objectType": "object"
1259
- },
1260
- {
1261
- "key": "block-internet-until-accepted",
1262
- "description": "First Time AUP Block Internet Access",
1263
- "details": "For first-time Acceptable User Policy behavior, block Internet access",
1264
- "optionType": [
1265
- "constant",
1266
- "ignore"
1267
- ],
1268
- "defaultOption": "ignore",
1269
- "dataType": {
1270
- "type": "boolean",
1271
- "default": "false"
1272
- },
1273
- "dataPath": [
1274
- "zscaler-location-settings",
1275
- "aup"
1276
- ],
1277
- "objectType": "object"
1278
- },
1279
- {
1280
- "key": "force-ssl-inspection",
1281
- "description": "Force SSL Inspection",
1282
- "details": "For first-time Acceptable User Policy behavior, force SSL inspection",
1283
- "optionType": [
1284
- "constant",
1285
- "ignore"
1286
- ],
1287
- "defaultOption": "ignore",
1288
- "dataType": {
1289
- "type": "boolean",
1290
- "default": "false"
1291
- },
1292
- "dataPath": [
1293
- "zscaler-location-settings",
1294
- "aup"
1295
- ],
1296
- "objectType": "object"
1297
- },
1298
- {
1299
- "key": "timeout",
1300
- "description": "AUP Frequency",
1301
- "details": "Custom Acceptable User Policy frequency in days",
1302
- "optionType": [
1303
- "constant",
1304
- "ignore"
1305
- ],
1306
- "defaultOption": "ignore",
1307
- "dataType": {
1308
- "type": "number",
1309
- "default": 0
1310
- },
1311
- "dataPath": [
1312
- "zscaler-location-settings",
1313
- "aup"
1314
- ],
1315
- "objectType": "object"
1316
- },
1317
- {
1318
- "key": "location-name",
1319
- "description": "Zscaler Location Name",
1320
- "details": "Zscaler location name (optional)",
1321
- "optionType": [
1322
- "ignore",
1323
- "variable"
1324
- ],
1325
- "defaultOption": "ignore",
1326
- "dataType": {
1327
- "type": "string",
1328
- "default": "Auto"
1329
- },
1330
- "dataPath": [
1331
- "zscaler-location-settings"
1332
- ],
1333
- "objectType": "object"
1334
- },
1335
- {
1336
- "key": "data-center-primary",
1337
- "description": "Umbrella Primary Data-Center",
1338
- "details": "Umbrella Primary Datacenter",
1339
- "optionType": [
1340
- "constant",
1341
- "ignore",
1342
- "variable"
1343
- ],
1344
- "defaultOption": "ignore",
1345
- "dataType": {
1346
- "type": "string",
1347
- "default": "Auto"
1348
- },
1349
- "dataPath": [
1350
- "umbrella-data-center"
1351
- ],
1352
- "objectType": "object"
1353
- },
1354
- {
1355
- "key": "data-center-secondary",
1356
- "description": "Umbrella Secondary Data-Center",
1357
- "details": "Umbrella Secondary Datacenter",
1358
- "optionType": [
1359
- "constant",
1360
- "ignore",
1361
- "variable"
1362
- ],
1363
- "defaultOption": "ignore",
1364
- "dataType": {
1365
- "type": "string",
1366
- "default": "Auto"
1367
- },
1368
- "dataPath": [
1369
- "umbrella-data-center"
1370
- ],
1371
- "objectType": "object"
1372
- }
1373
- ]
1374
- },
1375
- {
1376
- "key": "tracker-src-ip",
1377
- "description": "Source IP Address",
1378
- "details": "Source IP address for Tracker",
1379
- "optionType": [
1380
- "constant",
1381
- "variable"
1382
- ],
1383
- "defaultOption": "constant",
1384
- "dataType": {
1385
- "type": "ipv4-prefix"
1386
- },
1387
- "dataPath": [],
1388
- "objectType": "object"
1389
- },
1390
- {
1391
- "key": "tracker",
1392
- "description": "Tracker",
1393
- "details": "Tracker configuration",
1394
- "optionType": [
1395
- "constant",
1396
- "ignore"
1397
- ],
1398
- "defaultOption": "ignore",
1399
- "dataPath": [],
1400
- "objectType": "tree",
1401
- "primaryKeys": [
1402
- "tracker-type",
1403
- "name"
1404
- ],
1405
- "children": [
1406
- {
1407
- "key": "name",
1408
- "description": "Name",
1409
- "details": "Tracker name",
1410
- "optionType": [
1411
- "constant"
1412
- ],
1413
- "defaultOption": "constant",
1414
- "dataType": {
1415
- "type": "string",
1416
- "minLength": 1,
1417
- "maxLength": 128
1418
- },
1419
- "dataPath": [],
1420
- "objectType": "object"
1421
- },
1422
- {
1423
- "key": "endpoint-api-url",
1424
- "description": "API url of endpoint",
1425
- "details": "API url of endpoint",
1426
- "optionType": [
1427
- "constant",
1428
- "variable"
1429
- ],
1430
- "defaultOption": "constant",
1431
- "dataType": {
1432
- "type": "string",
1433
- "minLength": 0,
1434
- "maxLength": 512
1435
- },
1436
- "dataPath": [],
1437
- "objectType": "object"
1438
- },
1439
- {
1440
- "key": "threshold",
1441
- "description": "Threshold",
1442
- "details": "Probe Timeout threshold <100..1000> milliseconds",
1443
- "optionType": [
1444
- "constant",
1445
- "variable",
1446
- "ignore"
1447
- ],
1448
- "defaultOption": "ignore",
1449
- "dataType": {
1450
- "type": "number",
1451
- "min": 100,
1452
- "max": 1000,
1453
- "default": 300
1454
- },
1455
- "dataPath": [],
1456
- "objectType": "object"
1457
- },
1458
- {
1459
- "key": "interval",
1460
- "description": "Interval",
1461
- "details": "Probe interval <10..600> seconds",
1462
- "optionType": [
1463
- "constant",
1464
- "variable",
1465
- "ignore"
1466
- ],
1467
- "defaultOption": "ignore",
1468
- "dataType": {
1469
- "type": "number",
1470
- "min": 20,
1471
- "max": 600,
1472
- "default": 60
1473
- },
1474
- "dataPath": [],
1475
- "objectType": "object"
1476
- },
1477
- {
1478
- "key": "multiplier",
1479
- "description": "Multiplier",
1480
- "details": "Probe failure multiplier <1..10> failed attempts",
1481
- "optionType": [
1482
- "constant",
1483
- "variable",
1484
- "ignore"
1485
- ],
1486
- "defaultOption": "ignore",
1487
- "dataType": {
1488
- "type": "number",
1489
- "min": 1,
1490
- "max": 10,
1491
- "default": 3
1492
- },
1493
- "dataPath": [],
1494
- "objectType": "object"
1495
- },
1496
- {
1497
- "key": "tracker-type",
1498
- "description": "Tracker Type",
1499
- "details": "",
1500
- "optionType": [
1501
- "constant"
1502
- ],
1503
- "defaultOption": "constant",
1504
- "dataType": {
1505
- "type": "enum",
1506
- "values": [
1507
- {
1508
- "key": "SIG",
1509
- "value": "SIG"
1510
- }
1511
- ],
1512
- "default": " SIG"
1513
- },
1514
- "dataPath": [],
1515
- "objectType": "object"
1516
- }
1517
- ]
1518
- }
1519
- ]
1520
- }