├── .gitignore ├── LICENSE ├── README.md ├── docs └── index.html ├── example-add-devices.py ├── example-upgrade-devices.py ├── example.js ├── example.py ├── openapi-gen.conf ├── pfapi_openapi.yml └── py ├── .gitignore ├── README.md ├── pfapi ├── __init__.py ├── api │ ├── __init__.py │ ├── aliases │ │ ├── __init__.py │ │ ├── firewall_add_alias.py │ │ ├── firewall_delete_alias.py │ │ ├── firewall_get_alias.py │ │ ├── firewall_get_aliases.py │ │ └── firewall_update_alias.py │ ├── auth │ │ ├── __init__.py │ │ ├── auth_test_authentication.py │ │ └── get_auth_servers.py │ ├── controller │ │ ├── __init__.py │ │ ├── controller_action.py │ │ ├── get_controller_alarms.py │ │ ├── get_controller_descrip.py │ │ ├── get_controller_logs.py │ │ └── get_controller_stats.py │ ├── diag │ │ ├── __init__.py │ │ ├── delete_pcaps.py │ │ ├── delete_system_table_entry.py │ │ ├── diag_abort_smart_test.py │ │ ├── diag_auth_test.py │ │ ├── diag_clear_package_lock_dirty.py │ │ ├── diag_cmd_get_file.py │ │ ├── diag_cmd_upload_file.py │ │ ├── diag_delete_arp_entry.py │ │ ├── diag_delete_arp_table.py │ │ ├── diag_delete_backup.py │ │ ├── diag_delete_states.py │ │ ├── diag_dns_create_alias.py │ │ ├── diag_download_pcap.py │ │ ├── diag_execute_php_cmd.py │ │ ├── diag_execute_shell_cmd.py │ │ ├── diag_get_activity.py │ │ ├── diag_get_arp_table.py │ │ ├── diag_get_auth_server_list.py │ │ ├── diag_get_backup.py │ │ ├── diag_get_backup_diff.py │ │ ├── diag_get_console_clients.py │ │ ├── diag_get_edit_file.py │ │ ├── diag_get_limiter_info.py │ │ ├── diag_get_pcap.py │ │ ├── diag_get_pf_info.py │ │ ├── diag_get_pftop.py │ │ ├── diag_get_prior_backup.py │ │ ├── diag_get_prior_backups_list.py │ │ ├── diag_get_routes.py │ │ ├── diag_get_smart_devices.py │ │ ├── diag_get_smart_info.py │ │ ├── diag_get_smart_logs.py │ │ ├── diag_get_smart_test.py │ │ ├── diag_get_socket_stats.py │ │ ├── diag_get_source_addresses.py │ │ ├── diag_get_states.py │ │ ├── diag_lookup_host_dns.py │ │ ├── diag_ping.py │ │ ├── diag_restore_backup.py │ │ ├── diag_restore_prior_backup.py │ │ ├── diag_run_pcap.py │ │ ├── diag_run_smart_test.py │ │ ├── diag_save_edited_file.py │ │ ├── diag_system_control.py │ │ ├── diag_tests_port.py │ │ ├── diag_traceroute.py │ │ ├── get_diag_ping.py │ │ ├── get_system_table.py │ │ ├── list_system_tables.py │ │ └── run_system_table_action.py │ ├── events │ │ ├── __init__.py │ │ ├── delete_all_events.py │ │ └── get_events.py │ ├── firewall │ │ ├── __init__.py │ │ ├── append_firewall_rule.py │ │ ├── copy_firewall_rules.py │ │ ├── delete_firewall_nat_port_forward_separators_id.py │ │ ├── delete_firewall_rule.py │ │ ├── delete_firewall_rules.py │ │ ├── delete_firewall_separator.py │ │ ├── firewall_add_altq.py │ │ ├── firewall_add_altq_child_queue.py │ │ ├── firewall_add_limiter.py │ │ ├── firewall_add_limiter_queue.py │ │ ├── firewall_add_nat_separator.py │ │ ├── firewall_add_p_flow_exporter.py │ │ ├── firewall_add_schedule.py │ │ ├── firewall_create_nat.py │ │ ├── firewall_create_nat1_to_1_rule.py │ │ ├── firewall_create_nat_npt.py │ │ ├── firewall_create_nat_out.py │ │ ├── firewall_delete_altq.py │ │ ├── firewall_delete_altq_child_queue.py │ │ ├── firewall_delete_limiter.py │ │ ├── firewall_delete_limiter_queue.py │ │ ├── firewall_delete_nat.py │ │ ├── firewall_delete_nat1_to_1_rules.py │ │ ├── firewall_delete_nat_npt_rules.py │ │ ├── firewall_delete_p_flow_exporter.py │ │ ├── firewall_delete_schedule.py │ │ ├── firewall_delete_virtual_ip.py │ │ ├── firewall_get_altq.py │ │ ├── firewall_get_limiter.py │ │ ├── firewall_get_nat.py │ │ ├── firewall_get_nat1_to_1_rules.py │ │ ├── firewall_get_nat_npt.py │ │ ├── firewall_get_nat_out.py │ │ ├── firewall_get_p_flow.py │ │ ├── firewall_get_schedules.py │ │ ├── firewall_get_traffic_shaper.py │ │ ├── firewall_get_virtual_i_ps.py │ │ ├── firewall_order_nat1_to_1_rules.py │ │ ├── firewall_order_nat_npt_rules.py │ │ ├── firewall_order_nat_out.py │ │ ├── firewall_order_nat_rules.py │ │ ├── firewall_set_p_flow.py │ │ ├── firewall_set_virtual_ip.py │ │ ├── firewall_toggle_nat1_to_1_rule.py │ │ ├── firewall_toggle_nat1_to_1_rules.py │ │ ├── firewall_toggle_nat_npt_rule.py │ │ ├── firewall_toggle_nat_npt_rules.py │ │ ├── firewall_toggle_nat_out.py │ │ ├── firewall_toggle_nat_rule.py │ │ ├── firewall_toggle_nat_rules.py │ │ ├── firewall_update_altq.py │ │ ├── firewall_update_altq_child_queue.py │ │ ├── firewall_update_limiter.py │ │ ├── firewall_update_limiter_queue.py │ │ ├── firewall_update_nat.py │ │ ├── firewall_update_nat_out.py │ │ ├── firewall_update_nat_out_mode.py │ │ ├── firewall_update_p_flow_exporter.py │ │ ├── firewall_update_schedule.py │ │ ├── firewall_update_virtual_ip.py │ │ ├── get_firewall_rules.py │ │ ├── get_fw_interfaces.py │ │ ├── insert_firewall_rule.py │ │ ├── insert_firewall_separator.py │ │ ├── query_bogon_rule.py │ │ ├── reorder_firewall_rules.py │ │ ├── toggle_bogon_rule.py │ │ ├── toggle_firewall_rule.py │ │ ├── toggle_firewall_rules.py │ │ └── update_firewall_rule.py │ ├── interfaces │ │ ├── __init__.py │ │ ├── add_bridge_interface.py │ │ ├── add_gif.py │ │ ├── add_gre.py │ │ ├── add_interface.py │ │ ├── add_interface_group.py │ │ ├── add_lagg.py │ │ ├── add_ppp_interface.py │ │ ├── add_qin_q.py │ │ ├── add_vlan.py │ │ ├── add_vxlan.py │ │ ├── add_wireless_interface.py │ │ ├── delete_gif.py │ │ ├── delete_gre.py │ │ ├── delete_interface.py │ │ ├── delete_interface_group.py │ │ ├── delete_lagg.py │ │ ├── delete_ppp_interface.py │ │ ├── delete_qin_q.py │ │ ├── delete_vlan.py │ │ ├── delete_vxlan.py │ │ ├── delete_wireless_interface.py │ │ ├── get_bridge_interfaces.py │ │ ├── get_gi_fs.py │ │ ├── get_gr_es.py │ │ ├── get_host_interface.py │ │ ├── get_host_interfaces.py │ │ ├── get_interface.py │ │ ├── get_interface_assignments.py │ │ ├── get_interface_descriptors.py │ │ ├── get_interface_groups.py │ │ ├── get_interface_ports.py │ │ ├── get_interfaces.py │ │ ├── get_lag_gs.py │ │ ├── get_lan.py │ │ ├── get_ppp_interfaces.py │ │ ├── get_qin_qs.py │ │ ├── get_vla_ns.py │ │ ├── get_vxla_ns.py │ │ ├── get_wan.py │ │ ├── get_wireless_interfaces.py │ │ ├── remove_bridge_interface.py │ │ ├── set_bridge_interface.py │ │ ├── set_gif.py │ │ ├── set_gre.py │ │ ├── set_interface.py │ │ ├── set_interface_gateway.py │ │ ├── set_interface_group.py │ │ ├── set_interface_owner.py │ │ ├── set_lagg.py │ │ ├── set_ppp_interface.py │ │ ├── set_qin_q.py │ │ ├── set_vlan.py │ │ ├── set_vxlan.py │ │ ├── set_wireless_interface.py │ │ ├── update_interfaces.py │ │ ├── update_lan.py │ │ └── update_wan.py │ ├── login │ │ ├── __init__.py │ │ ├── login.py │ │ └── refresh_access_token.py │ ├── mim │ │ ├── __init__.py │ │ ├── add_controlled_device.py │ │ ├── delete_controlled_device.py │ │ ├── delete_controlled_device_cert.py │ │ ├── delete_device_tag.py │ │ ├── delete_mim_controller.py │ │ ├── get_controlled_device_certs.py │ │ ├── get_controlled_devices.py │ │ ├── get_controllers.py │ │ ├── get_device_identity.py │ │ ├── get_mim_controller.py │ │ ├── get_mim_controller_summary.py │ │ ├── get_mim_tags.py │ │ ├── make_controlled_device_cert.py │ │ ├── remove_device_tag.py │ │ ├── set_controlled_device.py │ │ ├── set_controller.py │ │ ├── set_device_public_key.py │ │ └── set_tags_to_devices.py │ ├── services │ │ ├── __init__.py │ │ ├── add_check_ip_service.py │ │ ├── add_dyn_dns_config.py │ │ ├── add_rfc_config.py │ │ ├── backup_acb.py │ │ ├── create_dhcpd_address_pool.py │ │ ├── create_dhcpd_static_mapping.py │ │ ├── create_u_pn_pacl.py │ │ ├── delete_acb.py │ │ ├── delete_captive_portal.py │ │ ├── delete_check_ip_service.py │ │ ├── delete_dhcp_address_pool.py │ │ ├── delete_dhcp_all_i_pv_4_leases.py │ │ ├── delete_dhcp_all_i_pv_6_leases.py │ │ ├── delete_dhcp_lease.py │ │ ├── delete_dhcpd_static_mapping.py │ │ ├── delete_igmp_proxy.py │ │ ├── delete_ndp.py │ │ ├── delete_ndp_table.py │ │ ├── delete_rfc_config.py │ │ ├── delete_u_pn_pacl.py │ │ ├── do_captive_portal_disconnect.py │ │ ├── do_carp_reset_demotion.py │ │ ├── get_acb.py │ │ ├── get_acb_config.py │ │ ├── get_acb_list.py │ │ ├── get_captive_portal.py │ │ ├── get_captive_portal_status.py │ │ ├── get_captive_portals.py │ │ ├── get_carp_status.py │ │ ├── get_check_ip_services.py │ │ ├── get_dhcp_leases.py │ │ ├── get_dhcp_v4_relay_config.py │ │ ├── get_dhcp_v6_relay_config.py │ │ ├── get_dhcpd_config.py │ │ ├── get_dhcpd_interface_config.py │ │ ├── get_dhcpd_interfaces.py │ │ ├── get_dns_forwarder_config.py │ │ ├── get_dns_resolver_config.py │ │ ├── get_dns_resolver_status.py │ │ ├── get_dyn_dns_config.py │ │ ├── get_igmp_proxies.py │ │ ├── get_ndp_table.py │ │ ├── get_ntp.py │ │ ├── get_ntp_status.py │ │ ├── get_pp_po_e.py │ │ ├── get_rfc_config.py │ │ ├── get_router_adv_settings.py │ │ ├── get_services_status.py │ │ ├── get_snmp.py │ │ ├── get_u_pn_p.py │ │ ├── get_u_pn_p_status.py │ │ ├── list_dhcpd_address_pools.py │ │ ├── list_dhcpd_static_mappings.py │ │ ├── restore_acb.py │ │ ├── save_acb_config.py │ │ ├── services_action.py │ │ ├── set_captive_portal.py │ │ ├── set_carp_enabled.py │ │ ├── set_carp_maintenance_enabled.py │ │ ├── set_dhcp_v4_relay_config.py │ │ ├── set_dhcp_v6_relay_config.py │ │ ├── set_dhcpd_config.py │ │ ├── set_dhcpd_interface_config.py │ │ ├── set_dns_forwarder_config.py │ │ ├── set_dns_resolver_config.py │ │ ├── set_igmp_proxy.py │ │ ├── set_intf_router_adv.py │ │ ├── set_ntp.py │ │ ├── set_pp_po_e.py │ │ ├── set_snmp.py │ │ ├── set_u_pn_p.py │ │ ├── stop_ntp.py │ │ ├── toggle_dhcp_v4_relay.py │ │ ├── toggle_dhcp_v6_relay.py │ │ ├── toggle_upnp.py │ │ ├── update_check_ip_service.py │ │ ├── update_dhcpd_address_pool.py │ │ ├── update_dhcpd_static_mapping.py │ │ ├── update_igmp_proxy.py │ │ ├── update_igmp_proxy_settings.py │ │ └── update_rfc_config.py │ ├── system │ │ ├── __init__.py │ │ ├── activate_bootenv.py │ │ ├── add_auth_server.py │ │ ├── add_cert_authority.py │ │ ├── add_certificate.py │ │ ├── add_crl.py │ │ ├── add_gateway.py │ │ ├── add_gateway_group.py │ │ ├── add_group.py │ │ ├── add_user.py │ │ ├── apply_dirty_config.py │ │ ├── apply_route_changes.py │ │ ├── create_bootenv.py │ │ ├── delete_auth_server.py │ │ ├── delete_bootenv.py │ │ ├── delete_bootenvs.py │ │ ├── delete_cert_authority.py │ │ ├── delete_certificate.py │ │ ├── delete_crl.py │ │ ├── delete_gateway.py │ │ ├── delete_gateway_group.py │ │ ├── delete_group.py │ │ ├── delete_route.py │ │ ├── delete_route_with_gw.py │ │ ├── delete_tunable.py │ │ ├── delete_user.py │ │ ├── do_filter_reload.py │ │ ├── do_filter_sync.py │ │ ├── download_ca_cert.py │ │ ├── download_ca_key.py │ │ ├── download_cert.py │ │ ├── download_cert_key.py │ │ ├── download_cert_p12.py │ │ ├── download_crl.py │ │ ├── get_advanced_networking.py │ │ ├── get_auth_server_settings.py │ │ ├── get_avail_packages.py │ │ ├── get_bootenvs.py │ │ ├── get_cert_authorities.py │ │ ├── get_cert_authority.py │ │ ├── get_cert_key.py │ │ ├── get_cert_options.py │ │ ├── get_cert_p12.py │ │ ├── get_certificate.py │ │ ├── get_certificates.py │ │ ├── get_cr_ls_list.py │ │ ├── get_crl.py │ │ ├── get_dirty_subsystems.py │ │ ├── get_filter_reload_status.py │ │ ├── get_firmware.py │ │ ├── get_gateway_groups.py │ │ ├── get_gateway_priorities.py │ │ ├── get_gateways.py │ │ ├── get_gateways_status.py │ │ ├── get_ha_sync_settings.py │ │ ├── get_if_stats.py │ │ ├── get_initial_setup.py │ │ ├── get_install_progress.py │ │ ├── get_installed_packages.py │ │ ├── get_interface_statistics_widget.py │ │ ├── get_interfaces_status.py │ │ ├── get_interfaces_widgets.py │ │ ├── get_ip_sec_widget.py │ │ ├── get_logfile_configuration.py │ │ ├── get_logs.py │ │ ├── get_monitoring_data.py │ │ ├── get_monitoring_datasets.py │ │ ├── get_queue_stats.py │ │ ├── get_routes_dirty_state.py │ │ ├── get_service_plans_by_provider.py │ │ ├── get_service_providers.py │ │ ├── get_service_providers_by_country.py │ │ ├── get_setup.py │ │ ├── get_setup_wizard.py │ │ ├── get_static_routes.py │ │ ├── get_status.py │ │ ├── get_syslog_config.py │ │ ├── get_system_adv_admin.py │ │ ├── get_system_adv_firewall_setting.py │ │ ├── get_system_adv_misc.py │ │ ├── get_system_adv_notifications.py │ │ ├── get_system_summary.py │ │ ├── get_system_update_info.py │ │ ├── get_system_update_progress.py │ │ ├── get_system_update_settings.py │ │ ├── get_tunables.py │ │ ├── get_user_auth_settings.py │ │ ├── get_user_groups.py │ │ ├── get_users.py │ │ ├── get_users_config.py │ │ ├── import_pkcs_12_certificate.py │ │ ├── install_packages.py │ │ ├── list_user_privileges.py │ │ ├── patch_system_certificates_refid.py │ │ ├── perform_system_update.py │ │ ├── quick_bootenv.py │ │ ├── reinstall_packages.py │ │ ├── remove_package.py │ │ ├── renew_ca_cert.py │ │ ├── renew_cert.py │ │ ├── reset_log_files.py │ │ ├── save_setup.py │ │ ├── save_setup_wizard.py │ │ ├── set_gateway.py │ │ ├── set_ha_sync_settings.py │ │ ├── set_log_configuration.py │ │ ├── set_logfile_configuration.py │ │ ├── set_static_route.py │ │ ├── set_system_adv_networking.py │ │ ├── set_system_update_settings.py │ │ ├── set_tunable.py │ │ ├── set_user_auth_settings.py │ │ ├── unrevoke_cert.py │ │ ├── update_auth_server.py │ │ ├── update_bootenv.py │ │ ├── update_cert_authority.py │ │ ├── update_certificate.py │ │ ├── update_crl.py │ │ ├── update_gateway_group.py │ │ ├── update_group.py │ │ ├── update_system_adv_admin.py │ │ ├── update_system_adv_firewall_setting.py │ │ ├── update_system_adv_misc.py │ │ ├── update_system_adv_notifications.py │ │ ├── update_system_tls_cert.py │ │ ├── update_user.py │ │ └── upgrade_firmware.py │ └── vpn │ │ ├── __init__.py │ │ ├── add_ip_sec_client_group.py │ │ ├── connect_ip_sec.py │ │ ├── delete_ip_sec_client_group.py │ │ ├── delete_ip_sec_mobile_key.py │ │ ├── delete_ip_sec_phase_1.py │ │ ├── delete_ip_sec_phase_2.py │ │ ├── delete_open_vpn_client.py │ │ ├── delete_open_vpn_server.py │ │ ├── delete_open_vpncso.py │ │ ├── delete_wire_guard_peer.py │ │ ├── delete_wire_guard_tunnel.py │ │ ├── disconnect_ip_sec.py │ │ ├── get_ip_sec_client.py │ │ ├── get_ip_sec_client_group.py │ │ ├── get_ip_sec_config.py │ │ ├── get_ip_sec_mobile_keys.py │ │ ├── get_ip_sec_phases.py │ │ ├── get_ip_sec_status.py │ │ ├── get_l2tp.py │ │ ├── get_new_ip_sec_psk.py │ │ ├── get_new_wire_guard_keys.py │ │ ├── get_open_vpn_client.py │ │ ├── get_open_vpn_clients.py │ │ ├── get_open_vpn_next_port.py │ │ ├── get_open_vpn_server.py │ │ ├── get_open_vpn_servers.py │ │ ├── get_open_vpn_status.py │ │ ├── get_open_vpncs_os.py │ │ ├── get_open_vpncso.py │ │ ├── get_wire_guard.py │ │ ├── get_wire_guard_status.py │ │ ├── get_wire_guard_tunnel_conf.py │ │ ├── kill_client_open_vpn.py │ │ ├── set_ip_sec_client.py │ │ ├── set_ip_sec_mobile_key.py │ │ ├── set_ip_sec_phase_1.py │ │ ├── set_ip_sec_phase_2.py │ │ ├── set_open_vpn_client.py │ │ ├── set_open_vpn_server.py │ │ ├── set_open_vpncso.py │ │ ├── set_wire_guard_peer.py │ │ ├── set_wire_guard_settings.py │ │ ├── set_wire_guard_tunnel.py │ │ ├── update_ip_sec_client_group.py │ │ ├── update_ip_sec_config.py │ │ ├── update_ip_sec_mobile_key.py │ │ ├── update_ip_sec_phase_1.py │ │ ├── update_ip_sec_phase_2.py │ │ ├── update_l2tp.py │ │ ├── update_open_vpn_client.py │ │ ├── update_open_vpn_server.py │ │ ├── update_open_vpncso.py │ │ ├── update_wire_guard_peer.py │ │ └── update_wire_guard_tunnel.py ├── client.py ├── errors.py ├── models │ ├── __init__.py │ ├── acb_backup.py │ ├── acb_config.py │ ├── acb_config_info.py │ ├── acb_list.py │ ├── acb_manual_backup_request.py │ ├── acb_restore_request.py │ ├── activate_bootenv.py │ ├── admin_login_session.py │ ├── adv_firewall.py │ ├── adv_firewall_setting.py │ ├── adv_misc.py │ ├── adv_misc_setting.py │ ├── adv_network_setting.py │ ├── adv_networking.py │ ├── adv_notification_setting.py │ ├── adv_notifications.py │ ├── all_software_packages.py │ ├── all_software_packages_software_packages.py │ ├── altq_capable_interface.py │ ├── altq_child_queue.py │ ├── altq_child_queue_bandwidthtype.py │ ├── altq_root_queue.py │ ├── altq_root_queue_bandwidthtype.py │ ├── altq_root_queue_scheduler.py │ ├── altq_root_queues.py │ ├── app_mem_stat.py │ ├── apply_dirty_config_request.py │ ├── arp_table_entry.py │ ├── auth_server.py │ ├── auth_servers.py │ ├── auth_servers_list.py │ ├── auth_test_credentials.py │ ├── auth_test_result.py │ ├── boot_envs.py │ ├── boot_envs_envs.py │ ├── bootenv.py │ ├── bridge_capable_interface.py │ ├── bridge_interface.py │ ├── bridge_interface_ifpathcost.py │ ├── bridge_interface_ifpriority.py │ ├── bridge_interfaces.py │ ├── ca_cert_method_existing.py │ ├── ca_cert_method_new.py │ ├── captive_allowed_host.py │ ├── captive_allowed_ip.py │ ├── captive_element.py │ ├── captive_passthru_mac.py │ ├── captive_portal_config.py │ ├── captive_portal_disconnect_request.py │ ├── captive_portal_info.py │ ├── captive_portal_name.py │ ├── captive_portal_status.py │ ├── captive_portal_user_info.py │ ├── captive_portals.py │ ├── carp_reset_demotion_result.py │ ├── carp_status.py │ ├── carpvip_status.py │ ├── cert_alt_name.py │ ├── cert_authorities.py │ ├── cert_authority.py │ ├── cert_config.py │ ├── cert_info.py │ ├── cert_key_export_opts.py │ ├── cert_method_existing_pem.py │ ├── cert_method_existing_pkcs_12.py │ ├── cert_method_new.py │ ├── cert_method_sign_csr.py │ ├── cert_method_signing_request.py │ ├── cert_opts.py │ ├── cert_pkcs_12_export_opts.py │ ├── cert_pkcs_12_export_opts_encryption.py │ ├── certificate_detailed.py │ ├── certs_config.py │ ├── check_ip_service.py │ ├── check_ip_services_list.py │ ├── config_event.py │ ├── console_client.py │ ├── console_clients.py │ ├── controlled_device.py │ ├── controlled_device_auth.py │ ├── controlled_device_brief.py │ ├── controlled_device_cert.py │ ├── controlled_device_cert_options.py │ ├── controlled_device_certs.py │ ├── controlled_device_detailed.py │ ├── controlled_device_info.py │ ├── controlled_devices.py │ ├── controller_alarm.py │ ├── controller_alarms.py │ ├── controller_alarms_alarms.py │ ├── controller_backup.py │ ├── controller_backup_request.py │ ├── controller_backup_restore_request.py │ ├── controller_backup_restore_result.py │ ├── controller_backup_result.py │ ├── controller_backups.py │ ├── controller_descrip.py │ ├── controller_descrip_host_os.py │ ├── controller_identity.py │ ├── controller_info.py │ ├── controller_service_action.py │ ├── controller_service_action_action.py │ ├── controller_stats.py │ ├── controller_summary.py │ ├── controller_upgrade_info.py │ ├── controller_upgrade_request.py │ ├── controller_upgrade_result.py │ ├── controllers_list.py │ ├── create_bootenv.py │ ├── create_controlled_device_cert.py │ ├── create_u_pn_pacl.py │ ├── crl_cert.py │ ├── crl_config.py │ ├── crl_config_pkgs.py │ ├── crl_entries.py │ ├── crl_method_internal_update.py │ ├── crl_method_internal_update_revoke_reason.py │ ├── crl_method_new.py │ ├── crl_method_x509.py │ ├── crl_package_info.py │ ├── delete_bootenvs.py │ ├── delete_controlled_device_cert_request.py │ ├── delete_firewall_rule.py │ ├── device_basic_info.py │ ├── device_controller_info.py │ ├── device_identity.py │ ├── device_network_port.py │ ├── device_pkg_install_request.py │ ├── device_pkg_install_result.py │ ├── device_pkg_install_results.py │ ├── device_pkg_install_results_devices.py │ ├── device_pkg_uninstall_result.py │ ├── device_pkg_uninstall_results.py │ ├── device_pkg_uninstall_results_devices.py │ ├── device_public_key_option.py │ ├── device_service_basic.py │ ├── device_tag_option.py │ ├── device_vpn.py │ ├── dhcp_6_advanced_options.py │ ├── dhcp_address_pool.py │ ├── dhcp_address_pools.py │ ├── dhcp_advanced_options.py │ ├── dhcp_global_settings.py │ ├── dhcp_global_settings_ipv_6_duid_type.py │ ├── dhcp_high_availability_advance_config.py │ ├── dhcp_high_availability_config.py │ ├── dhcp_interface_config.py │ ├── dhcp_interfaces.py │ ├── dhcp_lease.py │ ├── dhcp_lease_ip.py │ ├── dhcp_leases.py │ ├── dhcp_network_booting.py │ ├── dhcp_range.py │ ├── dhcp_relay_config.py │ ├── dhcp_relay_toggle.py │ ├── dhcp_service_config.py │ ├── dhcp_service_config_interfaces.py │ ├── dhcp_static_mapping.py │ ├── dhcp_static_mappings.py │ ├── dhcpd.py │ ├── dhcpd_config.py │ ├── dhcpd_lan.py │ ├── dhcpha_state.py │ ├── dhcpv_6_static_mapping.py │ ├── diag_activity.py │ ├── diag_arp_table.py │ ├── diag_auth_server_list.py │ ├── diag_auth_test_request.py │ ├── diag_auth_test_result.py │ ├── diag_backup_diff.py │ ├── diag_backup_info.py │ ├── diag_backup_request.py │ ├── diag_command_result.py │ ├── diag_dns_lookup_result.py │ ├── diag_dns_record.py │ ├── diag_dns_server_timing.py │ ├── diag_limiters.py │ ├── diag_php_command.py │ ├── diag_ping_request.py │ ├── diag_ping_response.py │ ├── diag_prior_backup_info.py │ ├── diag_restore_backup_body.py │ ├── diag_restore_prior_backup_requst.py │ ├── diag_routes.py │ ├── diag_shell_command.py │ ├── diag_socket_stats.py │ ├── diag_state.py │ ├── diag_states.py │ ├── diag_table.py │ ├── diag_table_action.py │ ├── diag_table_detailed.py │ ├── diag_tables.py │ ├── diag_upload_request.py │ ├── diag_upload_result.py │ ├── dimm.py │ ├── dirty_subsystem.py │ ├── dirty_subsystems.py │ ├── dirty_subsystems_all_subsystems.py │ ├── dirty_subsystems_dirty_subsystems.py │ ├── disks.py │ ├── dns_alias_request.py │ ├── dns_forwarder_alias.py │ ├── dns_forwarder_config.py │ ├── dns_forwarder_config_info.py │ ├── dns_forwarder_config_info_interfaces.py │ ├── dns_forwarder_domain.py │ ├── dns_forwarder_host.py │ ├── dns_forwarder_update_req.py │ ├── dns_resolver_config.py │ ├── dns_resolver_config_info.py │ ├── dns_resolver_config_info_interfaces.py │ ├── dns_resolver_domain.py │ ├── dns_resolver_status.py │ ├── dns_resolver_status_speed.py │ ├── dns_resolver_status_stats.py │ ├── dns_resolver_update_req.py │ ├── dnsacl.py │ ├── dnsacl_network.py │ ├── dyn_dns_config.py │ ├── dyn_dns_list.py │ ├── edit_file_data.py │ ├── edit_file_req.py │ ├── encryption_algorithm.py │ ├── error.py │ ├── event.py │ ├── events.py │ ├── filter_log.py │ ├── filter_log_carp_info.py │ ├── filter_log_icmp_info.py │ ├── filter_log_summary.py │ ├── filter_log_summary_actions.py │ ├── filter_log_summary_dest_ips.py │ ├── filter_log_summary_dest_ports.py │ ├── filter_log_summary_interfaces.py │ ├── filter_log_summary_protocols.py │ ├── filter_log_summary_src_ips.py │ ├── filter_log_summary_src_ports.py │ ├── filter_log_summary_tracker_hits.py │ ├── filter_log_tcp_info.py │ ├── filter_log_version_4_info.py │ ├── filter_log_version_6_info.py │ ├── filter_reload_status.py │ ├── filter_separator.py │ ├── firewall_event.py │ ├── fw_addr_alias.py │ ├── fw_addr_port.py │ ├── fw_alias.py │ ├── fw_alias_req.py │ ├── fw_alias_req_type.py │ ├── fw_alias_type.py │ ├── fw_aliases.py │ ├── fw_bogon_rule.py │ ├── fw_bogon_state.py │ ├── fw_bulk_copy.py │ ├── fw_bulk_delete.py │ ├── fw_bulk_toggle.py │ ├── fw_filter_rule.py │ ├── fw_filter_rule_nat.py │ ├── fw_firewall_interfaces.py │ ├── fw_rule_item_order.py │ ├── fw_rule_list.py │ ├── fw_rule_state.py │ ├── fw_rule_states.py │ ├── fw_rule_toggle.py │ ├── fw_rules.py │ ├── fw_rules_aliases.py │ ├── fw_rules_entry.py │ ├── fw_rules_order.py │ ├── fw_schedule.py │ ├── fw_schedule_range.py │ ├── fw_schedules.py │ ├── fw_single_filter_rule.py │ ├── fw_single_rule_states.py │ ├── fw_system_alias.py │ ├── fw_target.py │ ├── fw_toggle_result.py │ ├── fw_update_alias_req.py │ ├── fw_update_alias_req_type.py │ ├── fw_user_timestamp.py │ ├── gateway.py │ ├── gateway_defaults.py │ ├── gateway_group.py │ ├── gateway_group_priority.py │ ├── gateway_groups.py │ ├── gateway_p_info.py │ ├── gateway_priorities.py │ ├── gateway_priority.py │ ├── gateway_status.py │ ├── gateway_v_address.py │ ├── gateways.py │ ├── gateways_status.py │ ├── gif_capable_interface.py │ ├── gif_interface.py │ ├── gif_interfaces.py │ ├── gre_capable_interface.py │ ├── gre_interface.py │ ├── gre_interfaces.py │ ├── group_add_req.py │ ├── group_status.py │ ├── group_update_req.py │ ├── ha_pfsync.py │ ├── ha_sync_opts.py │ ├── haxmlrpc_sync.py │ ├── hw_device.py │ ├── hw_devices.py │ ├── if_group_capable_interface.py │ ├── if_stats.py │ ├── if_stats_bandwidth.py │ ├── if_stats_summary.py │ ├── igmp_proxies.py │ ├── igmp_proxy.py │ ├── igmp_proxy_settings.py │ ├── import_pkcs_12_certificate_body.py │ ├── initial_setup.py │ ├── insert_filter_rule.py │ ├── insert_filter_separator.py │ ├── install_package_opt.py │ ├── install_packages_opt.py │ ├── install_packages_response.py │ ├── install_software_package_info.py │ ├── interface.py │ ├── interface_assigned_name.py │ ├── interface_assignments.py │ ├── interface_descriptors.py │ ├── interface_descriptors_info.py │ ├── interface_descriptors_info_bridges.py │ ├── interface_descriptors_info_gif.py │ ├── interface_descriptors_info_gre.py │ ├── interface_descriptors_info_lagg.py │ ├── interface_descriptors_info_physical.py │ ├── interface_descriptors_info_ppp.py │ ├── interface_descriptors_info_qinq.py │ ├── interface_descriptors_info_vlan.py │ ├── interface_descriptors_info_vxlan.py │ ├── interface_event.py │ ├── interface_gateway_update.py │ ├── interface_group.py │ ├── interface_groups.py │ ├── interface_info.py │ ├── interface_info_list.py │ ├── interface_label_to_name.py │ ├── interface_ports.py │ ├── interface_ports_lists.py │ ├── interface_simple.py │ ├── interface_statistics_widget.py │ ├── interface_statistics_widget_result.py │ ├── interface_statistics_widget_result_interfaces.py │ ├── interface_widgets.py │ ├── interfaces.py │ ├── interfaces_simple.py │ ├── interfaces_widget.py │ ├── intf_router_adv_setting.py │ ├── intf_router_adv_setting_mode.py │ ├── ip_sec_bypass_rule.py │ ├── ip_sec_bypass_rules.py │ ├── ip_sec_capable_interface.py │ ├── ip_sec_child_sas.py │ ├── ip_sec_client.py │ ├── ip_sec_client_config.py │ ├── ip_sec_client_group.py │ ├── ip_sec_client_groups.py │ ├── ip_sec_config.py │ ├── ip_sec_connect_req.py │ ├── ip_sec_disconnect_req.py │ ├── ip_sec_disconnect_req_phase.py │ ├── ip_sec_ikesa.py │ ├── ip_sec_logging.py │ ├── ip_sec_mobile_key.py │ ├── ip_sec_mobile_keys.py │ ├── ip_sec_phase_list.py │ ├── ip_sec_pool.py │ ├── ip_sec_pool_lease.py │ ├── ip_sec_psk.py │ ├── ip_sec_sad.py │ ├── ip_sec_spd.py │ ├── ip_sec_status.py │ ├── ip_sec_status_overview.py │ ├── ip_sec_widget.py │ ├── ip_sec_widget_mobile.py │ ├── ip_sec_widget_tunnel.py │ ├── l2tp_config.py │ ├── l2tp_radius.py │ ├── l2tp_settings.py │ ├── l2tp_user.py │ ├── lagg_capable_interface.py │ ├── lagg_capable_interfaces.py │ ├── lagg_interface.py │ ├── lagg_interface_lacptimeout.py │ ├── lagg_interface_proto.py │ ├── lagg_interfaces.py │ ├── ldap_auth_server.py │ ├── lease_interface.py │ ├── license_feature.py │ ├── license_key.py │ ├── limiter.py │ ├── limiter_aqm.py │ ├── limiter_bandwidth.py │ ├── limiter_info.py │ ├── limiter_mask.py │ ├── limiter_queue.py │ ├── limiter_queue_aqm.py │ ├── limiter_queue_mask.py │ ├── limiter_sched.py │ ├── limiters.py │ ├── load_avg.py │ ├── local_server.py │ ├── log_entries.py │ ├── log_entry.py │ ├── log_stats.py │ ├── login_credentials.py │ ├── login_response.py │ ├── memory.py │ ├── memory_map.py │ ├── memory_stat.py │ ├── mesh_stats.py │ ├── mesh_vpn_conns.py │ ├── mim_tags.py │ ├── mim_tags_dev_list.py │ ├── mim_tags_tags.py │ ├── monitoring_data_request.py │ ├── monitoring_data_result.py │ ├── monitoring_dataset_info.py │ ├── monitoring_datasets.py │ ├── name_descr.py │ ├── nat1_to_1_rule.py │ ├── nat1_to_1_rules.py │ ├── nat1_to_1_update_result.py │ ├── nat_addr_port.py │ ├── nat_auto_addr.py │ ├── nat_auto_rule.py │ ├── nat_npt_addr.py │ ├── nat_npt_rule.py │ ├── nat_npt_rules.py │ ├── nat_npt_update_result.py │ ├── nat_out_mode_update_response.py │ ├── nat_out_update_response.py │ ├── nat_outbound_mode.py │ ├── nat_outbound_rule.py │ ├── nat_outbound_rules.py │ ├── nat_rule.py │ ├── nat_rule_order.py │ ├── nat_rules.py │ ├── nat_rules_entry.py │ ├── nat_update_result.py │ ├── ndp_entry.py │ ├── ndp_table.py │ ├── net_if.py │ ├── net_if_addr.py │ ├── net_if_assign_owner_req.py │ ├── net_if_assign_owner_req_owner_type.py │ ├── net_if_dev_config.py │ ├── net_if_dhcp.py │ ├── net_if_info.py │ ├── net_if_ipv_6rd.py │ ├── net_if_options.py │ ├── net_if_owner.py │ ├── net_if_owner_container.py │ ├── net_if_owner_host.py │ ├── net_if_owner_vm.py │ ├── net_if_owner_vpp.py │ ├── net_ifs.py │ ├── netif_status.py │ ├── new_ca_cert_req.py │ ├── new_cert_req.py │ ├── new_crl_req.py │ ├── new_interface_result.py │ ├── nexus_controller_info.py │ ├── ntp_access_restrictions.py │ ├── ntp_acls.py │ ├── ntp_gps_flags.py │ ├── ntp_network_access_restriction.py │ ├── ntp_pps.py │ ├── ntp_pps_flags.py │ ├── ntp_serial_gps.py │ ├── ntp_server.py │ ├── ntp_server_info.py │ ├── ntp_settings.py │ ├── ntp_status.py │ ├── open_vpn_active_conn.py │ ├── open_vpn_capable_interface.py │ ├── open_vpn_client.py │ ├── open_vpn_client_config.py │ ├── open_vpn_clients.py │ ├── open_vpn_conn.py │ ├── open_vpn_next_port.py │ ├── open_vpn_route.py │ ├── open_vpn_server.py │ ├── open_vpn_server_config.py │ ├── open_vpn_servers.py │ ├── open_vpn_status.py │ ├── open_vpncs_os.py │ ├── open_vpncso.py │ ├── open_vpncso_config.py │ ├── os_socket.py │ ├── os_socket_list.py │ ├── os_software_packages.py │ ├── p_flow_exporter.py │ ├── p_flow_global_options.py │ ├── p_flow_global_options_src_ip_address.py │ ├── p_flow_options.py │ ├── package.py │ ├── package_install_progress.py │ ├── package_status.py │ ├── packages.py │ ├── packet_capture.py │ ├── packet_capture_filter.py │ ├── packet_capture_request.py │ ├── patch_system_certificates_refid_body.py │ ├── pcap_interface.py │ ├── pf_info.py │ ├── pf_info_response.py │ ├── pfsense_result.py │ ├── pftop_response.py │ ├── phase_1.py │ ├── phase_1_alg.py │ ├── phase_1_encryption.py │ ├── phase_2.py │ ├── phase_2_local_id.py │ ├── phase_2_remote_id.py │ ├── physical_interface.py │ ├── pp_po_e_config.py │ ├── pp_po_e_config_req.py │ ├── pp_po_e_server.py │ ├── ppp_capable_interface.py │ ├── ppp_capable_interfaces.py │ ├── ppp_interface.py │ ├── ppp_interface_pppoe_pr_preset_val.py │ ├── ppp_interface_pppoe_reset_type.py │ ├── ppp_interface_type.py │ ├── ppp_interfaces.py │ ├── ppp_link_interface.py │ ├── provider_country.py │ ├── provider_country_setting.py │ ├── provider_plan_setting.py │ ├── qin_q_interface.py │ ├── qin_q_interfaces.py │ ├── query_interface_rules.py │ ├── queue_stats.py │ ├── quick_result.py │ ├── radius.py │ ├── radius_auth_server.py │ ├── radius_server.py │ ├── refresh_token_param.py │ ├── renew_cert_options.py │ ├── result.py │ ├── retrieved_backup.py │ ├── rfc_item.py │ ├── rfc_item_list.py │ ├── route_record.py │ ├── router_adv_settings.py │ ├── routes_apply_request.py │ ├── routes_dirty_state.py │ ├── separator.py │ ├── service_certificate.py │ ├── service_provider.py │ ├── service_provider_setting.py │ ├── service_providers.py │ ├── services_action_params.py │ ├── services_action_req.py │ ├── services_ntp_config.py │ ├── services_snmp_config.py │ ├── services_snmp_config_req.py │ ├── services_status.py │ ├── services_status_list.py │ ├── services_u_pn_p_config.py │ ├── services_u_pn_p_config_req.py │ ├── set_adv_networking_response.py │ ├── set_open_vpn_client_response.py │ ├── set_open_vpn_server_response.py │ ├── set_open_vpncso_response.py │ ├── setup_dns_setting.py │ ├── setup_pp_po_e_cfg.py │ ├── setup_settings.py │ ├── setup_wizard.py │ ├── setup_wizard_options.py │ ├── simple_interface.py │ ├── smart_devices.py │ ├── smart_result.py │ ├── snmp_config.py │ ├── snmp_interface.py │ ├── snmp_modules.py │ ├── software_package.py │ ├── software_package_list.py │ ├── static_route.py │ ├── static_routes.py │ ├── status_summary.py │ ├── status_summary_ui_features.py │ ├── std_log.py │ ├── std_logs.py │ ├── storage_stats.py │ ├── sys_firmware_info.py │ ├── sys_firmware_upgrade_opt.py │ ├── sys_net_if.py │ ├── sysinfo.py │ ├── sysinfo_fs.py │ ├── sysinfo_license.py │ ├── sysinfo_update.py │ ├── syslog_config_override.py │ ├── syslog_configuration.py │ ├── system_adv_admin.py │ ├── system_adv_admin_setting.py │ ├── system_cert.py │ ├── system_control.py │ ├── system_event.py │ ├── system_git_sync_settings.py │ ├── system_status.py │ ├── system_summary.py │ ├── system_update_boot_envs_settings.py │ ├── system_update_firmware_branch.py │ ├── system_update_info.py │ ├── system_update_options.py │ ├── system_update_progress.py │ ├── system_update_settings.py │ ├── system_update_settings_set.py │ ├── tcp_flags.py │ ├── test_port_request.py │ ├── test_port_response.py │ ├── test_port_sources.py │ ├── text_value.py │ ├── tier.py │ ├── tls_cert_path.py │ ├── toggle_resp_status.py │ ├── toggle_upnp.py │ ├── traceroute_request.py │ ├── traceroute_response.py │ ├── traffic_queue_stats.py │ ├── traffic_shapers.py │ ├── tunable.py │ ├── tunable_request.py │ ├── tunables.py │ ├── u_pn_p_config.py │ ├── u_pn_p_mapping.py │ ├── u_pn_p_mappings.py │ ├── u_pn_p_perm_user.py │ ├── update_bootenv.py │ ├── update_ca_cert_req.py │ ├── update_cert_req.py │ ├── update_crl_req.py │ ├── update_pkcs12_cert_req.py │ ├── user.py │ ├── user_add_req.py │ ├── user_auth_settings.py │ ├── user_auth_settings_req.py │ ├── user_generic.py │ ├── user_group.py │ ├── user_groups.py │ ├── user_privilege.py │ ├── user_privileges.py │ ├── user_update_req.py │ ├── users.py │ ├── users_config.py │ ├── users_config_generic.py │ ├── users_generic.py │ ├── valid_ping_options.py │ ├── virtual_i_ps.py │ ├── virtual_ip.py │ ├── virtual_ip_result.py │ ├── vlan_capable_interface.py │ ├── vlan_interface.py │ ├── vlan_interfaces.py │ ├── voucher.py │ ├── voucher_roll.py │ ├── vxlan_capable_interface.py │ ├── vxlan_interface.py │ ├── vxlan_interfaces.py │ ├── wg_config.py │ ├── wg_peer.py │ ├── wg_peers.py │ ├── wg_tunnel.py │ ├── wg_tunnel_conf.py │ ├── wg_tunnels.py │ ├── wgip_address.py │ ├── wire_guard_keys.py │ ├── wire_guard_peer_status.py │ ├── wire_guard_settings.py │ ├── wire_guard_status.py │ ├── wire_guard_tunnel_status.py │ ├── wireless_addl.py │ ├── wireless_addl_clone.py │ ├── wireless_interface.py │ ├── wireless_interfaces.py │ ├── wme_setting.py │ └── wpa_setting.py ├── py.typed └── types.py └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/docs/index.html -------------------------------------------------------------------------------- /example-add-devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/example-add-devices.py -------------------------------------------------------------------------------- /example-upgrade-devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/example-upgrade-devices.py -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/example.js -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/example.py -------------------------------------------------------------------------------- /openapi-gen.conf: -------------------------------------------------------------------------------- 1 | package_name_override: pfapi 2 | -------------------------------------------------------------------------------- /pfapi_openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/pfapi_openapi.yml -------------------------------------------------------------------------------- /py/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/.gitignore -------------------------------------------------------------------------------- /py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/README.md -------------------------------------------------------------------------------- /py/pfapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/__init__.py -------------------------------------------------------------------------------- /py/pfapi/api/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains methods for accessing the API""" 2 | -------------------------------------------------------------------------------- /py/pfapi/api/aliases/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains endpoint functions for accessing the API""" 2 | -------------------------------------------------------------------------------- /py/pfapi/api/aliases/firewall_add_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/aliases/firewall_add_alias.py -------------------------------------------------------------------------------- /py/pfapi/api/aliases/firewall_get_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/aliases/firewall_get_alias.py -------------------------------------------------------------------------------- /py/pfapi/api/aliases/firewall_get_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/aliases/firewall_get_aliases.py -------------------------------------------------------------------------------- /py/pfapi/api/auth/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains endpoint functions for accessing the API""" 2 | -------------------------------------------------------------------------------- /py/pfapi/api/auth/get_auth_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/auth/get_auth_servers.py -------------------------------------------------------------------------------- /py/pfapi/api/controller/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains endpoint functions for accessing the API""" 2 | -------------------------------------------------------------------------------- /py/pfapi/api/controller/controller_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/controller/controller_action.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains endpoint functions for accessing the API""" 2 | -------------------------------------------------------------------------------- /py/pfapi/api/diag/delete_pcaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/delete_pcaps.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_abort_smart_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_abort_smart_test.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_auth_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_auth_test.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_cmd_get_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_cmd_get_file.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_cmd_upload_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_cmd_upload_file.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_delete_arp_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_delete_arp_entry.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_delete_arp_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_delete_arp_table.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_delete_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_delete_backup.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_delete_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_delete_states.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_dns_create_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_dns_create_alias.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_download_pcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_download_pcap.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_execute_php_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_execute_php_cmd.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_execute_shell_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_execute_shell_cmd.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_activity.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_arp_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_arp_table.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_backup.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_backup_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_backup_diff.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_edit_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_edit_file.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_limiter_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_limiter_info.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_pcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_pcap.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_pf_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_pf_info.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_pftop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_pftop.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_prior_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_prior_backup.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_routes.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_smart_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_smart_devices.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_smart_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_smart_info.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_smart_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_smart_logs.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_smart_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_smart_test.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_socket_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_socket_stats.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_get_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_get_states.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_lookup_host_dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_lookup_host_dns.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_ping.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_restore_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_restore_backup.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_run_pcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_run_pcap.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_run_smart_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_run_smart_test.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_save_edited_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_save_edited_file.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_system_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_system_control.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_tests_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_tests_port.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/diag_traceroute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/diag_traceroute.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/get_diag_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/get_diag_ping.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/get_system_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/get_system_table.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/list_system_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/list_system_tables.py -------------------------------------------------------------------------------- /py/pfapi/api/diag/run_system_table_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/diag/run_system_table_action.py -------------------------------------------------------------------------------- /py/pfapi/api/events/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains endpoint functions for accessing the API""" 2 | -------------------------------------------------------------------------------- /py/pfapi/api/events/delete_all_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/events/delete_all_events.py -------------------------------------------------------------------------------- /py/pfapi/api/events/get_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/events/get_events.py -------------------------------------------------------------------------------- /py/pfapi/api/firewall/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains endpoint functions for accessing the API""" 2 | -------------------------------------------------------------------------------- /py/pfapi/api/firewall/copy_firewall_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/firewall/copy_firewall_rules.py -------------------------------------------------------------------------------- /py/pfapi/api/firewall/firewall_add_altq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/firewall/firewall_add_altq.py -------------------------------------------------------------------------------- /py/pfapi/api/firewall/firewall_create_nat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/firewall/firewall_create_nat.py -------------------------------------------------------------------------------- /py/pfapi/api/firewall/firewall_delete_nat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/firewall/firewall_delete_nat.py -------------------------------------------------------------------------------- /py/pfapi/api/firewall/firewall_get_altq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/firewall/firewall_get_altq.py -------------------------------------------------------------------------------- /py/pfapi/api/firewall/firewall_get_nat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/firewall/firewall_get_nat.py -------------------------------------------------------------------------------- /py/pfapi/api/firewall/firewall_get_p_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/firewall/firewall_get_p_flow.py -------------------------------------------------------------------------------- /py/pfapi/api/firewall/firewall_set_p_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/firewall/firewall_set_p_flow.py -------------------------------------------------------------------------------- /py/pfapi/api/firewall/firewall_update_nat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/firewall/firewall_update_nat.py -------------------------------------------------------------------------------- /py/pfapi/api/firewall/get_firewall_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/firewall/get_firewall_rules.py -------------------------------------------------------------------------------- /py/pfapi/api/firewall/get_fw_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/firewall/get_fw_interfaces.py -------------------------------------------------------------------------------- /py/pfapi/api/firewall/query_bogon_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/firewall/query_bogon_rule.py -------------------------------------------------------------------------------- /py/pfapi/api/firewall/toggle_bogon_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/firewall/toggle_bogon_rule.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains endpoint functions for accessing the API""" 2 | -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/add_gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/add_gif.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/add_gre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/add_gre.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/add_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/add_interface.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/add_lagg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/add_lagg.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/add_ppp_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/add_ppp_interface.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/add_qin_q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/add_qin_q.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/add_vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/add_vlan.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/add_vxlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/add_vxlan.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/delete_gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/delete_gif.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/delete_gre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/delete_gre.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/delete_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/delete_interface.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/delete_lagg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/delete_lagg.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/delete_qin_q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/delete_qin_q.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/delete_vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/delete_vlan.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/delete_vxlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/delete_vxlan.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/get_gi_fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/get_gi_fs.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/get_gr_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/get_gr_es.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/get_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/get_interface.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/get_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/get_interfaces.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/get_lag_gs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/get_lag_gs.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/get_lan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/get_lan.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/get_qin_qs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/get_qin_qs.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/get_vla_ns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/get_vla_ns.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/get_vxla_ns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/get_vxla_ns.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/get_wan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/get_wan.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/set_gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/set_gif.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/set_gre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/set_gre.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/set_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/set_interface.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/set_lagg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/set_lagg.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/set_ppp_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/set_ppp_interface.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/set_qin_q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/set_qin_q.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/set_vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/set_vlan.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/set_vxlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/set_vxlan.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/update_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/update_interfaces.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/update_lan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/update_lan.py -------------------------------------------------------------------------------- /py/pfapi/api/interfaces/update_wan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/interfaces/update_wan.py -------------------------------------------------------------------------------- /py/pfapi/api/login/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains endpoint functions for accessing the API""" 2 | -------------------------------------------------------------------------------- /py/pfapi/api/login/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/login/login.py -------------------------------------------------------------------------------- /py/pfapi/api/mim/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains endpoint functions for accessing the API""" 2 | -------------------------------------------------------------------------------- /py/pfapi/api/mim/add_controlled_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/mim/add_controlled_device.py -------------------------------------------------------------------------------- /py/pfapi/api/mim/delete_device_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/mim/delete_device_tag.py -------------------------------------------------------------------------------- /py/pfapi/api/mim/delete_mim_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/mim/delete_mim_controller.py -------------------------------------------------------------------------------- /py/pfapi/api/mim/get_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/mim/get_controllers.py -------------------------------------------------------------------------------- /py/pfapi/api/mim/get_device_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/mim/get_device_identity.py -------------------------------------------------------------------------------- /py/pfapi/api/mim/get_mim_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/mim/get_mim_controller.py -------------------------------------------------------------------------------- /py/pfapi/api/mim/get_mim_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/mim/get_mim_tags.py -------------------------------------------------------------------------------- /py/pfapi/api/mim/remove_device_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/mim/remove_device_tag.py -------------------------------------------------------------------------------- /py/pfapi/api/mim/set_controlled_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/mim/set_controlled_device.py -------------------------------------------------------------------------------- /py/pfapi/api/mim/set_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/mim/set_controller.py -------------------------------------------------------------------------------- /py/pfapi/api/mim/set_device_public_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/mim/set_device_public_key.py -------------------------------------------------------------------------------- /py/pfapi/api/mim/set_tags_to_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/mim/set_tags_to_devices.py -------------------------------------------------------------------------------- /py/pfapi/api/services/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains endpoint functions for accessing the API""" 2 | -------------------------------------------------------------------------------- /py/pfapi/api/services/add_rfc_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/add_rfc_config.py -------------------------------------------------------------------------------- /py/pfapi/api/services/backup_acb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/backup_acb.py -------------------------------------------------------------------------------- /py/pfapi/api/services/create_u_pn_pacl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/create_u_pn_pacl.py -------------------------------------------------------------------------------- /py/pfapi/api/services/delete_acb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/delete_acb.py -------------------------------------------------------------------------------- /py/pfapi/api/services/delete_ndp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/delete_ndp.py -------------------------------------------------------------------------------- /py/pfapi/api/services/delete_ndp_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/delete_ndp_table.py -------------------------------------------------------------------------------- /py/pfapi/api/services/delete_u_pn_pacl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/delete_u_pn_pacl.py -------------------------------------------------------------------------------- /py/pfapi/api/services/get_acb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/get_acb.py -------------------------------------------------------------------------------- /py/pfapi/api/services/get_acb_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/get_acb_config.py -------------------------------------------------------------------------------- /py/pfapi/api/services/get_acb_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/get_acb_list.py -------------------------------------------------------------------------------- /py/pfapi/api/services/get_carp_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/get_carp_status.py -------------------------------------------------------------------------------- /py/pfapi/api/services/get_dhcp_leases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/get_dhcp_leases.py -------------------------------------------------------------------------------- /py/pfapi/api/services/get_dhcpd_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/get_dhcpd_config.py -------------------------------------------------------------------------------- /py/pfapi/api/services/get_igmp_proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/get_igmp_proxies.py -------------------------------------------------------------------------------- /py/pfapi/api/services/get_ndp_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/get_ndp_table.py -------------------------------------------------------------------------------- /py/pfapi/api/services/get_ntp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/get_ntp.py -------------------------------------------------------------------------------- /py/pfapi/api/services/get_ntp_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/get_ntp_status.py -------------------------------------------------------------------------------- /py/pfapi/api/services/get_pp_po_e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/get_pp_po_e.py -------------------------------------------------------------------------------- /py/pfapi/api/services/get_rfc_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/get_rfc_config.py -------------------------------------------------------------------------------- /py/pfapi/api/services/get_snmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/get_snmp.py -------------------------------------------------------------------------------- /py/pfapi/api/services/get_u_pn_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/get_u_pn_p.py -------------------------------------------------------------------------------- /py/pfapi/api/services/restore_acb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/restore_acb.py -------------------------------------------------------------------------------- /py/pfapi/api/services/save_acb_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/save_acb_config.py -------------------------------------------------------------------------------- /py/pfapi/api/services/services_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/services_action.py -------------------------------------------------------------------------------- /py/pfapi/api/services/set_carp_enabled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/set_carp_enabled.py -------------------------------------------------------------------------------- /py/pfapi/api/services/set_dhcpd_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/set_dhcpd_config.py -------------------------------------------------------------------------------- /py/pfapi/api/services/set_igmp_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/set_igmp_proxy.py -------------------------------------------------------------------------------- /py/pfapi/api/services/set_ntp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/set_ntp.py -------------------------------------------------------------------------------- /py/pfapi/api/services/set_pp_po_e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/set_pp_po_e.py -------------------------------------------------------------------------------- /py/pfapi/api/services/set_snmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/set_snmp.py -------------------------------------------------------------------------------- /py/pfapi/api/services/set_u_pn_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/set_u_pn_p.py -------------------------------------------------------------------------------- /py/pfapi/api/services/stop_ntp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/stop_ntp.py -------------------------------------------------------------------------------- /py/pfapi/api/services/toggle_upnp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/services/toggle_upnp.py -------------------------------------------------------------------------------- /py/pfapi/api/system/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains endpoint functions for accessing the API""" 2 | -------------------------------------------------------------------------------- /py/pfapi/api/system/activate_bootenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/activate_bootenv.py -------------------------------------------------------------------------------- /py/pfapi/api/system/add_auth_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/add_auth_server.py -------------------------------------------------------------------------------- /py/pfapi/api/system/add_cert_authority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/add_cert_authority.py -------------------------------------------------------------------------------- /py/pfapi/api/system/add_certificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/add_certificate.py -------------------------------------------------------------------------------- /py/pfapi/api/system/add_crl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/add_crl.py -------------------------------------------------------------------------------- /py/pfapi/api/system/add_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/add_gateway.py -------------------------------------------------------------------------------- /py/pfapi/api/system/add_gateway_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/add_gateway_group.py -------------------------------------------------------------------------------- /py/pfapi/api/system/add_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/add_group.py -------------------------------------------------------------------------------- /py/pfapi/api/system/add_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/add_user.py -------------------------------------------------------------------------------- /py/pfapi/api/system/apply_dirty_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/apply_dirty_config.py -------------------------------------------------------------------------------- /py/pfapi/api/system/create_bootenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/create_bootenv.py -------------------------------------------------------------------------------- /py/pfapi/api/system/delete_auth_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/delete_auth_server.py -------------------------------------------------------------------------------- /py/pfapi/api/system/delete_bootenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/delete_bootenv.py -------------------------------------------------------------------------------- /py/pfapi/api/system/delete_bootenvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/delete_bootenvs.py -------------------------------------------------------------------------------- /py/pfapi/api/system/delete_certificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/delete_certificate.py -------------------------------------------------------------------------------- /py/pfapi/api/system/delete_crl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/delete_crl.py -------------------------------------------------------------------------------- /py/pfapi/api/system/delete_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/delete_gateway.py -------------------------------------------------------------------------------- /py/pfapi/api/system/delete_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/delete_group.py -------------------------------------------------------------------------------- /py/pfapi/api/system/delete_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/delete_route.py -------------------------------------------------------------------------------- /py/pfapi/api/system/delete_tunable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/delete_tunable.py -------------------------------------------------------------------------------- /py/pfapi/api/system/delete_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/delete_user.py -------------------------------------------------------------------------------- /py/pfapi/api/system/do_filter_reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/do_filter_reload.py -------------------------------------------------------------------------------- /py/pfapi/api/system/do_filter_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/do_filter_sync.py -------------------------------------------------------------------------------- /py/pfapi/api/system/download_ca_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/download_ca_cert.py -------------------------------------------------------------------------------- /py/pfapi/api/system/download_ca_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/download_ca_key.py -------------------------------------------------------------------------------- /py/pfapi/api/system/download_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/download_cert.py -------------------------------------------------------------------------------- /py/pfapi/api/system/download_cert_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/download_cert_key.py -------------------------------------------------------------------------------- /py/pfapi/api/system/download_cert_p12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/download_cert_p12.py -------------------------------------------------------------------------------- /py/pfapi/api/system/download_crl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/download_crl.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_avail_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_avail_packages.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_bootenvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_bootenvs.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_cert_authority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_cert_authority.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_cert_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_cert_key.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_cert_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_cert_options.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_cert_p12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_cert_p12.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_certificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_certificate.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_certificates.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_cr_ls_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_cr_ls_list.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_crl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_crl.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_firmware.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_gateway_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_gateway_groups.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_gateways.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_gateways.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_if_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_if_stats.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_initial_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_initial_setup.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_ip_sec_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_ip_sec_widget.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_logs.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_queue_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_queue_stats.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_setup.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_setup_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_setup_wizard.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_static_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_static_routes.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_status.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_syslog_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_syslog_config.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_system_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_system_summary.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_tunables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_tunables.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_user_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_user_groups.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_users.py -------------------------------------------------------------------------------- /py/pfapi/api/system/get_users_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/get_users_config.py -------------------------------------------------------------------------------- /py/pfapi/api/system/install_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/install_packages.py -------------------------------------------------------------------------------- /py/pfapi/api/system/quick_bootenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/quick_bootenv.py -------------------------------------------------------------------------------- /py/pfapi/api/system/reinstall_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/reinstall_packages.py -------------------------------------------------------------------------------- /py/pfapi/api/system/remove_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/remove_package.py -------------------------------------------------------------------------------- /py/pfapi/api/system/renew_ca_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/renew_ca_cert.py -------------------------------------------------------------------------------- /py/pfapi/api/system/renew_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/renew_cert.py -------------------------------------------------------------------------------- /py/pfapi/api/system/reset_log_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/reset_log_files.py -------------------------------------------------------------------------------- /py/pfapi/api/system/save_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/save_setup.py -------------------------------------------------------------------------------- /py/pfapi/api/system/save_setup_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/save_setup_wizard.py -------------------------------------------------------------------------------- /py/pfapi/api/system/set_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/set_gateway.py -------------------------------------------------------------------------------- /py/pfapi/api/system/set_static_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/set_static_route.py -------------------------------------------------------------------------------- /py/pfapi/api/system/set_tunable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/set_tunable.py -------------------------------------------------------------------------------- /py/pfapi/api/system/unrevoke_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/unrevoke_cert.py -------------------------------------------------------------------------------- /py/pfapi/api/system/update_auth_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/update_auth_server.py -------------------------------------------------------------------------------- /py/pfapi/api/system/update_bootenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/update_bootenv.py -------------------------------------------------------------------------------- /py/pfapi/api/system/update_certificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/update_certificate.py -------------------------------------------------------------------------------- /py/pfapi/api/system/update_crl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/update_crl.py -------------------------------------------------------------------------------- /py/pfapi/api/system/update_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/update_group.py -------------------------------------------------------------------------------- /py/pfapi/api/system/update_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/update_user.py -------------------------------------------------------------------------------- /py/pfapi/api/system/upgrade_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/system/upgrade_firmware.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains endpoint functions for accessing the API""" 2 | -------------------------------------------------------------------------------- /py/pfapi/api/vpn/connect_ip_sec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/connect_ip_sec.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/delete_ip_sec_phase_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/delete_ip_sec_phase_1.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/delete_ip_sec_phase_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/delete_ip_sec_phase_2.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/delete_open_vpncso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/delete_open_vpncso.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/disconnect_ip_sec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/disconnect_ip_sec.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/get_ip_sec_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/get_ip_sec_client.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/get_ip_sec_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/get_ip_sec_config.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/get_ip_sec_phases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/get_ip_sec_phases.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/get_ip_sec_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/get_ip_sec_status.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/get_l2tp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/get_l2tp.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/get_new_ip_sec_psk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/get_new_ip_sec_psk.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/get_open_vpn_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/get_open_vpn_client.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/get_open_vpn_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/get_open_vpn_clients.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/get_open_vpn_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/get_open_vpn_server.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/get_open_vpn_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/get_open_vpn_servers.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/get_open_vpn_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/get_open_vpn_status.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/get_open_vpncs_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/get_open_vpncs_os.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/get_open_vpncso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/get_open_vpncso.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/get_wire_guard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/get_wire_guard.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/get_wire_guard_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/get_wire_guard_status.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/kill_client_open_vpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/kill_client_open_vpn.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/set_ip_sec_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/set_ip_sec_client.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/set_ip_sec_mobile_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/set_ip_sec_mobile_key.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/set_ip_sec_phase_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/set_ip_sec_phase_1.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/set_ip_sec_phase_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/set_ip_sec_phase_2.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/set_open_vpn_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/set_open_vpn_client.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/set_open_vpn_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/set_open_vpn_server.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/set_open_vpncso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/set_open_vpncso.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/set_wire_guard_peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/set_wire_guard_peer.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/set_wire_guard_tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/set_wire_guard_tunnel.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/update_ip_sec_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/update_ip_sec_config.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/update_ip_sec_phase_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/update_ip_sec_phase_1.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/update_ip_sec_phase_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/update_ip_sec_phase_2.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/update_l2tp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/update_l2tp.py -------------------------------------------------------------------------------- /py/pfapi/api/vpn/update_open_vpncso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/api/vpn/update_open_vpncso.py -------------------------------------------------------------------------------- /py/pfapi/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/client.py -------------------------------------------------------------------------------- /py/pfapi/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/errors.py -------------------------------------------------------------------------------- /py/pfapi/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/__init__.py -------------------------------------------------------------------------------- /py/pfapi/models/acb_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/acb_backup.py -------------------------------------------------------------------------------- /py/pfapi/models/acb_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/acb_config.py -------------------------------------------------------------------------------- /py/pfapi/models/acb_config_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/acb_config_info.py -------------------------------------------------------------------------------- /py/pfapi/models/acb_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/acb_list.py -------------------------------------------------------------------------------- /py/pfapi/models/acb_restore_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/acb_restore_request.py -------------------------------------------------------------------------------- /py/pfapi/models/activate_bootenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/activate_bootenv.py -------------------------------------------------------------------------------- /py/pfapi/models/admin_login_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/admin_login_session.py -------------------------------------------------------------------------------- /py/pfapi/models/adv_firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/adv_firewall.py -------------------------------------------------------------------------------- /py/pfapi/models/adv_firewall_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/adv_firewall_setting.py -------------------------------------------------------------------------------- /py/pfapi/models/adv_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/adv_misc.py -------------------------------------------------------------------------------- /py/pfapi/models/adv_misc_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/adv_misc_setting.py -------------------------------------------------------------------------------- /py/pfapi/models/adv_network_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/adv_network_setting.py -------------------------------------------------------------------------------- /py/pfapi/models/adv_networking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/adv_networking.py -------------------------------------------------------------------------------- /py/pfapi/models/adv_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/adv_notifications.py -------------------------------------------------------------------------------- /py/pfapi/models/all_software_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/all_software_packages.py -------------------------------------------------------------------------------- /py/pfapi/models/altq_capable_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/altq_capable_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/altq_child_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/altq_child_queue.py -------------------------------------------------------------------------------- /py/pfapi/models/altq_root_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/altq_root_queue.py -------------------------------------------------------------------------------- /py/pfapi/models/altq_root_queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/altq_root_queues.py -------------------------------------------------------------------------------- /py/pfapi/models/app_mem_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/app_mem_stat.py -------------------------------------------------------------------------------- /py/pfapi/models/arp_table_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/arp_table_entry.py -------------------------------------------------------------------------------- /py/pfapi/models/auth_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/auth_server.py -------------------------------------------------------------------------------- /py/pfapi/models/auth_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/auth_servers.py -------------------------------------------------------------------------------- /py/pfapi/models/auth_servers_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/auth_servers_list.py -------------------------------------------------------------------------------- /py/pfapi/models/auth_test_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/auth_test_credentials.py -------------------------------------------------------------------------------- /py/pfapi/models/auth_test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/auth_test_result.py -------------------------------------------------------------------------------- /py/pfapi/models/boot_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/boot_envs.py -------------------------------------------------------------------------------- /py/pfapi/models/boot_envs_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/boot_envs_envs.py -------------------------------------------------------------------------------- /py/pfapi/models/bootenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/bootenv.py -------------------------------------------------------------------------------- /py/pfapi/models/bridge_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/bridge_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/bridge_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/bridge_interfaces.py -------------------------------------------------------------------------------- /py/pfapi/models/ca_cert_method_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ca_cert_method_new.py -------------------------------------------------------------------------------- /py/pfapi/models/captive_allowed_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/captive_allowed_host.py -------------------------------------------------------------------------------- /py/pfapi/models/captive_allowed_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/captive_allowed_ip.py -------------------------------------------------------------------------------- /py/pfapi/models/captive_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/captive_element.py -------------------------------------------------------------------------------- /py/pfapi/models/captive_passthru_mac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/captive_passthru_mac.py -------------------------------------------------------------------------------- /py/pfapi/models/captive_portal_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/captive_portal_config.py -------------------------------------------------------------------------------- /py/pfapi/models/captive_portal_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/captive_portal_info.py -------------------------------------------------------------------------------- /py/pfapi/models/captive_portal_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/captive_portal_name.py -------------------------------------------------------------------------------- /py/pfapi/models/captive_portal_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/captive_portal_status.py -------------------------------------------------------------------------------- /py/pfapi/models/captive_portals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/captive_portals.py -------------------------------------------------------------------------------- /py/pfapi/models/carp_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/carp_status.py -------------------------------------------------------------------------------- /py/pfapi/models/carpvip_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/carpvip_status.py -------------------------------------------------------------------------------- /py/pfapi/models/cert_alt_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/cert_alt_name.py -------------------------------------------------------------------------------- /py/pfapi/models/cert_authorities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/cert_authorities.py -------------------------------------------------------------------------------- /py/pfapi/models/cert_authority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/cert_authority.py -------------------------------------------------------------------------------- /py/pfapi/models/cert_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/cert_config.py -------------------------------------------------------------------------------- /py/pfapi/models/cert_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/cert_info.py -------------------------------------------------------------------------------- /py/pfapi/models/cert_key_export_opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/cert_key_export_opts.py -------------------------------------------------------------------------------- /py/pfapi/models/cert_method_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/cert_method_new.py -------------------------------------------------------------------------------- /py/pfapi/models/cert_method_sign_csr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/cert_method_sign_csr.py -------------------------------------------------------------------------------- /py/pfapi/models/cert_opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/cert_opts.py -------------------------------------------------------------------------------- /py/pfapi/models/certificate_detailed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/certificate_detailed.py -------------------------------------------------------------------------------- /py/pfapi/models/certs_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/certs_config.py -------------------------------------------------------------------------------- /py/pfapi/models/check_ip_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/check_ip_service.py -------------------------------------------------------------------------------- /py/pfapi/models/check_ip_services_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/check_ip_services_list.py -------------------------------------------------------------------------------- /py/pfapi/models/config_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/config_event.py -------------------------------------------------------------------------------- /py/pfapi/models/console_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/console_client.py -------------------------------------------------------------------------------- /py/pfapi/models/console_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/console_clients.py -------------------------------------------------------------------------------- /py/pfapi/models/controlled_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/controlled_device.py -------------------------------------------------------------------------------- /py/pfapi/models/controlled_device_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/controlled_device_auth.py -------------------------------------------------------------------------------- /py/pfapi/models/controlled_device_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/controlled_device_cert.py -------------------------------------------------------------------------------- /py/pfapi/models/controlled_device_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/controlled_device_info.py -------------------------------------------------------------------------------- /py/pfapi/models/controlled_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/controlled_devices.py -------------------------------------------------------------------------------- /py/pfapi/models/controller_alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/controller_alarm.py -------------------------------------------------------------------------------- /py/pfapi/models/controller_alarms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/controller_alarms.py -------------------------------------------------------------------------------- /py/pfapi/models/controller_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/controller_backup.py -------------------------------------------------------------------------------- /py/pfapi/models/controller_backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/controller_backups.py -------------------------------------------------------------------------------- /py/pfapi/models/controller_descrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/controller_descrip.py -------------------------------------------------------------------------------- /py/pfapi/models/controller_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/controller_identity.py -------------------------------------------------------------------------------- /py/pfapi/models/controller_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/controller_info.py -------------------------------------------------------------------------------- /py/pfapi/models/controller_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/controller_stats.py -------------------------------------------------------------------------------- /py/pfapi/models/controller_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/controller_summary.py -------------------------------------------------------------------------------- /py/pfapi/models/controllers_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/controllers_list.py -------------------------------------------------------------------------------- /py/pfapi/models/create_bootenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/create_bootenv.py -------------------------------------------------------------------------------- /py/pfapi/models/create_u_pn_pacl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/create_u_pn_pacl.py -------------------------------------------------------------------------------- /py/pfapi/models/crl_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/crl_cert.py -------------------------------------------------------------------------------- /py/pfapi/models/crl_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/crl_config.py -------------------------------------------------------------------------------- /py/pfapi/models/crl_config_pkgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/crl_config_pkgs.py -------------------------------------------------------------------------------- /py/pfapi/models/crl_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/crl_entries.py -------------------------------------------------------------------------------- /py/pfapi/models/crl_method_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/crl_method_new.py -------------------------------------------------------------------------------- /py/pfapi/models/crl_method_x509.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/crl_method_x509.py -------------------------------------------------------------------------------- /py/pfapi/models/crl_package_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/crl_package_info.py -------------------------------------------------------------------------------- /py/pfapi/models/delete_bootenvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/delete_bootenvs.py -------------------------------------------------------------------------------- /py/pfapi/models/delete_firewall_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/delete_firewall_rule.py -------------------------------------------------------------------------------- /py/pfapi/models/device_basic_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/device_basic_info.py -------------------------------------------------------------------------------- /py/pfapi/models/device_controller_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/device_controller_info.py -------------------------------------------------------------------------------- /py/pfapi/models/device_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/device_identity.py -------------------------------------------------------------------------------- /py/pfapi/models/device_network_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/device_network_port.py -------------------------------------------------------------------------------- /py/pfapi/models/device_service_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/device_service_basic.py -------------------------------------------------------------------------------- /py/pfapi/models/device_tag_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/device_tag_option.py -------------------------------------------------------------------------------- /py/pfapi/models/device_vpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/device_vpn.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_address_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_address_pool.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_address_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_address_pools.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_advanced_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_advanced_options.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_global_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_global_settings.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_interface_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_interface_config.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_interfaces.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_lease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_lease.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_lease_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_lease_ip.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_leases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_leases.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_network_booting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_network_booting.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_range.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_relay_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_relay_config.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_relay_toggle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_relay_toggle.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_service_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_service_config.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_static_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_static_mapping.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcp_static_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcp_static_mappings.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcpd.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcpd_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcpd_config.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcpd_lan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcpd_lan.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcpha_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcpha_state.py -------------------------------------------------------------------------------- /py/pfapi/models/dhcpv_6_static_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dhcpv_6_static_mapping.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_activity.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_arp_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_arp_table.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_auth_server_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_auth_server_list.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_auth_test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_auth_test_request.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_auth_test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_auth_test_result.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_backup_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_backup_diff.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_backup_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_backup_info.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_backup_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_backup_request.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_command_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_command_result.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_dns_lookup_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_dns_lookup_result.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_dns_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_dns_record.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_dns_server_timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_dns_server_timing.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_limiters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_limiters.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_php_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_php_command.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_ping_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_ping_request.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_ping_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_ping_response.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_prior_backup_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_prior_backup_info.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_routes.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_shell_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_shell_command.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_socket_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_socket_stats.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_state.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_states.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_table.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_table_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_table_action.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_table_detailed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_table_detailed.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_tables.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_upload_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_upload_request.py -------------------------------------------------------------------------------- /py/pfapi/models/diag_upload_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/diag_upload_result.py -------------------------------------------------------------------------------- /py/pfapi/models/dimm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dimm.py -------------------------------------------------------------------------------- /py/pfapi/models/dirty_subsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dirty_subsystem.py -------------------------------------------------------------------------------- /py/pfapi/models/dirty_subsystems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dirty_subsystems.py -------------------------------------------------------------------------------- /py/pfapi/models/disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/disks.py -------------------------------------------------------------------------------- /py/pfapi/models/dns_alias_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dns_alias_request.py -------------------------------------------------------------------------------- /py/pfapi/models/dns_forwarder_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dns_forwarder_alias.py -------------------------------------------------------------------------------- /py/pfapi/models/dns_forwarder_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dns_forwarder_config.py -------------------------------------------------------------------------------- /py/pfapi/models/dns_forwarder_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dns_forwarder_domain.py -------------------------------------------------------------------------------- /py/pfapi/models/dns_forwarder_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dns_forwarder_host.py -------------------------------------------------------------------------------- /py/pfapi/models/dns_resolver_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dns_resolver_config.py -------------------------------------------------------------------------------- /py/pfapi/models/dns_resolver_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dns_resolver_domain.py -------------------------------------------------------------------------------- /py/pfapi/models/dns_resolver_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dns_resolver_status.py -------------------------------------------------------------------------------- /py/pfapi/models/dnsacl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dnsacl.py -------------------------------------------------------------------------------- /py/pfapi/models/dnsacl_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dnsacl_network.py -------------------------------------------------------------------------------- /py/pfapi/models/dyn_dns_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dyn_dns_config.py -------------------------------------------------------------------------------- /py/pfapi/models/dyn_dns_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/dyn_dns_list.py -------------------------------------------------------------------------------- /py/pfapi/models/edit_file_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/edit_file_data.py -------------------------------------------------------------------------------- /py/pfapi/models/edit_file_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/edit_file_req.py -------------------------------------------------------------------------------- /py/pfapi/models/encryption_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/encryption_algorithm.py -------------------------------------------------------------------------------- /py/pfapi/models/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/error.py -------------------------------------------------------------------------------- /py/pfapi/models/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/event.py -------------------------------------------------------------------------------- /py/pfapi/models/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/events.py -------------------------------------------------------------------------------- /py/pfapi/models/filter_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/filter_log.py -------------------------------------------------------------------------------- /py/pfapi/models/filter_log_carp_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/filter_log_carp_info.py -------------------------------------------------------------------------------- /py/pfapi/models/filter_log_icmp_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/filter_log_icmp_info.py -------------------------------------------------------------------------------- /py/pfapi/models/filter_log_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/filter_log_summary.py -------------------------------------------------------------------------------- /py/pfapi/models/filter_log_tcp_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/filter_log_tcp_info.py -------------------------------------------------------------------------------- /py/pfapi/models/filter_reload_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/filter_reload_status.py -------------------------------------------------------------------------------- /py/pfapi/models/filter_separator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/filter_separator.py -------------------------------------------------------------------------------- /py/pfapi/models/firewall_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/firewall_event.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_addr_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_addr_alias.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_addr_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_addr_port.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_alias.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_alias_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_alias_req.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_alias_req_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_alias_req_type.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_alias_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_alias_type.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_aliases.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_bogon_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_bogon_rule.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_bogon_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_bogon_state.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_bulk_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_bulk_copy.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_bulk_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_bulk_delete.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_bulk_toggle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_bulk_toggle.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_filter_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_filter_rule.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_filter_rule_nat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_filter_rule_nat.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_firewall_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_firewall_interfaces.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_rule_item_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_rule_item_order.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_rule_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_rule_list.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_rule_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_rule_state.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_rule_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_rule_states.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_rule_toggle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_rule_toggle.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_rules.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_rules_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_rules_aliases.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_rules_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_rules_entry.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_rules_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_rules_order.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_schedule.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_schedule_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_schedule_range.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_schedules.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_single_filter_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_single_filter_rule.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_single_rule_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_single_rule_states.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_system_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_system_alias.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_target.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_toggle_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_toggle_result.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_update_alias_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_update_alias_req.py -------------------------------------------------------------------------------- /py/pfapi/models/fw_user_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/fw_user_timestamp.py -------------------------------------------------------------------------------- /py/pfapi/models/gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gateway.py -------------------------------------------------------------------------------- /py/pfapi/models/gateway_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gateway_defaults.py -------------------------------------------------------------------------------- /py/pfapi/models/gateway_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gateway_group.py -------------------------------------------------------------------------------- /py/pfapi/models/gateway_group_priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gateway_group_priority.py -------------------------------------------------------------------------------- /py/pfapi/models/gateway_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gateway_groups.py -------------------------------------------------------------------------------- /py/pfapi/models/gateway_p_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gateway_p_info.py -------------------------------------------------------------------------------- /py/pfapi/models/gateway_priorities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gateway_priorities.py -------------------------------------------------------------------------------- /py/pfapi/models/gateway_priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gateway_priority.py -------------------------------------------------------------------------------- /py/pfapi/models/gateway_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gateway_status.py -------------------------------------------------------------------------------- /py/pfapi/models/gateway_v_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gateway_v_address.py -------------------------------------------------------------------------------- /py/pfapi/models/gateways.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gateways.py -------------------------------------------------------------------------------- /py/pfapi/models/gateways_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gateways_status.py -------------------------------------------------------------------------------- /py/pfapi/models/gif_capable_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gif_capable_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/gif_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gif_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/gif_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gif_interfaces.py -------------------------------------------------------------------------------- /py/pfapi/models/gre_capable_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gre_capable_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/gre_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gre_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/gre_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/gre_interfaces.py -------------------------------------------------------------------------------- /py/pfapi/models/group_add_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/group_add_req.py -------------------------------------------------------------------------------- /py/pfapi/models/group_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/group_status.py -------------------------------------------------------------------------------- /py/pfapi/models/group_update_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/group_update_req.py -------------------------------------------------------------------------------- /py/pfapi/models/ha_pfsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ha_pfsync.py -------------------------------------------------------------------------------- /py/pfapi/models/ha_sync_opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ha_sync_opts.py -------------------------------------------------------------------------------- /py/pfapi/models/haxmlrpc_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/haxmlrpc_sync.py -------------------------------------------------------------------------------- /py/pfapi/models/hw_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/hw_device.py -------------------------------------------------------------------------------- /py/pfapi/models/hw_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/hw_devices.py -------------------------------------------------------------------------------- /py/pfapi/models/if_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/if_stats.py -------------------------------------------------------------------------------- /py/pfapi/models/if_stats_bandwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/if_stats_bandwidth.py -------------------------------------------------------------------------------- /py/pfapi/models/if_stats_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/if_stats_summary.py -------------------------------------------------------------------------------- /py/pfapi/models/igmp_proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/igmp_proxies.py -------------------------------------------------------------------------------- /py/pfapi/models/igmp_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/igmp_proxy.py -------------------------------------------------------------------------------- /py/pfapi/models/igmp_proxy_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/igmp_proxy_settings.py -------------------------------------------------------------------------------- /py/pfapi/models/initial_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/initial_setup.py -------------------------------------------------------------------------------- /py/pfapi/models/insert_filter_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/insert_filter_rule.py -------------------------------------------------------------------------------- /py/pfapi/models/install_package_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/install_package_opt.py -------------------------------------------------------------------------------- /py/pfapi/models/install_packages_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/install_packages_opt.py -------------------------------------------------------------------------------- /py/pfapi/models/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/interface.py -------------------------------------------------------------------------------- /py/pfapi/models/interface_assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/interface_assignments.py -------------------------------------------------------------------------------- /py/pfapi/models/interface_descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/interface_descriptors.py -------------------------------------------------------------------------------- /py/pfapi/models/interface_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/interface_event.py -------------------------------------------------------------------------------- /py/pfapi/models/interface_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/interface_group.py -------------------------------------------------------------------------------- /py/pfapi/models/interface_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/interface_groups.py -------------------------------------------------------------------------------- /py/pfapi/models/interface_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/interface_info.py -------------------------------------------------------------------------------- /py/pfapi/models/interface_info_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/interface_info_list.py -------------------------------------------------------------------------------- /py/pfapi/models/interface_ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/interface_ports.py -------------------------------------------------------------------------------- /py/pfapi/models/interface_ports_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/interface_ports_lists.py -------------------------------------------------------------------------------- /py/pfapi/models/interface_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/interface_simple.py -------------------------------------------------------------------------------- /py/pfapi/models/interface_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/interface_widgets.py -------------------------------------------------------------------------------- /py/pfapi/models/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/interfaces.py -------------------------------------------------------------------------------- /py/pfapi/models/interfaces_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/interfaces_simple.py -------------------------------------------------------------------------------- /py/pfapi/models/interfaces_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/interfaces_widget.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_bypass_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_bypass_rule.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_bypass_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_bypass_rules.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_child_sas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_child_sas.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_client.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_client_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_client_config.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_client_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_client_group.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_client_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_client_groups.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_config.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_connect_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_connect_req.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_disconnect_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_disconnect_req.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_ikesa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_ikesa.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_logging.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_mobile_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_mobile_key.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_mobile_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_mobile_keys.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_phase_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_phase_list.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_pool.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_pool_lease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_pool_lease.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_psk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_psk.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_sad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_sad.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_spd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_spd.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_status.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_status_overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_status_overview.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_widget.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_widget_mobile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_widget_mobile.py -------------------------------------------------------------------------------- /py/pfapi/models/ip_sec_widget_tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ip_sec_widget_tunnel.py -------------------------------------------------------------------------------- /py/pfapi/models/l2tp_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/l2tp_config.py -------------------------------------------------------------------------------- /py/pfapi/models/l2tp_radius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/l2tp_radius.py -------------------------------------------------------------------------------- /py/pfapi/models/l2tp_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/l2tp_settings.py -------------------------------------------------------------------------------- /py/pfapi/models/l2tp_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/l2tp_user.py -------------------------------------------------------------------------------- /py/pfapi/models/lagg_capable_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/lagg_capable_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/lagg_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/lagg_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/lagg_interface_proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/lagg_interface_proto.py -------------------------------------------------------------------------------- /py/pfapi/models/lagg_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/lagg_interfaces.py -------------------------------------------------------------------------------- /py/pfapi/models/ldap_auth_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ldap_auth_server.py -------------------------------------------------------------------------------- /py/pfapi/models/lease_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/lease_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/license_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/license_feature.py -------------------------------------------------------------------------------- /py/pfapi/models/license_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/license_key.py -------------------------------------------------------------------------------- /py/pfapi/models/limiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/limiter.py -------------------------------------------------------------------------------- /py/pfapi/models/limiter_aqm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/limiter_aqm.py -------------------------------------------------------------------------------- /py/pfapi/models/limiter_bandwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/limiter_bandwidth.py -------------------------------------------------------------------------------- /py/pfapi/models/limiter_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/limiter_info.py -------------------------------------------------------------------------------- /py/pfapi/models/limiter_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/limiter_mask.py -------------------------------------------------------------------------------- /py/pfapi/models/limiter_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/limiter_queue.py -------------------------------------------------------------------------------- /py/pfapi/models/limiter_queue_aqm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/limiter_queue_aqm.py -------------------------------------------------------------------------------- /py/pfapi/models/limiter_queue_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/limiter_queue_mask.py -------------------------------------------------------------------------------- /py/pfapi/models/limiter_sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/limiter_sched.py -------------------------------------------------------------------------------- /py/pfapi/models/limiters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/limiters.py -------------------------------------------------------------------------------- /py/pfapi/models/load_avg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/load_avg.py -------------------------------------------------------------------------------- /py/pfapi/models/local_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/local_server.py -------------------------------------------------------------------------------- /py/pfapi/models/log_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/log_entries.py -------------------------------------------------------------------------------- /py/pfapi/models/log_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/log_entry.py -------------------------------------------------------------------------------- /py/pfapi/models/log_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/log_stats.py -------------------------------------------------------------------------------- /py/pfapi/models/login_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/login_credentials.py -------------------------------------------------------------------------------- /py/pfapi/models/login_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/login_response.py -------------------------------------------------------------------------------- /py/pfapi/models/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/memory.py -------------------------------------------------------------------------------- /py/pfapi/models/memory_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/memory_map.py -------------------------------------------------------------------------------- /py/pfapi/models/memory_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/memory_stat.py -------------------------------------------------------------------------------- /py/pfapi/models/mesh_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/mesh_stats.py -------------------------------------------------------------------------------- /py/pfapi/models/mesh_vpn_conns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/mesh_vpn_conns.py -------------------------------------------------------------------------------- /py/pfapi/models/mim_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/mim_tags.py -------------------------------------------------------------------------------- /py/pfapi/models/mim_tags_dev_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/mim_tags_dev_list.py -------------------------------------------------------------------------------- /py/pfapi/models/mim_tags_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/mim_tags_tags.py -------------------------------------------------------------------------------- /py/pfapi/models/monitoring_data_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/monitoring_data_result.py -------------------------------------------------------------------------------- /py/pfapi/models/monitoring_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/monitoring_datasets.py -------------------------------------------------------------------------------- /py/pfapi/models/name_descr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/name_descr.py -------------------------------------------------------------------------------- /py/pfapi/models/nat1_to_1_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat1_to_1_rule.py -------------------------------------------------------------------------------- /py/pfapi/models/nat1_to_1_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat1_to_1_rules.py -------------------------------------------------------------------------------- /py/pfapi/models/nat_addr_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat_addr_port.py -------------------------------------------------------------------------------- /py/pfapi/models/nat_auto_addr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat_auto_addr.py -------------------------------------------------------------------------------- /py/pfapi/models/nat_auto_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat_auto_rule.py -------------------------------------------------------------------------------- /py/pfapi/models/nat_npt_addr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat_npt_addr.py -------------------------------------------------------------------------------- /py/pfapi/models/nat_npt_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat_npt_rule.py -------------------------------------------------------------------------------- /py/pfapi/models/nat_npt_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat_npt_rules.py -------------------------------------------------------------------------------- /py/pfapi/models/nat_npt_update_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat_npt_update_result.py -------------------------------------------------------------------------------- /py/pfapi/models/nat_outbound_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat_outbound_mode.py -------------------------------------------------------------------------------- /py/pfapi/models/nat_outbound_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat_outbound_rule.py -------------------------------------------------------------------------------- /py/pfapi/models/nat_outbound_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat_outbound_rules.py -------------------------------------------------------------------------------- /py/pfapi/models/nat_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat_rule.py -------------------------------------------------------------------------------- /py/pfapi/models/nat_rule_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat_rule_order.py -------------------------------------------------------------------------------- /py/pfapi/models/nat_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat_rules.py -------------------------------------------------------------------------------- /py/pfapi/models/nat_rules_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat_rules_entry.py -------------------------------------------------------------------------------- /py/pfapi/models/nat_update_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nat_update_result.py -------------------------------------------------------------------------------- /py/pfapi/models/ndp_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ndp_entry.py -------------------------------------------------------------------------------- /py/pfapi/models/ndp_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ndp_table.py -------------------------------------------------------------------------------- /py/pfapi/models/net_if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/net_if.py -------------------------------------------------------------------------------- /py/pfapi/models/net_if_addr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/net_if_addr.py -------------------------------------------------------------------------------- /py/pfapi/models/net_if_dev_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/net_if_dev_config.py -------------------------------------------------------------------------------- /py/pfapi/models/net_if_dhcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/net_if_dhcp.py -------------------------------------------------------------------------------- /py/pfapi/models/net_if_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/net_if_info.py -------------------------------------------------------------------------------- /py/pfapi/models/net_if_ipv_6rd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/net_if_ipv_6rd.py -------------------------------------------------------------------------------- /py/pfapi/models/net_if_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/net_if_options.py -------------------------------------------------------------------------------- /py/pfapi/models/net_if_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/net_if_owner.py -------------------------------------------------------------------------------- /py/pfapi/models/net_if_owner_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/net_if_owner_container.py -------------------------------------------------------------------------------- /py/pfapi/models/net_if_owner_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/net_if_owner_host.py -------------------------------------------------------------------------------- /py/pfapi/models/net_if_owner_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/net_if_owner_vm.py -------------------------------------------------------------------------------- /py/pfapi/models/net_if_owner_vpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/net_if_owner_vpp.py -------------------------------------------------------------------------------- /py/pfapi/models/net_ifs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/net_ifs.py -------------------------------------------------------------------------------- /py/pfapi/models/netif_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/netif_status.py -------------------------------------------------------------------------------- /py/pfapi/models/new_ca_cert_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/new_ca_cert_req.py -------------------------------------------------------------------------------- /py/pfapi/models/new_cert_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/new_cert_req.py -------------------------------------------------------------------------------- /py/pfapi/models/new_crl_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/new_crl_req.py -------------------------------------------------------------------------------- /py/pfapi/models/new_interface_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/new_interface_result.py -------------------------------------------------------------------------------- /py/pfapi/models/nexus_controller_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/nexus_controller_info.py -------------------------------------------------------------------------------- /py/pfapi/models/ntp_acls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ntp_acls.py -------------------------------------------------------------------------------- /py/pfapi/models/ntp_gps_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ntp_gps_flags.py -------------------------------------------------------------------------------- /py/pfapi/models/ntp_pps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ntp_pps.py -------------------------------------------------------------------------------- /py/pfapi/models/ntp_pps_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ntp_pps_flags.py -------------------------------------------------------------------------------- /py/pfapi/models/ntp_serial_gps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ntp_serial_gps.py -------------------------------------------------------------------------------- /py/pfapi/models/ntp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ntp_server.py -------------------------------------------------------------------------------- /py/pfapi/models/ntp_server_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ntp_server_info.py -------------------------------------------------------------------------------- /py/pfapi/models/ntp_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ntp_settings.py -------------------------------------------------------------------------------- /py/pfapi/models/ntp_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ntp_status.py -------------------------------------------------------------------------------- /py/pfapi/models/open_vpn_active_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/open_vpn_active_conn.py -------------------------------------------------------------------------------- /py/pfapi/models/open_vpn_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/open_vpn_client.py -------------------------------------------------------------------------------- /py/pfapi/models/open_vpn_client_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/open_vpn_client_config.py -------------------------------------------------------------------------------- /py/pfapi/models/open_vpn_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/open_vpn_clients.py -------------------------------------------------------------------------------- /py/pfapi/models/open_vpn_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/open_vpn_conn.py -------------------------------------------------------------------------------- /py/pfapi/models/open_vpn_next_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/open_vpn_next_port.py -------------------------------------------------------------------------------- /py/pfapi/models/open_vpn_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/open_vpn_route.py -------------------------------------------------------------------------------- /py/pfapi/models/open_vpn_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/open_vpn_server.py -------------------------------------------------------------------------------- /py/pfapi/models/open_vpn_server_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/open_vpn_server_config.py -------------------------------------------------------------------------------- /py/pfapi/models/open_vpn_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/open_vpn_servers.py -------------------------------------------------------------------------------- /py/pfapi/models/open_vpn_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/open_vpn_status.py -------------------------------------------------------------------------------- /py/pfapi/models/open_vpncs_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/open_vpncs_os.py -------------------------------------------------------------------------------- /py/pfapi/models/open_vpncso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/open_vpncso.py -------------------------------------------------------------------------------- /py/pfapi/models/open_vpncso_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/open_vpncso_config.py -------------------------------------------------------------------------------- /py/pfapi/models/os_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/os_socket.py -------------------------------------------------------------------------------- /py/pfapi/models/os_socket_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/os_socket_list.py -------------------------------------------------------------------------------- /py/pfapi/models/os_software_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/os_software_packages.py -------------------------------------------------------------------------------- /py/pfapi/models/p_flow_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/p_flow_exporter.py -------------------------------------------------------------------------------- /py/pfapi/models/p_flow_global_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/p_flow_global_options.py -------------------------------------------------------------------------------- /py/pfapi/models/p_flow_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/p_flow_options.py -------------------------------------------------------------------------------- /py/pfapi/models/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/package.py -------------------------------------------------------------------------------- /py/pfapi/models/package_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/package_status.py -------------------------------------------------------------------------------- /py/pfapi/models/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/packages.py -------------------------------------------------------------------------------- /py/pfapi/models/packet_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/packet_capture.py -------------------------------------------------------------------------------- /py/pfapi/models/packet_capture_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/packet_capture_filter.py -------------------------------------------------------------------------------- /py/pfapi/models/packet_capture_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/packet_capture_request.py -------------------------------------------------------------------------------- /py/pfapi/models/pcap_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/pcap_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/pf_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/pf_info.py -------------------------------------------------------------------------------- /py/pfapi/models/pf_info_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/pf_info_response.py -------------------------------------------------------------------------------- /py/pfapi/models/pfsense_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/pfsense_result.py -------------------------------------------------------------------------------- /py/pfapi/models/pftop_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/pftop_response.py -------------------------------------------------------------------------------- /py/pfapi/models/phase_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/phase_1.py -------------------------------------------------------------------------------- /py/pfapi/models/phase_1_alg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/phase_1_alg.py -------------------------------------------------------------------------------- /py/pfapi/models/phase_1_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/phase_1_encryption.py -------------------------------------------------------------------------------- /py/pfapi/models/phase_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/phase_2.py -------------------------------------------------------------------------------- /py/pfapi/models/phase_2_local_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/phase_2_local_id.py -------------------------------------------------------------------------------- /py/pfapi/models/phase_2_remote_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/phase_2_remote_id.py -------------------------------------------------------------------------------- /py/pfapi/models/physical_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/physical_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/pp_po_e_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/pp_po_e_config.py -------------------------------------------------------------------------------- /py/pfapi/models/pp_po_e_config_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/pp_po_e_config_req.py -------------------------------------------------------------------------------- /py/pfapi/models/pp_po_e_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/pp_po_e_server.py -------------------------------------------------------------------------------- /py/pfapi/models/ppp_capable_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ppp_capable_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/ppp_capable_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ppp_capable_interfaces.py -------------------------------------------------------------------------------- /py/pfapi/models/ppp_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ppp_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/ppp_interface_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ppp_interface_type.py -------------------------------------------------------------------------------- /py/pfapi/models/ppp_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ppp_interfaces.py -------------------------------------------------------------------------------- /py/pfapi/models/ppp_link_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/ppp_link_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/provider_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/provider_country.py -------------------------------------------------------------------------------- /py/pfapi/models/provider_plan_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/provider_plan_setting.py -------------------------------------------------------------------------------- /py/pfapi/models/qin_q_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/qin_q_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/qin_q_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/qin_q_interfaces.py -------------------------------------------------------------------------------- /py/pfapi/models/query_interface_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/query_interface_rules.py -------------------------------------------------------------------------------- /py/pfapi/models/queue_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/queue_stats.py -------------------------------------------------------------------------------- /py/pfapi/models/quick_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/quick_result.py -------------------------------------------------------------------------------- /py/pfapi/models/radius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/radius.py -------------------------------------------------------------------------------- /py/pfapi/models/radius_auth_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/radius_auth_server.py -------------------------------------------------------------------------------- /py/pfapi/models/radius_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/radius_server.py -------------------------------------------------------------------------------- /py/pfapi/models/refresh_token_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/refresh_token_param.py -------------------------------------------------------------------------------- /py/pfapi/models/renew_cert_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/renew_cert_options.py -------------------------------------------------------------------------------- /py/pfapi/models/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/result.py -------------------------------------------------------------------------------- /py/pfapi/models/retrieved_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/retrieved_backup.py -------------------------------------------------------------------------------- /py/pfapi/models/rfc_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/rfc_item.py -------------------------------------------------------------------------------- /py/pfapi/models/rfc_item_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/rfc_item_list.py -------------------------------------------------------------------------------- /py/pfapi/models/route_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/route_record.py -------------------------------------------------------------------------------- /py/pfapi/models/router_adv_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/router_adv_settings.py -------------------------------------------------------------------------------- /py/pfapi/models/routes_apply_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/routes_apply_request.py -------------------------------------------------------------------------------- /py/pfapi/models/routes_dirty_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/routes_dirty_state.py -------------------------------------------------------------------------------- /py/pfapi/models/separator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/separator.py -------------------------------------------------------------------------------- /py/pfapi/models/service_certificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/service_certificate.py -------------------------------------------------------------------------------- /py/pfapi/models/service_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/service_provider.py -------------------------------------------------------------------------------- /py/pfapi/models/service_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/service_providers.py -------------------------------------------------------------------------------- /py/pfapi/models/services_action_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/services_action_params.py -------------------------------------------------------------------------------- /py/pfapi/models/services_action_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/services_action_req.py -------------------------------------------------------------------------------- /py/pfapi/models/services_ntp_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/services_ntp_config.py -------------------------------------------------------------------------------- /py/pfapi/models/services_snmp_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/services_snmp_config.py -------------------------------------------------------------------------------- /py/pfapi/models/services_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/services_status.py -------------------------------------------------------------------------------- /py/pfapi/models/services_status_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/services_status_list.py -------------------------------------------------------------------------------- /py/pfapi/models/services_u_pn_p_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/services_u_pn_p_config.py -------------------------------------------------------------------------------- /py/pfapi/models/setup_dns_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/setup_dns_setting.py -------------------------------------------------------------------------------- /py/pfapi/models/setup_pp_po_e_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/setup_pp_po_e_cfg.py -------------------------------------------------------------------------------- /py/pfapi/models/setup_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/setup_settings.py -------------------------------------------------------------------------------- /py/pfapi/models/setup_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/setup_wizard.py -------------------------------------------------------------------------------- /py/pfapi/models/setup_wizard_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/setup_wizard_options.py -------------------------------------------------------------------------------- /py/pfapi/models/simple_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/simple_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/smart_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/smart_devices.py -------------------------------------------------------------------------------- /py/pfapi/models/smart_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/smart_result.py -------------------------------------------------------------------------------- /py/pfapi/models/snmp_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/snmp_config.py -------------------------------------------------------------------------------- /py/pfapi/models/snmp_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/snmp_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/snmp_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/snmp_modules.py -------------------------------------------------------------------------------- /py/pfapi/models/software_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/software_package.py -------------------------------------------------------------------------------- /py/pfapi/models/software_package_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/software_package_list.py -------------------------------------------------------------------------------- /py/pfapi/models/static_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/static_route.py -------------------------------------------------------------------------------- /py/pfapi/models/static_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/static_routes.py -------------------------------------------------------------------------------- /py/pfapi/models/status_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/status_summary.py -------------------------------------------------------------------------------- /py/pfapi/models/std_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/std_log.py -------------------------------------------------------------------------------- /py/pfapi/models/std_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/std_logs.py -------------------------------------------------------------------------------- /py/pfapi/models/storage_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/storage_stats.py -------------------------------------------------------------------------------- /py/pfapi/models/sys_firmware_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/sys_firmware_info.py -------------------------------------------------------------------------------- /py/pfapi/models/sys_net_if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/sys_net_if.py -------------------------------------------------------------------------------- /py/pfapi/models/sysinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/sysinfo.py -------------------------------------------------------------------------------- /py/pfapi/models/sysinfo_fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/sysinfo_fs.py -------------------------------------------------------------------------------- /py/pfapi/models/sysinfo_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/sysinfo_license.py -------------------------------------------------------------------------------- /py/pfapi/models/sysinfo_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/sysinfo_update.py -------------------------------------------------------------------------------- /py/pfapi/models/syslog_config_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/syslog_config_override.py -------------------------------------------------------------------------------- /py/pfapi/models/syslog_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/syslog_configuration.py -------------------------------------------------------------------------------- /py/pfapi/models/system_adv_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/system_adv_admin.py -------------------------------------------------------------------------------- /py/pfapi/models/system_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/system_cert.py -------------------------------------------------------------------------------- /py/pfapi/models/system_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/system_control.py -------------------------------------------------------------------------------- /py/pfapi/models/system_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/system_event.py -------------------------------------------------------------------------------- /py/pfapi/models/system_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/system_status.py -------------------------------------------------------------------------------- /py/pfapi/models/system_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/system_summary.py -------------------------------------------------------------------------------- /py/pfapi/models/system_update_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/system_update_info.py -------------------------------------------------------------------------------- /py/pfapi/models/system_update_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/system_update_options.py -------------------------------------------------------------------------------- /py/pfapi/models/system_update_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/system_update_progress.py -------------------------------------------------------------------------------- /py/pfapi/models/system_update_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/system_update_settings.py -------------------------------------------------------------------------------- /py/pfapi/models/tcp_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/tcp_flags.py -------------------------------------------------------------------------------- /py/pfapi/models/test_port_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/test_port_request.py -------------------------------------------------------------------------------- /py/pfapi/models/test_port_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/test_port_response.py -------------------------------------------------------------------------------- /py/pfapi/models/test_port_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/test_port_sources.py -------------------------------------------------------------------------------- /py/pfapi/models/text_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/text_value.py -------------------------------------------------------------------------------- /py/pfapi/models/tier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/tier.py -------------------------------------------------------------------------------- /py/pfapi/models/tls_cert_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/tls_cert_path.py -------------------------------------------------------------------------------- /py/pfapi/models/toggle_resp_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/toggle_resp_status.py -------------------------------------------------------------------------------- /py/pfapi/models/toggle_upnp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/toggle_upnp.py -------------------------------------------------------------------------------- /py/pfapi/models/traceroute_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/traceroute_request.py -------------------------------------------------------------------------------- /py/pfapi/models/traceroute_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/traceroute_response.py -------------------------------------------------------------------------------- /py/pfapi/models/traffic_queue_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/traffic_queue_stats.py -------------------------------------------------------------------------------- /py/pfapi/models/traffic_shapers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/traffic_shapers.py -------------------------------------------------------------------------------- /py/pfapi/models/tunable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/tunable.py -------------------------------------------------------------------------------- /py/pfapi/models/tunable_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/tunable_request.py -------------------------------------------------------------------------------- /py/pfapi/models/tunables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/tunables.py -------------------------------------------------------------------------------- /py/pfapi/models/u_pn_p_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/u_pn_p_config.py -------------------------------------------------------------------------------- /py/pfapi/models/u_pn_p_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/u_pn_p_mapping.py -------------------------------------------------------------------------------- /py/pfapi/models/u_pn_p_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/u_pn_p_mappings.py -------------------------------------------------------------------------------- /py/pfapi/models/u_pn_p_perm_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/u_pn_p_perm_user.py -------------------------------------------------------------------------------- /py/pfapi/models/update_bootenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/update_bootenv.py -------------------------------------------------------------------------------- /py/pfapi/models/update_ca_cert_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/update_ca_cert_req.py -------------------------------------------------------------------------------- /py/pfapi/models/update_cert_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/update_cert_req.py -------------------------------------------------------------------------------- /py/pfapi/models/update_crl_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/update_crl_req.py -------------------------------------------------------------------------------- /py/pfapi/models/update_pkcs12_cert_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/update_pkcs12_cert_req.py -------------------------------------------------------------------------------- /py/pfapi/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/user.py -------------------------------------------------------------------------------- /py/pfapi/models/user_add_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/user_add_req.py -------------------------------------------------------------------------------- /py/pfapi/models/user_auth_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/user_auth_settings.py -------------------------------------------------------------------------------- /py/pfapi/models/user_auth_settings_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/user_auth_settings_req.py -------------------------------------------------------------------------------- /py/pfapi/models/user_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/user_generic.py -------------------------------------------------------------------------------- /py/pfapi/models/user_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/user_group.py -------------------------------------------------------------------------------- /py/pfapi/models/user_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/user_groups.py -------------------------------------------------------------------------------- /py/pfapi/models/user_privilege.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/user_privilege.py -------------------------------------------------------------------------------- /py/pfapi/models/user_privileges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/user_privileges.py -------------------------------------------------------------------------------- /py/pfapi/models/user_update_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/user_update_req.py -------------------------------------------------------------------------------- /py/pfapi/models/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/users.py -------------------------------------------------------------------------------- /py/pfapi/models/users_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/users_config.py -------------------------------------------------------------------------------- /py/pfapi/models/users_config_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/users_config_generic.py -------------------------------------------------------------------------------- /py/pfapi/models/users_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/users_generic.py -------------------------------------------------------------------------------- /py/pfapi/models/valid_ping_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/valid_ping_options.py -------------------------------------------------------------------------------- /py/pfapi/models/virtual_i_ps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/virtual_i_ps.py -------------------------------------------------------------------------------- /py/pfapi/models/virtual_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/virtual_ip.py -------------------------------------------------------------------------------- /py/pfapi/models/virtual_ip_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/virtual_ip_result.py -------------------------------------------------------------------------------- /py/pfapi/models/vlan_capable_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/vlan_capable_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/vlan_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/vlan_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/vlan_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/vlan_interfaces.py -------------------------------------------------------------------------------- /py/pfapi/models/voucher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/voucher.py -------------------------------------------------------------------------------- /py/pfapi/models/voucher_roll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/voucher_roll.py -------------------------------------------------------------------------------- /py/pfapi/models/vxlan_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/vxlan_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/vxlan_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/vxlan_interfaces.py -------------------------------------------------------------------------------- /py/pfapi/models/wg_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wg_config.py -------------------------------------------------------------------------------- /py/pfapi/models/wg_peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wg_peer.py -------------------------------------------------------------------------------- /py/pfapi/models/wg_peers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wg_peers.py -------------------------------------------------------------------------------- /py/pfapi/models/wg_tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wg_tunnel.py -------------------------------------------------------------------------------- /py/pfapi/models/wg_tunnel_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wg_tunnel_conf.py -------------------------------------------------------------------------------- /py/pfapi/models/wg_tunnels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wg_tunnels.py -------------------------------------------------------------------------------- /py/pfapi/models/wgip_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wgip_address.py -------------------------------------------------------------------------------- /py/pfapi/models/wire_guard_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wire_guard_keys.py -------------------------------------------------------------------------------- /py/pfapi/models/wire_guard_peer_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wire_guard_peer_status.py -------------------------------------------------------------------------------- /py/pfapi/models/wire_guard_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wire_guard_settings.py -------------------------------------------------------------------------------- /py/pfapi/models/wire_guard_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wire_guard_status.py -------------------------------------------------------------------------------- /py/pfapi/models/wireless_addl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wireless_addl.py -------------------------------------------------------------------------------- /py/pfapi/models/wireless_addl_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wireless_addl_clone.py -------------------------------------------------------------------------------- /py/pfapi/models/wireless_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wireless_interface.py -------------------------------------------------------------------------------- /py/pfapi/models/wireless_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wireless_interfaces.py -------------------------------------------------------------------------------- /py/pfapi/models/wme_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wme_setting.py -------------------------------------------------------------------------------- /py/pfapi/models/wpa_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/models/wpa_setting.py -------------------------------------------------------------------------------- /py/pfapi/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 -------------------------------------------------------------------------------- /py/pfapi/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pfapi/types.py -------------------------------------------------------------------------------- /py/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netgate/pfsense-api/HEAD/py/pyproject.toml --------------------------------------------------------------------------------