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.
- catalystwan/__init__.py +3 -2
- catalystwan/api/administration.py +13 -2
- catalystwan/api/api_container.py +4 -1
- catalystwan/api/builders/__init__.py +14 -0
- catalystwan/api/builders/feature_profiles/__init__.py +0 -0
- catalystwan/api/builders/feature_profiles/application_priority.py +58 -0
- catalystwan/api/builders/feature_profiles/builder_factory.py +59 -0
- catalystwan/api/builders/feature_profiles/cli.py +76 -0
- catalystwan/api/builders/feature_profiles/mixins.py +44 -0
- catalystwan/api/builders/feature_profiles/other.py +79 -0
- catalystwan/api/builders/feature_profiles/report.py +155 -0
- catalystwan/api/builders/feature_profiles/service.py +248 -0
- catalystwan/api/builders/feature_profiles/system.py +80 -0
- catalystwan/api/builders/feature_profiles/transport.py +256 -0
- catalystwan/api/builders/feature_profiles/uc_voice.py +287 -0
- catalystwan/api/config_group_api.py +41 -16
- catalystwan/api/configuration_groups/parcel.py +100 -30
- catalystwan/api/feature_profile_api.py +2021 -242
- catalystwan/api/policy_api.py +470 -116
- catalystwan/api/template_api.py +113 -44
- catalystwan/api/templates/README.md +61 -47
- catalystwan/api/templates/cli_template.py +17 -7
- catalystwan/api/templates/device_template/device_template.py +127 -32
- catalystwan/api/templates/feature_template.py +3 -3
- catalystwan/api/templates/models/aaa_model.py +387 -0
- catalystwan/api/templates/models/cisco_aaa_model.py +289 -42
- catalystwan/api/templates/models/cisco_banner_model.py +11 -2
- catalystwan/api/templates/models/cisco_bfd_model.py +31 -36
- catalystwan/api/templates/models/cisco_bgp_model.py +382 -131
- catalystwan/api/templates/models/cisco_logging_model.py +80 -43
- catalystwan/api/templates/models/cisco_ntp_model.py +34 -15
- catalystwan/api/templates/models/cisco_omp_model.py +70 -60
- catalystwan/api/templates/models/cisco_ospf.py +143 -74
- catalystwan/api/templates/models/cisco_ospfv3.py +217 -95
- catalystwan/api/templates/models/cisco_secure_internet_gateway.py +304 -142
- catalystwan/api/templates/models/cisco_snmp_model.py +66 -52
- catalystwan/api/templates/models/cisco_system.py +238 -129
- catalystwan/api/templates/models/cisco_vpn_interface_model.py +632 -275
- catalystwan/api/templates/models/cisco_vpn_model.py +433 -270
- catalystwan/api/templates/models/cli_template.py +3 -2
- catalystwan/api/templates/models/omp_vsmart_model.py +46 -10
- catalystwan/api/templates/models/security_vsmart_model.py +11 -8
- catalystwan/api/templates/models/supported.py +10 -4
- catalystwan/api/templates/models/system_vsmart_model.py +164 -27
- catalystwan/api/templates/models/vpn_vsmart_interface_model.py +198 -0
- catalystwan/api/templates/models/vpn_vsmart_model.py +124 -0
- catalystwan/apigw_auth.py +6 -2
- catalystwan/dataclasses.py +2 -53
- catalystwan/endpoints/__init__.py +41 -41
- catalystwan/endpoints/certificate_management_device.py +4 -0
- catalystwan/endpoints/cluster_management.py +27 -7
- catalystwan/endpoints/configuration/feature_profile/sdwan/application_priority.py +107 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/cli.py +60 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/dns_security.py +83 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/embedded_security.py +88 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/other.py +62 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/policy_object.py +35 -12
- catalystwan/endpoints/configuration/feature_profile/sdwan/service.py +154 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/sig_security.py +88 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/system.py +164 -11
- catalystwan/endpoints/configuration/feature_profile/sdwan/topology.py +93 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/transport.py +144 -26
- catalystwan/endpoints/configuration/feature_profile/sdwan/uc_voice.py +77 -0
- catalystwan/endpoints/configuration/network_hierarchy.py +32 -0
- catalystwan/endpoints/configuration/policy/abstractions.py +49 -0
- catalystwan/endpoints/configuration/policy/definition/access_control_list.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/access_control_list_ipv6.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/aip.py +52 -0
- catalystwan/endpoints/configuration/policy/definition/amp.py +52 -0
- catalystwan/endpoints/configuration/policy/definition/app_route.py +50 -0
- catalystwan/endpoints/configuration/policy/definition/cflowd.py +46 -0
- catalystwan/endpoints/configuration/policy/definition/control.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/device_access.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/device_access_ipv6.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/dial_peer.py +57 -0
- catalystwan/endpoints/configuration/policy/definition/dns_security.py +50 -0
- catalystwan/endpoints/configuration/policy/definition/fxo_port.py +57 -0
- catalystwan/endpoints/configuration/policy/definition/fxs_did_port.py +57 -0
- catalystwan/endpoints/configuration/policy/definition/fxs_port.py +57 -0
- catalystwan/endpoints/configuration/policy/definition/hub_and_spoke.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/intrusion_prevention.py +52 -0
- catalystwan/endpoints/configuration/policy/definition/mesh.py +2 -11
- catalystwan/endpoints/configuration/policy/definition/pri_isdn_port.py +57 -0
- catalystwan/endpoints/configuration/policy/definition/qos_map.py +2 -11
- catalystwan/endpoints/configuration/policy/definition/rewrite.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/route_policy.py +50 -0
- catalystwan/endpoints/configuration/policy/definition/rule_set.py +2 -11
- catalystwan/endpoints/configuration/policy/definition/security_group.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/srst_phone_profile.py +59 -0
- catalystwan/endpoints/configuration/policy/definition/ssl_decryption.py +50 -0
- catalystwan/endpoints/configuration/policy/definition/ssl_decryption_utd_profile.py +52 -0
- catalystwan/endpoints/configuration/policy/definition/traffic_data.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/url_filtering.py +50 -0
- catalystwan/endpoints/configuration/policy/definition/vpn_membership.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/vpn_qos_map.py +50 -0
- catalystwan/endpoints/configuration/policy/definition/zone_based_firewall.py +6 -11
- catalystwan/endpoints/configuration/policy/list/app.py +3 -16
- catalystwan/endpoints/configuration/policy/list/app_probe.py +6 -15
- catalystwan/endpoints/configuration/policy/list/as_path.py +3 -16
- catalystwan/endpoints/configuration/policy/list/class_map.py +3 -16
- catalystwan/endpoints/configuration/policy/list/color.py +3 -16
- catalystwan/endpoints/configuration/policy/list/community.py +3 -16
- catalystwan/endpoints/configuration/policy/list/data_ipv6_prefix.py +6 -15
- catalystwan/endpoints/configuration/policy/list/data_prefix.py +3 -16
- catalystwan/endpoints/configuration/policy/list/expanded_community.py +6 -15
- catalystwan/endpoints/configuration/policy/list/extended_community.py +52 -0
- catalystwan/endpoints/configuration/policy/list/fax_protocol.py +48 -0
- catalystwan/endpoints/configuration/policy/list/fqdn.py +3 -16
- catalystwan/endpoints/configuration/policy/list/geo_location.py +3 -16
- catalystwan/endpoints/configuration/policy/list/identity.py +48 -0
- catalystwan/endpoints/configuration/policy/list/ips_signature.py +6 -15
- catalystwan/endpoints/configuration/policy/list/ipv6_prefix.py +3 -16
- catalystwan/endpoints/configuration/policy/list/local_app.py +3 -16
- catalystwan/endpoints/configuration/policy/list/local_domain.py +3 -16
- catalystwan/endpoints/configuration/policy/list/media_profile.py +52 -0
- catalystwan/endpoints/configuration/policy/list/mirror.py +3 -16
- catalystwan/endpoints/configuration/policy/list/modem_pass_through.py +52 -0
- catalystwan/endpoints/configuration/policy/list/policer.py +3 -16
- catalystwan/endpoints/configuration/policy/list/port.py +3 -16
- catalystwan/endpoints/configuration/policy/list/preferred_color_group.py +6 -15
- catalystwan/endpoints/configuration/policy/list/prefix.py +4 -16
- catalystwan/endpoints/configuration/policy/list/protocol_name.py +6 -15
- catalystwan/endpoints/configuration/policy/list/region.py +2 -10
- catalystwan/endpoints/configuration/policy/list/scalable_group_tag.py +52 -0
- catalystwan/endpoints/configuration/policy/list/site.py +3 -16
- catalystwan/endpoints/configuration/policy/list/sla.py +3 -16
- catalystwan/endpoints/configuration/policy/list/supervisory_disconnect.py +52 -0
- catalystwan/endpoints/configuration/policy/list/threat_grid_api_key.py +52 -0
- catalystwan/endpoints/configuration/policy/list/tloc.py +3 -16
- catalystwan/endpoints/configuration/policy/list/translation_profile.py +52 -0
- catalystwan/endpoints/configuration/policy/list/translation_rules.py +52 -0
- catalystwan/endpoints/configuration/policy/list/trunkgroup.py +48 -0
- catalystwan/endpoints/configuration/policy/list/umbrella_data.py +52 -0
- catalystwan/endpoints/configuration/policy/list/url_allow_list.py +3 -16
- catalystwan/endpoints/configuration/policy/list/url_block_list.py +3 -16
- catalystwan/endpoints/configuration/policy/list/vpn.py +3 -16
- catalystwan/endpoints/configuration/policy/list/zone.py +3 -16
- catalystwan/endpoints/configuration/policy/security_template.py +2 -3
- catalystwan/endpoints/configuration/policy/voice_template.py +39 -0
- catalystwan/endpoints/configuration/policy_group.py +30 -0
- catalystwan/endpoints/configuration/software_actions.py +2 -4
- catalystwan/endpoints/configuration/topology_group.py +51 -0
- catalystwan/endpoints/configuration_dashboard_status.py +2 -2
- catalystwan/endpoints/configuration_device_template.py +15 -1
- catalystwan/endpoints/configuration_feature_profile.py +8 -11
- catalystwan/endpoints/configuration_general_template.py +31 -0
- catalystwan/endpoints/configuration_group.py +28 -5
- catalystwan/endpoints/configuration_settings.py +90 -1
- catalystwan/endpoints/configuration_template_master.py +48 -0
- catalystwan/endpoints/endpoints_container.py +79 -19
- catalystwan/endpoints/real_time_monitoring/reboot_history.py +1 -3
- catalystwan/endpoints/tenant_migration.py +2 -0
- catalystwan/exceptions.py +17 -0
- catalystwan/integration_tests/base.py +81 -0
- catalystwan/integration_tests/feature_profile/sdwan/__init__.py +0 -0
- catalystwan/integration_tests/feature_profile/sdwan/policy/__init__.py +0 -0
- catalystwan/integration_tests/feature_profile/sdwan/policy/base.py +33 -0
- catalystwan/integration_tests/feature_profile/sdwan/policy/test_extended_community.py +33 -0
- catalystwan/integration_tests/feature_profile/sdwan/policy/test_security_app_list.py +32 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_application_priority.py +433 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_cli.py +54 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_dns_security.py +106 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_other.py +49 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_service.py +1078 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_sig_security.py +322 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_ssl_decryption.py +85 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_system.py +368 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_tracker.py +127 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_transport.py +1698 -0
- catalystwan/integration_tests/feature_profile/sdwan/topology/test_topology.py +93 -0
- catalystwan/integration_tests/profile_builder/__init__.py +0 -0
- catalystwan/integration_tests/profile_builder/test_pb_service.py +197 -0
- catalystwan/integration_tests/profile_builder/test_pb_transport.py +226 -0
- catalystwan/integration_tests/profile_builder/test_pb_uc_voice.py +277 -0
- catalystwan/integration_tests/test_data/__init__.py +117 -0
- catalystwan/integration_tests/test_find_template_values.py +7 -18
- catalystwan/integration_tests/test_network_hierarchy.py +82 -0
- catalystwan/integration_tests/test_settings.py +30 -0
- catalystwan/models/common.py +1898 -2
- catalystwan/models/configuration/common.py +1 -0
- catalystwan/models/configuration/feature_profile/common.py +634 -149
- catalystwan/models/configuration/feature_profile/parcel.py +238 -0
- catalystwan/models/configuration/feature_profile/sdwan/acl/__init__.py +13 -0
- catalystwan/models/configuration/feature_profile/sdwan/acl/ipv4acl.py +298 -0
- catalystwan/models/configuration/feature_profile/sdwan/acl/ipv6acl.py +344 -0
- catalystwan/models/configuration/feature_profile/sdwan/application_priority/__init__.py +218 -0
- catalystwan/models/configuration/feature_profile/sdwan/application_priority/cloud_probe.py +61 -0
- catalystwan/models/configuration/feature_profile/sdwan/application_priority/policy_settings.py +31 -0
- catalystwan/models/configuration/feature_profile/sdwan/application_priority/qos_policy.py +102 -0
- catalystwan/models/configuration/feature_profile/sdwan/application_priority/traffic_policy.py +1057 -0
- catalystwan/models/configuration/feature_profile/sdwan/cli/__init__.py +23 -0
- catalystwan/models/configuration/feature_profile/sdwan/cli/config.py +18 -0
- catalystwan/models/configuration/feature_profile/sdwan/cli/full_config.py +15 -0
- catalystwan/models/configuration/feature_profile/sdwan/dns_security/__init__.py +13 -0
- catalystwan/models/configuration/feature_profile/sdwan/dns_security/dns.py +110 -0
- catalystwan/models/configuration/feature_profile/sdwan/embedded_security/__init__.py +23 -0
- catalystwan/models/configuration/feature_profile/sdwan/embedded_security/ngfirewall.py +493 -0
- catalystwan/models/configuration/feature_profile/sdwan/embedded_security/policy.py +171 -0
- catalystwan/models/configuration/feature_profile/sdwan/other/__init__.py +25 -0
- catalystwan/models/configuration/feature_profile/sdwan/other/cybervision.py +44 -0
- catalystwan/models/configuration/feature_profile/sdwan/other/thousandeyes.py +147 -0
- catalystwan/models/configuration/feature_profile/sdwan/other/ucse.py +110 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/__init__.py +62 -48
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/app_probe.py +34 -20
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/application_list.py +8 -6
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/as_path.py +22 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/color_list.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/data_prefix.py +13 -4
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/expanded_community_list.py +9 -7
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/extended_community.py +34 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/fowarding_class.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv4_network_object.py +15 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv4_service_object.py +254 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv6_data_prefix.py +11 -9
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv6_prefix_list.py +25 -10
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/mirror.py +27 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/network_object_group.py +15 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/object_group.py +15 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/{policier.py → policer.py} +12 -10
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/prefered_group_color.py +29 -10
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/prefix_list.py +23 -8
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/service_object_group.py +21 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/sla_class.py +12 -31
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/standard_community.py +16 -10
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/tloc_list.py +8 -7
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/aip.py +64 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/amp.py +79 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/application_list.py +8 -6
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/data_prefix.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/fqdn.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/geolocation_list.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/identity.py +30 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/intrusion_prevention.py +58 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ips_signature.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/local_domain.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/object_group.py +72 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/protocol_list.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/rule_set.py +137 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/scalable_group_tag.py +26 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/security_port.py +21 -11
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ssl_decryption.py +126 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ssl_decryption_profile.py +165 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/url.py +15 -10
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/url_filtering.py +148 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/zone.py +14 -18
- catalystwan/models/configuration/feature_profile/sdwan/routing/__init__.py +26 -0
- catalystwan/models/configuration/feature_profile/sdwan/routing/bgp.py +609 -0
- catalystwan/models/configuration/feature_profile/sdwan/{service → routing}/ospf.py +55 -47
- catalystwan/models/configuration/feature_profile/sdwan/{service → routing}/ospfv3.py +74 -72
- catalystwan/models/configuration/feature_profile/sdwan/service/__init__.py +91 -0
- catalystwan/models/configuration/feature_profile/sdwan/service/appqoe.py +76 -41
- catalystwan/models/configuration/feature_profile/sdwan/service/dhcp_server.py +107 -64
- catalystwan/models/configuration/feature_profile/sdwan/service/dual_router_ha.py +26 -0
- catalystwan/models/configuration/feature_profile/sdwan/service/eigrp.py +39 -42
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/common.py +7 -88
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/ethernet.py +231 -155
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/gre.py +38 -108
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/ipsec.py +77 -84
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/multilink.py +101 -0
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/svi.py +62 -56
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/vpn.py +111 -120
- catalystwan/models/configuration/feature_profile/sdwan/service/multicast.py +56 -57
- catalystwan/models/configuration/feature_profile/sdwan/service/object_tracker.py +15 -21
- catalystwan/models/configuration/feature_profile/sdwan/service/route_policy.py +358 -110
- catalystwan/models/configuration/feature_profile/sdwan/service/service_chain.py +38 -0
- catalystwan/models/configuration/feature_profile/sdwan/service/service_insertion_attachment.py +17 -25
- catalystwan/models/configuration/feature_profile/sdwan/service/switchport.py +50 -58
- catalystwan/models/configuration/feature_profile/sdwan/service/tracker.py +12 -21
- catalystwan/models/configuration/feature_profile/sdwan/service/wireless_lan.py +27 -31
- catalystwan/models/configuration/feature_profile/sdwan/sig_security/__init__.py +19 -0
- catalystwan/models/configuration/feature_profile/sdwan/sig_security/sig_security.py +379 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/__init__.py +59 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/aaa.py +58 -10
- catalystwan/models/configuration/feature_profile/sdwan/system/banner.py +30 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/basic.py +290 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/bfd.py +69 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/device_access.py +157 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/device_access_ipv6.py +157 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/global_parcel.py +163 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/logging_parcel.py +162 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/mrf.py +75 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/ntp.py +103 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/omp.py +120 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/security.py +179 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/snmp.py +173 -0
- catalystwan/models/configuration/feature_profile/sdwan/topology/__init__.py +29 -0
- catalystwan/models/configuration/feature_profile/sdwan/topology/custom_control.py +425 -0
- catalystwan/models/configuration/feature_profile/sdwan/topology/hubspoke.py +60 -0
- catalystwan/models/configuration/feature_profile/sdwan/topology/mesh.py +23 -0
- catalystwan/models/configuration/feature_profile/sdwan/trackers/__init__.py +36 -0
- catalystwan/models/configuration/feature_profile/sdwan/trackers/tracker.py +96 -0
- catalystwan/models/configuration/feature_profile/sdwan/trackers/tracker_group.py +63 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/__init__.py +93 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/cellular_controller.py +26 -23
- catalystwan/models/configuration/feature_profile/sdwan/transport/cellular_profile.py +71 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/gps.py +37 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/management/ethernet.py +121 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/t1e1controller.py +124 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/vpn.py +285 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/cellular.py +173 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/ethernet.py +389 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/gre.py +46 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/ipsec.py +137 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/multilink.py +219 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/protocol_over.py +405 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/t1e1serial.py +195 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/__init__.py +62 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/analog_interface.py +436 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/call_routing.py +179 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/digital_interface.py +380 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/dsp_farm.py +193 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/media_profile.py +17 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/server_group.py +51 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/srst.py +86 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/supervisory_disconnect.py +69 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/translation_profile.py +42 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/translation_rule.py +31 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/trunk_group.py +26 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/voice_global.py +55 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/voice_tenant.py +40 -0
- catalystwan/models/configuration/network_hierarchy/__init__.py +22 -0
- catalystwan/models/configuration/network_hierarchy/cflowd.py +120 -0
- catalystwan/models/configuration/network_hierarchy/node.py +88 -0
- catalystwan/models/configuration/policy_group.py +74 -0
- catalystwan/models/configuration/profile_type.py +1 -6
- catalystwan/models/configuration/topology_group.py +52 -0
- catalystwan/models/policy/__init__.py +275 -69
- catalystwan/models/policy/centralized.py +26 -29
- catalystwan/models/policy/{definitions → definition}/access_control_list.py +47 -17
- catalystwan/models/policy/{definitions → definition}/access_control_list_ipv6.py +42 -18
- catalystwan/models/policy/definition/aip.py +60 -0
- catalystwan/models/policy/definition/amp.py +65 -0
- catalystwan/models/policy/definition/app_route.py +246 -0
- catalystwan/models/policy/definition/cflowd.py +95 -0
- catalystwan/models/policy/{definitions → definition}/control.py +48 -25
- catalystwan/models/policy/{definitions → definition}/device_access.py +22 -11
- catalystwan/models/policy/{definitions → definition}/device_access_ipv6.py +20 -11
- catalystwan/models/policy/definition/dial_peer.py +60 -0
- catalystwan/models/policy/definition/dns_security.py +130 -0
- catalystwan/models/policy/definition/fxo_port.py +63 -0
- catalystwan/models/policy/definition/fxs_did_port.py +58 -0
- catalystwan/models/policy/definition/fxs_port.py +56 -0
- catalystwan/models/policy/{definitions → definition}/hub_and_spoke.py +18 -4
- catalystwan/models/policy/definition/intrusion_prevention.py +55 -0
- catalystwan/models/policy/{definitions → definition}/mesh.py +13 -1
- catalystwan/models/policy/definition/pri_isdn_port.py +48 -0
- catalystwan/models/policy/{definitions → definition}/qos_map.py +39 -32
- catalystwan/models/policy/{definitions → definition}/rewrite.py +12 -2
- catalystwan/models/policy/definition/route_policy.py +187 -0
- catalystwan/models/policy/{definitions → definition}/rule_set.py +66 -48
- catalystwan/models/policy/{definitions → definition}/security_group.py +38 -14
- catalystwan/models/policy/definition/srst_phone_profile.py +37 -0
- catalystwan/models/policy/definition/ssl_decryption.py +209 -0
- catalystwan/models/policy/definition/ssl_decryption_utd_profile.py +87 -0
- catalystwan/models/policy/{definitions → definition}/traffic_data.py +184 -61
- catalystwan/models/policy/definition/url_filtering.py +70 -0
- catalystwan/models/policy/{definitions → definition}/vpn_membership.py +13 -1
- catalystwan/models/policy/definition/vpn_qos_map.py +46 -0
- catalystwan/models/policy/{definitions → definition}/zone_based_firewall.py +93 -32
- catalystwan/models/policy/list/app.py +44 -0
- catalystwan/models/policy/list/app_probe.py +42 -0
- catalystwan/models/policy/list/as_path.py +30 -0
- catalystwan/models/policy/list/class_map.py +30 -0
- catalystwan/models/policy/list/color.py +28 -0
- catalystwan/models/policy/list/communities.py +83 -0
- catalystwan/models/policy/list/data_ipv6_prefix.py +30 -0
- catalystwan/models/policy/list/data_prefix.py +30 -0
- catalystwan/models/policy/list/fax_protocol.py +45 -0
- catalystwan/models/policy/list/fqdn.py +24 -0
- catalystwan/models/policy/list/geo_location.py +33 -0
- catalystwan/models/policy/list/identity.py +29 -0
- catalystwan/models/policy/list/ips_signature.py +27 -0
- catalystwan/models/policy/list/ipv6_prefix.py +33 -0
- catalystwan/models/policy/list/local_app.py +45 -0
- catalystwan/models/policy/list/local_domain.py +36 -0
- catalystwan/models/policy/list/media_profile.py +44 -0
- catalystwan/models/policy/list/mirror.py +27 -0
- catalystwan/models/policy/list/modem_pass_through.py +27 -0
- catalystwan/models/policy/list/policer.py +39 -0
- catalystwan/models/policy/list/port.py +33 -0
- catalystwan/models/policy/list/preferred_color_group.py +82 -0
- catalystwan/models/policy/list/prefix.py +33 -0
- catalystwan/models/policy/list/protocol_name.py +26 -0
- catalystwan/models/policy/list/region.py +45 -0
- catalystwan/models/policy/list/scalable_group_tag.py +30 -0
- catalystwan/models/policy/list/site.py +34 -0
- catalystwan/models/policy/list/sla.py +77 -0
- catalystwan/models/policy/list/supervisory_disconnect.py +62 -0
- catalystwan/models/policy/list/threat_grid_api_key.py +32 -0
- catalystwan/models/policy/list/tloc.py +32 -0
- catalystwan/models/policy/list/translation_profile.py +32 -0
- catalystwan/models/policy/list/translation_rules.py +29 -0
- catalystwan/models/policy/list/trunkgroup.py +56 -0
- catalystwan/models/policy/list/umbrella_data.py +30 -0
- catalystwan/models/policy/list/url.py +39 -0
- catalystwan/models/policy/list/vpn.py +40 -0
- catalystwan/models/policy/list/zone.py +46 -0
- catalystwan/models/policy/localized.py +34 -16
- catalystwan/models/policy/policy.py +13 -9
- catalystwan/models/policy/policy_definition.py +673 -173
- catalystwan/models/policy/policy_list.py +38 -27
- catalystwan/models/policy/security.py +145 -46
- catalystwan/models/policy/voice.py +77 -0
- catalystwan/models/settings.py +41 -0
- catalystwan/models/templates.py +79 -0
- catalystwan/response.py +6 -2
- catalystwan/session.py +1 -1
- catalystwan/tests/builders/test_report.py +60 -0
- catalystwan/tests/builders/uc_voice.py +85 -0
- catalystwan/tests/models/__init__.py +0 -0
- catalystwan/tests/models/test_digital_interface.py +56 -0
- catalystwan/tests/templates/definitions/aaa_basic.json +96 -0
- catalystwan/tests/templates/definitions/aaa_complex.json +464 -0
- catalystwan/tests/templates/definitions/{iuo.json → cisco_aaa.json} +44 -15
- catalystwan/tests/templates/definitions/cisco_aaa_complex.json +361 -0
- catalystwan/tests/templates/definitions/cisco_logging_complex.json +268 -0
- catalystwan/tests/templates/definitions/cisco_ntp_complex.json +143 -0
- catalystwan/tests/templates/definitions/cisco_omp_complex.json +175 -0
- catalystwan/tests/templates/definitions/cisco_ospf_complex.json +302 -0
- catalystwan/tests/templates/definitions/cisco_sig.json +405 -0
- catalystwan/tests/templates/definitions/cisco_snmp_complex.json +258 -0
- catalystwan/tests/templates/definitions/cisco_system_complex.json +502 -0
- catalystwan/tests/templates/definitions/{Basic_Cisco_VPN_Model.json → cisco_vpn_basic.json} +2 -2
- catalystwan/tests/templates/definitions/{complex_cisco_vpn.json → cisco_vpn_complex.json} +27 -12
- catalystwan/tests/templates/definitions/cisco_vpn_interface_complex.json +821 -0
- catalystwan/tests/templates/definitions/omp_vsmart_1.json +26 -0
- catalystwan/tests/templates/definitions/{omp_2.json → omp_vsmart_2.json} +16 -2
- catalystwan/tests/templates/definitions/{omp_3.json → omp_vsmart_3.json} +16 -2
- catalystwan/tests/templates/definitions/omp_vsmart_complex.json +73 -0
- catalystwan/tests/templates/definitions/security_vsmart_complex.json +24 -0
- catalystwan/tests/templates/definitions/system_vsmart_complex.json +193 -0
- catalystwan/tests/templates/definitions/vpn_vsmart_basic.json +17 -0
- catalystwan/tests/templates/definitions/vpn_vsmart_complex.json +179 -0
- catalystwan/tests/templates/definitions/vpn_vsmart_interface_basic.json +42 -0
- catalystwan/tests/templates/definitions/vpn_vsmart_interface_complex.json +208 -0
- catalystwan/tests/templates/models/__init__.py +46 -13
- catalystwan/tests/templates/models/aaa.py +106 -0
- catalystwan/tests/templates/models/cisco_aaa.py +81 -48
- catalystwan/tests/templates/models/cisco_banner.py +2 -2
- catalystwan/tests/templates/models/cisco_bfd.py +4 -6
- catalystwan/tests/templates/models/cisco_logging.py +65 -0
- catalystwan/tests/templates/models/cisco_ntp.py +17 -0
- catalystwan/tests/templates/models/cisco_omp.py +37 -0
- catalystwan/tests/templates/models/cisco_ospf.py +60 -0
- catalystwan/tests/templates/models/cisco_secure_internet_gateway.py +95 -0
- catalystwan/tests/templates/models/cisco_snmp.py +40 -0
- catalystwan/tests/templates/models/cisco_system.py +108 -3
- catalystwan/tests/templates/models/cisco_vpn.py +42 -72
- catalystwan/tests/templates/models/cisco_vpn_interface.py +200 -0
- catalystwan/tests/templates/models/omp_vsmart.py +28 -8
- catalystwan/tests/templates/models/security_vsmart.py +11 -0
- catalystwan/tests/templates/models/system_vsmart.py +37 -0
- catalystwan/tests/templates/models/vpn_vsmart.py +32 -0
- catalystwan/tests/templates/models/vpn_vsmart_interface.py +54 -0
- catalystwan/tests/templates/schemas/aaa.json +1096 -0
- catalystwan/tests/templates/schemas/cedge_aaa.json +1 -1
- catalystwan/tests/templates/schemas/cisco_logging.json +577 -0
- catalystwan/tests/templates/schemas/cisco_ntp.json +265 -0
- catalystwan/tests/templates/schemas/cisco_omp.json +479 -0
- catalystwan/tests/templates/schemas/cisco_ospf.json +908 -0
- catalystwan/tests/templates/schemas/cisco_secure_internet_gateway.json +1520 -0
- catalystwan/tests/templates/schemas/cisco_snmp.json +561 -0
- catalystwan/tests/templates/schemas/cisco_system.json +242 -0
- catalystwan/tests/templates/schemas/cisco_vpn.json +53 -1
- catalystwan/tests/templates/schemas/cisco_vpn_interface.json +3348 -0
- catalystwan/tests/templates/schemas/omp-vsmart.json +20 -0
- catalystwan/tests/templates/schemas/security-vsmart.json +58 -0
- catalystwan/tests/templates/schemas/system-vsmart.json +2585 -0
- catalystwan/tests/templates/schemas/vpn-vsmart-interface.json +859 -0
- catalystwan/tests/templates/schemas/vpn-vsmart.json +445 -0
- catalystwan/tests/templates/test_chose_model.py +6 -10
- catalystwan/tests/templates/test_deserialize_model.py +4 -4
- catalystwan/tests/templates/test_find_template_values.py +229 -0
- catalystwan/tests/templates/test_find_template_values_2.py +193 -0
- catalystwan/tests/templates/test_serialize_model.py +1 -2
- catalystwan/tests/test_cli_template.py +8 -9
- catalystwan/tests/test_endpoints.py +42 -11
- catalystwan/tests/test_feature_profile_api.py +282 -0
- catalystwan/tests/test_models_common.py +53 -0
- catalystwan/tests/test_templates.py +16 -19
- catalystwan/utils/feature_template/find_template_values.py +17 -4
- catalystwan/utils/model.py +45 -0
- catalystwan/utils/persona.py +5 -0
- catalystwan/utils/type_check.py +22 -0
- catalystwan/workflows/backup_restore_device_templates.py +467 -0
- catalystwan/workflows/tenant_migration.py +1 -1
- {catalystwan-0.41.2.dist-info → catalystwan-0.41.2.dev0.dist-info}/METADATA +20 -1
- catalystwan-0.41.2.dev0.dist-info/RECORD +636 -0
- catalystwan/ENDPOINTS.md +0 -611
- catalystwan/api/configuration_groups/parcels/cellular_controller.py +0 -33
- catalystwan/api/templates/device_template/device_template_payload.json.j2 +0 -19
- catalystwan/models/configuration/config_migration.py +0 -36
- catalystwan/models/configuration/feature_profile/sdwan/management/vpn.py +0 -26
- catalystwan/models/configuration/feature_profile/sdwan/service/acl.py +0 -409
- catalystwan/models/configuration/feature_profile/sdwan/service/bgp.py +0 -288
- catalystwan/models/policy/lists.py +0 -330
- catalystwan/models/policy/lists_entries.py +0 -444
- catalystwan/tests/templates/definitions/complex_aaa.json +0 -277
- catalystwan/tests/templates/definitions/omp_1.json +0 -11
- catalystwan/utils/timezone.py +0 -422
- catalystwan-0.41.2.dist-info/RECORD +0 -353
- /catalystwan/tests/templates/definitions/{banner_1.json → cisco_banner.json} +0 -0
- {catalystwan-0.41.2.dist-info → catalystwan-0.41.2.dev0.dist-info}/LICENSE +0 -0
- {catalystwan-0.41.2.dist-info → catalystwan-0.41.2.dev0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,1520 @@
|
|
|
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
|
+
}
|